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

com.pulumi.aws.devopsguru.outputs.ServiceIntegrationLogsAnomalyDetection Maven / Gradle / Ivy

// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.aws.devopsguru.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class ServiceIntegrationLogsAnomalyDetection {
    /**
     * @return Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups. Valid values are `DISABLED` and `ENABLED`.
     * 
     */
    private @Nullable String optInStatus;

    private ServiceIntegrationLogsAnomalyDetection() {}
    /**
     * @return Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups. Valid values are `DISABLED` and `ENABLED`.
     * 
     */
    public Optional optInStatus() {
        return Optional.ofNullable(this.optInStatus);
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(ServiceIntegrationLogsAnomalyDetection defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String optInStatus;
        public Builder() {}
        public Builder(ServiceIntegrationLogsAnomalyDetection defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.optInStatus = defaults.optInStatus;
        }

        @CustomType.Setter
        public Builder optInStatus(@Nullable String optInStatus) {

            this.optInStatus = optInStatus;
            return this;
        }
        public ServiceIntegrationLogsAnomalyDetection build() {
            final var _resultValue = new ServiceIntegrationLogsAnomalyDetection();
            _resultValue.optInStatus = optInStatus;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy