interface ContainerGroupDefinitionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.GameLift.ContainerGroupDefinitionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsgamelift#ContainerGroupDefinitionReference |
Java | software.amazon.awscdk.interfaces.gamelift.ContainerGroupDefinitionReference |
Python | aws_cdk.interfaces.aws_gamelift.ContainerGroupDefinitionReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_gamelift } from 'aws-cdk-lib/interfaces';
const containerGroupDefinitionReference: interfaces_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