AppBlockBuilderReference

class aws_cdk.aws_appstream.AppBlockBuilderReference(*, app_block_builder_arn, app_block_builder_name)

Bases: object

A reference to a AppBlockBuilder resource.

Parameters:
  • app_block_builder_arn (str) – The ARN of the AppBlockBuilder resource.

  • app_block_builder_name (str) – The Name of the AppBlockBuilder resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_appstream as appstream

app_block_builder_reference = appstream.AppBlockBuilderReference(
    app_block_builder_arn="appBlockBuilderArn",
    app_block_builder_name="appBlockBuilderName"
)

Attributes

app_block_builder_arn

The ARN of the AppBlockBuilder resource.

app_block_builder_name

The Name of the AppBlockBuilder resource.