Class: Aws::S3::Types::AccessControlTranslation
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::AccessControlTranslation
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass AccessControlTranslation data as a hash:
{
owner: "Destination", # required, accepts Destination
}
A container for information about access control for replicas.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#owner ⇒ String
Specifies the replica ownership.
Instance Attribute Details
#owner ⇒ String
Specifies the replica ownership. For default and valid values, see
- PUT bucket replication][1
-
in the *Amazon S3 API Reference*.
[1]: docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTreplication.html
221 222 223 224 225 |
# File 'lib/aws-sdk-s3/types.rb', line 221 class AccessControlTranslation < Struct.new( :owner) SENSITIVE = [] include Aws::Structure end |