@intentius/chant-lexicon-aws 0.1.12 → 0.1.13

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.
package/dist/meta.json CHANGED
@@ -1057,6 +1057,11 @@
1057
1057
  "kind": "property",
1058
1058
  "lexicon": "aws"
1059
1059
  },
1060
+ "ARCRegionSwitchPlan_EventSourceMapping": {
1061
+ "resourceType": "AWS::ARCRegionSwitch::Plan.EventSourceMapping",
1062
+ "kind": "property",
1063
+ "lexicon": "aws"
1064
+ },
1060
1065
  "ARCRegionSwitchPlan_ExecutionApprovalConfiguration": {
1061
1066
  "resourceType": "AWS::ARCRegionSwitch::Plan.ExecutionApprovalConfiguration",
1062
1067
  "kind": "property",
@@ -1087,6 +1092,16 @@
1087
1092
  "kind": "property",
1088
1093
  "lexicon": "aws"
1089
1094
  },
1095
+ "ARCRegionSwitchPlan_LambdaEventSourceMappingConfiguration": {
1096
+ "resourceType": "AWS::ARCRegionSwitch::Plan.LambdaEventSourceMappingConfiguration",
1097
+ "kind": "property",
1098
+ "lexicon": "aws"
1099
+ },
1100
+ "ARCRegionSwitchPlan_LambdaEventSourceMappingUngraceful": {
1101
+ "resourceType": "AWS::ARCRegionSwitch::Plan.LambdaEventSourceMappingUngraceful",
1102
+ "kind": "property",
1103
+ "lexicon": "aws"
1104
+ },
1090
1105
  "ARCRegionSwitchPlan_LambdaUngraceful": {
1091
1106
  "resourceType": "AWS::ARCRegionSwitch::Plan.LambdaUngraceful",
1092
1107
  "kind": "property",
@@ -2406,6 +2421,11 @@
2406
2421
  "kind": "property",
2407
2422
  "lexicon": "aws"
2408
2423
  },
2424
+ "AdditionalNotes": {
2425
+ "resourceType": "AWS::QuickSight::DataSet.AdditionalNotes",
2426
+ "kind": "property",
2427
+ "lexicon": "aws"
2428
+ },
2409
2429
  "AdditionalStorageVolume": {
2410
2430
  "resourceType": "AWS::RDS::DBInstance.AdditionalStorageVolume",
2411
2431
  "kind": "property",
@@ -11348,11 +11368,6 @@
11348
11368
  "kind": "property",
11349
11369
  "lexicon": "aws"
11350
11370
  },
11351
- "AuthorizerConfiguration": {
11352
- "resourceType": "AWS::BedrockAgentCore::Runtime.AuthorizerConfiguration",
11353
- "kind": "property",
11354
- "lexicon": "aws"
11355
- },
11356
11371
  "AutoAcceptConfig": {
11357
11372
  "resourceType": "AWS::Connect::User.AutoAcceptConfig",
11358
11373
  "kind": "property",
@@ -12946,6 +12961,98 @@
12946
12961
  "tagUpdatable": true
12947
12962
  }
12948
12963
  },
12964
+ "BedrockAgentCoreDataset": {
12965
+ "resourceType": "AWS::BedrockAgentCore::Dataset",
12966
+ "kind": "resource",
12967
+ "lexicon": "aws",
12968
+ "attrs": {
12969
+ "DatasetArn": "DatasetArn",
12970
+ "DatasetId": "DatasetId",
12971
+ "Status": "Status",
12972
+ "ExampleCount": "ExampleCount",
12973
+ "CreatedAt": "CreatedAt",
12974
+ "UpdatedAt": "UpdatedAt"
12975
+ },
12976
+ "propertyConstraints": {
12977
+ "DatasetArn": {
12978
+ "pattern": "^arn:aws(-[a-z]+)*:bedrock-agentcore:[a-z0-9-]+:[0-9]{12}:dataset/[a-zA-Z0-9_-]{1,110}$"
12979
+ },
12980
+ "DatasetId": {
12981
+ "pattern": "^[a-zA-Z0-9_-]{1,110}$"
12982
+ },
12983
+ "DatasetName": {
12984
+ "pattern": "^[a-zA-Z][a-zA-Z0-9_]{0,47}$"
12985
+ },
12986
+ "Description": {
12987
+ "maxLength": 200
12988
+ },
12989
+ "SchemaType": {
12990
+ "enum": [
12991
+ "AGENTCORE_EVALUATION_PREDEFINED_V1",
12992
+ "AGENTCORE_EVALUATION_SIMULATED_V1"
12993
+ ]
12994
+ },
12995
+ "KmsKeyArn": {
12996
+ "pattern": "^arn:aws(|-cn|-us-gov):kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}$",
12997
+ "minLength": 1,
12998
+ "maxLength": 2048
12999
+ },
13000
+ "Status": {
13001
+ "enum": [
13002
+ "CREATING",
13003
+ "UPDATING",
13004
+ "DELETING",
13005
+ "ACTIVE",
13006
+ "CREATE_FAILED",
13007
+ "UPDATE_FAILED",
13008
+ "DELETE_FAILED"
13009
+ ]
13010
+ },
13011
+ "CreatedAt": {
13012
+ "format": "date-time"
13013
+ },
13014
+ "UpdatedAt": {
13015
+ "format": "date-time"
13016
+ }
13017
+ },
13018
+ "createOnly": [
13019
+ "DatasetName",
13020
+ "SchemaType",
13021
+ "KmsKeyArn",
13022
+ "Source"
13023
+ ],
13024
+ "writeOnly": [
13025
+ "Source"
13026
+ ],
13027
+ "primaryIdentifier": [
13028
+ "DatasetArn"
13029
+ ],
13030
+ "tagging": {
13031
+ "taggable": true,
13032
+ "tagOnCreate": true,
13033
+ "tagUpdatable": true
13034
+ }
13035
+ },
13036
+ "BedrockAgentCoreDataset_DataSourceType": {
13037
+ "resourceType": "AWS::BedrockAgentCore::Dataset.DataSourceType",
13038
+ "kind": "property",
13039
+ "lexicon": "aws"
13040
+ },
13041
+ "BedrockAgentCoreDataset_InlineExamplesSource": {
13042
+ "resourceType": "AWS::BedrockAgentCore::Dataset.InlineExamplesSource",
13043
+ "kind": "property",
13044
+ "lexicon": "aws"
13045
+ },
13046
+ "BedrockAgentCoreDataset_S3Source": {
13047
+ "resourceType": "AWS::BedrockAgentCore::Dataset.S3Source",
13048
+ "kind": "property",
13049
+ "lexicon": "aws"
13050
+ },
13051
+ "BedrockAgentCoreDataset_Tag": {
13052
+ "resourceType": "AWS::BedrockAgentCore::Dataset.Tag",
13053
+ "kind": "property",
13054
+ "lexicon": "aws"
13055
+ },
12949
13056
  "BedrockAgentCoreGateway": {
12950
13057
  "resourceType": "AWS::BedrockAgentCore::Gateway",
12951
13058
  "kind": "resource",
@@ -15456,6 +15563,33 @@
15456
15563
  "kind": "property",
15457
15564
  "lexicon": "aws"
15458
15565
  },
15566
+ "Browser": {
15567
+ "resourceType": "AWS::BedrockAgentCore::Browser",
15568
+ "kind": "resource",
15569
+ "lexicon": "aws",
15570
+ "attrs": {
15571
+ "BrowserArn": "BrowserArn",
15572
+ "BrowserId": "BrowserId",
15573
+ "Name": "Name",
15574
+ "Status": "Status"
15575
+ },
15576
+ "propertyConstraints": {
15577
+ "BrowserArn": {
15578
+ "pattern": "^arn:[a-z0-9-]+:bedrock-agentcore:[a-z0-9-]+:(aws|[0-9]{12}):browser/aws\\.browser\\.v1$"
15579
+ },
15580
+ "BrowserId": {
15581
+ "pattern": "^aws\\.browser\\.v1$"
15582
+ },
15583
+ "Status": {
15584
+ "enum": [
15585
+ "READY"
15586
+ ]
15587
+ }
15588
+ },
15589
+ "primaryIdentifier": [
15590
+ "BrowserArn"
15591
+ ]
15592
+ },
15459
15593
  "BrowserConfig": {
15460
15594
  "resourceType": "AWS::Synthetics::Canary.BrowserConfig",
15461
15595
  "kind": "property",
@@ -21182,6 +21316,16 @@
21182
21316
  "kind": "property",
21183
21317
  "lexicon": "aws"
21184
21318
  },
21319
+ "CoinbaseCdpConfigurationInput": {
21320
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.CoinbaseCdpConfigurationInput",
21321
+ "kind": "property",
21322
+ "lexicon": "aws"
21323
+ },
21324
+ "CoinbaseCdpConfigurationOutput": {
21325
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.CoinbaseCdpConfigurationOutput",
21326
+ "kind": "property",
21327
+ "lexicon": "aws"
21328
+ },
21185
21329
  "Collaboration": {
21186
21330
  "resourceType": "AWS::CleanRooms::Collaboration",
21187
21331
  "kind": "resource",
@@ -21382,6 +21526,16 @@
21382
21526
  "kind": "property",
21383
21527
  "lexicon": "aws"
21384
21528
  },
