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.
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 Simple Storage Service
API Reference*.
[1]: docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTreplication.html
197 198 199 200 |
# File 'lib/aws-sdk-s3/types.rb', line 197 class AccessControlTranslation < Struct.new( :owner) include Aws::Structure end |