Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
Documentation
data SharingSettings Source #
Specifies options for sharing SageMaker Studio notebooks. These settings
are specified as part of DefaultUserSettings
when the CreateDomain
API is called, and as part of UserSettings
when the
CreateUserProfile
API is called. When SharingSettings
is not
specified, notebook sharing isn't allowed.
See: newSharingSettings
smart constructor.
SharingSettings' | |
|
Instances
newSharingSettings :: SharingSettings Source #
Create a value of SharingSettings
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:s3KmsKeyId:SharingSettings'
, sharingSettings_s3KmsKeyId
- When NotebookOutputOption
is Allowed
, the Amazon Web Services Key
Management Service (KMS) encryption key ID used to encrypt the notebook
cell output in the Amazon S3 bucket.
$sel:s3OutputPath:SharingSettings'
, sharingSettings_s3OutputPath
- When NotebookOutputOption
is Allowed
, the Amazon S3 bucket used to
store the shared notebook snapshots.
$sel:notebookOutputOption:SharingSettings'
, sharingSettings_notebookOutputOption
- Whether to include the notebook cell output when sharing the notebook.
The default is Disabled
.
sharingSettings_s3KmsKeyId :: Lens' SharingSettings (Maybe Text) Source #
When NotebookOutputOption
is Allowed
, the Amazon Web Services Key
Management Service (KMS) encryption key ID used to encrypt the notebook
cell output in the Amazon S3 bucket.
sharingSettings_s3OutputPath :: Lens' SharingSettings (Maybe Text) Source #
When NotebookOutputOption
is Allowed
, the Amazon S3 bucket used to
store the shared notebook snapshots.
sharingSettings_notebookOutputOption :: Lens' SharingSettings (Maybe NotebookOutputOption) Source #
Whether to include the notebook cell output when sharing the notebook.
The default is Disabled
.