Class: Aws::MediaConvert::Types::S3DestinationAccessControl
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::S3DestinationAccessControl
- 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
-
#canned_acl ⇒ String
Choose an Amazon S3 canned ACL for MediaConvert to apply to this output.
Instance Attribute Details
#canned_acl ⇒ String
Choose an Amazon S3 canned ACL for MediaConvert to apply to this output.
22704 22705 22706 22707 22708 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 22704 class S3DestinationAccessControl < Struct.new( :canned_acl) SENSITIVE = [] include Aws::Structure end |