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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-signer/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)


1049
1050
1051
1052
1053
1054
# File 'gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb', line 1049

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)


1049
1050
1051
1052
1053
1054
# File 'gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb', line 1049

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