Class: Aws::S3::Types::Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Destination
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass Destination data as a hash:
{
bucket: "BucketName", # required
storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA
}
Instance Attribute Summary collapse
-
#bucket ⇒ String
Amazon resource name (ARN) of the bucket where you want Amazon S3 to store replicas of the object identified by the rule.
-
#storage_class ⇒ String
The class of storage used to store the object.
Instance Attribute Details
#bucket ⇒ String
Amazon resource name (ARN) of the bucket where you want Amazon S3 to store replicas of the object identified by the rule.
1887 1888 1889 1890 1891 |
# File 'lib/aws-sdk-s3/types.rb', line 1887 class Destination < Struct.new( :bucket, :storage_class) include Aws::Structure end |
#storage_class ⇒ String
The class of storage used to store the object.
1887 1888 1889 1890 1891 |
# File 'lib/aws-sdk-s3/types.rb', line 1887 class Destination < Struct.new( :bucket, :storage_class) include Aws::Structure end |