com.pulumi.aws.sagemaker.outputs.DomainDefaultUserSettingsCanvasAppSettingsWorkspaceSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
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.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class DomainDefaultUserSettingsCanvasAppSettingsWorkspaceSettings {
/**
* @return The Amazon S3 bucket used to store artifacts generated by Canvas. Updating the Amazon S3 location impacts existing configuration settings, and Canvas users no longer have access to their artifacts. Canvas users must log out and log back in to apply the new location.
*
*/
private @Nullable String s3ArtifactPath;
/**
* @return The Amazon Web Services Key Management Service (KMS) encryption key ID that is used to encrypt artifacts generated by Canvas in the Amazon S3 bucket.
*
*/
private @Nullable String s3KmsKeyId;
private DomainDefaultUserSettingsCanvasAppSettingsWorkspaceSettings() {}
/**
* @return The Amazon S3 bucket used to store artifacts generated by Canvas. Updating the Amazon S3 location impacts existing configuration settings, and Canvas users no longer have access to their artifacts. Canvas users must log out and log back in to apply the new location.
*
*/
public Optional s3ArtifactPath() {
return Optional.ofNullable(this.s3ArtifactPath);
}
/**
* @return The Amazon Web Services Key Management Service (KMS) encryption key ID that is used to encrypt artifacts generated by Canvas in the Amazon S3 bucket.
*
*/
public Optional s3KmsKeyId() {
return Optional.ofNullable(this.s3KmsKeyId);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DomainDefaultUserSettingsCanvasAppSettingsWorkspaceSettings defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String s3ArtifactPath;
private @Nullable String s3KmsKeyId;
public Builder() {}
public Builder(DomainDefaultUserSettingsCanvasAppSettingsWorkspaceSettings defaults) {
Objects.requireNonNull(defaults);
this.s3ArtifactPath = defaults.s3ArtifactPath;
this.s3KmsKeyId = defaults.s3KmsKeyId;
}
@CustomType.Setter
public Builder s3ArtifactPath(@Nullable String s3ArtifactPath) {
this.s3ArtifactPath = s3ArtifactPath;
return this;
}
@CustomType.Setter
public Builder s3KmsKeyId(@Nullable String s3KmsKeyId) {
this.s3KmsKeyId = s3KmsKeyId;
return this;
}
public DomainDefaultUserSettingsCanvasAppSettingsWorkspaceSettings build() {
final var _resultValue = new DomainDefaultUserSettingsCanvasAppSettingsWorkspaceSettings();
_resultValue.s3ArtifactPath = s3ArtifactPath;
_resultValue.s3KmsKeyId = s3KmsKeyId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy