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

com.pulumi.aws.sagemaker.inputs.DomainDefaultSpaceSettingsJupyterServerAppSettingsDefaultResourceSpecArgs 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.sagemaker.inputs;

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 DomainDefaultSpaceSettingsJupyterServerAppSettingsDefaultResourceSpecArgs extends com.pulumi.resources.ResourceArgs {

    public static final DomainDefaultSpaceSettingsJupyterServerAppSettingsDefaultResourceSpecArgs Empty = new DomainDefaultSpaceSettingsJupyterServerAppSettingsDefaultResourceSpecArgs();

    /**
     * The instance type that the image version runs on.. For valid values see [SageMaker Instance Types](https://docs.aws.amazon.com/sagemaker/latest/dg/notebooks-available-instance-types.html).
     * 
     */
    @Import(name="instanceType")
    private @Nullable Output instanceType;

    /**
     * @return The instance type that the image version runs on.. For valid values see [SageMaker Instance Types](https://docs.aws.amazon.com/sagemaker/latest/dg/notebooks-available-instance-types.html).
     * 
     */
    public Optional> instanceType() {
        return Optional.ofNullable(this.instanceType);
    }

    /**
     * The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
     * 
     */
    @Import(name="lifecycleConfigArn")
    private @Nullable Output lifecycleConfigArn;

    /**
     * @return The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
     * 
     */
    public Optional> lifecycleConfigArn() {
        return Optional.ofNullable(this.lifecycleConfigArn);
    }

    /**
     * The ARN of the SageMaker image that the image version belongs to.
     * 
     */
    @Import(name="sagemakerImageArn")
    private @Nullable Output sagemakerImageArn;

    /**
     * @return The ARN of the SageMaker image that the image version belongs to.
     * 
     */
    public Optional> sagemakerImageArn() {
        return Optional.ofNullable(this.sagemakerImageArn);
    }

    /**
     * The SageMaker Image Version Alias.
     * 
     */
    @Import(name="sagemakerImageVersionAlias")
    private @Nullable Output sagemakerImageVersionAlias;

    /**
     * @return The SageMaker Image Version Alias.
     * 
     */
    public Optional> sagemakerImageVersionAlias() {
        return Optional.ofNullable(this.sagemakerImageVersionAlias);
    }

    /**
     * The ARN of the image version created on the instance.
     * 
     */
    @Import(name="sagemakerImageVersionArn")
    private @Nullable Output sagemakerImageVersionArn;

    /**
     * @return The ARN of the image version created on the instance.
     * 
     */
    public Optional> sagemakerImageVersionArn() {
        return Optional.ofNullable(this.sagemakerImageVersionArn);
    }

    private DomainDefaultSpaceSettingsJupyterServerAppSettingsDefaultResourceSpecArgs() {}

    private DomainDefaultSpaceSettingsJupyterServerAppSettingsDefaultResourceSpecArgs(DomainDefaultSpaceSettingsJupyterServerAppSettingsDefaultResourceSpecArgs $) {
        this.instanceType = $.instanceType;
        this.lifecycleConfigArn = $.lifecycleConfigArn;
        this.sagemakerImageArn = $.sagemakerImageArn;
        this.sagemakerImageVersionAlias = $.sagemakerImageVersionAlias;
        this.sagemakerImageVersionArn = $.sagemakerImageVersionArn;
    }

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

    public static final class Builder {
        private DomainDefaultSpaceSettingsJupyterServerAppSettingsDefaultResourceSpecArgs $;

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

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

        /**
         * @param instanceType The instance type that the image version runs on.. For valid values see [SageMaker Instance Types](https://docs.aws.amazon.com/sagemaker/latest/dg/notebooks-available-instance-types.html).
         * 
         * @return builder
         * 
         */
        public Builder instanceType(@Nullable Output instanceType) {
            $.instanceType = instanceType;
            return this;
        }

        /**
         * @param instanceType The instance type that the image version runs on.. For valid values see [SageMaker Instance Types](https://docs.aws.amazon.com/sagemaker/latest/dg/notebooks-available-instance-types.html).
         * 
         * @return builder
         * 
         */
        public Builder instanceType(String instanceType) {
            return instanceType(Output.of(instanceType));
        }

        /**
         * @param lifecycleConfigArn The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
         * 
         * @return builder
         * 
         */
        public Builder lifecycleConfigArn(@Nullable Output lifecycleConfigArn) {
            $.lifecycleConfigArn = lifecycleConfigArn;
            return this;
        }

        /**
         * @param lifecycleConfigArn The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
         * 
         * @return builder
         * 
         */
        public Builder lifecycleConfigArn(String lifecycleConfigArn) {
            return lifecycleConfigArn(Output.of(lifecycleConfigArn));
        }

        /**
         * @param sagemakerImageArn The ARN of the SageMaker image that the image version belongs to.
         * 
         * @return builder
         * 
         */
        public Builder sagemakerImageArn(@Nullable Output sagemakerImageArn) {
            $.sagemakerImageArn = sagemakerImageArn;
            return this;
        }

        /**
         * @param sagemakerImageArn The ARN of the SageMaker image that the image version belongs to.
         * 
         * @return builder
         * 
         */
        public Builder sagemakerImageArn(String sagemakerImageArn) {
            return sagemakerImageArn(Output.of(sagemakerImageArn));
        }

        /**
         * @param sagemakerImageVersionAlias The SageMaker Image Version Alias.
         * 
         * @return builder
         * 
         */
        public Builder sagemakerImageVersionAlias(@Nullable Output sagemakerImageVersionAlias) {
            $.sagemakerImageVersionAlias = sagemakerImageVersionAlias;
            return this;
        }

        /**
         * @param sagemakerImageVersionAlias The SageMaker Image Version Alias.
         * 
         * @return builder
         * 
         */
        public Builder sagemakerImageVersionAlias(String sagemakerImageVersionAlias) {
            return sagemakerImageVersionAlias(Output.of(sagemakerImageVersionAlias));
        }

        /**
         * @param sagemakerImageVersionArn The ARN of the image version created on the instance.
         * 
         * @return builder
         * 
         */
        public Builder sagemakerImageVersionArn(@Nullable Output sagemakerImageVersionArn) {
            $.sagemakerImageVersionArn = sagemakerImageVersionArn;
            return this;
        }

        /**
         * @param sagemakerImageVersionArn The ARN of the image version created on the instance.
         * 
         * @return builder
         * 
         */
        public Builder sagemakerImageVersionArn(String sagemakerImageVersionArn) {
            return sagemakerImageVersionArn(Output.of(sagemakerImageVersionArn));
        }

        public DomainDefaultSpaceSettingsJupyterServerAppSettingsDefaultResourceSpecArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy