Class: Aws::AppStream::Types::S3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::S3Location
- Defined in:
- gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb
Overview
Note:
When making an API call, you may pass S3Location data as a hash:
{
s3_bucket: "S3Bucket", # required
s3_key: "S3Key", # required
}
Describes the S3 location.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_bucket ⇒ String
The S3 bucket of the S3 object.
-
#s3_key ⇒ String
The S3 key of the S3 object.
Instance Attribute Details
#s3_bucket ⇒ String
The S3 bucket of the S3 object.
4348 4349 4350 4351 4352 4353 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4348 class S3Location < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |
#s3_key ⇒ String
The S3 key of the S3 object.
4348 4349 4350 4351 4352 4353 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4348 class S3Location < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |