Interface CfnHarvestJobPropsMixin.S3DestinationProperty

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

@Stability(Stable) public static interface CfnHarvestJobPropsMixin.S3DestinationProperty extends software.amazon.jsii.JsiiSerializable
Configuration parameters for where in an S3 bucket to place the harvested content.

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.mediapackage.*;
 S3DestinationProperty s3DestinationProperty = S3DestinationProperty.builder()
         .bucketName("bucketName")
         .manifestKey("manifestKey")
         .roleArn("roleArn")
         .build();
 

See Also: