Class: Aws::MediaConvert::Types::S3DestinationAccessControl

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mediaconvert/types.rb

Overview

Note:

When making an API call, you may pass S3DestinationAccessControl data as a hash:

{
  canned_acl: "PUBLIC_READ", # accepts PUBLIC_READ, AUTHENTICATED_READ, BUCKET_OWNER_READ, BUCKET_OWNER_FULL_CONTROL
}

Optional. Have MediaConvert automatically apply Amazon S3 access control for the outputs in this output group. When you don't use this setting, S3 automatically applies the default access control list PRIVATE.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#canned_aclString

Choose an Amazon S3 canned ACL for MediaConvert to apply to this output.

Returns:

  • (String)


22676
22677
22678
22679
22680
# File 'lib/aws-sdk-mediaconvert/types.rb', line 22676

class S3DestinationAccessControl < Struct.new(
  :canned_acl)
  SENSITIVE = []
  include Aws::Structure
end