Class: Aws::SageMaker::Types::OnlineStoreConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::OnlineStoreConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass OnlineStoreConfig data as a hash:
{
security_config: {
kms_key_id: "KmsKeyId",
},
enable_online_store: false,
}
Use this to specify the Amazon Web Services Key Management Service
(KMS) Key ID, or KMSKeyId
, for at rest data encryption. You can turn
OnlineStore
on or off by specifying the EnableOnlineStore
flag at
General Assembly; the default value is False
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enable_online_store ⇒ Boolean
Turn
OnlineStore
off by specifyingFalse
for theEnableOnlineStore
flag. -
#security_config ⇒ Types::OnlineStoreSecurityConfig
Use to specify KMS Key ID (
KMSKeyId
) for at-rest encryption of yourOnlineStore
.
Instance Attribute Details
#enable_online_store ⇒ Boolean
Turn OnlineStore
off by specifying False
for the
EnableOnlineStore
flag. Turn OnlineStore
on by specifying True
for the EnableOnlineStore
flag.
The default value is False
.
31735 31736 31737 31738 31739 31740 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 31735 class OnlineStoreConfig < Struct.new( :security_config, :enable_online_store) SENSITIVE = [] include Aws::Structure end |
#security_config ⇒ Types::OnlineStoreSecurityConfig
Use to specify KMS Key ID (KMSKeyId
) for at-rest encryption of
your OnlineStore
.
31735 31736 31737 31738 31739 31740 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 31735 class OnlineStoreConfig < Struct.new( :security_config, :enable_online_store) SENSITIVE = [] include Aws::Structure end |