Interface CfnChannelPropsMixin.S3DestinationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannelPropsMixin.S3DestinationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnChannelPropsMixin
@Stability(Stable)
public static interface CfnChannelPropsMixin.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.cfnpropertymixins.services.msk.*;
S3DestinationConfigurationProperty s3DestinationConfigurationProperty = S3DestinationConfigurationProperty.builder()
.dataFreshnessInSeconds(123)
.deadLetterQueueS3(DeadLetterQueueS3Property.builder()
.bucketArn("bucketArn")
.errorOutputPrefix("errorOutputPrefix")
.expectedBucketOwner("expectedBucketOwner")
.build())
.serviceExecutionRoleArn("serviceExecutionRoleArn")
.storage(S3StorageProperty.builder()
.bucketArn("bucketArn")
.compressionType("compressionType")
.expectedBucketOwner("expectedBucketOwner")
.outputKeyTemplate("outputKeyTemplate")
.outputPrefix("outputPrefix")
.storageClass("storageClass")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannelPropsMixin.S3DestinationConfigurationPropertystatic final classAn implementation forCfnChannelPropsMixin.S3DestinationConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataFreshnessInSeconds
Data freshness in seconds.- See Also:
-
getDeadLetterQueueS3
Dead letter queue S3 configuration of the destination.Returns union: either
IResolvableorCfnChannelPropsMixin.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
IResolvableorCfnChannelPropsMixin.S3StorageProperty- See Also:
-
builder
-