interface PeeringAttachmentStatusProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnTransitGatewayPeeringAttachmentPropsMixin.PeeringAttachmentStatusProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnTransitGatewayPeeringAttachmentPropsMixin_PeeringAttachmentStatusProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnTransitGatewayPeeringAttachmentPropsMixin.PeeringAttachmentStatusProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnTransitGatewayPeeringAttachmentPropsMixin.PeeringAttachmentStatusProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const peeringAttachmentStatusProperty: ec2.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