Interface CfnApplication.S3ContentLocationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.S3ContentLocationProperty.Jsii$Proxy
- Enclosing class:
- CfnApplication
@Stability(Stable)
public static interface CfnApplication.S3ContentLocationProperty
extends software.amazon.jsii.JsiiSerializable
The location of an application or a custom artifact.
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.kinesisanalyticsv2.*; S3ContentLocationProperty s3ContentLocationProperty = S3ContentLocationProperty.builder() .bucketArn("bucketArn") .fileKey("fileKey") // the properties below are optional .objectVersion("objectVersion") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplication.S3ContentLocationProperty
static final class
An implementation forCfnApplication.S3ContentLocationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketArn
The Amazon Resource Name (ARN) for the S3 bucket containing the application code. -
getFileKey
The file key for the object containing the application code. -
getObjectVersion
The version of the object containing the application code. -
builder
-