Class: Aws::Signer::Types::S3SignedObject

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb

Overview

The Amazon S3 bucket name and key where Signer saved your signed code image.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

Name of the S3 bucket.

Returns:

  • (String)


1089
1090
1091
1092
1093
1094
# File 'gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb', line 1089

class S3SignedObject < Struct.new(
  :bucket_name,
  :key)
  SENSITIVE = []
  include Aws::Structure
end

#keyString

Key name that uniquely identifies a signed code image in your bucket.

Returns:

  • (String)


1089
1090
1091
1092
1093
1094
# File 'gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb', line 1089

class S3SignedObject < Struct.new(
  :bucket_name,
  :key)
  SENSITIVE = []
  include Aws::Structure
end