Interface CfnCustomPlugin.S3LocationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCustomPlugin.S3LocationProperty.Jsii$Proxy
- Enclosing class:
CfnCustomPlugin
@Stability(Stable)
public static interface CfnCustomPlugin.S3LocationProperty
extends software.amazon.jsii.JsiiSerializable
The location of an object in Amazon S3.
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.kafkaconnect.*;
S3LocationProperty s3LocationProperty = S3LocationProperty.builder()
.bucketArn("bucketArn")
.fileKey("fileKey")
// the properties below are optional
.objectVersion("objectVersion")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCustomPlugin.S3LocationPropertystatic final classAn implementation forCfnCustomPlugin.S3LocationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketArn
The Amazon Resource Name (ARN) of an S3 bucket.- See Also:
-
getFileKey
The file key for an object in an S3 bucket.- See Also:
-
getObjectVersion
The version of an object in an S3 bucket.- See Also:
-
builder
-