Class: Aws::S3::Types::OutputLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::OutputLocation
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass OutputLocation data as a hash:
{
s3: {
bucket_name: "BucketName", # required
prefix: "LocationPrefix", # required
encryption: {
encryption_type: "AES256", # required, accepts AES256, aws:kms
kms_key_id: "SSEKMSKeyId",
kms_context: "KMSContext",
},
canned_acl: "private", # accepts private, public-read, public-read-write, authenticated-read, aws-exec-read, bucket-owner-read, bucket-owner-full-control
access_control_list: [
{
grantee: {
display_name: "DisplayName",
email_address: "EmailAddress",
id: "ID",
type: "CanonicalUser", # required, accepts CanonicalUser, AmazonCustomerByEmail, Group
uri: "URI",
},
permission: "FULL_CONTROL", # accepts FULL_CONTROL, WRITE, WRITE_ACP, READ, READ_ACP
},
],
tagging: {
tag_set: [ # required
{
key: "ObjectKey", # required
value: "Value", # required
},
],
},
user_metadata: [
{
name: "MetadataKey",
value: "MetadataValue",
},
],
storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA
},
}
Describes the location where the restore job’s output is stored.
Instance Attribute Summary collapse
-
#s3 ⇒ Types::S3Location
Describes an S3 location that will receive the results of the restore request.
Instance Attribute Details
#s3 ⇒ Types::S3Location
Describes an S3 location that will receive the results of the restore request.
5701 5702 5703 5704 |
# File 'lib/aws-sdk-s3/types.rb', line 5701 class OutputLocation < Struct.new( :s3) include Aws::Structure end |