Skip to content

Commit 43bbd84

Browse files
authored
Merge branch 'master' into patch-1
2 parents 582e22e + d2c317d commit 43bbd84

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/sagemaker/feature_store/inputs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def to_dict(self) -> Dict[str, Any]:
103103
"""
104104
return Config.construct_dict(
105105
EnableOnlineStore=self.enable_online_store,
106-
OnlineStoreSecurityConfig=self.online_store_security_config,
106+
SecurityConfig=self.online_store_security_config,
107107
)
108108

109109

tests/unit/sagemaker/feature_store/test_inputs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def test_online_store_config():
4848
assert ordered(config_with_kms.to_dict()) == ordered(
4949
{
5050
"EnableOnlineStore": True,
51-
"OnlineStoreSecurityConfig": {
51+
"SecurityConfig": {
5252
"KmsKeyId": "kms",
5353
},
5454
}

0 commit comments

Comments
 (0)