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

com.pulumi.aws.sagemaker.inputs.DomainDefaultUserSettingsJupyterServerAppSettingsCodeRepositoryArgs 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.sagemaker.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 DomainDefaultUserSettingsJupyterServerAppSettingsCodeRepositoryArgs extends com.pulumi.resources.ResourceArgs {

    public static final DomainDefaultUserSettingsJupyterServerAppSettingsCodeRepositoryArgs Empty = new DomainDefaultUserSettingsJupyterServerAppSettingsCodeRepositoryArgs();

    /**
     * The URL of the Git repository.
     * 
     */
    @Import(name="repositoryUrl", required=true)
    private Output repositoryUrl;

    /**
     * @return The URL of the Git repository.
     * 
     */
    public Output repositoryUrl() {
        return this.repositoryUrl;
    }

    private DomainDefaultUserSettingsJupyterServerAppSettingsCodeRepositoryArgs() {}

    private DomainDefaultUserSettingsJupyterServerAppSettingsCodeRepositoryArgs(DomainDefaultUserSettingsJupyterServerAppSettingsCodeRepositoryArgs $) {
        this.repositoryUrl = $.repositoryUrl;
    }

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

    public static final class Builder {
        private DomainDefaultUserSettingsJupyterServerAppSettingsCodeRepositoryArgs $;

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

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

        /**
         * @param repositoryUrl The URL of the Git repository.
         * 
         * @return builder
         * 
         */
        public Builder repositoryUrl(Output repositoryUrl) {
            $.repositoryUrl = repositoryUrl;
            return this;
        }

        /**
         * @param repositoryUrl The URL of the Git repository.
         * 
         * @return builder
         * 
         */
        public Builder repositoryUrl(String repositoryUrl) {
            return repositoryUrl(Output.of(repositoryUrl));
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy