Class: Aws::SageMaker::Types::SharingSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::SharingSettings
- 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
-
#notebook_output_option ⇒ String
The notebook output option.
-
#s3_kms_key_id ⇒ String
The AWS Key Management Service encryption key ID.
-
#s3_output_path ⇒ String
The Amazon S3 output path.
Instance Attribute Details
#notebook_output_option ⇒ String
The notebook output option.
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_id ⇒ String
The AWS Key Management Service encryption key ID.
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_path ⇒ String
The Amazon S3 output path.
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 |