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

com.pulumi.azurenative.security.inputs.CspmMonitorAwsOfferingArgs 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.azurenative.security.inputs;

import com.pulumi.azurenative.security.inputs.CspmMonitorAwsOfferingNativeCloudConnectionArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * The CSPM monitoring for AWS offering
 * 
 */
public final class CspmMonitorAwsOfferingArgs extends com.pulumi.resources.ResourceArgs {

    public static final CspmMonitorAwsOfferingArgs Empty = new CspmMonitorAwsOfferingArgs();

    /**
     * The native cloud connection configuration
     * 
     */
    @Import(name="nativeCloudConnection")
    private @Nullable Output nativeCloudConnection;

    /**
     * @return The native cloud connection configuration
     * 
     */
    public Optional> nativeCloudConnection() {
        return Optional.ofNullable(this.nativeCloudConnection);
    }

    /**
     * The type of the security offering.
     * Expected value is 'CspmMonitorAws'.
     * 
     */
    @Import(name="offeringType", required=true)
    private Output offeringType;

    /**
     * @return The type of the security offering.
     * Expected value is 'CspmMonitorAws'.
     * 
     */
    public Output offeringType() {
        return this.offeringType;
    }

    private CspmMonitorAwsOfferingArgs() {}

    private CspmMonitorAwsOfferingArgs(CspmMonitorAwsOfferingArgs $) {
        this.nativeCloudConnection = $.nativeCloudConnection;
        this.offeringType = $.offeringType;
    }

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

    public static final class Builder {
        private CspmMonitorAwsOfferingArgs $;

        public Builder() {
            $ = new CspmMonitorAwsOfferingArgs();
        }

        public Builder(CspmMonitorAwsOfferingArgs defaults) {
            $ = new CspmMonitorAwsOfferingArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param nativeCloudConnection The native cloud connection configuration
         * 
         * @return builder
         * 
         */
        public Builder nativeCloudConnection(@Nullable Output nativeCloudConnection) {
            $.nativeCloudConnection = nativeCloudConnection;
            return this;
        }

        /**
         * @param nativeCloudConnection The native cloud connection configuration
         * 
         * @return builder
         * 
         */
        public Builder nativeCloudConnection(CspmMonitorAwsOfferingNativeCloudConnectionArgs nativeCloudConnection) {
            return nativeCloudConnection(Output.of(nativeCloudConnection));
        }

        /**
         * @param offeringType The type of the security offering.
         * Expected value is 'CspmMonitorAws'.
         * 
         * @return builder
         * 
         */
        public Builder offeringType(Output offeringType) {
            $.offeringType = offeringType;
            return this;
        }

        /**
         * @param offeringType The type of the security offering.
         * Expected value is 'CspmMonitorAws'.
         * 
         * @return builder
         * 
         */
        public Builder offeringType(String offeringType) {
            return offeringType(Output.of(offeringType));
        }

        public CspmMonitorAwsOfferingArgs build() {
            $.offeringType = Codegen.stringProp("offeringType").output().arg($.offeringType).require();
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy