interface TransitGatewayRegistrationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.NetworkManager.TransitGatewayRegistrationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsnetworkmanager#TransitGatewayRegistrationReference |
Java | software.amazon.awscdk.interfaces.networkmanager.TransitGatewayRegistrationReference |
Python | aws_cdk.interfaces.aws_networkmanager.TransitGatewayRegistrationReference |
TypeScript | aws-cdk-lib » interfaces » aws_networkmanager » TransitGatewayRegistrationReference |
A reference to a TransitGatewayRegistration resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_networkmanager as interfaces_aws_networkmanager } from 'aws-cdk-lib/interfaces';
const transitGatewayRegistrationReference: interfaces_aws_networkmanager.TransitGatewayRegistrationReference = {
globalNetworkId: 'globalNetworkId',
transitGatewayArn: 'transitGatewayArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| global | string | The GlobalNetworkId of the TransitGatewayRegistration resource. |
| transit | string | The TransitGatewayArn of the TransitGatewayRegistration resource. |
globalNetworkId
Type:
string
The GlobalNetworkId of the TransitGatewayRegistration resource.
transitGatewayArn
Type:
string
The TransitGatewayArn of the TransitGatewayRegistration resource.

.NET
Go
Java
Python
TypeScript