Class: Aws::SageMaker::Types::SharingSettings

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

When making an API call, you may pass SharingSettings data as a hash:

{
  notebook_output_option: "Allowed", # accepts Allowed, Disabled
  s3_output_path: "S3Uri",
  s3_kms_key_id: "KmsKeyId",
}

The sharing settings.

Instance Attribute Summary collapse

Instance Attribute Details

#notebook_output_optionString

The notebook output option.

Returns:

  • (String)


17453
17454
17455
17456
17457
17458
# File 'lib/aws-sdk-sagemaker/types.rb', line 17453

class SharingSettings < Struct.new(
  :notebook_output_option,
  :s3_output_path,
  :s3_kms_key_id)
  include Aws::Structure
end

#s3_kms_key_idString

The AWS Key Management Service encryption key ID.

Returns:

  • (String)


17453
17454
17455
17456
17457
17458
# File 'lib/aws-sdk-sagemaker/types.rb', line 17453

class SharingSettings < Struct.new(
  :notebook_output_option,
  :s3_output_path,
  :s3_kms_key_id)
  include Aws::Structure
end

#s3_output_pathString

The Amazon S3 output path.

Returns:

  • (String)


17453
17454
17455
17456
17457
17458
# File 'lib/aws-sdk-sagemaker/types.rb', line 17453

class SharingSettings < Struct.new(
  :notebook_output_option,
  :s3_output_path,
  :s3_kms_key_id)
  include Aws::Structure
end