![]() |
![]()
| ![]() |
![]()
NAMEPaws::ElasticTranscoder::CreatePipeline - Arguments for method CreatePipeline on Paws::ElasticTranscoder DESCRIPTIONThis class represents the parameters used for calling the method CreatePipeline on the Amazon Elastic Transcoder service. Use the attributes of this class as arguments to method CreatePipeline. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreatePipeline. SYNOPSISmy $elastictranscoder = Paws->service('ElasticTranscoder'); my $CreatePipelineResponse = $elastictranscoder->CreatePipeline( InputBucket => 'MyBucketName', Name => 'MyName', Role => 'MyRole', AwsKmsKeyArn => 'MyKeyArn', # OPTIONAL ContentConfig => { Bucket => 'MyBucketName', Permissions => [ { Access => [ 'MyAccessControl', ... ], # max: 30; OPTIONAL Grantee => 'MyGrantee', # min: 1, max: 255; OPTIONAL GranteeType => 'MyGranteeType', # OPTIONAL }, ... ], # max: 30; OPTIONAL StorageClass => 'MyStorageClass', # OPTIONAL }, # OPTIONAL Notifications => { Completed => 'MySnsTopic', # OPTIONAL Error => 'MySnsTopic', # OPTIONAL Progressing => 'MySnsTopic', # OPTIONAL Warning => 'MySnsTopic', # OPTIONAL }, # OPTIONAL OutputBucket => 'MyBucketName', # OPTIONAL ThumbnailConfig => { Bucket => 'MyBucketName', Permissions => [ { Access => [ 'MyAccessControl', ... ], # max: 30; OPTIONAL Grantee => 'MyGrantee', # min: 1, max: 255; OPTIONAL GranteeType => 'MyGranteeType', # OPTIONAL }, ... ], # max: 30; OPTIONAL StorageClass => 'MyStorageClass', # OPTIONAL }, # OPTIONAL ); # Results: my $Pipeline = $CreatePipelineResponse->Pipeline; my $Warnings = $CreatePipelineResponse->Warnings; # Returns a L<Paws::ElasticTranscoder::CreatePipelineResponse> object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/elastictranscoder/CreatePipeline> ATTRIBUTESAwsKmsKeyArn => StrThe AWS Key Management Service (AWS KMS) key that you want to use with this pipeline. If you use either "s3" or "s3-aws-kms" as your "Encryption:Mode", you don't need to provide a key with your job because a default key, known as an AWS-KMS key, is created for you automatically. You need to provide an AWS-KMS key only if you want to use a non-default AWS-KMS key, or if you are using an "Encryption:Mode" of "aes-cbc-pkcs7", "aes-ctr", or "aes-gcm". ContentConfig => Paws::ElasticTranscoder::PipelineOutputConfigThe optional "ContentConfig" object specifies information about the Amazon S3 bucket in which you want Elastic Transcoder to save transcoded files and playlists: which bucket to use, which users you want to have access to the files, the type of access you want users to have, and the storage class that you want to assign to the files. If you specify values for "ContentConfig", you must also specify values for "ThumbnailConfig". If you specify values for "ContentConfig" and "ThumbnailConfig", omit the "OutputBucket" object.
REQUIRED InputBucket => StrThe Amazon S3 bucket in which you saved the media files that you want to transcode. REQUIRED Name => StrThe name of the pipeline. We recommend that the name be unique within the AWS account, but uniqueness is not enforced. Constraints: Maximum 40 characters. Notifications => Paws::ElasticTranscoder::NotificationsThe Amazon Simple Notification Service (Amazon SNS) topic that you want to notify to report job status. To receive notifications, you must also subscribe to the new topic in the Amazon SNS console.
OutputBucket => StrThe Amazon S3 bucket in which you want Elastic Transcoder to save the transcoded files. (Use this, or use ContentConfig:Bucket plus ThumbnailConfig:Bucket.) Specify this value when all of the following are true:
If you want to save transcoded files and playlists in one bucket and thumbnails in another bucket, specify which users can access the transcoded files or the permissions the users have, or change the Amazon S3 storage class, omit "OutputBucket" and specify values for "ContentConfig" and "ThumbnailConfig" instead. REQUIRED Role => StrThe IAM Amazon Resource Name (ARN) for the role that you want Elastic Transcoder to use to create the pipeline. ThumbnailConfig => Paws::ElasticTranscoder::PipelineOutputConfigThe "ThumbnailConfig" object specifies several values, including the Amazon S3 bucket in which you want Elastic Transcoder to save thumbnail files, which users you want to have access to the files, the type of access you want users to have, and the storage class that you want to assign to the files. If you specify values for "ContentConfig", you must also specify values for "ThumbnailConfig" even if you don't want to create thumbnails. If you specify values for "ContentConfig" and "ThumbnailConfig", omit the "OutputBucket" object.
SEE ALSOThis class forms part of Paws, documenting arguments for method CreatePipeline in Paws::ElasticTranscoder BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|