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",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
Description | The description of the scope. |
Ipam |
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.
virtual string Description { get; }
Property Value
System.
Remarks
IpamId
The ID of the IPAM for which you're creating this scope.
string IpamId { get; }
Property Value
System.
Remarks
Tags
The key/value combination of a tag assigned to the resource.
virtual ICfnTag[] Tags { get; }
Property Value
ICfn
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.