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

com.pulumi.aws.sagemaker.inputs.UserProfileUserSettingsSharingSettingsArgs 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 java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final UserProfileUserSettingsSharingSettingsArgs Empty = new UserProfileUserSettingsSharingSettingsArgs();

    /**
     * Whether to include the notebook cell output when sharing the notebook. The default is `Disabled`. Valid values are `Allowed` and `Disabled`.
     * 
     */
    @Import(name="notebookOutputOption")
    private @Nullable Output notebookOutputOption;

    /**
     * @return Whether to include the notebook cell output when sharing the notebook. The default is `Disabled`. Valid values are `Allowed` and `Disabled`.
     * 
     */
    public Optional> notebookOutputOption() {
        return Optional.ofNullable(this.notebookOutputOption);
    }

    /**
     * When `notebook_output_option` is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.
     * 
     */
    @Import(name="s3KmsKeyId")
    private @Nullable Output s3KmsKeyId;

    /**
     * @return When `notebook_output_option` is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.
     * 
     */
    public Optional> s3KmsKeyId() {
        return Optional.ofNullable(this.s3KmsKeyId);
    }

    /**
     * When `notebook_output_option` is Allowed, the Amazon S3 bucket used to save the notebook cell output.
     * 
     */
    @Import(name="s3OutputPath")
    private @Nullable Output s3OutputPath;

    /**
     * @return When `notebook_output_option` is Allowed, the Amazon S3 bucket used to save the notebook cell output.
     * 
     */
    public Optional> s3OutputPath() {
        return Optional.ofNullable(this.s3OutputPath);
    }

    private UserProfileUserSettingsSharingSettingsArgs() {}

    private UserProfileUserSettingsSharingSettingsArgs(UserProfileUserSettingsSharingSettingsArgs $) {
        this.notebookOutputOption = $.notebookOutputOption;
        this.s3KmsKeyId = $.s3KmsKeyId;
        this.s3OutputPath = $.s3OutputPath;
    }

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

    public static final class Builder {
        private UserProfileUserSettingsSharingSettingsArgs $;

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

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

        /**
         * @param notebookOutputOption Whether to include the notebook cell output when sharing the notebook. The default is `Disabled`. Valid values are `Allowed` and `Disabled`.
         * 
         * @return builder
         * 
         */
        public Builder notebookOutputOption(@Nullable Output notebookOutputOption) {
            $.notebookOutputOption = notebookOutputOption;
            return this;
        }

        /**
         * @param notebookOutputOption Whether to include the notebook cell output when sharing the notebook. The default is `Disabled`. Valid values are `Allowed` and `Disabled`.
         * 
         * @return builder
         * 
         */
        public Builder notebookOutputOption(String notebookOutputOption) {
            return notebookOutputOption(Output.of(notebookOutputOption));
        }

        /**
         * @param s3KmsKeyId When `notebook_output_option` is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.
         * 
         * @return builder
         * 
         */
        public Builder s3KmsKeyId(@Nullable Output s3KmsKeyId) {
            $.s3KmsKeyId = s3KmsKeyId;
            return this;
        }

        /**
         * @param s3KmsKeyId When `notebook_output_option` is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.
         * 
         * @return builder
         * 
         */
        public Builder s3KmsKeyId(String s3KmsKeyId) {
            return s3KmsKeyId(Output.of(s3KmsKeyId));
        }

        /**
         * @param s3OutputPath When `notebook_output_option` is Allowed, the Amazon S3 bucket used to save the notebook cell output.
         * 
         * @return builder
         * 
         */
        public Builder s3OutputPath(@Nullable Output s3OutputPath) {
            $.s3OutputPath = s3OutputPath;
            return this;
        }

        /**
         * @param s3OutputPath When `notebook_output_option` is Allowed, the Amazon S3 bucket used to save the notebook cell output.
         * 
         * @return builder
         * 
         */
        public Builder s3OutputPath(String s3OutputPath) {
            return s3OutputPath(Output.of(s3OutputPath));
        }

        public UserProfileUserSettingsSharingSettingsArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy