aws-cdk-lib.aws_appstream.CfnAppBlock.S3LocationProperty

interface S3LocationProperty

LanguageType name
.NETAmazon.CDK.AWS.AppStream.CfnAppBlock.S3LocationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappstream#CfnAppBlock_S3LocationProperty
Javasoftware.amazon.awscdk.services.appstream.CfnAppBlock.S3LocationProperty
Pythonaws_cdk.aws_appstream.CfnAppBlock.S3LocationProperty
TypeScript aws-cdk-lib » aws_appstream » CfnAppBlock » S3LocationProperty

The S3 location of the app block.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appstream as appstream } from 'aws-cdk-lib';
const s3LocationProperty: appstream.CfnAppBlock.S3LocationProperty = {
  s3Bucket: 's3Bucket',

  // the properties below are optional
  s3Key: 's3Key',
};

Properties

NameTypeDescription
s3BucketstringThe S3 bucket of the app block.
s3Key?stringThe S3 key of the S3 object of the virtual hard disk.

s3Bucket

Type: string

The S3 bucket of the app block.


s3Key?

Type: string (optional)

The S3 key of the S3 object of the virtual hard disk.

This is required when it's used by SetupScriptDetails and PostSetupScriptDetails .