21529
+ "ColumnSemanticProperty": {
21530
+ "resourceType": "AWS::QuickSight::DataSet.ColumnSemanticProperty",
21531
+ "kind": "property",
21532
+ "lexicon": "aws"
21533
+ },
21534
+ "ColumnSemanticType": {
21535
+ "resourceType": "AWS::QuickSight::DataSet.ColumnSemanticType",
21536
+ "kind": "property",
21537
+ "lexicon": "aws"
21538
+ },
21385
21539
  "ColumnStatisticsConfiguration": {
21386
21540
  "resourceType": "AWS::DataBrew::Job.ColumnStatisticsConfiguration",
21387
21541
  "kind": "property",
@@ -21888,6 +22042,16 @@
21888
22042
  "kind": "property",
21889
22043
  "lexicon": "aws"
21890
22044
  },
22045
+ "CompositeSliComponent": {
22046
+ "resourceType": "AWS::ApplicationSignals::ServiceLevelObjective.CompositeSliComponent",
22047
+ "kind": "property",
22048
+ "lexicon": "aws"
22049
+ },
22050
+ "CompositeSliConfig": {
22051
+ "resourceType": "AWS::ApplicationSignals::ServiceLevelObjective.CompositeSliConfig",
22052
+ "kind": "property",
22053
+ "lexicon": "aws"
22054
+ },
21891
22055
  "CompositeSlotTypeSetting": {
21892
22056
  "resourceType": "AWS::Lex::Bot.CompositeSlotTypeSetting",
21893
22057
  "kind": "property",
@@ -22118,7 +22282,8 @@
22118
22282
  "enum": [
22119
22283
  "ONDEMAND",
22120
22284
  "SPOT",
22121
- "CAPACITY_BLOCK"
22285
+ "CAPACITY_BLOCK",
22286
+ "INTERRUPTIBLE_CAPACITY_RESERVATION"
22122
22287
  ]
22123
22288
  },
22124
22289
  "AmiId": {
@@ -25158,8 +25323,7 @@
25158
25323
  },
25159
25324
  "createOnly": [
25160
25325
  "ConsumableResourceName",
25161
- "ResourceType",
25162
- "Tags"
25326
+ "ResourceType"
25163
25327
  ],
25164
25328
  "primaryIdentifier": [
25165
25329
  "ConsumableResourceArn"
@@ -25167,7 +25331,7 @@
25167
25331
  "tagging": {
25168
25332
  "taggable": true,
25169
25333
  "tagOnCreate": true,
25170
- "tagUpdatable": false
25334
+ "tagUpdatable": true
25171
25335
  }
25172
25336
  },
25173
25337
  "ConsumableResourceProperties": {
@@ -25578,11 +25742,6 @@
25578
25742
  "kind": "property",
25579
25743
  "lexicon": "aws"
25580
25744
  },
25581
- "ContainerConfiguration": {
25582
- "resourceType": "AWS::BedrockAgentCore::Runtime.ContainerConfiguration",
25583
- "kind": "property",
25584
- "lexicon": "aws"
25585
- },
25586
25745
  "ContainerDistributionConfiguration": {
25587
25746
  "resourceType": "AWS::ImageBuilder::DistributionConfiguration.ContainerDistributionConfiguration",
25588
25747
  "kind": "property",
@@ -27094,6 +27253,11 @@
27094
27253
  "kind": "property",
27095
27254
  "lexicon": "aws"
27096
27255
  },
27256
+ "CustomInstruction": {
27257
+ "resourceType": "AWS::QuickSight::DataSet.CustomInstruction",
27258
+ "kind": "property",
27259
+ "lexicon": "aws"
27260
+ },
27097
27261
  "CustomInstructions": {
27098
27262
  "resourceType": "AWS::QuickSight::Topic.CustomInstructions",
27099
27263
  "kind": "property",
@@ -27989,7 +28153,17 @@
27989
28153
  ],
27990
28154
  "primaryIdentifier": [
27991
28155
  "DashboardName"
27992
- ]
28156
+ ],
28157
+ "tagging": {
28158
+ "taggable": true,
28159
+ "tagOnCreate": true,
28160
+ "tagUpdatable": true
28161
+ }
28162
+ },
28163
+ "CwDashboard_Tag": {
28164
+ "resourceType": "AWS::CloudWatch::Dashboard.Tag",
28165
+ "kind": "property",
28166
+ "lexicon": "aws"
27993
28167
  },
27994
28168
  "DAXCluster": {
27995
28169
  "resourceType": "AWS::DAX::Cluster",
@@ -30891,6 +31065,16 @@
30891
31065
  "kind": "property",
30892
31066
  "lexicon": "aws"
30893
31067
  },
31068
+ "DataSetSemanticDescription": {
31069
+ "resourceType": "AWS::QuickSight::DataSet.DataSetSemanticDescription",
31070
+ "kind": "property",
31071
+ "lexicon": "aws"
31072
+ },
31073
+ "DataSetSemanticMetadata": {
31074
+ "resourceType": "AWS::QuickSight::DataSet.DataSetSemanticMetadata",
31075
+ "kind": "property",
31076
+ "lexicon": "aws"
31077
+ },
30894
31078
  "DataSetStringComparisonFilterCondition": {
30895
31079
  "resourceType": "AWS::QuickSight::DataSet.DataSetStringComparisonFilterCondition",
30896
31080
  "kind": "property",
@@ -30921,6 +31105,11 @@
30921
31105
  "kind": "property",
30922
31106
  "lexicon": "aws"
30923
31107
  },
31108
+ "DataSet_AdditionalNotes": {
31109
+ "resourceType": "AWS::QuickSight::DataSet.AdditionalNotes",
31110
+ "kind": "property",
31111
+ "lexicon": "aws"
31112
+ },
30924
31113
  "DataSet_AggregateOperation": {
30925
31114
  "resourceType": "AWS::QuickSight::DataSet.AggregateOperation",
30926
31115
  "kind": "property",
@@ -30971,6 +31160,16 @@
30971
31160
  "kind": "property",
30972
31161
  "lexicon": "aws"
30973
31162
  },
31163
+ "DataSet_ColumnSemanticProperty": {
31164
+ "resourceType": "AWS::QuickSight::DataSet.ColumnSemanticProperty",
31165
+ "kind": "property",
31166
+ "lexicon": "aws"
31167
+ },
31168
+ "DataSet_ColumnSemanticType": {
31169
+ "resourceType": "AWS::QuickSight::DataSet.ColumnSemanticType",
31170
+ "kind": "property",
31171
+ "lexicon": "aws"
31172
+ },
30974
31173
  "DataSet_ColumnTag": {
30975
31174
  "resourceType": "AWS::QuickSight::DataSet.ColumnTag",
30976
31175
  "kind": "property",
@@ -30986,6 +31185,11 @@
30986
31185
  "kind": "property",
30987
31186
  "lexicon": "aws"
30988
31187
  },
31188
+ "DataSet_CustomInstruction": {
31189
+ "resourceType": "AWS::QuickSight::DataSet.CustomInstruction",
31190
+ "kind": "property",
31191
+ "lexicon": "aws"
31192
+ },
30989
31193
  "DataSet_CustomSql": {
30990
31194
  "resourceType": "AWS::QuickSight::DataSet.CustomSql",
30991
31195
  "kind": "property",
@@ -31066,6 +31270,16 @@
31066
31270
  "kind": "property",
31067
31271
  "lexicon": "aws"
31068
31272
  },
31273
+ "DataSet_DataSetSemanticDescription": {
31274
+ "resourceType": "AWS::QuickSight::DataSet.DataSetSemanticDescription",
31275
+ "kind": "property",
31276
+ "lexicon": "aws"
31277
+ },
31278
+ "DataSet_DataSetSemanticMetadata": {
31279
+ "resourceType": "AWS::QuickSight::DataSet.DataSetSemanticMetadata",
31280
+ "kind": "property",
31281
+ "lexicon": "aws"
31282
+ },
31069
31283
  "DataSet_DataSetStringComparisonFilterCondition": {
31070
31284
  "resourceType": "AWS::QuickSight::DataSet.DataSetStringComparisonFilterCondition",
31071
31285
  "kind": "property",
@@ -31171,6 +31385,11 @@
31171
31385
  "kind": "property",
31172
31386
  "lexicon": "aws"
31173
31387
  },
31388
+ "DataSet_InlineCustomInstruction": {
31389
+ "resourceType": "AWS::QuickSight::DataSet.InlineCustomInstruction",
31390
+ "kind": "property",
31391
+ "lexicon": "aws"
31392
+ },
31174
31393
  "DataSet_InputColumn": {
31175
31394
  "resourceType": "AWS::QuickSight::DataSet.InputColumn",
31176
31395
  "kind": "property",
@@ -31351,6 +31570,11 @@
31351
31570
  "kind": "property",
31352
31571
  "lexicon": "aws"
31353
31572
  },
31573
+ "DataSet_SharedColumnSemanticMetadata": {
31574
+ "resourceType": "AWS::QuickSight::DataSet.SharedColumnSemanticMetadata",
31575
+ "kind": "property",
31576
+ "lexicon": "aws"
31577
+ },
31354
31578
  "DataSet_SourceTable": {
31355
31579
  "resourceType": "AWS::QuickSight::DataSet.SourceTable",
31356
31580
  "kind": "property",
@@ -31371,6 +31595,11 @@
31371
31595
  "kind": "property",
31372
31596
  "lexicon": "aws"
31373
31597
  },
31598
+ "DataSet_TableSemanticMetadata": {
31599
+ "resourceType": "AWS::QuickSight::DataSet.TableSemanticMetadata",
31600
+ "kind": "property",
31601
+ "lexicon": "aws"
31602
+ },
31374
31603
  "DataSet_Tag": {
31375
31604
  "resourceType": "AWS::QuickSight::DataSet.Tag",
31376
31605
  "kind": "property",
@@ -31416,6 +31645,11 @@
31416
31645
  "kind": "property",
31417
31646
  "lexicon": "aws"
31418
31647
  },
31648
+ "DataSet_UploadedDocumentMetadata": {
31649
+ "resourceType": "AWS::QuickSight::DataSet.UploadedDocumentMetadata",
31650
+ "kind": "property",
31651
+ "lexicon": "aws"
31652
+ },
31419
31653
  "DataSet_ValueColumnConfiguration": {
31420
31654
  "resourceType": "AWS::QuickSight::DataSet.ValueColumnConfiguration",
31421
31655
  "kind": "property",
@@ -31451,6 +31685,11 @@
31451
31685
  "kind": "property",
31452
31686
  "lexicon": "aws"
31453
31687
  },
31688
+ "DataSourceType": {
31689
+ "resourceType": "AWS::BedrockAgentCore::Dataset.DataSourceType",
31690
+ "kind": "property",
31691
+ "lexicon": "aws"
31692
+ },
31454
31693
  "DataStorage": {
31455
31694
  "resourceType": "AWS::ElastiCache::ServerlessCache.DataStorage",
31456
31695
  "kind": "property",
@@ -36515,6 +36754,7 @@
36515
36754
  "Configuration/MCPServer/EnableWebhookUpdates",
36516
36755
  "Configuration/MCPServerDatadog/EnableWebhookUpdates",
36517
36756
  "Configuration/MCPServerSplunk/EnableWebhookUpdates",
36757
+ "Configuration/MCPServerGrafana/EnableWebhookUpdates",
36518
36758
  "Configuration/GitLab/EnableWebhookUpdates",
36519
36759
  "Configuration/PagerDuty/EnableWebhookUpdates",
36520
36760
  "Configuration/EventChannel/EnableWebhookUpdates",
@@ -36575,6 +36815,11 @@
36575
36815
  "kind": "property",
36576
36816
  "lexicon": "aws"
36577
36817
  },
36818
+ "DevOpsAgentAssociation_MCPServerGrafanaConfiguration": {
36819
+ "resourceType": "AWS::DevOpsAgent::Association.MCPServerGrafanaConfiguration",
36820
+ "kind": "property",
36821
+ "lexicon": "aws"
36822
+ },
36578
36823
  "DevOpsAgentAssociation_MCPServerNewRelicConfiguration": {
36579
36824
  "resourceType": "AWS::DevOpsAgent::Association.MCPServerNewRelicConfiguration",
36580
36825
  "kind": "property",
@@ -36638,7 +36883,15 @@
36638
36883
  },
36639
36884
  "createOnly": [
36640
36885
  "ServiceType",
36641
- "ServiceDetails",
36886
+ "ServiceDetails/Dynatrace",
36887
+ "ServiceDetails/MCPServer",
36888
+ "ServiceDetails/MCPServerSplunk",
36889
+ "ServiceDetails/MCPServerNewRelic",
36890
+ "ServiceDetails/GitLab",
36891
+ "ServiceDetails/ServiceNow",
36892
+ "ServiceDetails/PagerDuty",
36893
+ "ServiceDetails/AzureIdentity",
36894
+ "ServiceDetails/MCPServerGrafana",
36642
36895
  "KmsKeyArn"
36643
36896
  ],
36644
36897
  "writeOnly": [
@@ -36688,6 +36941,11 @@
36688
36941
  "kind": "property",
36689
36942
  "lexicon": "aws"
36690
36943
  },
36944
+ "DevOpsAgentService_MCPServerGrafanaDetails": {
36945
+ "resourceType": "AWS::DevOpsAgent::Service.MCPServerGrafanaDetails",
36946
+ "kind": "property",
36947
+ "lexicon": "aws"
36948
+ },
36691
36949
  "DevOpsAgentService_MCPServerOAuthClientCredentialsConfig": {
36692
36950
  "resourceType": "AWS::DevOpsAgent::Service.MCPServerOAuthClientCredentialsConfig",
36693
36951
  "kind": "property",
@@ -36758,6 +37016,11 @@
36758
37016
  "kind": "property",
36759
37017
  "lexicon": "aws"
36760
37018
  },
37019
+ "DevOpsAgentService_RegisteredMCPServerGrafanaDetails": {
37020
+ "resourceType": "AWS::DevOpsAgent::Service.RegisteredMCPServerGrafanaDetails",
37021
+ "kind": "property",
37022
+ "lexicon": "aws"
37023
+ },
36761
37024
  "DevOpsAgentService_RegisteredMCPServerSigV4Details": {
36762
37025
  "resourceType": "AWS::DevOpsAgent::Service.RegisteredMCPServerSigV4Details",
36763
37026
  "kind": "property",
@@ -41236,6 +41499,11 @@
41236
41499
  "kind": "property",
41237
41500
  "lexicon": "aws"
41238
41501
  },
41502
+ "EcsService_HookTimeoutConfig": {
41503
+ "resourceType": "AWS::ECS::Service.HookTimeoutConfig",
41504
+ "kind": "property",
41505
+ "lexicon": "aws"
41506
+ },
41239
41507
  "EcsService_LinearConfiguration": {
41240
41508
  "resourceType": "AWS::ECS::Service.LinearConfiguration",
41241
41509
  "kind": "property",
@@ -41371,6 +41639,11 @@
41371
41639
  "kind": "property",
41372
41640
  "lexicon": "aws"
41373
41641
  },
41642
+ "EfsAccessPointConfiguration": {
41643
+ "resourceType": "AWS::BedrockAgentCore::Runtime.EfsAccessPointConfiguration",
41644
+ "kind": "property",
41645
+ "lexicon": "aws"
41646
+ },
41374
41647
  "EfsInputFileLocation": {
41375
41648
  "resourceType": "AWS::Transfer::Workflow.EfsInputFileLocation",
41376
41649
  "kind": "property",
@@ -42617,6 +42890,11 @@
42617
42890
  "kind": "property",
42618
42891
  "lexicon": "aws"
42619
42892
  },
42893
+ "EndpointConfig_InstancePools": {
42894
+ "resourceType": "AWS::SageMaker::EndpointConfig.InstancePools",
42895
+ "kind": "property",
42896
+ "lexicon": "aws"
42897
+ },
42620
42898
  "EndpointConfig_ManagedInstanceScaling": {
42621
42899
  "resourceType": "AWS::SageMaker::EndpointConfig.ManagedInstanceScaling",
42622
42900
  "kind": "property",
@@ -45316,6 +45594,11 @@
45316
45594
  "kind": "property",
45317
45595
  "lexicon": "aws"
45318
45596
  },
45597
+ "ExecutionControls": {
45598
+ "resourceType": "AWS::Config::RemediationConfiguration.ExecutionControls",
45599
+ "kind": "property",
45600
+ "lexicon": "aws"
45601
+ },
45319
45602
  "ExecutionPlan": {
45320
45603
  "resourceType": "AWS::KendraRanking::ExecutionPlan",
45321
45604
  "kind": "resource",
@@ -45587,7 +45870,6 @@
45587
45870
  },
45588
45871
  "createOnly": [
45589
45872
  "Export/Name",
45590
- "Export/DataQuery/TableConfigurations",
45591
45873
  "Export/RefreshCadence"
45592
45874
  ],
45593
45875
  "primaryIdentifier": [
@@ -47034,11 +47316,6 @@
47034
47316
  "kind": "property",
47035
47317
  "lexicon": "aws"
47036
47318
  },
47037
- "FilesystemConfiguration": {
47038
- "resourceType": "AWS::BedrockAgentCore::Runtime.FilesystemConfiguration",
47039
- "kind": "property",
47040
- "lexicon": "aws"
47041
- },
47042
47319
  "FilterCriterion": {
47043
47320
  "resourceType": "AWS::RTBFabric::Link.FilterCriterion",
47044
47321
  "kind": "property",
@@ -47320,6 +47597,16 @@
47320
47597
  "tagUpdatable": true
47321
47598
  }
47322
47599
  },
47600
+ "FirewallAdvancedContentCategoryConfig": {
47601
+ "resourceType": "AWS::Route53Resolver::FirewallRuleGroup.FirewallAdvancedContentCategoryConfig",
47602
+ "kind": "property",
47603
+ "lexicon": "aws"
47604
+ },
47605
+ "FirewallAdvancedThreatCategoryConfig": {
47606
+ "resourceType": "AWS::Route53Resolver::FirewallRuleGroup.FirewallAdvancedThreatCategoryConfig",
47607
+ "kind": "property",
47608
+ "lexicon": "aws"
47609
+ },
47323
47610
  "FirewallPolicy": {
47324
47611
  "resourceType": "AWS::NetworkFirewall::FirewallPolicy",
47325
47612
  "kind": "resource",
@@ -47632,16 +47919,36 @@
47632
47919
  "kind": "property",
47633
47920
  "lexicon": "aws"
47634
47921
  },
47922
+ "FirewallRuleGroup_FirewallAdvancedContentCategoryConfig": {
47923
+ "resourceType": "AWS::Route53Resolver::FirewallRuleGroup.FirewallAdvancedContentCategoryConfig",
47924
+ "kind": "property",
47925
+ "lexicon": "aws"
47926
+ },
47927
+ "FirewallRuleGroup_FirewallAdvancedThreatCategoryConfig": {
47928
+ "resourceType": "AWS::Route53Resolver::FirewallRuleGroup.FirewallAdvancedThreatCategoryConfig",
47929
+ "kind": "property",
47930
+ "lexicon": "aws"
47931
+ },
47635
47932
  "FirewallRuleGroup_FirewallRule": {
47636
47933
  "resourceType": "AWS::Route53Resolver::FirewallRuleGroup.FirewallRule",
47637
47934
  "kind": "property",
47638
47935
  "lexicon": "aws"
47639
47936
  },
47937
+ "FirewallRuleGroup_FirewallRuleType": {
47938
+ "resourceType": "AWS::Route53Resolver::FirewallRuleGroup.FirewallRuleType",
47939
+ "kind": "property",
47940
+ "lexicon": "aws"
47941
+ },
47640
47942
  "FirewallRuleGroup_Tag": {
47641
47943
  "resourceType": "AWS::Route53Resolver::FirewallRuleGroup.Tag",
47642
47944
  "kind": "property",
47643
47945
  "lexicon": "aws"
47644
47946
  },
47947
+ "FirewallRuleType": {
47948
+ "resourceType": "AWS::Route53Resolver::FirewallRuleGroup.FirewallRuleType",
47949
+ "kind": "property",
47950
+ "lexicon": "aws"
47951
+ },
47645
47952
  "Firewall_AvailabilityZoneMapping": {
47646
47953
  "resourceType": "AWS::NetworkFirewall::Firewall.AvailabilityZoneMapping",
47647
47954
  "kind": "property",
@@ -52635,6 +52942,360 @@
52635
52942
  "kind": "property",
52636
52943
  "lexicon": "aws"
52637
52944
  },
52945
+ "Harness": {
52946
+ "resourceType": "AWS::BedrockAgentCore::Harness",
52947
+ "kind": "resource",
52948
+ "lexicon": "aws",
52949
+ "attrs": {
52950
+ "Arn": "Arn",
52951
+ "HarnessId": "HarnessId",
52952
+ "Status": "Status",
52953
+ "CreatedAt": "CreatedAt",
52954
+ "UpdatedAt": "UpdatedAt",
52955
+ "Environment_AgentCoreRuntimeEnvironment_AgentRuntimeArn": "Environment.AgentCoreRuntimeEnvironment.AgentRuntimeArn",
52956
+ "Environment_AgentCoreRuntimeEnvironment_AgentRuntimeName": "Environment.AgentCoreRuntimeEnvironment.AgentRuntimeName",
52957
+ "Environment_AgentCoreRuntimeEnvironment_AgentRuntimeId": "Environment.AgentCoreRuntimeEnvironment.AgentRuntimeId"
52958
+ },
52959
+ "propertyConstraints": {
52960
+ "Arn": {
52961
+ "pattern": "^arn:([^:]+)?:bedrock-agentcore:[a-z0-9-]+:[0-9]{12}:harness/[a-zA-Z][a-zA-Z0-9_]{0,39}-[a-zA-Z0-9]{10}$"
52962
+ },
52963
+ "HarnessId": {
52964
+ "pattern": "^[a-zA-Z][a-zA-Z0-9_]{0,39}-[a-zA-Z0-9]{10}$"
52965
+ },
52966
+ "HarnessName": {
52967
+ "pattern": "^[a-zA-Z][a-zA-Z0-9_]{0,39}$"
52968
+ },
52969
+ "ExecutionRoleArn": {
52970
+ "pattern": "^arn:aws(-[^:]+)?:iam::[0-9]{12}:role/.+$",
52971
+ "minLength": 1,
52972
+ "maxLength": 2048
52973
+ },
52974
+ "CreatedAt": {
52975
+ "format": "date-time"
52976
+ },
52977
+ "UpdatedAt": {
52978
+ "format": "date-time"
52979
+ }
52980
+ },
52981
+ "createOnly": [
52982
+ "HarnessName",
52983
+ "Environment/AgentCoreRuntimeEnvironment/NetworkConfiguration"
52984
+ ],
52985
+ "primaryIdentifier": [
52986
+ "Arn"
52987
+ ],
52988
+ "tagging": {
52989
+ "taggable": true,
52990
+ "tagOnCreate": true,
52991
+ "tagUpdatable": true
52992
+ }
52993
+ },
52994
+ "HarnessAgentCoreBrowserConfig": {
52995
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessAgentCoreBrowserConfig",
52996
+ "kind": "property",
52997
+ "lexicon": "aws"
52998
+ },
52999
+ "HarnessAgentCoreCodeInterpreterConfig": {
53000
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessAgentCoreCodeInterpreterConfig",
53001
+ "kind": "property",
53002
+ "lexicon": "aws"
53003
+ },
53004
+ "HarnessAgentCoreGatewayConfig": {
53005
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessAgentCoreGatewayConfig",
53006
+ "kind": "property",
53007
+ "lexicon": "aws"
53008
+ },
53009
+ "HarnessAgentCoreMemoryConfiguration": {
53010
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessAgentCoreMemoryConfiguration",
53011
+ "kind": "property",
53012
+ "lexicon": "aws"
53013
+ },
53014
+ "HarnessAgentCoreMemoryRetrievalConfig": {
53015
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessAgentCoreMemoryRetrievalConfig",
53016
+ "kind": "property",
53017
+ "lexicon": "aws"
53018
+ },
53019
+ "HarnessAgentCoreRuntimeEnvironment": {
53020
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessAgentCoreRuntimeEnvironment",
53021
+ "kind": "property",
53022
+ "lexicon": "aws"
53023
+ },
53024
+ "HarnessBedrockModelConfig": {
53025
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessBedrockModelConfig",
53026
+ "kind": "property",
53027
+ "lexicon": "aws"
53028
+ },
53029
+ "HarnessEnvironmentArtifact": {
53030
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessEnvironmentArtifact",
53031
+ "kind": "property",
53032
+ "lexicon": "aws"
53033
+ },
53034
+ "HarnessEnvironmentProvider": {
53035
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessEnvironmentProvider",
53036
+ "kind": "property",
53037
+ "lexicon": "aws"
53038
+ },
53039
+ "HarnessGatewayOutboundAuth": {
53040
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessGatewayOutboundAuth",
53041
+ "kind": "property",
53042
+ "lexicon": "aws"
53043
+ },
53044
+ "HarnessGeminiModelConfig": {
53045
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessGeminiModelConfig",
53046
+ "kind": "property",
53047
+ "lexicon": "aws"
53048
+ },
53049
+ "HarnessInlineFunctionConfig": {
53050
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessInlineFunctionConfig",
53051
+ "kind": "property",
53052
+ "lexicon": "aws"
53053
+ },
53054
+ "HarnessMemoryConfiguration": {
53055
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessMemoryConfiguration",
53056
+ "kind": "property",
53057
+ "lexicon": "aws"
53058
+ },
53059
+ "HarnessModelConfiguration": {
53060
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessModelConfiguration",
53061
+ "kind": "property",
53062
+ "lexicon": "aws"
53063
+ },
53064
+ "HarnessOpenAiModelConfig": {
53065
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessOpenAiModelConfig",
53066
+ "kind": "property",
53067
+ "lexicon": "aws"
53068
+ },
53069
+ "HarnessRemoteMcpConfig": {
53070
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessRemoteMcpConfig",
53071
+ "kind": "property",
53072
+ "lexicon": "aws"
53073
+ },
53074
+ "HarnessSkill": {
53075
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessSkill",
53076
+ "kind": "property",
53077
+ "lexicon": "aws"
53078
+ },
53079
+ "HarnessSlidingWindowConfiguration": {
53080
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessSlidingWindowConfiguration",
53081
+ "kind": "property",
53082
+ "lexicon": "aws"
53083
+ },
53084
+ "HarnessSummarizationConfiguration": {
53085
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessSummarizationConfiguration",
53086
+ "kind": "property",
53087
+ "lexicon": "aws"
53088
+ },
53089
+ "HarnessSystemContentBlock": {
53090
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessSystemContentBlock",
53091
+ "kind": "property",
53092
+ "lexicon": "aws"
53093
+ },
53094
+ "HarnessTool": {
53095
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessTool",
53096
+ "kind": "property",
53097
+ "lexicon": "aws"
53098
+ },
53099
+ "HarnessToolConfiguration": {
53100
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessToolConfiguration",
53101
+ "kind": "property",
53102
+ "lexicon": "aws"
53103
+ },
53104
+ "HarnessTruncationConfiguration": {
53105
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessTruncationConfiguration",
53106
+ "kind": "property",
53107
+ "lexicon": "aws"
53108
+ },
53109
+ "HarnessTruncationStrategyConfiguration": {
53110
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessTruncationStrategyConfiguration",
53111
+ "kind": "property",
53112
+ "lexicon": "aws"
53113
+ },
53114
+ "Harness_AuthorizerConfiguration": {
53115
+ "resourceType": "AWS::BedrockAgentCore::Harness.AuthorizerConfiguration",
53116
+ "kind": "property",
53117
+ "lexicon": "aws"
53118
+ },
53119
+ "Harness_AuthorizingClaimMatchValueType": {
53120
+ "resourceType": "AWS::BedrockAgentCore::Harness.AuthorizingClaimMatchValueType",
53121
+ "kind": "property",
53122
+ "lexicon": "aws"
53123
+ },
53124
+ "Harness_ClaimMatchValueType": {
53125
+ "resourceType": "AWS::BedrockAgentCore::Harness.ClaimMatchValueType",
53126
+ "kind": "property",
53127
+ "lexicon": "aws"
53128
+ },
53129
+ "Harness_ContainerConfiguration": {
53130
+ "resourceType": "AWS::BedrockAgentCore::Harness.ContainerConfiguration",
53131
+ "kind": "property",
53132
+ "lexicon": "aws"
53133
+ },
53134
+ "Harness_CustomClaimValidationType": {
53135
+ "resourceType": "AWS::BedrockAgentCore::Harness.CustomClaimValidationType",
53136
+ "kind": "property",
53137
+ "lexicon": "aws"
53138
+ },
53139
+ "Harness_CustomJWTAuthorizerConfiguration": {
53140
+ "resourceType": "AWS::BedrockAgentCore::Harness.CustomJWTAuthorizerConfiguration",
53141
+ "kind": "property",
53142
+ "lexicon": "aws"
53143
+ },
53144
+ "Harness_FilesystemConfiguration": {
53145
+ "resourceType": "AWS::BedrockAgentCore::Harness.FilesystemConfiguration",
53146
+ "kind": "property",
53147
+ "lexicon": "aws"
53148
+ },
53149
+ "Harness_HarnessAgentCoreBrowserConfig": {
53150
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessAgentCoreBrowserConfig",
53151
+ "kind": "property",
53152
+ "lexicon": "aws"
53153
+ },
53154
+ "Harness_HarnessAgentCoreCodeInterpreterConfig": {
53155
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessAgentCoreCodeInterpreterConfig",
53156
+ "kind": "property",
53157
+ "lexicon": "aws"
53158
+ },
53159
+ "Harness_HarnessAgentCoreGatewayConfig": {
53160
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessAgentCoreGatewayConfig",
53161
+ "kind": "property",
53162
+ "lexicon": "aws"
53163
+ },
53164
+ "Harness_HarnessAgentCoreMemoryConfiguration": {
53165
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessAgentCoreMemoryConfiguration",
53166
+ "kind": "property",
53167
+ "lexicon": "aws"
53168
+ },
53169
+ "Harness_HarnessAgentCoreMemoryRetrievalConfig": {
53170
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessAgentCoreMemoryRetrievalConfig",
53171
+ "kind": "property",
53172
+ "lexicon": "aws"
53173
+ },
53174
+ "Harness_HarnessAgentCoreRuntimeEnvironment": {
53175
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessAgentCoreRuntimeEnvironment",
53176
+ "kind": "property",
53177
+ "lexicon": "aws"
53178
+ },
53179
+ "Harness_HarnessBedrockModelConfig": {
53180
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessBedrockModelConfig",
53181
+ "kind": "property",
53182
+ "lexicon": "aws"
53183
+ },
53184
+ "Harness_HarnessEnvironmentArtifact": {
53185
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessEnvironmentArtifact",
53186
+ "kind": "property",
53187
+ "lexicon": "aws"
53188
+ },
53189
+ "Harness_HarnessEnvironmentProvider": {
53190
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessEnvironmentProvider",
53191
+ "kind": "property",
53192
+ "lexicon": "aws"
53193
+ },
53194
+ "Harness_HarnessGatewayOutboundAuth": {
53195
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessGatewayOutboundAuth",
53196
+ "kind": "property",
53197
+ "lexicon": "aws"
53198
+ },
53199
+ "Harness_HarnessGeminiModelConfig": {
53200
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessGeminiModelConfig",
53201
+ "kind": "property",
53202
+ "lexicon": "aws"
53203
+ },
53204
+ "Harness_HarnessInlineFunctionConfig": {
53205
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessInlineFunctionConfig",
53206
+ "kind": "property",
53207
+ "lexicon": "aws"
53208
+ },
53209
+ "Harness_HarnessMemoryConfiguration": {
53210
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessMemoryConfiguration",
53211
+ "kind": "property",
53212
+ "lexicon": "aws"
53213
+ },
53214
+ "Harness_HarnessModelConfiguration": {
53215
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessModelConfiguration",
53216
+ "kind": "property",
53217
+ "lexicon": "aws"
53218
+ },
53219
+ "Harness_HarnessOpenAiModelConfig": {
53220
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessOpenAiModelConfig",
53221
+ "kind": "property",
53222
+ "lexicon": "aws"
53223
+ },
53224
+ "Harness_HarnessRemoteMcpConfig": {
53225
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessRemoteMcpConfig",
53226
+ "kind": "property",
53227
+ "lexicon": "aws"
53228
+ },
53229
+ "Harness_HarnessSkill": {
53230
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessSkill",
53231
+ "kind": "property",
53232
+ "lexicon": "aws"
53233
+ },
53234
+ "Harness_HarnessSlidingWindowConfiguration": {
53235
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessSlidingWindowConfiguration",
53236
+ "kind": "property",
53237
+ "lexicon": "aws"
53238
+ },
53239
+ "Harness_HarnessSummarizationConfiguration": {
53240
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessSummarizationConfiguration",
53241
+ "kind": "property",
53242
+ "lexicon": "aws"
53243
+ },
53244
+ "Harness_HarnessSystemContentBlock": {
53245
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessSystemContentBlock",
53246
+ "kind": "property",
53247
+ "lexicon": "aws"
53248
+ },
53249
+ "Harness_HarnessTool": {
53250
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessTool",
53251
+ "kind": "property",
53252
+ "lexicon": "aws"
53253
+ },
53254
+ "Harness_HarnessToolConfiguration": {
53255
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessToolConfiguration",
53256
+ "kind": "property",
53257
+ "lexicon": "aws"
53258
+ },
53259
+ "Harness_HarnessTruncationConfiguration": {
53260
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessTruncationConfiguration",
53261
+ "kind": "property",
53262
+ "lexicon": "aws"
53263
+ },
53264
+ "Harness_HarnessTruncationStrategyConfiguration": {
53265
+ "resourceType": "AWS::BedrockAgentCore::Harness.HarnessTruncationStrategyConfiguration",
53266
+ "kind": "property",
53267
+ "lexicon": "aws"
53268
+ },
53269
+ "Harness_LifecycleConfiguration": {
53270
+ "resourceType": "AWS::BedrockAgentCore::Harness.LifecycleConfiguration",
53271
+ "kind": "property",
53272
+ "lexicon": "aws"
53273
+ },
53274
+ "Harness_NetworkConfiguration": {
53275
+ "resourceType": "AWS::BedrockAgentCore::Harness.NetworkConfiguration",
53276
+ "kind": "property",
53277
+ "lexicon": "aws"
53278
+ },
53279
+ "Harness_OAuthCredentialProvider": {
53280
+ "resourceType": "AWS::BedrockAgentCore::Harness.OAuthCredentialProvider",
53281
+ "kind": "property",
53282
+ "lexicon": "aws"
53283
+ },
53284
+ "Harness_SessionStorageConfiguration": {
53285
+ "resourceType": "AWS::BedrockAgentCore::Harness.SessionStorageConfiguration",
53286
+ "kind": "property",
53287
+ "lexicon": "aws"
53288
+ },
53289
+ "Harness_Tag": {
53290
+ "resourceType": "AWS::BedrockAgentCore::Harness.Tag",
53291
+ "kind": "property",
53292
+ "lexicon": "aws"
53293
+ },
53294
+ "Harness_VpcConfig": {
53295
+ "resourceType": "AWS::BedrockAgentCore::Harness.VpcConfig",
53296
+ "kind": "property",
53297
+ "lexicon": "aws"
53298
+ },
52638
53299
  "Hash": {
52639
53300
  "resourceType": "AWS::CleanRooms::AnalysisTemplate.Hash",
52640
53301
  "kind": "property",
@@ -52905,6 +53566,11 @@
52905
53566
  "Arn"
52906
53567
  ]
52907
53568
  },
53569
+ "HookTimeoutConfig": {
53570
+ "resourceType": "AWS::ECS::Service.HookTimeoutConfig",
53571
+ "kind": "property",
53572
+ "lexicon": "aws"
53573
+ },
52908
53574
  "HookTypeConfig": {
52909
53575
  "resourceType": "AWS::CloudFormation::HookTypeConfig",
52910
53576
  "kind": "resource",
@@ -56874,11 +57540,21 @@
56874
57540
  "kind": "property",
56875
57541
  "lexicon": "aws"
56876
57542
  },
57543
+ "InlineCustomInstruction": {
57544
+ "resourceType": "AWS::QuickSight::DataSet.InlineCustomInstruction",
57545
+ "kind": "property",
57546
+ "lexicon": "aws"
57547
+ },
56877
57548
  "InlineDocumentEnrichmentConfiguration": {
56878
57549
  "resourceType": "AWS::QBusiness::DataSource.InlineDocumentEnrichmentConfiguration",
56879
57550
  "kind": "property",
56880
57551
  "lexicon": "aws"
56881
57552
  },
57553
+ "InlineExamplesSource": {
57554
+ "resourceType": "AWS::BedrockAgentCore::Dataset.InlineExamplesSource",
57555
+ "kind": "property",
57556
+ "lexicon": "aws"
57557
+ },
56882
57558
  "InlineRedactionConfiguration": {
56883
57559
  "resourceType": "AWS::WorkSpacesWeb::DataProtectionSettings.InlineRedactionConfiguration",
56884
57560
  "kind": "property",
@@ -57734,6 +58410,11 @@
57734
58410
  "kind": "property",
57735
58411
  "lexicon": "aws"
57736
58412
  },
58413
+ "InstancePools": {
58414
+ "resourceType": "AWS::SageMaker::EndpointConfig.InstancePools",
58415
+ "kind": "property",
58416
+ "lexicon": "aws"
58417
+ },
57737
58418
  "InstanceProfile": {
57738
58419
  "resourceType": "AWS::IAM::InstanceProfile",
57739
58420
  "kind": "resource",
@@ -60372,7 +61053,6 @@
60372
61053
  }
60373
61054
  },
60374
61055
  "createOnly": [
60375
- "Tags",
60376
61056
  "JobQueueName",
60377
61057
  "JobQueueType"
60378
61058
  ],
@@ -60382,7 +61062,7 @@
60382
61062
  "tagging": {
60383
61063
  "taggable": true,
60384
61064
  "tagOnCreate": true,
60385
- "tagUpdatable": false
61065
+ "tagUpdatable": true
60386
61066
  }
60387
61067
  },
60388
61068
  "JobQueue_ComputeEnvironmentOrder": {
@@ -62423,6 +63103,16 @@
62423
63103
  "kind": "property",
62424
63104
  "lexicon": "aws"
62425
63105
  },
63106
+ "LambdaEventSourceMappingConfiguration": {
63107
+ "resourceType": "AWS::ARCRegionSwitch::Plan.LambdaEventSourceMappingConfiguration",
63108
+ "kind": "property",
63109
+ "lexicon": "aws"
63110
+ },
63111
+ "LambdaEventSourceMappingUngraceful": {
63112
+ "resourceType": "AWS::ARCRegionSwitch::Plan.LambdaEventSourceMappingUngraceful",
63113
+ "kind": "property",
63114
+ "lexicon": "aws"
63115
+ },
62426
63116
  "LambdaExecutionParameters": {
62427
63117
  "resourceType": "AWS::GreengrassV2::ComponentVersion.LambdaExecutionParameters",
62428
63118
  "kind": "property",
@@ -62662,7 +63352,9 @@
62662
63352
  "UserData"
62663
63353
  ],
62664
63354
  "writeOnly": [
62665
- "InstanceId"
63355
+ "InstanceId",
63356
+ "ClassicLinkVPCId",
63357
+ "ClassicLinkVPCSecurityGroups"
62666
63358
  ],
62667
63359
  "primaryIdentifier": [
62668
63360
  "LaunchConfigurationName"
@@ -66791,6 +67483,16 @@
66791
67483
  "kind": "property",
66792
67484
  "lexicon": "aws"
66793
67485
  },
67486
+ "MCPServerGrafanaConfiguration": {
67487
+ "resourceType": "AWS::DevOpsAgent::Association.MCPServerGrafanaConfiguration",
67488
+ "kind": "property",
67489
+ "lexicon": "aws"
67490
+ },
67491
+ "MCPServerGrafanaDetails": {
67492
+ "resourceType": "AWS::DevOpsAgent::Service.MCPServerGrafanaDetails",
67493
+ "kind": "property",
67494
+ "lexicon": "aws"
67495
+ },
66794
67496
  "MCPServerNewRelicConfiguration": {
66795
67497
  "resourceType": "AWS::DevOpsAgent::Association.MCPServerNewRelicConfiguration",
66796
67498
  "kind": "property",
@@ -68455,6 +69157,11 @@
68455
69157
  "kind": "property",
68456
69158
  "lexicon": "aws"
68457
69159
  },
69160
+ "MatchingConfig": {
69161
+ "resourceType": "AWS::EntityResolution::MatchingWorkflow.MatchingConfig",
69162
+ "kind": "property",
69163
+ "lexicon": "aws"
69164
+ },
68458
69165
  "MatchingRule": {
68459
69166
  "resourceType": "AWS::CustomerProfiles::Domain.MatchingRule",
68460
69167
  "kind": "property",
@@ -68507,6 +69214,11 @@
68507
69214
  "kind": "property",
68508
69215
  "lexicon": "aws"
68509
69216
  },
69217
+ "MatchingWorkflow_MatchingConfig": {
69218
+ "resourceType": "AWS::EntityResolution::MatchingWorkflow.MatchingConfig",
69219
+ "kind": "property",
69220
+ "lexicon": "aws"
69221
+ },
68510
69222
  "MatchingWorkflow_OutputAttribute": {
68511
69223
  "resourceType": "AWS::EntityResolution::MatchingWorkflow.OutputAttribute",
68512
69224
  "kind": "property",
@@ -71811,6 +72523,11 @@
71811
72523
  "kind": "property",
71812
72524
  "lexicon": "aws"
71813
72525
  },
72526
+ "MetricSource": {
72527
+ "resourceType": "AWS::ApplicationSignals::ServiceLevelObjective.MetricSource",
72528
+ "kind": "property",
72529
+ "lexicon": "aws"
72530
+ },
71814
72531
  "MetricStream": {
71815
72532
  "resourceType": "AWS::CloudWatch::MetricStream",
71816
72533
  "kind": "resource",
@@ -76306,11 +77023,6 @@
76306
77023
  "kind": "property",
76307
77024
  "lexicon": "aws"
76308
77025
  },
76309
- "OAuthCredentialProvider": {
76310
- "resourceType": "AWS::BedrockAgentCore::GatewayTarget.OAuthCredentialProvider",
76311
- "kind": "property",
76312
- "lexicon": "aws"
76313
- },
76314
77026
  "OAuthProperties": {
76315
77027
  "resourceType": "AWS::AppFlow::ConnectorProfile.OAuthProperties",
76316
77028
  "kind": "property",
@@ -77479,9 +78191,7 @@
77479
78191
  "Type",
77480
78192
  "StandbyReplicas",
77481
78193
  "CollectionGroupName",
77482
- "EncryptionConfig",
77483
- "VectorOptions",
77484
- "VectorOptions/ServerlessVectorAcceleration"
78194
+ "EncryptionConfig"
77485
78195
  ],
77486
78196
  "writeOnly": [
77487
78197
  "Tags",
@@ -78417,7 +79127,8 @@
78417
79127
  "kind": "resource",
78418
79128
  "lexicon": "aws",
78419
79129
  "attrs": {
78420
- "RuleArn": "RuleArn"
79130
+ "RuleArn": "RuleArn",
79131
+ "RegionStatuses": "RegionStatuses"
78421
79132
  },
78422
79133
  "propertyConstraints": {
78423
79134
  "RuleName": {
@@ -78432,7 +79143,8 @@
78432
79143
  }
78433
79144
  },
78434
79145
  "createOnly": [
78435
- "RuleName"
79146
+ "RuleName",
79147
+ "Rule/AllRegions"
78436
79148
  ],
78437
79149
  "primaryIdentifier": [
78438
79150
  "RuleArn"
@@ -78493,6 +79205,11 @@
78493
79205
  "kind": "property",
78494
79206
  "lexicon": "aws"
78495
79207
  },
79208
+ "OrganizationTelemetryRule_RegionStatus": {
79209
+ "resourceType": "AWS::ObservabilityAdmin::OrganizationTelemetryRule.RegionStatus",
79210
+ "kind": "property",
79211
+ "lexicon": "aws"
79212
+ },
78496
79213
  "OrganizationTelemetryRule_SingleHeader": {
78497
79214
  "resourceType": "AWS::ObservabilityAdmin::OrganizationTelemetryRule.SingleHeader",
78498
79215
  "kind": "property",
@@ -80792,6 +81509,87 @@
80792
81509
  "kind": "property",
80793
81510
  "lexicon": "aws"
80794
81511
  },
81512
+ "PaymentCredentialProvider": {
81513
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider",
81514
+ "kind": "resource",
81515
+ "lexicon": "aws",
81516
+ "attrs": {
81517
+ "CredentialProviderArn": "CredentialProviderArn",
81518
+ "ProviderConfigurationOutput": "ProviderConfigurationOutput",
81519
+ "CreatedTime": "CreatedTime",
81520
+ "LastUpdatedTime": "LastUpdatedTime"
81521
+ },
81522
+ "propertyConstraints": {
81523
+ "Name": {
81524
+ "pattern": "^[a-zA-Z0-9\\-_]+$",
81525
+ "minLength": 1,
81526
+ "maxLength": 128
81527
+ },
81528
+ "CredentialProviderArn": {
81529
+ "pattern": "^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b|aws-iso-e|aws-iso-f|aws-eusc):(acps|bedrock-agentcore):[A-Za-z0-9-]{1,64}:[0-9]{12}:token-vault/[a-zA-Z0-9-.]+/paymentcredentialprovider/[a-zA-Z0-9_.-]+$"
81530
+ },
81531
+ "CreatedTime": {
81532
+ "format": "date-time"
81533
+ },
81534
+ "LastUpdatedTime": {
81535
+ "format": "date-time"
81536
+ }
81537
+ },
81538
+ "createOnly": [
81539
+ "Name"
81540
+ ],
81541
+ "writeOnly": [
81542
+ "ProviderConfigurationInput"
81543
+ ],
81544
+ "primaryIdentifier": [
81545
+ "CredentialProviderArn"
81546
+ ],
81547
+ "tagging": {
81548
+ "taggable": true,
81549
+ "tagOnCreate": true,
81550
+ "tagUpdatable": true
81551
+ }
81552
+ },
81553
+ "PaymentCredentialProvider_CoinbaseCdpConfigurationInput": {
81554
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.CoinbaseCdpConfigurationInput",
81555
+ "kind": "property",
81556
+ "lexicon": "aws"
81557
+ },
81558
+ "PaymentCredentialProvider_CoinbaseCdpConfigurationOutput": {
81559
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.CoinbaseCdpConfigurationOutput",
81560
+ "kind": "property",
81561
+ "lexicon": "aws"
81562
+ },
81563
+ "PaymentCredentialProvider_PaymentProviderConfigurationInput": {
81564
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.PaymentProviderConfigurationInput",
81565
+ "kind": "property",
81566
+ "lexicon": "aws"
81567
+ },
81568
+ "PaymentCredentialProvider_PaymentProviderConfigurationOutput": {
81569
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.PaymentProviderConfigurationOutput",
81570
+ "kind": "property",
81571
+ "lexicon": "aws"
81572
+ },
81573
+ "PaymentCredentialProvider_SecretInfo": {
81574
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.SecretInfo",
81575
+ "kind": "property",
81576
+ "lexicon": "aws"
81577
+ },
81578
+ "PaymentCredentialProvider_StripePrivyConfigurationInput": {
81579
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.StripePrivyConfigurationInput",
81580
+ "kind": "property",
81581
+ "lexicon": "aws"
81582
+ },
81583
+ "PaymentCredentialProvider_StripePrivyConfigurationOutput": {
81584
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.StripePrivyConfigurationOutput",
81585
+ "kind": "property",
81586
+ "lexicon": "aws"
81587
+ },
81588
+ "PaymentCredentialProvider_Tag": {
81589
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.Tag",
81590
+ "kind": "property",
81591
+ "lexicon": "aws"
81592
+ },
80795
81593
  "PaymentCryptographyAlias": {
80796
81594
  "resourceType": "AWS::PaymentCryptography::Alias",
80797
81595
  "kind": "resource",
@@ -80815,6 +81613,16 @@
80815
81613
  "AliasName"
80816
81614
  ]
80817
81615
  },
81616
+ "PaymentProviderConfigurationInput": {
81617
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.PaymentProviderConfigurationInput",
81618
+ "kind": "property",
81619
+ "lexicon": "aws"
81620
+ },
81621
+ "PaymentProviderConfigurationOutput": {
81622
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.PaymentProviderConfigurationOutput",
81623
+ "kind": "property",
81624
+ "lexicon": "aws"
81625
+ },
80818
81626
  "PeeringAttachmentStatus": {
80819
81627
  "resourceType": "AWS::EC2::TransitGatewayPeeringAttachment.PeeringAttachmentStatus",
80820
81628
  "kind": "property",
@@ -95190,6 +95998,11 @@
95190
95998
  "kind": "property",
95191
95999
  "lexicon": "aws"
95192
96000
  },
96001
+ "RegisteredMCPServerGrafanaDetails": {
96002
+ "resourceType": "AWS::DevOpsAgent::Service.RegisteredMCPServerGrafanaDetails",
96003
+ "kind": "property",
96004
+ "lexicon": "aws"
96005
+ },
95193
96006
  "RegisteredMCPServerSigV4Details": {
95194
96007
  "resourceType": "AWS::DevOpsAgent::Service.RegisteredMCPServerSigV4Details",
95195
96008
  "kind": "property",
@@ -95329,6 +96142,30 @@
95329
96142
  "kind": "property",
95330
96143
  "lexicon": "aws"
95331
96144
  },
96145
+ "RemediationConfiguration": {
96146
+ "resourceType": "AWS::Config::RemediationConfiguration",
96147
+ "kind": "resource",
96148
+ "lexicon": "aws",
96149
+ "attrs": {
96150
+ "Id": "Id"
96151
+ },
96152
+ "createOnly": [
96153
+ "ConfigRuleName"
96154
+ ],
96155
+ "primaryIdentifier": [
96156
+ "Id"
96157
+ ]
96158
+ },
96159
+ "RemediationConfiguration_ExecutionControls": {
96160
+ "resourceType": "AWS::Config::RemediationConfiguration.ExecutionControls",
96161
+ "kind": "property",
96162
+ "lexicon": "aws"
96163
+ },
96164
+ "RemediationConfiguration_SsmControls": {
96165
+ "resourceType": "AWS::Config::RemediationConfiguration.SsmControls",
96166
+ "kind": "property",
96167
+ "lexicon": "aws"
96168
+ },
95332
96169
  "RemixSettings": {
95333
96170
  "resourceType": "AWS::MediaLive::Channel.RemixSettings",
95334
96171
  "kind": "property",
@@ -95610,7 +96447,6 @@
95610
96447
  "NetworkType",
95611
96448
  "Port",
95612
96449
  "PreferredCacheClusterAZs",
95613
- "ReplicasPerNodeGroup",
95614
96450
  "ReplicationGroupId",
95615
96451
  "SnapshotArns",
95616
96452
  "SnapshotName"
@@ -95628,7 +96464,6 @@
95628
96464
  "SnapshotName",
95629
96465
  "NodeGroupConfiguration",
95630
96466
  "NumNodeGroups",
95631
- "ReplicasPerNodeGroup",
95632
96467
  "KmsKeyId",
95633
96468
  "PrimaryClusterId",
95634
96469
  "PreferredCacheClusterAZs"
@@ -96198,6 +97033,10 @@
96198
97033
  "Owner",
96199
97034
  "ConnectionArn"
96200
97035
  ],
97036
+ "writeOnly": [
97037
+ "Owner",
97038
+ "ConnectionArn"
97039
+ ],
96201
97040
  "primaryIdentifier": [
96202
97041
  "AssociationArn"
96203
97042
  ],
@@ -100387,6 +101226,11 @@
100387
101226
  "kind": "property",
100388
101227
  "lexicon": "aws"
100389
101228
  },
101229
+ "Runtime_EfsAccessPointConfiguration": {
101230
+ "resourceType": "AWS::BedrockAgentCore::Runtime.EfsAccessPointConfiguration",
101231
+ "kind": "property",
101232
+ "lexicon": "aws"
101233
+ },
100390
101234
  "Runtime_FilesystemConfiguration": {
100391
101235
  "resourceType": "AWS::BedrockAgentCore::Runtime.FilesystemConfiguration",
100392
101236
  "kind": "property",
@@ -100407,6 +101251,11 @@
100407
101251
  "kind": "property",
100408
101252
  "lexicon": "aws"
100409
101253
  },
101254
+ "Runtime_S3FilesAccessPointConfiguration": {
101255
+ "resourceType": "AWS::BedrockAgentCore::Runtime.S3FilesAccessPointConfiguration",
101256
+ "kind": "property",
101257
+ "lexicon": "aws"
101258
+ },
100410
101259
  "Runtime_S3Location": {
100411
101260
  "resourceType": "AWS::BedrockAgentCore::Runtime.S3Location",
100412
101261
  "kind": "property",
@@ -100806,6 +101655,11 @@
100806
101655
  "tagUpdatable": true
100807
101656
  }
100808
101657
  },
101658
+ "S3FilesAccessPointConfiguration": {
101659
+ "resourceType": "AWS::BedrockAgentCore::Runtime.S3FilesAccessPointConfiguration",
101660
+ "kind": "property",
101661
+ "lexicon": "aws"
101662
+ },
100809
101663
  "S3FilesAccessPoint_AccessPointTag": {
100810
101664
  "resourceType": "AWS::S3Files::AccessPoint.AccessPointTag",
100811
101665
  "kind": "property",
@@ -101381,11 +102235,6 @@
101381
102235
  "kind": "property",
101382
102236
  "lexicon": "aws"
101383
102237
  },
101384
- "S3Source": {
101385
- "resourceType": "AWS::QuickSight::DataSet.S3Source",
101386
- "kind": "property",
101387
- "lexicon": "aws"
101388
- },
101389
102238
  "S3StorageConfig": {
101390
102239
  "resourceType": "AWS::SageMaker::FeatureGroup.S3StorageConfig",
101391
102240
  "kind": "property",
@@ -104041,8 +104890,7 @@
104041
104890
  "Arn": "Arn"
104042
104891
  },
104043
104892
  "createOnly": [
104044
- "Name",
104045
- "Tags"
104893
+ "Name"
104046
104894
  ],
104047
104895
  "primaryIdentifier": [
104048
104896
  "Arn"
@@ -104050,7 +104898,7 @@
104050
104898
  "tagging": {
104051
104899
  "taggable": true,
104052
104900
  "tagOnCreate": true,
104053
- "tagUpdatable": false
104901
+ "tagUpdatable": true
104054
104902
  }
104055
104903
  },
104056
104904
  "SchedulingPolicy_FairsharePolicy": {
@@ -104515,6 +105363,11 @@
104515
105363
  "tagUpdatable": true
104516
105364
  }
104517
105365
  },
105366
+ "SecretInfo": {
105367
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.SecretInfo",
105368
+ "kind": "property",
105369
+ "lexicon": "aws"
105370
+ },
104518
105371
  "SecretTargetAttachment": {
104519
105372
  "resourceType": "AWS::SecretsManager::SecretTargetAttachment",
104520
105373
  "kind": "resource",
@@ -105373,6 +106226,11 @@
105373
106226
  "kind": "property",
105374
106227
  "lexicon": "aws"
105375
106228
  },
106229
+ "SelectionConfig": {
106230
+ "resourceType": "AWS::ApplicationSignals::ServiceLevelObjective.SelectionConfig",
106231
+ "kind": "property",
106232
+ "lexicon": "aws"
106233
+ },
105376
106234
  "SelectionCriteria": {
105377
106235
  "resourceType": "AWS::S3::StorageLens.SelectionCriteria",
105378
106236
  "kind": "property",
@@ -106185,7 +107043,7 @@
106185
107043
  "maxLength": 128
106186
107044
  },
106187
107045
  "ApplicationTagValue": {
106188
- "pattern": "\\[a-zA-Z0-9_-:/]+",
107046
+ "pattern": "[a-zA-Z0-9_\\-:/]+",
106189
107047
  "maxLength": 256
106190
107048
  },
106191
107049
  "ApplicationName": {
@@ -106403,6 +107261,16 @@
106403
107261
  "kind": "property",
106404
107262
  "lexicon": "aws"
106405
107263
  },
107264
+ "ServiceLevelObjective_CompositeSliComponent": {
107265
+ "resourceType": "AWS::ApplicationSignals::ServiceLevelObjective.CompositeSliComponent",
107266
+ "kind": "property",
107267
+ "lexicon": "aws"
107268
+ },
107269
+ "ServiceLevelObjective_CompositeSliConfig": {
107270
+ "resourceType": "AWS::ApplicationSignals::ServiceLevelObjective.CompositeSliConfig",
107271
+ "kind": "property",
107272
+ "lexicon": "aws"
107273
+ },
106406
107274
  "ServiceLevelObjective_DependencyConfig": {
106407
107275
  "resourceType": "AWS::ApplicationSignals::ServiceLevelObjective.DependencyConfig",
106408
107276
  "kind": "property",
@@ -106438,6 +107306,11 @@
106438
107306
  "kind": "property",
106439
107307
  "lexicon": "aws"
106440
107308
  },
107309
+ "ServiceLevelObjective_MetricSource": {
107310
+ "resourceType": "AWS::ApplicationSignals::ServiceLevelObjective.MetricSource",
107311
+ "kind": "property",
107312
+ "lexicon": "aws"
107313
+ },
106441
107314
  "ServiceLevelObjective_MetricStat": {
106442
107315
  "resourceType": "AWS::ApplicationSignals::ServiceLevelObjective.MetricStat",
106443
107316
  "kind": "property",
@@ -106468,6 +107341,11 @@
106468
107341
  "kind": "property",
106469
107342
  "lexicon": "aws"
106470
107343
  },
107344
+ "ServiceLevelObjective_SelectionConfig": {
107345
+ "resourceType": "AWS::ApplicationSignals::ServiceLevelObjective.SelectionConfig",
107346
+ "kind": "property",
107347
+ "lexicon": "aws"
107348
+ },
106471
107349
  "ServiceLevelObjective_Sli": {
106472
107350
  "resourceType": "AWS::ApplicationSignals::ServiceLevelObjective.Sli",
106473
107351
  "kind": "property",
@@ -107148,11 +108026,6 @@
107148
108026
  "kind": "property",
107149
108027
  "lexicon": "aws"
107150
108028
  },
107151
- "SessionStorageConfiguration": {
107152
- "resourceType": "AWS::BedrockAgentCore::Runtime.SessionStorageConfiguration",
107153
- "kind": "property",
107154
- "lexicon": "aws"
107155
- },
107156
108029
  "SessionSummaryConfiguration": {
107157
108030
  "resourceType": "AWS::Bedrock::Agent.SessionSummaryConfiguration",
107158
108031
  "kind": "property",
@@ -107218,6 +108091,11 @@
107218
108091
  "kind": "property",
107219
108092
  "lexicon": "aws"
107220
108093
  },
108094
+ "SharedColumnSemanticMetadata": {
108095
+ "resourceType": "AWS::QuickSight::DataSet.SharedColumnSemanticMetadata",
108096
+ "kind": "property",
108097
+ "lexicon": "aws"
108098
+ },
107221
108099
  "SharingConfig": {
107222
108100
  "resourceType": "AWS::VpcLattice::ServiceNetwork.SharingConfig",
107223
108101
  "kind": "property",
@@ -109402,6 +110280,11 @@
109402
110280
  "kind": "property",
109403
110281
  "lexicon": "aws"
109404
110282
  },
110283
+ "SsmControls": {
110284
+ "resourceType": "AWS::Config::RemediationConfiguration.SsmControls",
110285
+ "kind": "property",
110286
+ "lexicon": "aws"
110287
+ },
109405
110288
  "SsmParameter": {
109406
110289
  "resourceType": "AWS::SSM::Parameter",
109407
110290
  "kind": "resource",
@@ -110830,6 +111713,16 @@
110830
111713
  "kind": "property",
110831
111714
  "lexicon": "aws"
110832
111715
  },
111716
+ "StripePrivyConfigurationInput": {
111717
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.StripePrivyConfigurationInput",
111718
+ "kind": "property",
111719
+ "lexicon": "aws"
111720
+ },
111721
+ "StripePrivyConfigurationOutput": {
111722
+ "resourceType": "AWS::BedrockAgentCore::PaymentCredentialProvider.StripePrivyConfigurationOutput",
111723
+ "kind": "property",
111724
+ "lexicon": "aws"
111725
+ },
110833
111726
  "Studio": {
110834
111727
  "resourceType": "AWS::EMR::Studio",
110835
111728
  "kind": "resource",
@@ -112180,6 +113073,11 @@
112180
113073
  "TableARN"
112181
113074
  ]
112182
113075
  },
113076
+ "TableSemanticMetadata": {
113077
+ "resourceType": "AWS::QuickSight::DataSet.TableSemanticMetadata",
113078
+ "kind": "property",
113079
+ "lexicon": "aws"
113080
+ },
112183
113081
  "Table_AttributeDefinition": {
112184
113082
  "resourceType": "AWS::DynamoDB::Table.AttributeDefinition",
112185
113083
  "kind": "property",
@@ -113807,7 +114705,8 @@
113807
114705
  "kind": "resource",
113808
114706
  "lexicon": "aws",
113809
114707
  "attrs": {
113810
- "RuleArn": "RuleArn"
114708
+ "RuleArn": "RuleArn",
114709
+ "RegionStatuses": "RegionStatuses"
113811
114710
  },
113812
114711
  "propertyConstraints": {
113813
114712
  "RuleName": {
@@ -113822,7 +114721,8 @@
113822
114721
  }
113823
114722
  },
113824
114723
  "createOnly": [
113825
- "RuleName"
114724
+ "RuleName",
114725
+ "Rule/AllRegions"
113826
114726
  ],
113827
114727
  "primaryIdentifier": [
113828
114728
  "RuleArn"
@@ -113883,6 +114783,11 @@
113883
114783
  "kind": "property",
113884
114784
  "lexicon": "aws"
113885
114785
  },
114786
+ "TelemetryRule_RegionStatus": {
114787
+ "resourceType": "AWS::ObservabilityAdmin::TelemetryRule.RegionStatus",
114788
+ "kind": "property",
114789
+ "lexicon": "aws"
114790
+ },
113886
114791
  "TelemetryRule_SingleHeader": {
113887
114792
  "resourceType": "AWS::ObservabilityAdmin::TelemetryRule.SingleHeader",
113888
114793
  "kind": "property",
@@ -117497,6 +118402,11 @@
117497
118402
  "kind": "property",
117498
118403
  "lexicon": "aws"
117499
118404
  },
118405
+ "UploadedDocumentMetadata": {
118406
+ "resourceType": "AWS::QuickSight::DataSet.UploadedDocumentMetadata",
118407
+ "kind": "property",
118408
+ "lexicon": "aws"
118409
+ },
117500
118410
  "UpsolverDestinationProperties": {
117501
118411
  "resourceType": "AWS::AppFlow::Flow.UpsolverDestinationProperties",
117502
118412
  "kind": "property",
@@ -123331,7 +124241,8 @@
123331
124241
  "EndpointDetails/Vpc/SecurityGroupIds"
123332
124242
  ],
123333
124243
  "writeOnly": [
123334
- "EndpointDetails/Vpc/SecurityGroupIds"
124244
+ "EndpointDetails/Vpc/SecurityGroupIds",
124245
+ "EndpointDetails/Vpc/IpAddressType"
123335
124246
  ],
123336
124247
  "primaryIdentifier": [
123337
124248
  "Arn"