aws-cdk-lib.aws_appstream.CfnAppBlockBuilderProps

interface CfnAppBlockBuilderProps

LanguageType name
.NETAmazon.CDK.AWS.AppStream.CfnAppBlockBuilderProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappstream#CfnAppBlockBuilderProps
Javasoftware.amazon.awscdk.services.appstream.CfnAppBlockBuilderProps
Pythonaws_cdk.aws_appstream.CfnAppBlockBuilderProps
TypeScript aws-cdk-lib » aws_appstream » CfnAppBlockBuilderProps

Properties for defining a CfnAppBlockBuilder.

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 cfnAppBlockBuilderProps: appstream.CfnAppBlockBuilderProps = {
  instanceType: 'instanceType',
  name: 'name',
  platform: 'platform',
  vpcConfig: {
    securityGroupIds: ['securityGroupIds'],
    subnetIds: ['subnetIds'],
  },

  // the properties below are optional
  accessEndpoints: [{
    endpointType: 'endpointType',
    vpceId: 'vpceId',
  }],
  appBlockArns: ['appBlockArns'],
  description: 'description',
  displayName: 'displayName',
  enableDefaultInternetAccess: false,
  iamRoleArn: 'iamRoleArn',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
instanceTypestringThe instance type of the app block builder.
namestringThe name of the app block builder.
platformstringThe platform of the app block builder.
vpcConfigIResolvable | VpcConfigPropertyThe VPC configuration for the app block builder.
accessEndpoints?IResolvable | IResolvable | AccessEndpointProperty[]The access endpoints of the app block builder.
appBlockArns?string[]The ARN of the app block.
description?stringThe description of the app block builder.
displayName?stringThe display name of the app block builder.
enableDefaultInternetAccess?boolean | IResolvableIndicates whether default internet access is enabled for the app block builder.
iamRoleArn?stringThe ARN of the IAM role that is applied to the app block builder.
tags?CfnTag[]The tags of the app block builder.

instanceType

Type: string

The instance type of the app block builder.


name

Type: string

The name of the app block builder.


platform

Type: string

The platform of the app block builder.

Allowed values : WINDOWS_SERVER_2019


vpcConfig

Type: IResolvable | VpcConfigProperty

The VPC configuration for the app block builder.


accessEndpoints?

Type: IResolvable | IResolvable | AccessEndpointProperty[] (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.


tags?

Type: CfnTag[] (optional)

The tags of the app block builder.