cloudshift.awscdk.dsl.services.ec2.CfnIPAMResourceDiscoveryAssociationDsl.kt Maven / Gradle / Ivy
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package cloudshift.awscdk.dsl.services.ec2
import cloudshift.awscdk.common.CdkDslMarker
import cloudshift.awscdk.dsl.CfnTagDsl
import kotlin.String
import kotlin.Unit
import kotlin.collections.Collection
import kotlin.collections.MutableList
import software.amazon.awscdk.CfnTag
import software.amazon.awscdk.services.ec2.CfnIPAMResourceDiscoveryAssociation
import software.constructs.Construct
/**
* An IPAM resource discovery association.
*
* An associated resource discovery is a resource discovery that has been associated with an IPAM.
* IPAM aggregates the resource CIDRs discovered by the associated resource discovery.
*
* Example:
*
* ```
* // The code below shows an example of how to instantiate this type.
* // The values are placeholders you should change.
* import software.amazon.awscdk.services.ec2.*;
* CfnIPAMResourceDiscoveryAssociation cfnIPAMResourceDiscoveryAssociation =
* CfnIPAMResourceDiscoveryAssociation.Builder.create(this, "MyCfnIPAMResourceDiscoveryAssociation")
* .ipamId("ipamId")
* .ipamResourceDiscoveryId("ipamResourceDiscoveryId")
* // the properties below are optional
* .tags(List.of(CfnTag.builder()
* .key("key")
* .value("value")
* .build()))
* .build();
* ```
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamresourcediscoveryassociation.html)
*/
@CdkDslMarker
public class CfnIPAMResourceDiscoveryAssociationDsl(
scope: Construct,
id: String,
) {
private val cdkBuilder: CfnIPAMResourceDiscoveryAssociation.Builder =
CfnIPAMResourceDiscoveryAssociation.Builder.create(scope, id)
private val _tags: MutableList = mutableListOf()
/**
* The IPAM ID.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamresourcediscoveryassociation.html#cfn-ec2-ipamresourcediscoveryassociation-ipamid)
* @param ipamId The IPAM ID.
*/
public fun ipamId(ipamId: String) {
cdkBuilder.ipamId(ipamId)
}
/**
* The resource discovery ID.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamresourcediscoveryassociation.html#cfn-ec2-ipamresourcediscoveryassociation-ipamresourcediscoveryid)
* @param ipamResourceDiscoveryId The resource discovery ID.
*/
public fun ipamResourceDiscoveryId(ipamResourceDiscoveryId: String) {
cdkBuilder.ipamResourceDiscoveryId(ipamResourceDiscoveryId)
}
/**
* 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.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamresourcediscoveryassociation.html#cfn-ec2-ipamresourcediscoveryassociation-tags)
* @param tags A tag is a label that you assign to an AWS resource.
*/
public fun tags(tags: CfnTagDsl.() -> Unit) {
_tags.add(CfnTagDsl().apply(tags).build())
}
/**
* 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.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamresourcediscoveryassociation.html#cfn-ec2-ipamresourcediscoveryassociation-tags)
* @param tags A tag is a label that you assign to an AWS resource.
*/
public fun tags(tags: Collection) {
_tags.addAll(tags)
}
public fun build(): CfnIPAMResourceDiscoveryAssociation {
if(_tags.isNotEmpty()) cdkBuilder.tags(_tags)
return cdkBuilder.build()
}
}