commonMain.aws.sdk.kotlin.services.cloudwatchlogs.model.PutDataProtectionPolicyResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudwatchlogs-jvm Show documentation
Show all versions of cloudwatchlogs-jvm Show documentation
The AWS SDK for Kotlin client for CloudWatch Logs
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudwatchlogs.model
import aws.smithy.kotlin.runtime.SdkDsl
public class PutDataProtectionPolicyResponse private constructor(builder: Builder) {
/**
* The date and time that this policy was most recently updated.
*/
public val lastUpdatedTime: kotlin.Long? = builder.lastUpdatedTime
/**
* The log group name or ARN that you specified in your request.
*/
public val logGroupIdentifier: kotlin.String? = builder.logGroupIdentifier
/**
* The data protection policy used for this log group.
*/
public val policyDocument: kotlin.String? = builder.policyDocument
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cloudwatchlogs.model.PutDataProtectionPolicyResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PutDataProtectionPolicyResponse(")
append("lastUpdatedTime=$lastUpdatedTime,")
append("logGroupIdentifier=$logGroupIdentifier,")
append("policyDocument=$policyDocument")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = lastUpdatedTime?.hashCode() ?: 0
result = 31 * result + (logGroupIdentifier?.hashCode() ?: 0)
result = 31 * result + (policyDocument?.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 PutDataProtectionPolicyResponse
if (lastUpdatedTime != other.lastUpdatedTime) return false
if (logGroupIdentifier != other.logGroupIdentifier) return false
if (policyDocument != other.policyDocument) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cloudwatchlogs.model.PutDataProtectionPolicyResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The date and time that this policy was most recently updated.
*/
public var lastUpdatedTime: kotlin.Long? = null
/**
* The log group name or ARN that you specified in your request.
*/
public var logGroupIdentifier: kotlin.String? = null
/**
* The data protection policy used for this log group.
*/
public var policyDocument: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cloudwatchlogs.model.PutDataProtectionPolicyResponse) : this() {
this.lastUpdatedTime = x.lastUpdatedTime
this.logGroupIdentifier = x.logGroupIdentifier
this.policyDocument = x.policyDocument
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cloudwatchlogs.model.PutDataProtectionPolicyResponse = PutDataProtectionPolicyResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}