Class: Aws::AppStream::Types::S3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::S3Location
- Includes:
- Structure
- Defined in:
- 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.
4512 4513 4514 4515 4516 4517 |
# File 'lib/aws-sdk-appstream/types.rb', line 4512 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 ‘CUSTOM` PackagingType (Actions: CreateAppBlock)
-
SourceS3Location when creating an app block with ‘APPSTREAM2` PackagingType, and using an existing application package (VHD file). In this case, `S3Key` refers to the VHD file. If a new application package is required, then `S3Key` is not required. (Actions: CreateAppBlock)
4512 4513 4514 4515 4516 4517 |
# File 'lib/aws-sdk-appstream/types.rb', line 4512 class S3Location < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |