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

com.pulumi.azurenative.awsconnector.inputs.AwsGuardDutyDetectorPropertiesArgs 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.awsconnector.inputs;

import com.pulumi.azurenative.awsconnector.inputs.CFNDataSourceConfigurationsArgs;
import com.pulumi.azurenative.awsconnector.inputs.CFNFeatureConfigurationArgs;
import com.pulumi.azurenative.awsconnector.inputs.TagItemArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Definition of awsGuardDutyDetector
 * 
 */
public final class AwsGuardDutyDetectorPropertiesArgs extends com.pulumi.resources.ResourceArgs {

    public static final AwsGuardDutyDetectorPropertiesArgs Empty = new AwsGuardDutyDetectorPropertiesArgs();

    /**
     * Property dataSources
     * 
     */
    @Import(name="dataSources")
    private @Nullable Output dataSources;

    /**
     * @return Property dataSources
     * 
     */
    public Optional> dataSources() {
        return Optional.ofNullable(this.dataSources);
    }

    /**
     * Property enable
     * 
     */
    @Import(name="enable")
    private @Nullable Output enable;

    /**
     * @return Property enable
     * 
     */
    public Optional> enable() {
        return Optional.ofNullable(this.enable);
    }

    /**
     * Property features
     * 
     */
    @Import(name="features")
    private @Nullable Output> features;

    /**
     * @return Property features
     * 
     */
    public Optional>> features() {
        return Optional.ofNullable(this.features);
    }

    /**
     * Property findingPublishingFrequency
     * 
     */
    @Import(name="findingPublishingFrequency")
    private @Nullable Output findingPublishingFrequency;

    /**
     * @return Property findingPublishingFrequency
     * 
     */
    public Optional> findingPublishingFrequency() {
        return Optional.ofNullable(this.findingPublishingFrequency);
    }

    /**
     * Property id
     * 
     */
    @Import(name="id")
    private @Nullable Output id;

    /**
     * @return Property id
     * 
     */
    public Optional> id() {
        return Optional.ofNullable(this.id);
    }

    /**
     * Property tags
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return Property tags
     * 
     */
    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    private AwsGuardDutyDetectorPropertiesArgs() {}

    private AwsGuardDutyDetectorPropertiesArgs(AwsGuardDutyDetectorPropertiesArgs $) {
        this.dataSources = $.dataSources;
        this.enable = $.enable;
        this.features = $.features;
        this.findingPublishingFrequency = $.findingPublishingFrequency;
        this.id = $.id;
        this.tags = $.tags;
    }

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

    public static final class Builder {
        private AwsGuardDutyDetectorPropertiesArgs $;

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

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

        /**
         * @param dataSources Property dataSources
         * 
         * @return builder
         * 
         */
        public Builder dataSources(@Nullable Output dataSources) {
            $.dataSources = dataSources;
            return this;
        }

        /**
         * @param dataSources Property dataSources
         * 
         * @return builder
         * 
         */
        public Builder dataSources(CFNDataSourceConfigurationsArgs dataSources) {
            return dataSources(Output.of(dataSources));
        }

        /**
         * @param enable Property enable
         * 
         * @return builder
         * 
         */
        public Builder enable(@Nullable Output enable) {
            $.enable = enable;
            return this;
        }

        /**
         * @param enable Property enable
         * 
         * @return builder
         * 
         */
        public Builder enable(Boolean enable) {
            return enable(Output.of(enable));
        }

        /**
         * @param features Property features
         * 
         * @return builder
         * 
         */
        public Builder features(@Nullable Output> features) {
            $.features = features;
            return this;
        }

        /**
         * @param features Property features
         * 
         * @return builder
         * 
         */
        public Builder features(List features) {
            return features(Output.of(features));
        }

        /**
         * @param features Property features
         * 
         * @return builder
         * 
         */
        public Builder features(CFNFeatureConfigurationArgs... features) {
            return features(List.of(features));
        }

        /**
         * @param findingPublishingFrequency Property findingPublishingFrequency
         * 
         * @return builder
         * 
         */
        public Builder findingPublishingFrequency(@Nullable Output findingPublishingFrequency) {
            $.findingPublishingFrequency = findingPublishingFrequency;
            return this;
        }

        /**
         * @param findingPublishingFrequency Property findingPublishingFrequency
         * 
         * @return builder
         * 
         */
        public Builder findingPublishingFrequency(String findingPublishingFrequency) {
            return findingPublishingFrequency(Output.of(findingPublishingFrequency));
        }

        /**
         * @param id Property id
         * 
         * @return builder
         * 
         */
        public Builder id(@Nullable Output id) {
            $.id = id;
            return this;
        }

        /**
         * @param id Property id
         * 
         * @return builder
         * 
         */
        public Builder id(String id) {
            return id(Output.of(id));
        }

        /**
         * @param tags Property tags
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        /**
         * @param tags Property tags
         * 
         * @return builder
         * 
         */
        public Builder tags(List tags) {
            return tags(Output.of(tags));
        }

        /**
         * @param tags Property tags
         * 
         * @return builder
         * 
         */
        public Builder tags(TagItemArgs... tags) {
            return tags(List.of(tags));
        }

        public AwsGuardDutyDetectorPropertiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy