Class: Aws::Signer::Types::Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::Signer::Types::Destination
- Defined in:
- gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb
Overview
Note:
When making an API call, you may pass Destination data as a hash:
{
s3: {
bucket_name: "BucketName",
prefix: "Prefix",
},
}
Points to an S3Destination
object that contains information about
your S3 bucket.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3 ⇒ Types::S3Destination
The
S3Destination
object.
Instance Attribute Details
#s3 ⇒ Types::S3Destination
The S3Destination
object.
297 298 299 300 301 |
# File 'gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb', line 297 class Destination < Struct.new( :s3) SENSITIVE = [] include Aws::Structure end |