interface CfnIPAMResourceDiscoveryAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnIPAMResourceDiscoveryAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnIPAMResourceDiscoveryAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnIPAMResourceDiscoveryAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnIPAMResourceDiscoveryAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnIPAMResourceDiscoveryAssociationMixinProps |
Properties for CfnIPAMResourceDiscoveryAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnIPAMResourceDiscoveryAssociationMixinProps: ec2.CfnIPAMResourceDiscoveryAssociationMixinProps = {
ipamId: 'ipamId',
ipamResourceDiscoveryId: 'ipamResourceDiscoveryId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| ipam | string | The IPAM ID. |
| ipam | string | The resource discovery ID. |
| tags? | Cfn[] | A tag is a label that you assign to an AWS resource. |
ipamId?
Type:
string
(optional)
The IPAM ID.
ipamResourceDiscoveryId?
Type:
string
(optional)
The resource discovery ID.
tags?
Type:
Cfn[]
(optional)
A tag is a label that you assign to an AWS resource.
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.

.NET
Go
Java
Python
TypeScript