interface S3DestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage.CfnHarvestJobPropsMixin.S3DestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackage#CfnHarvestJobPropsMixin_S3DestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackage.CfnHarvestJobPropsMixin.S3DestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediapackage.CfnHarvestJobPropsMixin.S3DestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackage » CfnHarvestJobPropsMixin » S3DestinationProperty |
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 { aws_mediapackage as mediapackage } from '@aws-cdk/cfn-property-mixins';
const s3DestinationProperty: mediapackage.CfnHarvestJobPropsMixin.S3DestinationProperty = {
bucketName: 'bucketName',
manifestKey: 'manifestKey',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The name of an S3 bucket within which harvested content will be exported. |
| manifest | string | The key in the specified S3 bucket where the harvested top-level manifest will be placed. |
| role | string | The IAM role used to write to the specified S3 bucket. |
bucketName?
Type:
string
(optional)
The name of an S3 bucket within which harvested content will be exported.
manifestKey?
Type:
string
(optional)
The key in the specified S3 bucket where the harvested top-level manifest will be placed.
roleArn?
Type:
string
(optional)
The IAM role used to write to the specified S3 bucket.

.NET
Go
Java
Python
TypeScript