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

com.pulumi.aws.s3control.inputs.StorageLensConfigurationStorageLensConfigurationAwsOrgArgs Maven / Gradle / Ivy

Go to download

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

The 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.s3control.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


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

    public static final StorageLensConfigurationStorageLensConfigurationAwsOrgArgs Empty = new StorageLensConfigurationStorageLensConfigurationAwsOrgArgs();

    /**
     * The Amazon Resource Name (ARN) of the Amazon Web Services organization.
     * 
     */
    @Import(name="arn", required=true)
    private Output arn;

    /**
     * @return The Amazon Resource Name (ARN) of the Amazon Web Services organization.
     * 
     */
    public Output arn() {
        return this.arn;
    }

    private StorageLensConfigurationStorageLensConfigurationAwsOrgArgs() {}

    private StorageLensConfigurationStorageLensConfigurationAwsOrgArgs(StorageLensConfigurationStorageLensConfigurationAwsOrgArgs $) {
        this.arn = $.arn;
    }

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

    public static final class Builder {
        private StorageLensConfigurationStorageLensConfigurationAwsOrgArgs $;

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

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

        /**
         * @param arn The Amazon Resource Name (ARN) of the Amazon Web Services organization.
         * 
         * @return builder
         * 
         */
        public Builder arn(Output arn) {
            $.arn = arn;
            return this;
        }

        /**
         * @param arn The Amazon Resource Name (ARN) of the Amazon Web Services organization.
         * 
         * @return builder
         * 
         */
        public Builder arn(String arn) {
            return arn(Output.of(arn));
        }

        public StorageLensConfigurationStorageLensConfigurationAwsOrgArgs build() {
            if ($.arn == null) {
                throw new MissingRequiredPropertyException("StorageLensConfigurationStorageLensConfigurationAwsOrgArgs", "arn");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy