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

com.pulumi.aws.guardduty.inputs.OrganizationConfigurationDatasourcesArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

There is a newer version: 6.60.0-alpha.1731982519
Show newest version
// *** 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.guardduty.inputs;

import com.pulumi.aws.guardduty.inputs.OrganizationConfigurationDatasourcesKubernetesArgs;
import com.pulumi.aws.guardduty.inputs.OrganizationConfigurationDatasourcesMalwareProtectionArgs;
import com.pulumi.aws.guardduty.inputs.OrganizationConfigurationDatasourcesS3LogsArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class OrganizationConfigurationDatasourcesArgs extends com.pulumi.resources.ResourceArgs {

    public static final OrganizationConfigurationDatasourcesArgs Empty = new OrganizationConfigurationDatasourcesArgs();

    /**
     * Enable Kubernetes Audit Logs Monitoring automatically for new member accounts.
     * 
     */
    @Import(name="kubernetes")
    private @Nullable Output kubernetes;

    /**
     * @return Enable Kubernetes Audit Logs Monitoring automatically for new member accounts.
     * 
     */
    public Optional> kubernetes() {
        return Optional.ofNullable(this.kubernetes);
    }

    /**
     * Enable Malware Protection automatically for new member accounts.
     * 
     */
    @Import(name="malwareProtection")
    private @Nullable Output malwareProtection;

    /**
     * @return Enable Malware Protection automatically for new member accounts.
     * 
     */
    public Optional> malwareProtection() {
        return Optional.ofNullable(this.malwareProtection);
    }

    /**
     * Enable S3 Protection automatically for new member accounts.
     * 
     */
    @Import(name="s3Logs")
    private @Nullable Output s3Logs;

    /**
     * @return Enable S3 Protection automatically for new member accounts.
     * 
     */
    public Optional> s3Logs() {
        return Optional.ofNullable(this.s3Logs);
    }

    private OrganizationConfigurationDatasourcesArgs() {}

    private OrganizationConfigurationDatasourcesArgs(OrganizationConfigurationDatasourcesArgs $) {
        this.kubernetes = $.kubernetes;
        this.malwareProtection = $.malwareProtection;
        this.s3Logs = $.s3Logs;
    }

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

    public static final class Builder {
        private OrganizationConfigurationDatasourcesArgs $;

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

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

        /**
         * @param kubernetes Enable Kubernetes Audit Logs Monitoring automatically for new member accounts.
         * 
         * @return builder
         * 
         */
        public Builder kubernetes(@Nullable Output kubernetes) {
            $.kubernetes = kubernetes;
            return this;
        }

        /**
         * @param kubernetes Enable Kubernetes Audit Logs Monitoring automatically for new member accounts.
         * 
         * @return builder
         * 
         */
        public Builder kubernetes(OrganizationConfigurationDatasourcesKubernetesArgs kubernetes) {
            return kubernetes(Output.of(kubernetes));
        }

        /**
         * @param malwareProtection Enable Malware Protection automatically for new member accounts.
         * 
         * @return builder
         * 
         */
        public Builder malwareProtection(@Nullable Output malwareProtection) {
            $.malwareProtection = malwareProtection;
            return this;
        }

        /**
         * @param malwareProtection Enable Malware Protection automatically for new member accounts.
         * 
         * @return builder
         * 
         */
        public Builder malwareProtection(OrganizationConfigurationDatasourcesMalwareProtectionArgs malwareProtection) {
            return malwareProtection(Output.of(malwareProtection));
        }

        /**
         * @param s3Logs Enable S3 Protection automatically for new member accounts.
         * 
         * @return builder
         * 
         */
        public Builder s3Logs(@Nullable Output s3Logs) {
            $.s3Logs = s3Logs;
            return this;
        }

        /**
         * @param s3Logs Enable S3 Protection automatically for new member accounts.
         * 
         * @return builder
         * 
         */
        public Builder s3Logs(OrganizationConfigurationDatasourcesS3LogsArgs s3Logs) {
            return s3Logs(Output.of(s3Logs));
        }

        public OrganizationConfigurationDatasourcesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy