Class: Aws::Signer::Types::Source
- Inherits:
-
Struct
- Object
- Struct
- Aws::Signer::Types::Source
- Defined in:
- gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb
Overview
Note:
When making an API call, you may pass Source data as a hash:
{
s3: {
bucket_name: "BucketName", # required
key: "Key", # required
version: "Version", # required
},
}
An S3Source
object that contains information about the S3 bucket
where you saved your unsigned code.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3 ⇒ Types::S3Source
The
S3Source
object.
Instance Attribute Details
#s3 ⇒ Types::S3Source
The S3Source
object.
1673 1674 1675 1676 1677 |
# File 'gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb', line 1673 class Source < Struct.new( :s3) SENSITIVE = [] include Aws::Structure end |