commonMain.aws.sdk.kotlin.services.applicationinsights.model.LogPattern.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of applicationinsights-jvm Show documentation
Show all versions of applicationinsights-jvm Show documentation
The AWS SDK for Kotlin client for Application Insights
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.applicationinsights.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* An object that defines the log patterns that belongs to a `LogPatternSet`.
*/
public class LogPattern private constructor(builder: Builder) {
/**
* A regular expression that defines the log pattern. A log pattern can contain as many as 50 characters, and it cannot be empty. The pattern must be DFA compatible. Patterns that utilize forward lookahead or backreference constructions are not supported.
*/
public val pattern: kotlin.String? = builder.pattern
/**
* The name of the log pattern. A log pattern name can contain as many as 50 characters, and it cannot be empty. The characters can be Unicode letters, digits, or one of the following symbols: period, dash, underscore.
*/
public val patternName: kotlin.String? = builder.patternName
/**
* The name of the log pattern. A log pattern name can contain as many as 30 characters, and it cannot be empty. The characters can be Unicode letters, digits, or one of the following symbols: period, dash, underscore.
*/
public val patternSetName: kotlin.String? = builder.patternSetName
/**
* Rank of the log pattern. Must be a value between `1` and `1,000,000`. The patterns are sorted by rank, so we recommend that you set your highest priority patterns with the lowest rank. A pattern of rank `1` will be the first to get matched to a log line. A pattern of rank `1,000,000` will be last to get matched. When you configure custom log patterns from the console, a `Low` severity pattern translates to a `750,000` rank. A `Medium` severity pattern translates to a `500,000` rank. And a `High` severity pattern translates to a `250,000` rank. Rank values less than `1` or greater than `1,000,000` are reserved for AWS-provided patterns.
*/
public val rank: kotlin.Int = builder.rank
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.applicationinsights.model.LogPattern = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("LogPattern(")
append("pattern=$pattern,")
append("patternName=$patternName,")
append("patternSetName=$patternSetName,")
append("rank=$rank")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = pattern?.hashCode() ?: 0
result = 31 * result + (patternName?.hashCode() ?: 0)
result = 31 * result + (patternSetName?.hashCode() ?: 0)
result = 31 * result + (rank)
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 LogPattern
if (pattern != other.pattern) return false
if (patternName != other.patternName) return false
if (patternSetName != other.patternSetName) return false
if (rank != other.rank) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.applicationinsights.model.LogPattern = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A regular expression that defines the log pattern. A log pattern can contain as many as 50 characters, and it cannot be empty. The pattern must be DFA compatible. Patterns that utilize forward lookahead or backreference constructions are not supported.
*/
public var pattern: kotlin.String? = null
/**
* The name of the log pattern. A log pattern name can contain as many as 50 characters, and it cannot be empty. The characters can be Unicode letters, digits, or one of the following symbols: period, dash, underscore.
*/
public var patternName: kotlin.String? = null
/**
* The name of the log pattern. A log pattern name can contain as many as 30 characters, and it cannot be empty. The characters can be Unicode letters, digits, or one of the following symbols: period, dash, underscore.
*/
public var patternSetName: kotlin.String? = null
/**
* Rank of the log pattern. Must be a value between `1` and `1,000,000`. The patterns are sorted by rank, so we recommend that you set your highest priority patterns with the lowest rank. A pattern of rank `1` will be the first to get matched to a log line. A pattern of rank `1,000,000` will be last to get matched. When you configure custom log patterns from the console, a `Low` severity pattern translates to a `750,000` rank. A `Medium` severity pattern translates to a `500,000` rank. And a `High` severity pattern translates to a `250,000` rank. Rank values less than `1` or greater than `1,000,000` are reserved for AWS-provided patterns.
*/
public var rank: kotlin.Int = 0
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.applicationinsights.model.LogPattern) : this() {
this.pattern = x.pattern
this.patternName = x.patternName
this.patternSetName = x.patternSetName
this.rank = x.rank
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.applicationinsights.model.LogPattern = LogPattern(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy