Show / Hide Table of Contents

Class CfnTransitGatewayMeteringPolicyProps

Properties for defining a CfnTransitGatewayMeteringPolicy.

Inheritance
object
CfnTransitGatewayMeteringPolicyProps
Implements
ICfnTransitGatewayMeteringPolicyProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTransitGatewayMeteringPolicyProps : ICfnTransitGatewayMeteringPolicyProps
Syntax (vb)
Public Class CfnTransitGatewayMeteringPolicyProps Implements ICfnTransitGatewayMeteringPolicyProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.EC2;

             var cfnTransitGatewayMeteringPolicyProps = new CfnTransitGatewayMeteringPolicyProps {
                 TransitGatewayId = "transitGatewayId",

                 // the properties below are optional
                 MiddleboxAttachmentIds = new [] { "middleboxAttachmentIds" },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnTransitGatewayMeteringPolicyProps()

Properties for defining a CfnTransitGatewayMeteringPolicy.

Properties

MiddleboxAttachmentIds

The IDs of the middlebox attachments associated with the metering policy.

Tags

The tags assigned to the transit gateway metering policy.

TransitGatewayId

The ID of the transit gateway associated with the metering policy.

Constructors

CfnTransitGatewayMeteringPolicyProps()

Properties for defining a CfnTransitGatewayMeteringPolicy.

public CfnTransitGatewayMeteringPolicyProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.EC2;

             var cfnTransitGatewayMeteringPolicyProps = new CfnTransitGatewayMeteringPolicyProps {
                 TransitGatewayId = "transitGatewayId",

                 // the properties below are optional
                 MiddleboxAttachmentIds = new [] { "middleboxAttachmentIds" },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

MiddleboxAttachmentIds

The IDs of the middlebox attachments associated with the metering policy.

public string[]? MiddleboxAttachmentIds { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html#cfn-ec2-transitgatewaymeteringpolicy-middleboxattachmentids

Tags

The tags assigned to the transit gateway metering policy.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html#cfn-ec2-transitgatewaymeteringpolicy-tags

TransitGatewayId

The ID of the transit gateway associated with the metering policy.

public string TransitGatewayId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html#cfn-ec2-transitgatewaymeteringpolicy-transitgatewayid

Implements

ICfnTransitGatewayMeteringPolicyProps
Back to top Generated by DocFX