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
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.
5481 5482 5483 5484 5485 5486 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 5481 class S3Location < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |
#s3_key ⇒ String
The S3 key of the S3 object.
This is required when used for the following:
IconS3Location (Actions: CreateApplication and UpdateApplication)
SessionScriptS3Location (Actions: CreateFleet and UpdateFleet)
ScriptDetails (Actions: CreateAppBlock)
SourceS3Location when creating an app block with
CUSTOMPackagingType (Actions: CreateAppBlock)SourceS3Location when creating an app block with
APPSTREAM2PackagingType, and using an existing application package (VHD file). In this case,S3Keyrefers to the VHD file. If a new application package is required, thenS3Keyis not required. (Actions: CreateAppBlock)
5481 5482 5483 5484 5485 5486 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 5481 class S3Location < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |