interface CfnIPAMResourceDiscoveryAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnIPAMResourceDiscoveryAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnIPAMResourceDiscoveryAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnIPAMResourceDiscoveryAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnIPAMResourceDiscoveryAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnIPAMResourceDiscoveryAssociationMixinProps: ec2_mixins.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