Class: Aws::ElasticBeanstalk::Types::S3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::S3Location
- Includes:
- Structure
- Defined in:
- 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
-
#s3_bucket ⇒ String
The Amazon S3 bucket where the data is located.
-
#s3_key ⇒ String
The Amazon S3 key where the data is located.
Instance Attribute Details
#s3_bucket ⇒ String
The Amazon S3 bucket where the data is located.
3794 3795 3796 3797 3798 3799 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3794 class S3Location < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |
#s3_key ⇒ String
The Amazon S3 key where the data is located.
3794 3795 3796 3797 3798 3799 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3794 class S3Location < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |