commonMain.aws.sdk.kotlin.services.personalize.model.EventTracker.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personalize-jvm Show documentation
Show all versions of personalize-jvm Show documentation
The AWS SDK for Kotlin client for Personalize
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.personalize.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant
/**
* Provides information about an event tracker.
*/
public class EventTracker private constructor(builder: Builder) {
/**
* The Amazon Web Services account that owns the event tracker.
*/
public val accountId: kotlin.String? = builder.accountId
/**
* The date and time (in Unix format) that the event tracker was created.
*/
public val creationDateTime: aws.smithy.kotlin.runtime.time.Instant? = builder.creationDateTime
/**
* The Amazon Resource Name (ARN) of the dataset group that receives the event data.
*/
public val datasetGroupArn: kotlin.String? = builder.datasetGroupArn
/**
* The ARN of the event tracker.
*/
public val eventTrackerArn: kotlin.String? = builder.eventTrackerArn
/**
* The date and time (in Unix time) that the event tracker was last updated.
*/
public val lastUpdatedDateTime: aws.smithy.kotlin.runtime.time.Instant? = builder.lastUpdatedDateTime
/**
* The name of the event tracker.
*/
public val name: kotlin.String? = builder.name
/**
* The status of the event tracker.
*
* An event tracker can be in one of the following states:
* + CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
* + DELETE PENDING > DELETE IN_PROGRESS
*/
public val status: kotlin.String? = builder.status
/**
* The ID of the event tracker. Include this ID in requests to the [PutEvents](https://docs.aws.amazon.com/personalize/latest/dg/API_UBS_PutEvents.html) API.
*/
public val trackingId: kotlin.String? = builder.trackingId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.personalize.model.EventTracker = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("EventTracker(")
append("accountId=$accountId,")
append("creationDateTime=$creationDateTime,")
append("datasetGroupArn=$datasetGroupArn,")
append("eventTrackerArn=$eventTrackerArn,")
append("lastUpdatedDateTime=$lastUpdatedDateTime,")
append("name=$name,")
append("status=$status,")
append("trackingId=$trackingId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = accountId?.hashCode() ?: 0
result = 31 * result + (creationDateTime?.hashCode() ?: 0)
result = 31 * result + (datasetGroupArn?.hashCode() ?: 0)
result = 31 * result + (eventTrackerArn?.hashCode() ?: 0)
result = 31 * result + (lastUpdatedDateTime?.hashCode() ?: 0)
result = 31 * result + (name?.hashCode() ?: 0)
result = 31 * result + (status?.hashCode() ?: 0)
result = 31 * result + (trackingId?.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 EventTracker
if (accountId != other.accountId) return false
if (creationDateTime != other.creationDateTime) return false
if (datasetGroupArn != other.datasetGroupArn) return false
if (eventTrackerArn != other.eventTrackerArn) return false
if (lastUpdatedDateTime != other.lastUpdatedDateTime) return false
if (name != other.name) return false
if (status != other.status) return false
if (trackingId != other.trackingId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.personalize.model.EventTracker = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Web Services account that owns the event tracker.
*/
public var accountId: kotlin.String? = null
/**
* The date and time (in Unix format) that the event tracker was created.
*/
public var creationDateTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The Amazon Resource Name (ARN) of the dataset group that receives the event data.
*/
public var datasetGroupArn: kotlin.String? = null
/**
* The ARN of the event tracker.
*/
public var eventTrackerArn: kotlin.String? = null
/**
* The date and time (in Unix time) that the event tracker was last updated.
*/
public var lastUpdatedDateTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The name of the event tracker.
*/
public var name: kotlin.String? = null
/**
* The status of the event tracker.
*
* An event tracker can be in one of the following states:
* + CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
* + DELETE PENDING > DELETE IN_PROGRESS
*/
public var status: kotlin.String? = null
/**
* The ID of the event tracker. Include this ID in requests to the [PutEvents](https://docs.aws.amazon.com/personalize/latest/dg/API_UBS_PutEvents.html) API.
*/
public var trackingId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.personalize.model.EventTracker) : this() {
this.accountId = x.accountId
this.creationDateTime = x.creationDateTime
this.datasetGroupArn = x.datasetGroupArn
this.eventTrackerArn = x.eventTrackerArn
this.lastUpdatedDateTime = x.lastUpdatedDateTime
this.name = x.name
this.status = x.status
this.trackingId = x.trackingId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.personalize.model.EventTracker = EventTracker(this)
internal fun correctErrors(): Builder {
return this
}
}
}