Show / Hide Table of Contents

Interface ICfnIPAMScopeProps

Properties for defining a CfnIPAMScope.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnIPAMScopeProps
Syntax (vb)
Public Interface ICfnIPAMScopeProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamscope.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 cfnIPAMScopeProps = new CfnIPAMScopeProps {
                 IpamId = "ipamId",

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

Synopsis

Properties

Description

The description of the scope.

IpamId

The ID of the IPAM for which you're creating this scope.

Tags

The key/value combination of a tag assigned to the resource.

Properties

Description

The description of the scope.

string? Description { get; }
Property Value

string

Remarks

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

IpamId

The ID of the IPAM for which you're creating this scope.

string IpamId { get; }
Property Value

string

Remarks

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

Tags

The key/value combination of a tag assigned to the resource.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA , specify tag:Owner for the filter name and TeamA for the filter value.

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

Back to top Generated by DocFX