Class CfnHarvestJobPropsMixin.S3DestinationProperty
Configuration parameters for where in an S3 bucket to place the harvested content.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnHarvestJobPropsMixin.S3DestinationProperty : CfnHarvestJobPropsMixin.IS3DestinationProperty
Syntax (vb)
Public Class CfnHarvestJobPropsMixin.S3DestinationProperty Implements CfnHarvestJobPropsMixin.IS3DestinationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage;
var s3DestinationProperty = new S3DestinationProperty {
BucketName = "bucketName",
ManifestKey = "manifestKey",
RoleArn = "roleArn"
};
Synopsis
Constructors
| S3DestinationProperty() | Configuration parameters for where in an S3 bucket to place the harvested content. |
Properties
| BucketName | The name of an S3 bucket within which harvested content will be exported. |
| ManifestKey | The key in the specified S3 bucket where the harvested top-level manifest will be placed. |
| RoleArn | The IAM role used to write to the specified S3 bucket. |
Constructors
S3DestinationProperty()
Configuration parameters for where in an S3 bucket to place the harvested content.
public S3DestinationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage;
var s3DestinationProperty = new S3DestinationProperty {
BucketName = "bucketName",
ManifestKey = "manifestKey",
RoleArn = "roleArn"
};
Properties
BucketName
The name of an S3 bucket within which harvested content will be exported.
public string? BucketName { get; set; }
Property Value
Remarks
ManifestKey
The key in the specified S3 bucket where the harvested top-level manifest will be placed.
public string? ManifestKey { get; set; }
Property Value
Remarks
RoleArn
The IAM role used to write to the specified S3 bucket.
public string? RoleArn { get; set; }