Interface CfnFlow.S3LocationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlow.S3LocationProperty.Jsii$Proxy
- Enclosing class:
CfnFlow
@Stability(Stable)
public static interface CfnFlow.S3LocationProperty
extends software.amazon.jsii.JsiiSerializable
The S3 location of the flow definition.
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.bedrock.*; S3LocationProperty s3LocationProperty = S3LocationProperty.builder() .bucket("bucket") .key("key") // the properties below are optional .version("version") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlow.S3LocationProperty
static final class
An implementation forCfnFlow.S3LocationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The S3 bucket containing the flow definition.getKey()
The object key for the S3 location containing the definition.default String
The Amazon S3 location from which to retrieve data for an S3 retrieve node or to which to store data for an S3 storage node.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The S3 bucket containing the flow definition.- See Also:
-
getKey
The object key for the S3 location containing the definition.- See Also:
-
getVersion
The Amazon S3 location from which to retrieve data for an S3 retrieve node or to which to store data for an S3 storage node.- See Also:
-
builder
- Returns:
- a
CfnFlow.S3LocationProperty.Builder
ofCfnFlow.S3LocationProperty
-