Show / Hide Table of Contents

Class CfnIPAMResourceDiscoveryProps

Properties for defining a CfnIPAMResourceDiscovery.

Inheritance
object
CfnIPAMResourceDiscoveryProps
Implements
ICfnIPAMResourceDiscoveryProps
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 CfnIPAMResourceDiscoveryProps : ICfnIPAMResourceDiscoveryProps
Syntax (vb)
Public Class CfnIPAMResourceDiscoveryProps Implements ICfnIPAMResourceDiscoveryProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamresourcediscovery.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 cfnIPAMResourceDiscoveryProps = new CfnIPAMResourceDiscoveryProps {
                 Description = "description",
                 OperatingRegions = new [] { new IpamOperatingRegionProperty {
                     RegionName = "regionName"
                 } },
                 OrganizationalUnitExclusions = new [] { new IpamResourceDiscoveryOrganizationalUnitExclusionProperty {
                     OrganizationsEntityPath = "organizationsEntityPath"
                 } },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnIPAMResourceDiscoveryProps()

Properties for defining a CfnIPAMResourceDiscovery.

Properties

Description

The resource discovery description.

OperatingRegions

The operating Regions for the resource discovery.

OrganizationalUnitExclusions

If your IPAM is integrated with AWS Organizations, you can exclude an organizational unit (OU) from being managed by IPAM. When you exclude an OU, IPAM will not manage the IP addresses in accounts in that OU. For more information, see Exclude organizational units from IPAM in the Amazon Virtual Private Cloud IP Address Manager User Guide .

Tags

A tag is a label that you assign to an AWS resource.

Constructors

CfnIPAMResourceDiscoveryProps()

Properties for defining a CfnIPAMResourceDiscovery.

public CfnIPAMResourceDiscoveryProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamresourcediscovery.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 cfnIPAMResourceDiscoveryProps = new CfnIPAMResourceDiscoveryProps {
                 Description = "description",
                 OperatingRegions = new [] { new IpamOperatingRegionProperty {
                     RegionName = "regionName"
                 } },
                 OrganizationalUnitExclusions = new [] { new IpamResourceDiscoveryOrganizationalUnitExclusionProperty {
                     OrganizationsEntityPath = "organizationsEntityPath"
                 } },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Description

The resource discovery description.

public string? Description { get; set; }
Property Value

string

Remarks

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

OperatingRegions

The operating Regions for the resource discovery.

public object? OperatingRegions { get; set; }
Property Value

object

Remarks

Operating Regions are AWS Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the AWS Regions you select as operating Regions.

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

Type union: either IResolvable or (either IResolvable or CfnIPAMResourceDiscovery.IIpamOperatingRegionProperty)[]

OrganizationalUnitExclusions

If your IPAM is integrated with AWS Organizations, you can exclude an organizational unit (OU) from being managed by IPAM. When you exclude an OU, IPAM will not manage the IP addresses in accounts in that OU. For more information, see Exclude organizational units from IPAM in the Amazon Virtual Private Cloud IP Address Manager User Guide .

public object? OrganizationalUnitExclusions { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnIPAMResourceDiscovery.IIpamResourceDiscoveryOrganizationalUnitExclusionProperty)[]

Tags

A tag is a label that you assign to an AWS resource.

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

ICfnTag[]

Remarks

Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your AWS costs.

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

Implements

ICfnIPAMResourceDiscoveryProps
Back to top Generated by DocFX