File tree 5 files changed +29
-1
lines changed
clients/client-opensearchserverless/src
codegen/sdk-codegen/aws-models
5 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ export interface CreateSecurityConfigCommandOutput extends CreateSecurityConfigR
49
49
* metadata: "STRING_VALUE", // required
50
50
* userAttribute: "STRING_VALUE",
51
51
* groupAttribute: "STRING_VALUE",
52
+ * openSearchServerlessEntityId: "STRING_VALUE",
52
53
* sessionTimeout: Number("int"),
53
54
* },
54
55
* iamIdentityCenterOptions: { // CreateIamIdentityCenterConfigOptions
@@ -70,6 +71,7 @@ export interface CreateSecurityConfigCommandOutput extends CreateSecurityConfigR
70
71
* // metadata: "STRING_VALUE", // required
71
72
* // userAttribute: "STRING_VALUE",
72
73
* // groupAttribute: "STRING_VALUE",
74
+ * // openSearchServerlessEntityId: "STRING_VALUE",
73
75
* // sessionTimeout: Number("int"),
74
76
* // },
75
77
* // iamIdentityCenterOptions: { // IamIdentityCenterConfigOptions
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ export interface GetSecurityConfigCommandOutput extends GetSecurityConfigRespons
56
56
* // metadata: "STRING_VALUE", // required
57
57
* // userAttribute: "STRING_VALUE",
58
58
* // groupAttribute: "STRING_VALUE",
59
+ * // openSearchServerlessEntityId: "STRING_VALUE",
59
60
* // sessionTimeout: Number("int"),
60
61
* // },
61
62
* // iamIdentityCenterOptions: { // IamIdentityCenterConfigOptions
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ export interface UpdateSecurityConfigCommandOutput extends UpdateSecurityConfigR
49
49
* metadata: "STRING_VALUE", // required
50
50
* userAttribute: "STRING_VALUE",
51
51
* groupAttribute: "STRING_VALUE",
52
+ * openSearchServerlessEntityId: "STRING_VALUE",
52
53
* sessionTimeout: Number("int"),
53
54
* },
54
55
* iamIdentityCenterOptionsUpdates: { // UpdateIamIdentityCenterConfigOptions
@@ -69,6 +70,7 @@ export interface UpdateSecurityConfigCommandOutput extends UpdateSecurityConfigR
69
70
* // metadata: "STRING_VALUE", // required
70
71
* // userAttribute: "STRING_VALUE",
71
72
* // groupAttribute: "STRING_VALUE",
73
+ * // openSearchServerlessEntityId: "STRING_VALUE",
72
74
* // sessionTimeout: Number("int"),
73
75
* // },
74
76
* // iamIdentityCenterOptions: { // IamIdentityCenterConfigOptions
Original file line number Diff line number Diff line change @@ -1678,6 +1678,12 @@ export interface SamlConfigOptions {
1678
1678
*/
1679
1679
groupAttribute ?: string | undefined ;
1680
1680
1681
+ /**
1682
+ * <p>Custom entity id attribute to override default entity id for this saml integration.</p>
1683
+ * @public
1684
+ */
1685
+ openSearchServerlessEntityId ?: string | undefined ;
1686
+
1681
1687
/**
1682
1688
* <p>The session timeout, in minutes. Default is 60 minutes (12 hours).</p>
1683
1689
* @public
Original file line number Diff line number Diff line change 3877
3877
"smithy.api#documentation" : " <p>The group attribute for this SAML integration.</p>"
3878
3878
}
3879
3879
},
3880
+ "openSearchServerlessEntityId" : {
3881
+ "target" : " com.amazonaws.opensearchserverless#openSearchServerlessEntityId" ,
3882
+ "traits" : {
3883
+ "smithy.api#documentation" : " <p>Custom entity id attribute to override default entity id for this saml integration.</p>"
3884
+ }
3885
+ },
3880
3886
"sessionTimeout" : {
3881
3887
"target" : " smithy.api#Integer" ,
3882
3888
"traits" : {
5322
5328
},
5323
5329
"traits" : {
5324
5330
"smithy.api#length" : {
5325
- "min" : 1
5331
+ "min" : 1 ,
5332
+ "max" : 100
5326
5333
}
5327
5334
}
5328
5335
},
5405
5412
"smithy.api#pattern" : " ^vpc-[0-9a-z]*$"
5406
5413
}
5407
5414
},
5415
+ "com.amazonaws.opensearchserverless#openSearchServerlessEntityId" : {
5416
+ "type" : " string" ,
5417
+ "traits" : {
5418
+ "smithy.api#length" : {
5419
+ "min" : 1 ,
5420
+ "max" : 1024
5421
+ },
5422
+ "smithy.api#pattern" : " ^aws:opensearch:[0-9]{12}:*"
5423
+ }
5424
+ },
5408
5425
"com.amazonaws.opensearchserverless#samlGroupAttribute" : {
5409
5426
"type" : " string" ,
5410
5427
"traits" : {
You can’t perform that action at this time.
0 commit comments