interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnAppBlockPropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnAppBlockPropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnAppBlockPropsMixin.S3LocationProperty |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnAppBlockPropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » CfnAppBlockPropsMixin » 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 { mixins as appstream_mixins } from '@aws-cdk/mixins-preview/aws-appstream';
const s3LocationProperty: appstream_mixins.CfnAppBlockPropsMixin.S3LocationProperty = {
s3Bucket: 's3Bucket',
s3Key: 's3Key',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | The S3 bucket of the app block. |
| s3 | string | The S3 key of the S3 object of the virtual hard disk. |
s3Bucket?
Type:
string
(optional)
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 .

.NET
Go
Java
Python
TypeScript