Interface CfnChannel.S3DestinationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.S3DestinationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.S3DestinationConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
S3 destination configuration.
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.msk.*;
S3DestinationConfigurationProperty s3DestinationConfigurationProperty = S3DestinationConfigurationProperty.builder()
.deadLetterQueueS3(DeadLetterQueueS3Property.builder()
.bucketArn("bucketArn")
.errorOutputPrefix("errorOutputPrefix")
// the properties below are optional
.expectedBucketOwner("expectedBucketOwner")
.build())
.serviceExecutionRoleArn("serviceExecutionRoleArn")
.storage(S3StorageProperty.builder()
.bucketArn("bucketArn")
.compressionType("compressionType")
.storageClass("storageClass")
// the properties below are optional
.expectedBucketOwner("expectedBucketOwner")
.outputKeyTemplate("outputKeyTemplate")
.outputPrefix("outputPrefix")
.build())
// the properties below are optional
.dataFreshnessInSeconds(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannel.S3DestinationConfigurationPropertystatic final classAn implementation forCfnChannel.S3DestinationConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeadLetterQueueS3
Dead letter queue S3 configuration of the destination.Returns union: either
IResolvableorCfnChannel.DeadLetterQueueS3Property- See Also:
-
getServiceExecutionRoleArn
The Amazon Resource Name (ARN) of an IAM role used by MSK to access S3.- See Also:
-
getStorage
S3 storage configuration.Returns union: either
IResolvableorCfnChannel.S3StorageProperty- See Also:
-
getDataFreshnessInSeconds
Data freshness in seconds.- See Also:
-
builder
-