![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.ec2.kotlin.outputs.IpamPoolSourceResource.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ec2.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The resource associated with this pool's space. Depending on the ResourceType, setting a SourceResource changes which space can be provisioned in this pool and which types of resources can receive allocations
* @property resourceId The source resource ID.
* @property resourceOwner The source resource owner.
* @property resourceRegion The source resource Region.
* @property resourceType The source resource type.
*/
public data class IpamPoolSourceResource(
public val resourceId: String,
public val resourceOwner: String,
public val resourceRegion: String,
public val resourceType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ec2.outputs.IpamPoolSourceResource): IpamPoolSourceResource = IpamPoolSourceResource(
resourceId = javaType.resourceId(),
resourceOwner = javaType.resourceOwner(),
resourceRegion = javaType.resourceRegion(),
resourceType = javaType.resourceType(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy