All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.s3.kotlin.inputs.BucketReplicationConfigRuleDestinationMetricsArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.s3.kotlin.inputs

import com.pulumi.aws.s3.inputs.BucketReplicationConfigRuleDestinationMetricsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 *
 * @property eventThreshold Configuration block that specifies the time threshold for emitting the `s3:Replication:OperationMissedThreshold` event. See below.
 * @property status Status of the Destination Metrics. Either `"Enabled"` or `"Disabled"`.
 */
public data class BucketReplicationConfigRuleDestinationMetricsArgs(
    public val eventThreshold: Output? = null,
    public val status: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.s3.inputs.BucketReplicationConfigRuleDestinationMetricsArgs = com.pulumi.aws.s3.inputs.BucketReplicationConfigRuleDestinationMetricsArgs.builder()
        .eventThreshold(eventThreshold?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
        .status(status.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [BucketReplicationConfigRuleDestinationMetricsArgs].
 */
@PulumiTagMarker
public class BucketReplicationConfigRuleDestinationMetricsArgsBuilder internal constructor() {
    private var eventThreshold:
        Output? = null

    private var status: Output? = null

    /**
     * @param value Configuration block that specifies the time threshold for emitting the `s3:Replication:OperationMissedThreshold` event. See below.
     */
    @JvmName("bybgjlxoiehlwjxa")
    public suspend fun eventThreshold(`value`: Output) {
        this.eventThreshold = value
    }

    /**
     * @param value Status of the Destination Metrics. Either `"Enabled"` or `"Disabled"`.
     */
    @JvmName("sxjxvscacxelhnmr")
    public suspend fun status(`value`: Output) {
        this.status = value
    }

    /**
     * @param value Configuration block that specifies the time threshold for emitting the `s3:Replication:OperationMissedThreshold` event. See below.
     */
    @JvmName("atajjyhovjtuqbqe")
    public suspend fun eventThreshold(`value`: BucketReplicationConfigRuleDestinationMetricsEventThresholdArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.eventThreshold = mapped
    }

    /**
     * @param argument Configuration block that specifies the time threshold for emitting the `s3:Replication:OperationMissedThreshold` event. See below.
     */
    @JvmName("mqljejrkbgcxfpid")
    public suspend fun eventThreshold(argument: suspend BucketReplicationConfigRuleDestinationMetricsEventThresholdArgsBuilder.() -> Unit) {
        val toBeMapped =
            BucketReplicationConfigRuleDestinationMetricsEventThresholdArgsBuilder().applySuspend {
                argument()
            }.build()
        val mapped = of(toBeMapped)
        this.eventThreshold = mapped
    }

    /**
     * @param value Status of the Destination Metrics. Either `"Enabled"` or `"Disabled"`.
     */
    @JvmName("umuyayappbfscpbi")
    public suspend fun status(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.status = mapped
    }

    internal fun build(): BucketReplicationConfigRuleDestinationMetricsArgs =
        BucketReplicationConfigRuleDestinationMetricsArgs(
            eventThreshold = eventThreshold,
            status = status ?: throw PulumiNullFieldException("status"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy