Interface CfnMetricAttribution.S3DataDestinationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMetricAttribution.S3DataDestinationProperty.Jsii$Proxy
Enclosing class:
CfnMetricAttribution

@Stability(Stable) public static interface CfnMetricAttribution.S3DataDestinationProperty extends software.amazon.jsii.JsiiSerializable
The configuration details of an Amazon S3 output bucket.

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.personalize.*;
 S3DataDestinationProperty s3DataDestinationProperty = S3DataDestinationProperty.builder()
         .path("path")
         // the properties below are optional
         .kmsKeyArn("kmsKeyArn")
         .build();
 

See Also: