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

com.pulumi.aws.kinesisanalyticsv2.inputs.ApplicationApplicationConfigurationApplicationCodeConfigurationCodeContentArgs 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.kinesisanalyticsv2.inputs;

import com.pulumi.aws.kinesisanalyticsv2.inputs.ApplicationApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final ApplicationApplicationConfigurationApplicationCodeConfigurationCodeContentArgs Empty = new ApplicationApplicationConfigurationApplicationCodeConfigurationCodeContentArgs();

    /**
     * Information about the Amazon S3 bucket containing the application code.
     * 
     */
    @Import(name="s3ContentLocation")
    private @Nullable Output s3ContentLocation;

    /**
     * @return Information about the Amazon S3 bucket containing the application code.
     * 
     */
    public Optional> s3ContentLocation() {
        return Optional.ofNullable(this.s3ContentLocation);
    }

    /**
     * The text-format code for the application.
     * 
     */
    @Import(name="textContent")
    private @Nullable Output textContent;

    /**
     * @return The text-format code for the application.
     * 
     */
    public Optional> textContent() {
        return Optional.ofNullable(this.textContent);
    }

    private ApplicationApplicationConfigurationApplicationCodeConfigurationCodeContentArgs() {}

    private ApplicationApplicationConfigurationApplicationCodeConfigurationCodeContentArgs(ApplicationApplicationConfigurationApplicationCodeConfigurationCodeContentArgs $) {
        this.s3ContentLocation = $.s3ContentLocation;
        this.textContent = $.textContent;
    }

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

    public static final class Builder {
        private ApplicationApplicationConfigurationApplicationCodeConfigurationCodeContentArgs $;

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

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

        /**
         * @param s3ContentLocation Information about the Amazon S3 bucket containing the application code.
         * 
         * @return builder
         * 
         */
        public Builder s3ContentLocation(@Nullable Output s3ContentLocation) {
            $.s3ContentLocation = s3ContentLocation;
            return this;
        }

        /**
         * @param s3ContentLocation Information about the Amazon S3 bucket containing the application code.
         * 
         * @return builder
         * 
         */
        public Builder s3ContentLocation(ApplicationApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationArgs s3ContentLocation) {
            return s3ContentLocation(Output.of(s3ContentLocation));
        }

        /**
         * @param textContent The text-format code for the application.
         * 
         * @return builder
         * 
         */
        public Builder textContent(@Nullable Output textContent) {
            $.textContent = textContent;
            return this;
        }

        /**
         * @param textContent The text-format code for the application.
         * 
         * @return builder
         * 
         */
        public Builder textContent(String textContent) {
            return textContent(Output.of(textContent));
        }

        public ApplicationApplicationConfigurationApplicationCodeConfigurationCodeContentArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy