interface CfnAppBlockBuilderMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnAppBlockBuilderMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnAppBlockBuilderMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnAppBlockBuilderMixinProps |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnAppBlockBuilderMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » CfnAppBlockBuilderMixinProps |
Properties for CfnAppBlockBuilderPropsMixin.
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 cfnAppBlockBuilderMixinProps: appstream_mixins.CfnAppBlockBuilderMixinProps = {
accessEndpoints: [{
endpointType: 'endpointType',
vpceId: 'vpceId',
}],
appBlockArns: ['appBlockArns'],
description: 'description',
displayName: 'displayName',
enableDefaultInternetAccess: false,
iamRoleArn: 'iamRoleArn',
instanceType: 'instanceType',
name: 'name',
platform: 'platform',
tags: [{
key: 'key',
value: 'value',
}],
vpcConfig: {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| access | IResolvable | (IResolvable | Access)[] | The access endpoints of the app block builder. |
| app | string[] | The ARN of the app block. |
| description? | string | The description of the app block builder. |
| display | string | The display name of the app block builder. |
| enable | boolean | IResolvable | Indicates whether default internet access is enabled for the app block builder. |
| iam | string | The ARN of the IAM role that is applied to the app block builder. |
| instance | string | The instance type of the app block builder. |
| name? | string | The name of the app block builder. |
| platform? | string | The platform of the app block builder. |
| tags? | Cfn[] | The tags of the app block builder. |
| vpc | IResolvable | Vpc | The VPC configuration for the app block builder. |
accessEndpoints?
Type:
IResolvable | (IResolvable | Access)[]
(optional)
The access endpoints of the app block builder.
appBlockArns?
Type:
string[]
(optional)
The ARN of the app block.
Maximum : 1
description?
Type:
string
(optional)
The description of the app block builder.
displayName?
Type:
string
(optional)
The display name of the app block builder.
enableDefaultInternetAccess?
Type:
boolean | IResolvable
(optional)
Indicates whether default internet access is enabled for the app block builder.
iamRoleArn?
Type:
string
(optional)
The ARN of the IAM role that is applied to the app block builder.
instanceType?
Type:
string
(optional)
The instance type of the app block builder.
name?
Type:
string
(optional)
The name of the app block builder.
platform?
Type:
string
(optional)
The platform of the app block builder.
Allowed values : WINDOWS_SERVER_2019
tags?
Type:
Cfn[]
(optional)
The tags of the app block builder.
vpcConfig?
Type:
IResolvable | Vpc
(optional)
The VPC configuration for the app block builder.

.NET
Go
Java
Python
TypeScript