interface CfnTransitGatewayPolicyTableEntryMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnTransitGatewayPolicyTableEntryMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnTransitGatewayPolicyTableEntryMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnTransitGatewayPolicyTableEntryMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnTransitGatewayPolicyTableEntryMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnTransitGatewayPolicyTableEntryMixinProps |
Properties for CfnTransitGatewayPolicyTableEntryPropsMixin.
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 cfnTransitGatewayPolicyTableEntryMixinProps: ec2.CfnTransitGatewayPolicyTableEntryMixinProps = {
policyRule: {
destinationCidrBlock: 'destinationCidrBlock',
destinationPortRange: 'destinationPortRange',
protocol: 'protocol',
sourceCidrBlock: 'sourceCidrBlock',
sourcePortRange: 'sourcePortRange',
},
policyRuleNumber: 'policyRuleNumber',
targetRouteTableId: 'targetRouteTableId',
transitGatewayPolicyTableId: 'transitGatewayPolicyTableId',
};
Properties
| Name | Type | Description |
|---|---|---|
| policy | IResolvable | Transit | |
| policy | string | The rule number for the policy table entry. |
| target | string | The ID of the target route table. |
| transit | string | The ID of the transit gateway policy table. |
policyRule?
Type:
IResolvable | Transit
(optional)
policyRuleNumber?
Type:
string
(optional)
The rule number for the policy table entry.
targetRouteTableId?
Type:
string
(optional)
The ID of the target route table.
transitGatewayPolicyTableId?
Type:
string
(optional)
The ID of the transit gateway policy table.

.NET
Go
Java
Python
TypeScript