Show / Hide Table of Contents

Class CfnIPAMResourceDiscoveryAssociationProps

Properties for defining a CfnIPAMResourceDiscoveryAssociation.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamresourcediscoveryassociation.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 cfnIPAMResourceDiscoveryAssociationProps = new CfnIPAMResourceDiscoveryAssociationProps {
                 IpamId = "ipamId",
                 IpamResourceDiscoveryId = "ipamResourceDiscoveryId",

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

Synopsis

Constructors

CfnIPAMResourceDiscoveryAssociationProps()

Properties for defining a CfnIPAMResourceDiscoveryAssociation.

Properties

IpamId

The IPAM ID.

IpamResourceDiscoveryId

The resource discovery ID.

Tags

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

Constructors

CfnIPAMResourceDiscoveryAssociationProps()

Properties for defining a CfnIPAMResourceDiscoveryAssociation.

public CfnIPAMResourceDiscoveryAssociationProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamresourcediscoveryassociation.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 cfnIPAMResourceDiscoveryAssociationProps = new CfnIPAMResourceDiscoveryAssociationProps {
                 IpamId = "ipamId",
                 IpamResourceDiscoveryId = "ipamResourceDiscoveryId",

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

Properties

IpamId

The IPAM ID.

public string IpamId { get; set; }
Property Value

string

Remarks

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

IpamResourceDiscoveryId

The resource discovery ID.

public string IpamResourceDiscoveryId { get; set; }
Property Value

string

Remarks

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

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-ipamresourcediscoveryassociation.html#cfn-ec2-ipamresourcediscoveryassociation-tags

Implements

ICfnIPAMResourceDiscoveryAssociationProps
Back to top Generated by DocFX