interface PeeringAttachmentStatusProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnTransitGatewayPeeringAttachmentPropsMixin.PeeringAttachmentStatusProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnTransitGatewayPeeringAttachmentPropsMixin_PeeringAttachmentStatusProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnTransitGatewayPeeringAttachmentPropsMixin.PeeringAttachmentStatusProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayPeeringAttachmentPropsMixin.PeeringAttachmentStatusProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnTransitGatewayPeeringAttachmentPropsMixin » PeeringAttachmentStatusProperty |
The status of the transit gateway peering attachment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const peeringAttachmentStatusProperty: ec2_mixins.CfnTransitGatewayPeeringAttachmentPropsMixin.PeeringAttachmentStatusProperty = {
code: 'code',
message: 'message',
};
Properties
| Name | Type | Description |
|---|---|---|
| code? | string | The status code. |
| message? | string | The status message, if applicable. |
code?
Type:
string
(optional)
The status code.
message?
Type:
string
(optional)
The status message, if applicable.

.NET
Go
Java
Python
TypeScript