interface CfnAppBlockProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppStream.CfnAppBlockProps |
Java | software.amazon.awscdk.services.appstream.CfnAppBlockProps |
Python | aws_cdk.aws_appstream.CfnAppBlockProps |
TypeScript | @aws-cdk/aws-appstream » CfnAppBlockProps |
Properties for defining a CfnAppBlock
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appstream from '@aws-cdk/aws-appstream';
const cfnAppBlockProps: appstream.CfnAppBlockProps = {
name: 'name',
setupScriptDetails: {
executablePath: 'executablePath',
scriptS3Location: {
s3Bucket: 's3Bucket',
s3Key: 's3Key',
},
timeoutInSeconds: 123,
// the properties below are optional
executableParameters: 'executableParameters',
},
sourceS3Location: {
s3Bucket: 's3Bucket',
s3Key: 's3Key',
},
// the properties below are optional
description: 'description',
displayName: 'displayName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name of the app block. |
setup | Script | IResolvable | The setup script details of the app block. |
source | IResolvable | S3 | The source S3 location of the app block. |
description? | string | The description of the app block. |
display | string | The display name of the app block. |
tags? | Cfn [] | The tags of the app block. |
name
Type:
string
The name of the app block.
Pattern : ^[a-zA-Z0-9][a-zA-Z0-9_.-]{0,100}$
setupScriptDetails
Type:
Script
|
IResolvable
The setup script details of the app block.
sourceS3Location
Type:
IResolvable
|
S3
The source S3 location 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.
tags?
Type:
Cfn
[]
(optional)
The tags of the app block.