ContainerGroupDefinitionReference
- class aws_cdk.aws_gamelift.ContainerGroupDefinitionReference(*, container_group_definition_arn, container_group_definition_name)
Bases:
object
A reference to a ContainerGroupDefinition resource.
- Parameters:
container_group_definition_arn (
str
) – The ARN of the ContainerGroupDefinition resource.container_group_definition_name (
str
) – The Name of the ContainerGroupDefinition 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_gamelift as gamelift container_group_definition_reference = gamelift.ContainerGroupDefinitionReference( container_group_definition_arn="containerGroupDefinitionArn", container_group_definition_name="containerGroupDefinitionName" )
Attributes
- container_group_definition_arn
The ARN of the ContainerGroupDefinition resource.
- container_group_definition_name
The Name of the ContainerGroupDefinition resource.