Class: Aws::ElasticBeanstalk::Types::S3Location

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

Overview

The bucket and key of an item stored in Amazon S3.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_bucketString

The Amazon S3 bucket where the data is located.

Returns:

  • (String)


3797
3798
3799
3800
3801
3802
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 3797

class S3Location < Struct.new(
  :s3_bucket,
  :s3_key)
  SENSITIVE = []
  include Aws::Structure
end

#s3_keyString

The Amazon S3 key where the data is located.

Returns:

  • (String)


3797
3798
3799
3800
3801
3802
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 3797

class S3Location < Struct.new(
  :s3_bucket,
  :s3_key)
  SENSITIVE = []
  include Aws::Structure
end