interface S3Destination
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackage.Events.OriginEndpointEvents.MediaPackageHarvestJobNotification.S3Destination |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackage/events#OriginEndpointEvents_MediaPackageHarvestJobNotification_S3Destination |
Java | software.amazon.awscdk.mixins.preview.services.mediapackage.events.OriginEndpointEvents.MediaPackageHarvestJobNotification.S3Destination |
Python | aws_cdk.mixins_preview.aws_mediapackage.events.OriginEndpointEvents.MediaPackageHarvestJobNotification.S3Destination |
TypeScript | @aws-cdk/mixins-preview ยป aws_mediapackage ยป events ยป OriginEndpointEvents ยป MediaPackageHarvestJobNotification ยป S3Destination |
Type definition for S3_destination.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as mediapackage_events } from '@aws-cdk/mixins-preview/aws-mediapackage';
const s3Destination: mediapackage_events.OriginEndpointEvents.MediaPackageHarvestJobNotification.S3Destination = {
bucketName: ['bucketName'],
manifestKey: ['manifestKey'],
roleArn: ['roleArn'],
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string[] | bucket_name property. |
| manifest | string[] | manifest_key property. |
| role | string[] | role_arn property. |
bucketName?
Type:
string[]
(optional, default: Do not filter on this field)
bucket_name property.
Specify an array of string values to match this event if the actual value of bucket_name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
manifestKey?
Type:
string[]
(optional, default: Do not filter on this field)
manifest_key property.
Specify an array of string values to match this event if the actual value of manifest_key is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
roleArn?
Type:
string[]
(optional, default: Do not filter on this field)
role_arn property.
Specify an array of string values to match this event if the actual value of role_arn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript