Class: Aws::AppStream::Types::S3Location

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appstream/types.rb

Overview

Describes the S3 location.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_bucketString

The S3 bucket of the S3 object.

Returns:

  • (String)


4353
4354
4355
4356
4357
4358
# File 'lib/aws-sdk-appstream/types.rb', line 4353

class S3Location < Struct.new(
  :s3_bucket,
  :s3_key)
  SENSITIVE = []
  include Aws::Structure
end

#s3_keyString

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)

Returns:

  • (String)


4353
4354
4355
4356
4357
4358
# File 'lib/aws-sdk-appstream/types.rb', line 4353

class S3Location < Struct.new(
  :s3_bucket,
  :s3_key)
  SENSITIVE = []
  include Aws::Structure
end