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)


1070
1071
1072
1073
1074
1075
# File 'gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb', line 1070

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)


1070
1071
1072
1073
1074
1075
# File 'gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb', line 1070

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