Show / Hide Table of Contents

Interface ICfnIPAMResourceDiscoveryAssociationProps

Properties for defining a CfnIPAMResourceDiscoveryAssociation.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnIPAMResourceDiscoveryAssociationProps
Syntax (vb)
Public Interface 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

Properties

IpamId

The IPAM ID.

IpamResourceDiscoveryId

The resource discovery ID.

Tags

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

Properties

IpamId

The IPAM ID.

string IpamId { get; }
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.

string IpamResourceDiscoveryId { get; }
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.

ICfnTag[]? Tags { get; }
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

Back to top Generated by DocFX