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

com.pulumi.aws.sagemaker.inputs.UserProfileUserSettingsRSessionAppSettingsArgs 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.66.3
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.aws.sagemaker.inputs.UserProfileUserSettingsRSessionAppSettingsCustomImageArgs;
import com.pulumi.aws.sagemaker.inputs.UserProfileUserSettingsRSessionAppSettingsDefaultResourceSpecArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final UserProfileUserSettingsRSessionAppSettingsArgs Empty = new UserProfileUserSettingsRSessionAppSettingsArgs();

    /**
     * A list of custom SageMaker images that are configured to run as a KernelGateway app. see Custom Image below.
     * 
     */
    @Import(name="customImages")
    private @Nullable Output> customImages;

    /**
     * @return A list of custom SageMaker images that are configured to run as a KernelGateway app. see Custom Image below.
     * 
     */
    public Optional>> customImages() {
        return Optional.ofNullable(this.customImages);
    }

    /**
     * The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.
     * 
     */
    @Import(name="defaultResourceSpec")
    private @Nullable Output defaultResourceSpec;

    /**
     * @return The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.
     * 
     */
    public Optional> defaultResourceSpec() {
        return Optional.ofNullable(this.defaultResourceSpec);
    }

    private UserProfileUserSettingsRSessionAppSettingsArgs() {}

    private UserProfileUserSettingsRSessionAppSettingsArgs(UserProfileUserSettingsRSessionAppSettingsArgs $) {
        this.customImages = $.customImages;
        this.defaultResourceSpec = $.defaultResourceSpec;
    }

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

    public static final class Builder {
        private UserProfileUserSettingsRSessionAppSettingsArgs $;

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

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

        /**
         * @param customImages A list of custom SageMaker images that are configured to run as a KernelGateway app. see Custom Image below.
         * 
         * @return builder
         * 
         */
        public Builder customImages(@Nullable Output> customImages) {
            $.customImages = customImages;
            return this;
        }

        /**
         * @param customImages A list of custom SageMaker images that are configured to run as a KernelGateway app. see Custom Image below.
         * 
         * @return builder
         * 
         */
        public Builder customImages(List customImages) {
            return customImages(Output.of(customImages));
        }

        /**
         * @param customImages A list of custom SageMaker images that are configured to run as a KernelGateway app. see Custom Image below.
         * 
         * @return builder
         * 
         */
        public Builder customImages(UserProfileUserSettingsRSessionAppSettingsCustomImageArgs... customImages) {
            return customImages(List.of(customImages));
        }

        /**
         * @param defaultResourceSpec The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.
         * 
         * @return builder
         * 
         */
        public Builder defaultResourceSpec(@Nullable Output defaultResourceSpec) {
            $.defaultResourceSpec = defaultResourceSpec;
            return this;
        }

        /**
         * @param defaultResourceSpec The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.
         * 
         * @return builder
         * 
         */
        public Builder defaultResourceSpec(UserProfileUserSettingsRSessionAppSettingsDefaultResourceSpecArgs defaultResourceSpec) {
            return defaultResourceSpec(Output.of(defaultResourceSpec));
        }

        public UserProfileUserSettingsRSessionAppSettingsArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy