Class CfnIPAMScopeMixinProps
Properties for CfnIPAMScopePropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnIPAMScopeMixinProps : ICfnIPAMScopeMixinProps
Syntax (vb)
Public Class CfnIPAMScopeMixinProps Implements ICfnIPAMScopeMixinProps
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.Mixins.Preview.AWS.EC2.Mixins;
var cfnIPAMScopeMixinProps = new CfnIPAMScopeMixinProps {
Description = "description",
ExternalAuthorityConfiguration = new IpamScopeExternalAuthorityConfigurationProperty {
ExternalResourceIdentifier = "externalResourceIdentifier",
IpamScopeExternalAuthorityType = "ipamScopeExternalAuthorityType"
},
IpamId = "ipamId",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnIPAMScopeMixinProps() | Properties for CfnIPAMScopePropsMixin. |
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
CfnIPAMScopeMixinProps()
Properties for CfnIPAMScopePropsMixin.
public CfnIPAMScopeMixinProps()
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.Mixins.Preview.AWS.EC2.Mixins;
var cfnIPAMScopeMixinProps = new CfnIPAMScopeMixinProps {
Description = "description",
ExternalAuthorityConfiguration = new IpamScopeExternalAuthorityConfigurationProperty {
ExternalResourceIdentifier = "externalResourceIdentifier",
IpamScopeExternalAuthorityType = "ipamScopeExternalAuthorityType"
},
IpamId = "ipamId",
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 CfnIPAMScopePropsMixin.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.