interface ContainerGroupDefinitionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GameLift.ContainerGroupDefinitionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgamelift#ContainerGroupDefinitionReference |
Java | software.amazon.awscdk.services.gamelift.ContainerGroupDefinitionReference |
Python | aws_cdk.aws_gamelift.ContainerGroupDefinitionReference |
TypeScript | aws-cdk-lib » aws_gamelift » ContainerGroupDefinitionReference |
A reference to a ContainerGroupDefinition resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_gamelift as gamelift } from 'aws-cdk-lib';
const containerGroupDefinitionReference: gamelift.ContainerGroupDefinitionReference = {
containerGroupDefinitionArn: 'containerGroupDefinitionArn',
containerGroupDefinitionName: 'containerGroupDefinitionName',
};
Properties
| Name | Type | Description |
|---|---|---|
| container | string | The ARN of the ContainerGroupDefinition resource. |
| container | string | The Name of the ContainerGroupDefinition resource. |
containerGroupDefinitionArn
Type:
string
The ARN of the ContainerGroupDefinition resource.
containerGroupDefinitionName
Type:
string
The Name of the ContainerGroupDefinition resource.

.NET
Go
Java
Python
TypeScript