interface CfnAppBlockProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppStream.CfnAppBlockProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappstream#CfnAppBlockProps |
Java | software.amazon.awscdk.services.appstream.CfnAppBlockProps |
Python | aws_cdk.aws_appstream.CfnAppBlockProps |
TypeScript | aws-cdk-lib » aws_appstream » CfnAppBlockProps |
Properties for defining a CfnAppBlock
.
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 { aws_appstream as appstream } from 'aws-cdk-lib';
const cfnAppBlockProps: appstream.CfnAppBlockProps = {
name: 'name',
sourceS3Location: {
s3Bucket: 's3Bucket',
// the properties below are optional
s3Key: 's3Key',
},
// the properties below are optional
description: 'description',
displayName: 'displayName',
packagingType: 'packagingType',
postSetupScriptDetails: {
executablePath: 'executablePath',
scriptS3Location: {
s3Bucket: 's3Bucket',
// the properties below are optional
s3Key: 's3Key',
},
timeoutInSeconds: 123,
// the properties below are optional
executableParameters: 'executableParameters',
},
setupScriptDetails: {
executablePath: 'executablePath',
scriptS3Location: {
s3Bucket: 's3Bucket',
// the properties below are optional
s3Key: 's3Key',
},
timeoutInSeconds: 123,
// the properties below are optional
executableParameters: 'executableParameters',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name 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. |
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. |
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}$
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.
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.
tags?
Type:
Cfn
[]
(optional)
The tags of the app block.