interface S3DestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackage.CfnHarvestJob.S3DestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackage#CfnHarvestJob_S3DestinationProperty |
Java | software.amazon.awscdk.services.mediapackage.CfnHarvestJob.S3DestinationProperty |
Python | aws_cdk.aws_mediapackage.CfnHarvestJob.S3DestinationProperty |
TypeScript | aws-cdk-lib » aws_mediapackage » CfnHarvestJob » 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-lib';
const s3DestinationProperty: mediapackage.CfnHarvestJob.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
The name of an S3 bucket within which harvested content will be exported.
manifestKey
Type:
string
The key in the specified S3 bucket where the harvested top-level manifest will be placed.
roleArn
Type:
string
The IAM role used to write to the specified S3 bucket.

.NET
Go
Java
Python
TypeScript