Interface CfnHarvestJob.S3DestinationProperty

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

@Stability(Stable) public static interface CfnHarvestJob.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.services.mediapackage.*;
 S3DestinationProperty s3DestinationProperty = S3DestinationProperty.builder()
         .bucketName("bucketName")
         .manifestKey("manifestKey")
         .roleArn("roleArn")
         .build();
 

See Also: