Class: Aws::ElasticBeanstalk::Types::S3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::S3Location
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticbeanstalk/types.rb
Overview
Note:
When making an API call, you may pass S3Location data as a hash:
{
s3_bucket: "S3Bucket",
s3_key: "S3Key",
}
The bucket and key of an item stored in Amazon S3.
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.
3589 3590 3591 3592 3593 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3589 class S3Location < Struct.new( :s3_bucket, :s3_key) include Aws::Structure end |
#s3_key ⇒ String
The Amazon S3 key where the data is located.
3589 3590 3591 3592 3593 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3589 class S3Location < Struct.new( :s3_bucket, :s3_key) include Aws::Structure end |