Class: Aws::Signer::Types::S3Destination

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

Overview

The name and prefix of the Amazon S3 bucket where AWS Signer saves your signed objects.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

Name of the S3 bucket.

Returns:

  • (String)


1068
1069
1070
1071
1072
1073
# File 'lib/aws-sdk-signer/types.rb', line 1068

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

#prefixString

An S3 prefix that you can use to limit responses to those that begin with the specified prefix.

Returns:

  • (String)


1068
1069
1070
1071
1072
1073
# File 'lib/aws-sdk-signer/types.rb', line 1068

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