Class CfnIPAMScopeProps
Properties for defining a CfnIPAMScope.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnIPAMScopeProps : ICfnIPAMScopeProps
Syntax (vb)
Public Class CfnIPAMScopeProps Implements 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
Constructors
| CfnIPAMScopeProps() | Properties for defining a |
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. |
Constructors
CfnIPAMScopeProps()
Properties for defining a CfnIPAMScope.
public CfnIPAMScopeProps()
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"
} }
};
Properties
Description
The description of the scope.
public string? Description { get; set; }
Property Value
Remarks
ExternalAuthorityConfiguration
The configuration that links an Amazon VPC IPAM scope to an external authority system.
public object? ExternalAuthorityConfiguration { get; set; }
Property Value
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 .
Type union: either IResolvable or CfnIPAMScope.IIpamScopeExternalAuthorityConfigurationProperty
IpamId
The ID of the IPAM for which you're creating this scope.
public string IpamId { get; set; }
Property Value
Remarks
Tags
The key/value combination of a tag assigned to the resource.
public ICfnTag[]? Tags { get; set; }
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.