interface CfnApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnApplicationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnApplicationMixinProps |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnApplicationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » CfnApplicationMixinProps |
Properties for CfnApplicationPropsMixin.
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 cfnApplicationMixinProps: appstream_mixins.CfnApplicationMixinProps = {
appBlockArn: 'appBlockArn',
attributesToDelete: ['attributesToDelete'],
description: 'description',
displayName: 'displayName',
iconS3Location: {
s3Bucket: 's3Bucket',
s3Key: 's3Key',
},
instanceFamilies: ['instanceFamilies'],
launchParameters: 'launchParameters',
launchPath: 'launchPath',
name: 'name',
platforms: ['platforms'],
tags: [{
key: 'key',
value: 'value',
}],
workingDirectory: 'workingDirectory',
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The app block ARN with which the application should be associated. |
| attributes | string[] | A list of attributes to delete from an application. |
| description? | string | The description of the application. |
| display | string | The display name of the application. |
| icon | IResolvable | S3 | The icon S3 location of the application. |
| instance | string[] | The instance families the application supports. |
| launch | string | The launch parameters of the application. |
| launch | string | The launch path of the application. |
| name? | string | The name of the application. |
| platforms? | string[] | The platforms the application supports. |
| tags? | Cfn[] | The tags of the application. |
| working | string | The working directory of the application. |
appBlockArn?
Type:
string
(optional)
The app block ARN with which the application should be associated.
attributesToDelete?
Type:
string[]
(optional)
A list of attributes to delete from an application.
description?
Type:
string
(optional)
The description of the application.
displayName?
Type:
string
(optional)
The display name of the application.
This name is visible to users in the application catalog.
iconS3Location?
Type:
IResolvable | S3
(optional)
The icon S3 location of the application.
instanceFamilies?
Type:
string[]
(optional)
The instance families the application supports.
Allowed Values : GENERAL_PURPOSE | GRAPHICS_G4
launchParameters?
Type:
string
(optional)
The launch parameters of the application.
launchPath?
Type:
string
(optional)
The launch path of the application.
name?
Type:
string
(optional)
The name of the application.
This name is visible to users when a name is not specified in the DisplayName property.
Pattern : ^[a-zA-Z0-9][a-zA-Z0-9_.-]{0,100}$
platforms?
Type:
string[]
(optional)
The platforms the application supports.
Allowed Values : WINDOWS_SERVER_2019 | AMAZON_LINUX2
tags?
Type:
Cfn[]
(optional)
The tags of the application.
workingDirectory?
Type:
string
(optional)
The working directory of the application.

.NET
Go
Java
Python
TypeScript