commonMain.aws.sdk.kotlin.services.cloudwatchlogs.model.ResourcePolicy.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
/**
* A policy enabling one or more entities to put logs to a log group in this account.
*/
public class ResourcePolicy private constructor(builder: Builder) {
/**
* Timestamp showing when this policy was last updated, expressed as the number of milliseconds after `Jan 1, 1970 00:00:00 UTC`.
*/
public val lastUpdatedTime: kotlin.Long? = builder.lastUpdatedTime
/**
* The details of the policy.
*/
public val policyDocument: kotlin.String? = builder.policyDocument
/**
* The name of the resource policy.
*/
public val policyName: kotlin.String? = builder.policyName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cloudwatchlogs.model.ResourcePolicy = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ResourcePolicy(")
append("lastUpdatedTime=$lastUpdatedTime,")
append("policyDocument=$policyDocument,")
append("policyName=$policyName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = lastUpdatedTime?.hashCode() ?: 0
result = 31 * result + (policyDocument?.hashCode() ?: 0)
result = 31 * result + (policyName?.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 ResourcePolicy
if (lastUpdatedTime != other.lastUpdatedTime) return false
if (policyDocument != other.policyDocument) return false
if (policyName != other.policyName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cloudwatchlogs.model.ResourcePolicy = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Timestamp showing when this policy was last updated, expressed as the number of milliseconds after `Jan 1, 1970 00:00:00 UTC`.
*/
public var lastUpdatedTime: kotlin.Long? = null
/**
* The details of the policy.
*/
public var policyDocument: kotlin.String? = null
/**
* The name of the resource policy.
*/
public var policyName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cloudwatchlogs.model.ResourcePolicy) : this() {
this.lastUpdatedTime = x.lastUpdatedTime
this.policyDocument = x.policyDocument
this.policyName = x.policyName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cloudwatchlogs.model.ResourcePolicy = ResourcePolicy(this)
internal fun correctErrors(): Builder {
return this
}
}
}