commonMain.aws.sdk.kotlin.services.cloudwatchlogs.model.DisassociateKmsKeyRequest.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudwatchlogs.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DisassociateKmsKeyRequest private constructor(builder: Builder) {
/**
* The name of the log group.
*
* In your `DisassociateKmsKey` operation, you must specify either the `resourceIdentifier` parameter or the `logGroup` parameter, but you can't specify both.
*/
public val logGroupName: kotlin.String? = builder.logGroupName
/**
* Specifies the target for this operation. You must specify one of the following:
* + Specify the ARN of a log group to stop having CloudWatch Logs use the KMS key to encrypt log events that are ingested and stored by that log group. After you run this operation, CloudWatch Logs encrypts ingested log events with the default CloudWatch Logs method. The log group ARN must be in the following format. Replace *REGION* and *ACCOUNT_ID* with your Region and account ID.`arn:aws:logs:REGION:ACCOUNT_ID:log-group:LOG_GROUP_NAME `
* + Specify the following ARN to stop using this key to encrypt the results of future [StartQuery](https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html) operations in this account. Replace *REGION* and *ACCOUNT_ID* with your Region and account ID.`arn:aws:logs:REGION:ACCOUNT_ID:query-result:*`
*
* In your `DisssociateKmsKey` operation, you must specify either the `resourceIdentifier` parameter or the `logGroup` parameter, but you can't specify both.
*/
public val resourceIdentifier: kotlin.String? = builder.resourceIdentifier
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cloudwatchlogs.model.DisassociateKmsKeyRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DisassociateKmsKeyRequest(")
append("logGroupName=$logGroupName,")
append("resourceIdentifier=$resourceIdentifier")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = logGroupName?.hashCode() ?: 0
result = 31 * result + (resourceIdentifier?.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 DisassociateKmsKeyRequest
if (logGroupName != other.logGroupName) return false
if (resourceIdentifier != other.resourceIdentifier) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cloudwatchlogs.model.DisassociateKmsKeyRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the log group.
*
* In your `DisassociateKmsKey` operation, you must specify either the `resourceIdentifier` parameter or the `logGroup` parameter, but you can't specify both.
*/
public var logGroupName: kotlin.String? = null
/**
* Specifies the target for this operation. You must specify one of the following:
* + Specify the ARN of a log group to stop having CloudWatch Logs use the KMS key to encrypt log events that are ingested and stored by that log group. After you run this operation, CloudWatch Logs encrypts ingested log events with the default CloudWatch Logs method. The log group ARN must be in the following format. Replace *REGION* and *ACCOUNT_ID* with your Region and account ID.`arn:aws:logs:REGION:ACCOUNT_ID:log-group:LOG_GROUP_NAME `
* + Specify the following ARN to stop using this key to encrypt the results of future [StartQuery](https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html) operations in this account. Replace *REGION* and *ACCOUNT_ID* with your Region and account ID.`arn:aws:logs:REGION:ACCOUNT_ID:query-result:*`
*
* In your `DisssociateKmsKey` operation, you must specify either the `resourceIdentifier` parameter or the `logGroup` parameter, but you can't specify both.
*/
public var resourceIdentifier: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cloudwatchlogs.model.DisassociateKmsKeyRequest) : this() {
this.logGroupName = x.logGroupName
this.resourceIdentifier = x.resourceIdentifier
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cloudwatchlogs.model.DisassociateKmsKeyRequest = DisassociateKmsKeyRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}