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

com.pulumi.aws.sagemaker.outputs.UserProfileUserSettingsTensorBoardAppSettings 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.outputs;

import com.pulumi.aws.sagemaker.outputs.UserProfileUserSettingsTensorBoardAppSettingsDefaultResourceSpec;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class UserProfileUserSettingsTensorBoardAppSettings {
    /**
     * @return The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.
     * 
     */
    private @Nullable UserProfileUserSettingsTensorBoardAppSettingsDefaultResourceSpec defaultResourceSpec;

    private UserProfileUserSettingsTensorBoardAppSettings() {}
    /**
     * @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);
    }

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

    public static Builder builder(UserProfileUserSettingsTensorBoardAppSettings defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable UserProfileUserSettingsTensorBoardAppSettingsDefaultResourceSpec defaultResourceSpec;
        public Builder() {}
        public Builder(UserProfileUserSettingsTensorBoardAppSettings defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.defaultResourceSpec = defaults.defaultResourceSpec;
        }

        @CustomType.Setter
        public Builder defaultResourceSpec(@Nullable UserProfileUserSettingsTensorBoardAppSettingsDefaultResourceSpec defaultResourceSpec) {

            this.defaultResourceSpec = defaultResourceSpec;
            return this;
        }
        public UserProfileUserSettingsTensorBoardAppSettings build() {
            final var _resultValue = new UserProfileUserSettingsTensorBoardAppSettings();
            _resultValue.defaultResourceSpec = defaultResourceSpec;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy