aws-sdk-bedrockagentcorecontrol 1.41.0 → 1.43.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/sig/client.rbs CHANGED
@@ -446,7 +446,13 @@ module Aws
446
446
  mcp: {
447
447
  supported_versions: Array[::String]?,
448
448
  instructions: ::String?,
449
- search_type: ("SEMANTIC")?
449
+ search_type: ("SEMANTIC")?,
450
+ session_configuration: {
451
+ session_timeout_in_seconds: ::Integer?
452
+ }?,
453
+ streaming_configuration: {
454
+ enable_response_streaming: bool?
455
+ }?
450
456
  }?
451
457
  },
452
458
  authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY"),
@@ -721,7 +727,7 @@ module Aws
721
727
  provider_arn: ::String,
722
728
  scopes: Array[::String],
723
729
  custom_parameters: Hash[::String, ::String]?,
724
- grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE")?,
730
+ grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")?,
725
731
  default_return_url: ::String?
726
732
  }?,
727
733
  api_key_credential_provider: {
@@ -898,7 +904,7 @@ module Aws
898
904
  provider_arn: ::String,
899
905
  scopes: Array[::String],
900
906
  custom_parameters: Hash[::String, ::String]?,
901
- grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE")?,
907
+ grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")?,
902
908
  default_return_url: ::String?
903
909
  }?
904
910
  }?
@@ -970,19 +976,100 @@ module Aws
970
976
  name: ::String,
971
977
  description: ::String?,
972
978
  namespaces: Array[::String]?,
973
- namespace_templates: Array[::String]?
979
+ namespace_templates: Array[::String]?,
980
+ memory_record_schema: {
981
+ metadata_schema: Array[
982
+ {
983
+ key: ::String,
984
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
985
+ extraction_config: {
986
+ llm_extraction_config: {
987
+ llm_extraction_instruction: ::String?,
988
+ definition: ::String,
989
+ validation: {
990
+ string_validation: {
991
+ allowed_values: Array[::String]
992
+ }?,
993
+ string_list_validation: {
994
+ allowed_values: Array[::String]?,
995
+ max_items: ::Integer?
996
+ }?,
997
+ number_validation: {
998
+ min_value: ::Float?,
999
+ max_value: ::Float?
1000
+ }?
1001
+ }?
1002
+ }?
1003
+ }?
1004
+ },
1005
+ ]?
1006
+ }?
974
1007
  }?,
975
1008
  summary_memory_strategy: {
976
1009
  name: ::String,
977
1010
  description: ::String?,
978
1011
  namespaces: Array[::String]?,
979
- namespace_templates: Array[::String]?
1012
+ namespace_templates: Array[::String]?,
1013
+ memory_record_schema: {
1014
+ metadata_schema: Array[
1015
+ {
1016
+ key: ::String,
1017
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1018
+ extraction_config: {
1019
+ llm_extraction_config: {
1020
+ llm_extraction_instruction: ::String?,
1021
+ definition: ::String,
1022
+ validation: {
1023
+ string_validation: {
1024
+ allowed_values: Array[::String]
1025
+ }?,
1026
+ string_list_validation: {
1027
+ allowed_values: Array[::String]?,
1028
+ max_items: ::Integer?
1029
+ }?,
1030
+ number_validation: {
1031
+ min_value: ::Float?,
1032
+ max_value: ::Float?
1033
+ }?
1034
+ }?
1035
+ }?
1036
+ }?
1037
+ },
1038
+ ]?
1039
+ }?
980
1040
  }?,
981
1041
  user_preference_memory_strategy: {
982
1042
  name: ::String,
983
1043
  description: ::String?,
984
1044
  namespaces: Array[::String]?,
985
- namespace_templates: Array[::String]?
1045
+ namespace_templates: Array[::String]?,
1046
+ memory_record_schema: {
1047
+ metadata_schema: Array[
1048
+ {
1049
+ key: ::String,
1050
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1051
+ extraction_config: {
1052
+ llm_extraction_config: {
1053
+ llm_extraction_instruction: ::String?,
1054
+ definition: ::String,
1055
+ validation: {
1056
+ string_validation: {
1057
+ allowed_values: Array[::String]
1058
+ }?,
1059
+ string_list_validation: {
1060
+ allowed_values: Array[::String]?,
1061
+ max_items: ::Integer?
1062
+ }?,
1063
+ number_validation: {
1064
+ min_value: ::Float?,
1065
+ max_value: ::Float?
1066
+ }?
1067
+ }?
1068
+ }?
1069
+ }?
1070
+ },
1071
+ ]?
1072
+ }?
986
1073
  }?,
987
1074
  custom_memory_strategy: {
988
1075
  name: ::String,
@@ -1029,7 +1116,34 @@ module Aws
1029
1116
  append_to_prompt: ::String,
1030
1117
  model_id: ::String,
1031
1118
  namespaces: Array[::String]?,
1032
- namespace_templates: Array[::String]?
1119
+ namespace_templates: Array[::String]?,
1120
+ memory_record_schema: {
1121
+ metadata_schema: Array[
1122
+ {
1123
+ key: ::String,
1124
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1125
+ extraction_config: {
1126
+ llm_extraction_config: {
1127
+ llm_extraction_instruction: ::String?,
1128
+ definition: ::String,
1129
+ validation: {
1130
+ string_validation: {
1131
+ allowed_values: Array[::String]
1132
+ }?,
1133
+ string_list_validation: {
1134
+ allowed_values: Array[::String]?,
1135
+ max_items: ::Integer?
1136
+ }?,
1137
+ number_validation: {
1138
+ min_value: ::Float?,
1139
+ max_value: ::Float?
1140
+ }?
1141
+ }?
1142
+ }?
1143
+ }?
1144
+ },
1145
+ ]?
1146
+ }?
1033
1147
  }?
1034
1148
  }?,
1035
1149
  self_managed_configuration: {
@@ -1052,6 +1166,33 @@ module Aws
1052
1166
  },
1053
1167
  historical_context_window_size: ::Integer?
1054
1168
  }?
1169
+ }?,
1170
+ memory_record_schema: {
1171
+ metadata_schema: Array[
1172
+ {
1173
+ key: ::String,
1174
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1175
+ extraction_config: {
1176
+ llm_extraction_config: {
1177
+ llm_extraction_instruction: ::String?,
1178
+ definition: ::String,
1179
+ validation: {
1180
+ string_validation: {
1181
+ allowed_values: Array[::String]
1182
+ }?,
1183
+ string_list_validation: {
1184
+ allowed_values: Array[::String]?,
1185
+ max_items: ::Integer?
1186
+ }?,
1187
+ number_validation: {
1188
+ min_value: ::Float?,
1189
+ max_value: ::Float?
1190
+ }?
1191
+ }?
1192
+ }?
1193
+ }?
1194
+ },
1195
+ ]?
1055
1196
  }?
1056
1197
  }?,
1057
1198
  episodic_memory_strategy: {
@@ -1061,11 +1202,71 @@ module Aws
1061
1202
  namespace_templates: Array[::String]?,
1062
1203
  reflection_configuration: {
1063
1204
  namespaces: Array[::String]?,
1064
- namespace_templates: Array[::String]?
1205
+ namespace_templates: Array[::String]?,
1206
+ memory_record_schema: {
1207
+ metadata_schema: Array[
1208
+ {
1209
+ key: ::String,
1210
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1211
+ extraction_config: {
1212
+ llm_extraction_config: {
1213
+ llm_extraction_instruction: ::String?,
1214
+ definition: ::String,
1215
+ validation: {
1216
+ string_validation: {
1217
+ allowed_values: Array[::String]
1218
+ }?,
1219
+ string_list_validation: {
1220
+ allowed_values: Array[::String]?,
1221
+ max_items: ::Integer?
1222
+ }?,
1223
+ number_validation: {
1224
+ min_value: ::Float?,
1225
+ max_value: ::Float?
1226
+ }?
1227
+ }?
1228
+ }?
1229
+ }?
1230
+ },
1231
+ ]?
1232
+ }?
1233
+ }?,
1234
+ memory_record_schema: {
1235
+ metadata_schema: Array[
1236
+ {
1237
+ key: ::String,
1238
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1239
+ extraction_config: {
1240
+ llm_extraction_config: {
1241
+ llm_extraction_instruction: ::String?,
1242
+ definition: ::String,
1243
+ validation: {
1244
+ string_validation: {
1245
+ allowed_values: Array[::String]
1246
+ }?,
1247
+ string_list_validation: {
1248
+ allowed_values: Array[::String]?,
1249
+ max_items: ::Integer?
1250
+ }?,
1251
+ number_validation: {
1252
+ min_value: ::Float?,
1253
+ max_value: ::Float?
1254
+ }?
1255
+ }?
1256
+ }?
1257
+ }?
1258
+ },
1259
+ ]?
1065
1260
  }?
1066
1261
  }?
1067
1262
  },
1068
1263
  ],
1264
+ ?indexed_keys: Array[
1265
+ {
1266
+ key: ::String,
1267
+ type: ("STRING" | "STRINGLIST" | "NUMBER")
1268
+ },
1269
+ ],
1069
1270
  ?stream_delivery_resources: {
1070
1271
  resources: Array[
1071
1272
  {
@@ -1110,8 +1311,8 @@ module Aws
1110
1311
  token_endpoint_auth_methods: Array[::String]?
1111
1312
  }?
1112
1313
  },
1113
- client_id: ::String,
1114
- client_secret: ::String,
1314
+ client_id: ::String?,
1315
+ client_secret: ::String?,
1115
1316
  private_endpoint: {
1116
1317
  self_managed_lattice_resource: {
1117
1318
  resource_configuration_identifier: ::String?
@@ -1142,7 +1343,15 @@ module Aws
1142
1343
  }?
1143
1344
  }
1144
1345
  },
1145
- ]?
1346
+ ]?,
1347
+ on_behalf_of_token_exchange_config: {
1348
+ grant_type: ("TOKEN_EXCHANGE" | "JWT_AUTHORIZATION_GRANT"),
1349
+ token_exchange_grant_type_config: {
1350
+ actor_token_content: ("NONE" | "M2M" | "AWS_IAM_ID_TOKEN_JWT"),
1351
+ actor_token_scopes: Array[::String]?
1352
+ }?
1353
+ }?,
1354
+ client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")?
1146
1355
  }?,
1147
1356
  google_oauth_2_provider_config: {
1148
1357
  client_id: ::String,
@@ -2847,7 +3056,13 @@ module Aws
2847
3056
  mcp: {
2848
3057
  supported_versions: Array[::String]?,
2849
3058
  instructions: ::String?,
2850
- search_type: ("SEMANTIC")?
3059
+ search_type: ("SEMANTIC")?,
3060
+ session_configuration: {
3061
+ session_timeout_in_seconds: ::Integer?
3062
+ }?,
3063
+ streaming_configuration: {
3064
+ enable_response_streaming: bool?
3065
+ }?
2851
3066
  }?
2852
3067
  },
2853
3068
  authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY"),
@@ -3122,7 +3337,7 @@ module Aws
3122
3337
  provider_arn: ::String,
3123
3338
  scopes: Array[::String],
3124
3339
  custom_parameters: Hash[::String, ::String]?,
3125
- grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE")?,
3340
+ grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")?,
3126
3341
  default_return_url: ::String?
3127
3342
  }?,
3128
3343
  api_key_credential_provider: {
@@ -3303,7 +3518,7 @@ module Aws
3303
3518
  provider_arn: ::String,
3304
3519
  scopes: Array[::String],
3305
3520
  custom_parameters: Hash[::String, ::String]?,
3306
- grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE")?,
3521
+ grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")?,
3307
3522
  default_return_url: ::String?
3308
3523
  }?
3309
3524
  }?
@@ -3376,19 +3591,100 @@ module Aws
3376
3591
  name: ::String,
3377
3592
  description: ::String?,
3378
3593
  namespaces: Array[::String]?,
3379
- namespace_templates: Array[::String]?
3594
+ namespace_templates: Array[::String]?,
3595
+ memory_record_schema: {
3596
+ metadata_schema: Array[
3597
+ {
3598
+ key: ::String,
3599
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3600
+ extraction_config: {
3601
+ llm_extraction_config: {
3602
+ llm_extraction_instruction: ::String?,
3603
+ definition: ::String,
3604
+ validation: {
3605
+ string_validation: {
3606
+ allowed_values: Array[::String]
3607
+ }?,
3608
+ string_list_validation: {
3609
+ allowed_values: Array[::String]?,
3610
+ max_items: ::Integer?
3611
+ }?,
3612
+ number_validation: {
3613
+ min_value: ::Float?,
3614
+ max_value: ::Float?
3615
+ }?
3616
+ }?
3617
+ }?
3618
+ }?
3619
+ },
3620
+ ]?
3621
+ }?
3380
3622
  }?,
3381
3623
  summary_memory_strategy: {
3382
3624
  name: ::String,
3383
3625
  description: ::String?,
3384
3626
  namespaces: Array[::String]?,
3385
- namespace_templates: Array[::String]?
3627
+ namespace_templates: Array[::String]?,
3628
+ memory_record_schema: {
3629
+ metadata_schema: Array[
3630
+ {
3631
+ key: ::String,
3632
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3633
+ extraction_config: {
3634
+ llm_extraction_config: {
3635
+ llm_extraction_instruction: ::String?,
3636
+ definition: ::String,
3637
+ validation: {
3638
+ string_validation: {
3639
+ allowed_values: Array[::String]
3640
+ }?,
3641
+ string_list_validation: {
3642
+ allowed_values: Array[::String]?,
3643
+ max_items: ::Integer?
3644
+ }?,
3645
+ number_validation: {
3646
+ min_value: ::Float?,
3647
+ max_value: ::Float?
3648
+ }?
3649
+ }?
3650
+ }?
3651
+ }?
3652
+ },
3653
+ ]?
3654
+ }?
3386
3655
  }?,
3387
3656
  user_preference_memory_strategy: {
3388
3657
  name: ::String,
3389
3658
  description: ::String?,
3390
3659
  namespaces: Array[::String]?,
3391
- namespace_templates: Array[::String]?
3660
+ namespace_templates: Array[::String]?,
3661
+ memory_record_schema: {
3662
+ metadata_schema: Array[
3663
+ {
3664
+ key: ::String,
3665
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3666
+ extraction_config: {
3667
+ llm_extraction_config: {
3668
+ llm_extraction_instruction: ::String?,
3669
+ definition: ::String,
3670
+ validation: {
3671
+ string_validation: {
3672
+ allowed_values: Array[::String]
3673
+ }?,
3674
+ string_list_validation: {
3675
+ allowed_values: Array[::String]?,
3676
+ max_items: ::Integer?
3677
+ }?,
3678
+ number_validation: {
3679
+ min_value: ::Float?,
3680
+ max_value: ::Float?
3681
+ }?
3682
+ }?
3683
+ }?
3684
+ }?
3685
+ },
3686
+ ]?
3687
+ }?
3392
3688
  }?,
3393
3689
  custom_memory_strategy: {
3394
3690
  name: ::String,
@@ -3435,7 +3731,34 @@ module Aws
3435
3731
  append_to_prompt: ::String,
3436
3732
  model_id: ::String,
3437
3733
  namespaces: Array[::String]?,
3438
- namespace_templates: Array[::String]?
3734
+ namespace_templates: Array[::String]?,
3735
+ memory_record_schema: {
3736
+ metadata_schema: Array[
3737
+ {
3738
+ key: ::String,
3739
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3740
+ extraction_config: {
3741
+ llm_extraction_config: {
3742
+ llm_extraction_instruction: ::String?,
3743
+ definition: ::String,
3744
+ validation: {
3745
+ string_validation: {
3746
+ allowed_values: Array[::String]
3747
+ }?,
3748
+ string_list_validation: {
3749
+ allowed_values: Array[::String]?,
3750
+ max_items: ::Integer?
3751
+ }?,
3752
+ number_validation: {
3753
+ min_value: ::Float?,
3754
+ max_value: ::Float?
3755
+ }?
3756
+ }?
3757
+ }?
3758
+ }?
3759
+ },
3760
+ ]?
3761
+ }?
3439
3762
  }?
3440
3763
  }?,
3441
3764
  self_managed_configuration: {
@@ -3458,6 +3781,33 @@ module Aws
3458
3781
  },
3459
3782
  historical_context_window_size: ::Integer?
3460
3783
  }?
3784
+ }?,
3785
+ memory_record_schema: {
3786
+ metadata_schema: Array[
3787
+ {
3788
+ key: ::String,
3789
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3790
+ extraction_config: {
3791
+ llm_extraction_config: {
3792
+ llm_extraction_instruction: ::String?,
3793
+ definition: ::String,
3794
+ validation: {
3795
+ string_validation: {
3796
+ allowed_values: Array[::String]
3797
+ }?,
3798
+ string_list_validation: {
3799
+ allowed_values: Array[::String]?,
3800
+ max_items: ::Integer?
3801
+ }?,
3802
+ number_validation: {
3803
+ min_value: ::Float?,
3804
+ max_value: ::Float?
3805
+ }?
3806
+ }?
3807
+ }?
3808
+ }?
3809
+ },
3810
+ ]?
3461
3811
  }?
3462
3812
  }?,
3463
3813
  episodic_memory_strategy: {
@@ -3467,7 +3817,61 @@ module Aws
3467
3817
  namespace_templates: Array[::String]?,
3468
3818
  reflection_configuration: {
3469
3819
  namespaces: Array[::String]?,
3470
- namespace_templates: Array[::String]?
3820
+ namespace_templates: Array[::String]?,
3821
+ memory_record_schema: {
3822
+ metadata_schema: Array[
3823
+ {
3824
+ key: ::String,
3825
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3826
+ extraction_config: {
3827
+ llm_extraction_config: {
3828
+ llm_extraction_instruction: ::String?,
3829
+ definition: ::String,
3830
+ validation: {
3831
+ string_validation: {
3832
+ allowed_values: Array[::String]
3833
+ }?,
3834
+ string_list_validation: {
3835
+ allowed_values: Array[::String]?,
3836
+ max_items: ::Integer?
3837
+ }?,
3838
+ number_validation: {
3839
+ min_value: ::Float?,
3840
+ max_value: ::Float?
3841
+ }?
3842
+ }?
3843
+ }?
3844
+ }?
3845
+ },
3846
+ ]?
3847
+ }?
3848
+ }?,
3849
+ memory_record_schema: {
3850
+ metadata_schema: Array[
3851
+ {
3852
+ key: ::String,
3853
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3854
+ extraction_config: {
3855
+ llm_extraction_config: {
3856
+ llm_extraction_instruction: ::String?,
3857
+ definition: ::String,
3858
+ validation: {
3859
+ string_validation: {
3860
+ allowed_values: Array[::String]
3861
+ }?,
3862
+ string_list_validation: {
3863
+ allowed_values: Array[::String]?,
3864
+ max_items: ::Integer?
3865
+ }?,
3866
+ number_validation: {
3867
+ min_value: ::Float?,
3868
+ max_value: ::Float?
3869
+ }?
3870
+ }?
3871
+ }?
3872
+ }?
3873
+ },
3874
+ ]?
3471
3875
  }?
3472
3876
  }?
3473
3877
  },
@@ -3518,14 +3922,68 @@ module Aws
3518
3922
  reflection: {
3519
3923
  episodic_reflection_configuration: {
3520
3924
  namespaces: Array[::String]?,
3521
- namespace_templates: Array[::String]?
3925
+ namespace_templates: Array[::String]?,
3926
+ memory_record_schema: {
3927
+ metadata_schema: Array[
3928
+ {
3929
+ key: ::String,
3930
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3931
+ extraction_config: {
3932
+ llm_extraction_config: {
3933
+ llm_extraction_instruction: ::String?,
3934
+ definition: ::String,
3935
+ validation: {
3936
+ string_validation: {
3937
+ allowed_values: Array[::String]
3938
+ }?,
3939
+ string_list_validation: {
3940
+ allowed_values: Array[::String]?,
3941
+ max_items: ::Integer?
3942
+ }?,
3943
+ number_validation: {
3944
+ min_value: ::Float?,
3945
+ max_value: ::Float?
3946
+ }?
3947
+ }?
3948
+ }?
3949
+ }?
3950
+ },
3951
+ ]?
3952
+ }?
3522
3953
  }?,
3523
3954
  custom_reflection_configuration: {
3524
3955
  episodic_reflection_override: {
3525
3956
  append_to_prompt: ::String,
3526
3957
  model_id: ::String,
3527
3958
  namespaces: Array[::String]?,
3528
- namespace_templates: Array[::String]?
3959
+ namespace_templates: Array[::String]?,
3960
+ memory_record_schema: {
3961
+ metadata_schema: Array[
3962
+ {
3963
+ key: ::String,
3964
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3965
+ extraction_config: {
3966
+ llm_extraction_config: {
3967
+ llm_extraction_instruction: ::String?,
3968
+ definition: ::String,
3969
+ validation: {
3970
+ string_validation: {
3971
+ allowed_values: Array[::String]
3972
+ }?,
3973
+ string_list_validation: {
3974
+ allowed_values: Array[::String]?,
3975
+ max_items: ::Integer?
3976
+ }?,
3977
+ number_validation: {
3978
+ min_value: ::Float?,
3979
+ max_value: ::Float?
3980
+ }?
3981
+ }?
3982
+ }?
3983
+ }?
3984
+ },
3985
+ ]?
3986
+ }?
3529
3987
  }?
3530
3988
  }?
3531
3989
  }?,
@@ -3549,6 +4007,33 @@ module Aws
3549
4007
  }?,
3550
4008
  historical_context_window_size: ::Integer?
3551
4009
  }?
4010
+ }?,
4011
+ memory_record_schema: {
4012
+ metadata_schema: Array[
4013
+ {
4014
+ key: ::String,
4015
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
4016
+ extraction_config: {
4017
+ llm_extraction_config: {
4018
+ llm_extraction_instruction: ::String?,
4019
+ definition: ::String,
4020
+ validation: {
4021
+ string_validation: {
4022
+ allowed_values: Array[::String]
4023
+ }?,
4024
+ string_list_validation: {
4025
+ allowed_values: Array[::String]?,
4026
+ max_items: ::Integer?
4027
+ }?,
4028
+ number_validation: {
4029
+ min_value: ::Float?,
4030
+ max_value: ::Float?
4031
+ }?
4032
+ }?
4033
+ }?
4034
+ }?
4035
+ },
4036
+ ]?
3552
4037
  }?
3553
4038
  },
3554
4039
  ]?,
@@ -3558,6 +4043,12 @@ module Aws
3558
4043
  },
3559
4044
  ]?
3560
4045
  },
4046
+ ?add_indexed_keys: Array[
4047
+ {
4048
+ key: ::String,
4049
+ type: ("STRING" | "STRINGLIST" | "NUMBER")
4050
+ },
4051
+ ],
3561
4052
  ?stream_delivery_resources: {
3562
4053
  resources: Array[
3563
4054
  {
@@ -3604,8 +4095,8 @@ module Aws
3604
4095
  token_endpoint_auth_methods: Array[::String]?
3605
4096
  }?
3606
4097
  },
3607
- client_id: ::String,
3608
- client_secret: ::String,
4098
+ client_id: ::String?,
4099
+ client_secret: ::String?,
3609
4100
  private_endpoint: {
3610
4101
  self_managed_lattice_resource: {
3611
4102
  resource_configuration_identifier: ::String?
@@ -3636,7 +4127,15 @@ module Aws
3636
4127
  }?
3637
4128
  }
3638
4129
  },
3639
- ]?
4130
+ ]?,
4131
+ on_behalf_of_token_exchange_config: {
4132
+ grant_type: ("TOKEN_EXCHANGE" | "JWT_AUTHORIZATION_GRANT"),
4133
+ token_exchange_grant_type_config: {
4134
+ actor_token_content: ("NONE" | "M2M" | "AWS_IAM_ID_TOKEN_JWT"),
4135
+ actor_token_scopes: Array[::String]?
4136
+ }?
4137
+ }?,
4138
+ client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")?
3640
4139
  }?,
3641
4140
  google_oauth_2_provider_config: {
3642
4141
  client_id: ::String,