@Stability(value=Stable)
public static interface CfnResourceDataSync.S3DestinationProperty
extends software.amazon.jsii.JsiiSerializable
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.ssm.*;
S3DestinationProperty s3DestinationProperty = S3DestinationProperty.builder()
.bucketName("bucketName")
.bucketRegion("bucketRegion")
.syncFormat("syncFormat")
// the properties below are optional
.bucketPrefix("bucketPrefix")
.kmsKeyArn("kmsKeyArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnResourceDataSync.S3DestinationProperty.Builder
A builder for
CfnResourceDataSync.S3DestinationProperty |
static class |
CfnResourceDataSync.S3DestinationProperty.Jsii$Proxy
An implementation for
CfnResourceDataSync.S3DestinationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnResourceDataSync.S3DestinationProperty.Builder |
builder() |
String |
getBucketName()
The name of the S3 bucket where the aggregated data is stored.
|
default String |
getBucketPrefix()
An Amazon S3 prefix for the bucket.
|
String |
getBucketRegion()
The AWS Region with the S3 bucket targeted by the resource data sync.
|
default String |
getKmsKeyArn()
The ARN of an encryption key for a destination in Amazon S3.
|
String |
getSyncFormat()
A supported sync format.
|
@Stability(value=Stable) @NotNull String getBucketName()
@Stability(value=Stable) @NotNull String getBucketRegion()
@Stability(value=Stable) @NotNull String getSyncFormat()
The following format is currently supported: JsonSerDe
@Stability(value=Stable) @Nullable default String getBucketPrefix()
@Stability(value=Stable) @Nullable default String getKmsKeyArn()
Must belong to the same Region as the destination S3 bucket.
@Stability(value=Stable) static CfnResourceDataSync.S3DestinationProperty.Builder builder()
Copyright © 2022. All rights reserved.