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",
                 ExternalAuthorityConfiguration = new IpamScopeExternalAuthorityConfigurationProperty {
                     ExternalResourceIdentifier = "externalResourceIdentifier",
                     IpamScopeExternalAuthorityType = "ipamScopeExternalAuthorityType"
                 },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Description

The description of the scope.

ExternalAuthorityConfiguration

The configuration that links an Amazon VPC IPAM scope to an external authority system.

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

ExternalAuthorityConfiguration

The configuration that links an Amazon VPC IPAM scope to an external authority system.

object? ExternalAuthorityConfiguration { get; }
Property Value

object

Remarks

It specifies the type of external system and the external resource identifier that identifies your account or instance in that system.

For more information, see Integrate VPC IPAM with Infoblox infrastructure in the Amazon VPC IPAM User Guide .

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

Type union: either IResolvable or CfnIPAMScope.IIpamScopeExternalAuthorityConfigurationProperty

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