interface CfnAppBlockMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnAppBlockMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnAppBlockMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnAppBlockMixinProps |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnAppBlockMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » CfnAppBlockMixinProps |
Properties for CfnAppBlockPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-appblock.html
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 cfnAppBlockMixinProps: appstream_mixins.CfnAppBlockMixinProps = {
description: 'description',
displayName: 'displayName',
name: 'name',
packagingType: 'packagingType',
postSetupScriptDetails: {
executableParameters: 'executableParameters',
executablePath: 'executablePath',
scriptS3Location: {
s3Bucket: 's3Bucket',
s3Key: 's3Key',
},
timeoutInSeconds: 123,
},
setupScriptDetails: {
executableParameters: 'executableParameters',
executablePath: 'executablePath',
scriptS3Location: {
s3Bucket: 's3Bucket',
s3Key: 's3Key',
},
timeoutInSeconds: 123,
},
sourceS3Location: {
s3Bucket: 's3Bucket',
s3Key: 's3Key',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the app block. |
| display | string | The display name of the app block. |
| name? | string | The name of the app block. |
| packaging | string | The packaging type of the app block. |
| post | IResolvable | Script | The post setup script details of the app block. |
| setup | IResolvable | Script | The setup script details of the app block. |
| source | IResolvable | S3 | The source S3 location of the app block. |
| tags? | Cfn[] | The tags of the app block. |
description?
Type:
string
(optional)
The description of the app block.
displayName?
Type:
string
(optional)
The display name of the app block.
name?
Type:
string
(optional)
The name of the app block.
Pattern : ^[a-zA-Z0-9][a-zA-Z0-9_.-]{0,100}$
packagingType?
Type:
string
(optional)
The packaging type of the app block.
postSetupScriptDetails?
Type:
IResolvable | Script
(optional)
The post setup script details of the app block.
setupScriptDetails?
Type:
IResolvable | Script
(optional)
The setup script details of the app block.
sourceS3Location?
Type:
IResolvable | S3
(optional)
The source S3 location of the app block.
tags?
Type:
Cfn[]
(optional)
The tags of the app block.

.NET
Go
Java
Python
TypeScript