@Stability(value=Stable)
public static interface CfnPipeline.FieldProperty
extends software.amazon.jsii.JsiiSerializable
The value is specified as either a string value ( StringValue ) or a reference to another object ( RefValue ) but not as both. To view fields for a data pipeline object, see Pipeline Object Reference in the AWS Data Pipeline Developer Guide .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.datapipeline.*;
FieldProperty fieldProperty = FieldProperty.builder()
.key("key")
// the properties below are optional
.refValue("refValue")
.stringValue("stringValue")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPipeline.FieldProperty.Builder
A builder for
CfnPipeline.FieldProperty |
static class |
CfnPipeline.FieldProperty.Jsii$Proxy
An implementation for
CfnPipeline.FieldProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPipeline.FieldProperty.Builder |
builder() |
String |
getKey()
Specifies the name of a field for a particular object.
|
default String |
getRefValue()
A field value that you specify as an identifier of another object in the same pipeline definition.
|
default String |
getStringValue()
A field value that you specify as a string.
|
@Stability(value=Stable) @NotNull String getKey()
To view valid values for a particular field, see Pipeline Object Reference in the AWS Data Pipeline Developer Guide .
@Stability(value=Stable) @Nullable default String getRefValue()
You can specify the field value as either a string value (
StringValue) or a reference to another object (RefValue), but not both.
Required if the key that you are using requires it.
@Stability(value=Stable) @Nullable default String getStringValue()
To view valid values for a particular field, see Pipeline Object Reference in the AWS Data Pipeline Developer Guide .
You can specify the field value as either a string value (
StringValue) or a reference to another object (RefValue), but not both.
Required if the key that you are using requires it.
@Stability(value=Stable) static CfnPipeline.FieldProperty.Builder builder()
CfnPipeline.FieldProperty.Builder of CfnPipeline.FieldPropertyCopyright © 2022. All rights reserved.