ContainerGroupDefinitionReference
- class aws_cdk.interfaces.aws_gamelift.ContainerGroupDefinitionReference(*, container_group_definition_arn, container_group_definition_name)
Bases:
objectA 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.interfaces import aws_gamelift as interfaces_aws_gamelift container_group_definition_reference = interfaces_aws_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.