commonMain.aws.sdk.kotlin.services.appconfig.model.CreateExtensionAssociationResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appconfig-jvm Show documentation
Show all versions of appconfig-jvm Show documentation
The AWS SDK for Kotlin client for AppConfig
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appconfig.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CreateExtensionAssociationResponse private constructor(builder: Builder) {
/**
* The system-generated Amazon Resource Name (ARN) for the extension.
*/
public val arn: kotlin.String? = builder.arn
/**
* The ARN of the extension defined in the association.
*/
public val extensionArn: kotlin.String? = builder.extensionArn
/**
* The version number for the extension defined in the association.
*/
public val extensionVersionNumber: kotlin.Int = builder.extensionVersionNumber
/**
* The system-generated ID for the association.
*/
public val id: kotlin.String? = builder.id
/**
* The parameter names and values defined in the association.
*/
public val parameters: Map? = builder.parameters
/**
* The ARNs of applications, configuration profiles, or environments defined in the association.
*/
public val resourceArn: kotlin.String? = builder.resourceArn
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appconfig.model.CreateExtensionAssociationResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateExtensionAssociationResponse(")
append("arn=$arn,")
append("extensionArn=$extensionArn,")
append("extensionVersionNumber=$extensionVersionNumber,")
append("id=$id,")
append("parameters=$parameters,")
append("resourceArn=$resourceArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = arn?.hashCode() ?: 0
result = 31 * result + (extensionArn?.hashCode() ?: 0)
result = 31 * result + (extensionVersionNumber)
result = 31 * result + (id?.hashCode() ?: 0)
result = 31 * result + (parameters?.hashCode() ?: 0)
result = 31 * result + (resourceArn?.hashCode() ?: 0)
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as CreateExtensionAssociationResponse
if (arn != other.arn) return false
if (extensionArn != other.extensionArn) return false
if (extensionVersionNumber != other.extensionVersionNumber) return false
if (id != other.id) return false
if (parameters != other.parameters) return false
if (resourceArn != other.resourceArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appconfig.model.CreateExtensionAssociationResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The system-generated Amazon Resource Name (ARN) for the extension.
*/
public var arn: kotlin.String? = null
/**
* The ARN of the extension defined in the association.
*/
public var extensionArn: kotlin.String? = null
/**
* The version number for the extension defined in the association.
*/
public var extensionVersionNumber: kotlin.Int = 0
/**
* The system-generated ID for the association.
*/
public var id: kotlin.String? = null
/**
* The parameter names and values defined in the association.
*/
public var parameters: Map? = null
/**
* The ARNs of applications, configuration profiles, or environments defined in the association.
*/
public var resourceArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appconfig.model.CreateExtensionAssociationResponse) : this() {
this.arn = x.arn
this.extensionArn = x.extensionArn
this.extensionVersionNumber = x.extensionVersionNumber
this.id = x.id
this.parameters = x.parameters
this.resourceArn = x.resourceArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appconfig.model.CreateExtensionAssociationResponse = CreateExtensionAssociationResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy