@intentius/chant-lexicon-aws 0.0.22 → 0.0.24
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/integrity.json +6 -5
- package/dist/manifest.json +1 -1
- package/dist/meta.json +844 -161
- package/{src/skills/chant-eks.md → dist/skills/chant-aws-eks.md} +2 -2
- package/dist/skills/chant-aws.md +3 -3
- package/dist/types/index.d.ts +774 -304
- package/package.json +1 -1
- package/src/composites/alb-shared.ts +14 -7
- package/src/composites/composites.test.ts +82 -0
- package/src/composites/fargate-alb.ts +24 -14
- package/src/composites/fargate-service.ts +16 -9
- package/src/composites/lambda-api.ts +7 -3
- package/src/composites/lambda-dynamodb.ts +8 -3
- package/src/composites/lambda-eventbridge.ts +10 -5
- package/src/composites/lambda-function.ts +10 -5
- package/src/composites/lambda-s3.ts +8 -3
- package/src/composites/lambda-sns.ts +13 -7
- package/src/composites/lambda-sqs.ts +11 -5
- package/src/composites/rds-instance.ts +15 -8
- package/src/composites/scheduled-lambda.ts +10 -5
- package/src/composites/vpc-default.ts +81 -30
- package/src/generated/index.d.ts +774 -304
- package/src/generated/index.ts +61 -13
- package/src/generated/lexicon-aws.json +844 -161
- package/src/plugin.ts +90 -574
- package/src/skills/chant-aws-eks.md +178 -0
- package/src/skills/chant-aws.md +430 -0
package/dist/meta.json
CHANGED
|
@@ -1707,6 +1707,113 @@
|
|
|
1707
1707
|
"kind": "property",
|
|
1708
1708
|
"lexicon": "aws"
|
|
1709
1709
|
},
|
|
1710
|
+
"AccessSource": {
|
|
1711
|
+
"resourceType": "AWS::Route53GlobalResolver::AccessSource",
|
|
1712
|
+
"kind": "resource",
|
|
1713
|
+
"lexicon": "aws",
|
|
1714
|
+
"attrs": {
|
|
1715
|
+
"Arn": "Arn",
|
|
1716
|
+
"AccessSourceId": "AccessSourceId",
|
|
1717
|
+
"CreatedAt": "CreatedAt",
|
|
1718
|
+
"UpdatedAt": "UpdatedAt",
|
|
1719
|
+
"Status": "Status"
|
|
1720
|
+
},
|
|
1721
|
+
"propertyConstraints": {
|
|
1722
|
+
"AccessSourceId": {
|
|
1723
|
+
"minLength": 1,
|
|
1724
|
+
"maxLength": 64
|
|
1725
|
+
},
|
|
1726
|
+
"Arn": {
|
|
1727
|
+
"minLength": 1,
|
|
1728
|
+
"maxLength": 2048
|
|
1729
|
+
},
|
|
1730
|
+
"DnsViewId": {
|
|
1731
|
+
"minLength": 1,
|
|
1732
|
+
"maxLength": 64
|
|
1733
|
+
},
|
|
1734
|
+
"ClientToken": {
|
|
1735
|
+
"minLength": 1,
|
|
1736
|
+
"maxLength": 256
|
|
1737
|
+
}
|
|
1738
|
+
},
|
|
1739
|
+
"createOnly": [
|
|
1740
|
+
"DnsViewId",
|
|
1741
|
+
"ClientToken"
|
|
1742
|
+
],
|
|
1743
|
+
"writeOnly": [
|
|
1744
|
+
"ClientToken"
|
|
1745
|
+
],
|
|
1746
|
+
"primaryIdentifier": [
|
|
1747
|
+
"AccessSourceId"
|
|
1748
|
+
],
|
|
1749
|
+
"tagging": {
|
|
1750
|
+
"taggable": true,
|
|
1751
|
+
"tagOnCreate": true,
|
|
1752
|
+
"tagUpdatable": true
|
|
1753
|
+
}
|
|
1754
|
+
},
|
|
1755
|
+
"AccessSource_Tag": {
|
|
1756
|
+
"resourceType": "AWS::Route53GlobalResolver::AccessSource.Tag",
|
|
1757
|
+
"kind": "property",
|
|
1758
|
+
"lexicon": "aws"
|
|
1759
|
+
},
|
|
1760
|
+
"AccessToken": {
|
|
1761
|
+
"resourceType": "AWS::Route53GlobalResolver::AccessToken",
|
|
1762
|
+
"kind": "resource",
|
|
1763
|
+
"lexicon": "aws",
|
|
1764
|
+
"attrs": {
|
|
1765
|
+
"Arn": "Arn",
|
|
1766
|
+
"AccessTokenId": "AccessTokenId",
|
|
1767
|
+
"CreatedAt": "CreatedAt",
|
|
1768
|
+
"UpdatedAt": "UpdatedAt",
|
|
1769
|
+
"Status": "Status",
|
|
1770
|
+
"Value": "Value",
|
|
1771
|
+
"GlobalResolverId": "GlobalResolverId"
|
|
1772
|
+
},
|
|
1773
|
+
"propertyConstraints": {
|
|
1774
|
+
"AccessTokenId": {
|
|
1775
|
+
"minLength": 1,
|
|
1776
|
+
"maxLength": 64
|
|
1777
|
+
},
|
|
1778
|
+
"Arn": {
|
|
1779
|
+
"minLength": 1,
|
|
1780
|
+
"maxLength": 2048
|
|
1781
|
+
},
|
|
1782
|
+
"DnsViewId": {
|
|
1783
|
+
"minLength": 1,
|
|
1784
|
+
"maxLength": 64
|
|
1785
|
+
},
|
|
1786
|
+
"GlobalResolverId": {
|
|
1787
|
+
"minLength": 1,
|
|
1788
|
+
"maxLength": 64
|
|
1789
|
+
},
|
|
1790
|
+
"ClientToken": {
|
|
1791
|
+
"minLength": 1,
|
|
1792
|
+
"maxLength": 256
|
|
1793
|
+
}
|
|
1794
|
+
},
|
|
1795
|
+
"createOnly": [
|
|
1796
|
+
"DnsViewId",
|
|
1797
|
+
"ExpiresAt",
|
|
1798
|
+
"ClientToken"
|
|
1799
|
+
],
|
|
1800
|
+
"writeOnly": [
|
|
1801
|
+
"ClientToken"
|
|
1802
|
+
],
|
|
1803
|
+
"primaryIdentifier": [
|
|
1804
|
+
"AccessTokenId"
|
|
1805
|
+
],
|
|
1806
|
+
"tagging": {
|
|
1807
|
+
"taggable": true,
|
|
1808
|
+
"tagOnCreate": true,
|
|
1809
|
+
"tagUpdatable": true
|
|
1810
|
+
}
|
|
1811
|
+
},
|
|
1812
|
+
"AccessToken_Tag": {
|
|
1813
|
+
"resourceType": "AWS::Route53GlobalResolver::AccessToken.Tag",
|
|
1814
|
+
"kind": "property",
|
|
1815
|
+
"lexicon": "aws"
|
|
1816
|
+
},
|
|
1710
1817
|
"Accessor": {
|
|
1711
1818
|
"resourceType": "AWS::ManagedBlockchain::Accessor",
|
|
1712
1819
|
"kind": "resource",
|
|
@@ -22236,6 +22343,196 @@
|
|
|
22236
22343
|
"kind": "property",
|
|
22237
22344
|
"lexicon": "aws"
|
|
22238
22345
|
},
|
|
22346
|
+
"ConfiguredModelAlgorithm": {
|
|
22347
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithm",
|
|
22348
|
+
"kind": "resource",
|
|
22349
|
+
"lexicon": "aws",
|
|
22350
|
+
"attrs": {
|
|
22351
|
+
"ConfiguredModelAlgorithmArn": "ConfiguredModelAlgorithmArn"
|
|
22352
|
+
},
|
|
22353
|
+
"propertyConstraints": {
|
|
22354
|
+
"ConfiguredModelAlgorithmArn": {
|
|
22355
|
+
"pattern": "^arn:aws[-a-z]*:cleanrooms-ml:[-a-z0-9]+:[0-9]{12}:configured-model-algorithm/[-a-zA-Z0-9_/.]+$",
|
|
22356
|
+
"minLength": 20,
|
|
22357
|
+
"maxLength": 2048
|
|
22358
|
+
},
|
|
22359
|
+
"Name": {
|
|
22360
|
+
"pattern": "^(?!\\s*$)[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDBFF-\\uDC00\\uDFFF\\t]*$",
|
|
22361
|
+
"minLength": 1,
|
|
22362
|
+
"maxLength": 63
|
|
22363
|
+
},
|
|
22364
|
+
"Description": {
|
|
22365
|
+
"pattern": "^[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDBFF-\\uDC00\\uDFFF\\t\\r\\n]*$",
|
|
22366
|
+
"maxLength": 255
|
|
22367
|
+
},
|
|
22368
|
+
"RoleArn": {
|
|
22369
|
+
"pattern": "^arn:aws[-a-z]*:iam::[0-9]{12}:role/.+$",
|
|
22370
|
+
"minLength": 20,
|
|
22371
|
+
"maxLength": 2048
|
|
22372
|
+
},
|
|
22373
|
+
"KmsKeyArn": {
|
|
22374
|
+
"pattern": "^arn:aws[-a-z]*:kms:[-a-z0-9]+:[0-9]{12}:key/.+$",
|
|
22375
|
+
"minLength": 20,
|
|
22376
|
+
"maxLength": 2048
|
|
22377
|
+
}
|
|
22378
|
+
},
|
|
22379
|
+
"createOnly": [
|
|
22380
|
+
"Name",
|
|
22381
|
+
"Description",
|
|
22382
|
+
"RoleArn",
|
|
22383
|
+
"TrainingContainerConfig",
|
|
22384
|
+
"InferenceContainerConfig",
|
|
22385
|
+
"KmsKeyArn"
|
|
22386
|
+
],
|
|
22387
|
+
"primaryIdentifier": [
|
|
22388
|
+
"ConfiguredModelAlgorithmArn"
|
|
22389
|
+
],
|
|
22390
|
+
"tagging": {
|
|
22391
|
+
"taggable": true,
|
|
22392
|
+
"tagOnCreate": true,
|
|
22393
|
+
"tagUpdatable": true
|
|
22394
|
+
}
|
|
22395
|
+
},
|
|
22396
|
+
"ConfiguredModelAlgorithmAssociation": {
|
|
22397
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation",
|
|
22398
|
+
"kind": "resource",
|
|
22399
|
+
"lexicon": "aws",
|
|
22400
|
+
"attrs": {
|
|
22401
|
+
"ConfiguredModelAlgorithmAssociationArn": "ConfiguredModelAlgorithmAssociationArn",
|
|
22402
|
+
"CollaborationIdentifier": "CollaborationIdentifier"
|
|
22403
|
+
},
|
|
22404
|
+
"propertyConstraints": {
|
|
22405
|
+
"ConfiguredModelAlgorithmAssociationArn": {
|
|
22406
|
+
"pattern": "^arn:aws[-a-z]*:cleanrooms-ml:[-a-z0-9]+:[0-9]{12}:membership/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/configured-model-algorithm-association/[-a-zA-Z0-9_/.]+$",
|
|
22407
|
+
"minLength": 20,
|
|
22408
|
+
"maxLength": 2048
|
|
22409
|
+
},
|
|
22410
|
+
"MembershipIdentifier": {
|
|
22411
|
+
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
|
|
22412
|
+
"minLength": 36,
|
|
22413
|
+
"maxLength": 36
|
|
22414
|
+
},
|
|
22415
|
+
"CollaborationIdentifier": {
|
|
22416
|
+
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
|
|
22417
|
+
"minLength": 36,
|
|
22418
|
+
"maxLength": 36
|
|
22419
|
+
},
|
|
22420
|
+
"ConfiguredModelAlgorithmArn": {
|
|
22421
|
+
"pattern": "^arn:aws[-a-z]*:cleanrooms-ml:[-a-z0-9]+:[0-9]{12}:configured-model-algorithm/[-a-zA-Z0-9_/.]+$",
|
|
22422
|
+
"minLength": 20,
|
|
22423
|
+
"maxLength": 2048
|
|
22424
|
+
},
|
|
22425
|
+
"Name": {
|
|
22426
|
+
"pattern": "^(?!\\s*$)[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDBFF-\\uDC00\\uDFFF\\t]*$",
|
|
22427
|
+
"minLength": 1,
|
|
22428
|
+
"maxLength": 63
|
|
22429
|
+
},
|
|
22430
|
+
"Description": {
|
|
22431
|
+
"pattern": "^[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDBFF-\\uDC00\\uDFFF\\t\\r\\n]*$",
|
|
22432
|
+
"maxLength": 255
|
|
22433
|
+
}
|
|
22434
|
+
},
|
|
22435
|
+
"createOnly": [
|
|
22436
|
+
"MembershipIdentifier",
|
|
22437
|
+
"ConfiguredModelAlgorithmArn",
|
|
22438
|
+
"Name",
|
|
22439
|
+
"Description",
|
|
22440
|
+
"PrivacyConfiguration"
|
|
22441
|
+
],
|
|
22442
|
+
"primaryIdentifier": [
|
|
22443
|
+
"ConfiguredModelAlgorithmAssociationArn"
|
|
22444
|
+
],
|
|
22445
|
+
"tagging": {
|
|
22446
|
+
"taggable": true,
|
|
22447
|
+
"tagOnCreate": true,
|
|
22448
|
+
"tagUpdatable": true
|
|
22449
|
+
}
|
|
22450
|
+
},
|
|
22451
|
+
"ConfiguredModelAlgorithmAssociation_CustomEntityConfig": {
|
|
22452
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.CustomEntityConfig",
|
|
22453
|
+
"kind": "property",
|
|
22454
|
+
"lexicon": "aws"
|
|
22455
|
+
},
|
|
22456
|
+
"ConfiguredModelAlgorithmAssociation_LogRedactionConfiguration": {
|
|
22457
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.LogRedactionConfiguration",
|
|
22458
|
+
"kind": "property",
|
|
22459
|
+
"lexicon": "aws"
|
|
22460
|
+
},
|
|
22461
|
+
"ConfiguredModelAlgorithmAssociation_LogsConfigurationPolicy": {
|
|
22462
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.LogsConfigurationPolicy",
|
|
22463
|
+
"kind": "property",
|
|
22464
|
+
"lexicon": "aws"
|
|
22465
|
+
},
|
|
22466
|
+
"ConfiguredModelAlgorithmAssociation_MetricsConfigurationPolicy": {
|
|
22467
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.MetricsConfigurationPolicy",
|
|
22468
|
+
"kind": "property",
|
|
22469
|
+
"lexicon": "aws"
|
|
22470
|
+
},
|
|
22471
|
+
"ConfiguredModelAlgorithmAssociation_PrivacyConfiguration": {
|
|
22472
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.PrivacyConfiguration",
|
|
22473
|
+
"kind": "property",
|
|
22474
|
+
"lexicon": "aws"
|
|
22475
|
+
},
|
|
22476
|
+
"ConfiguredModelAlgorithmAssociation_PrivacyConfigurationPolicies": {
|
|
22477
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.PrivacyConfigurationPolicies",
|
|
22478
|
+
"kind": "property",
|
|
22479
|
+
"lexicon": "aws"
|
|
22480
|
+
},
|
|
22481
|
+
"ConfiguredModelAlgorithmAssociation_Tag": {
|
|
22482
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.Tag",
|
|
22483
|
+
"kind": "property",
|
|
22484
|
+
"lexicon": "aws"
|
|
22485
|
+
},
|
|
22486
|
+
"ConfiguredModelAlgorithmAssociation_TrainedModelArtifactMaxSize": {
|
|
22487
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.TrainedModelArtifactMaxSize",
|
|
22488
|
+
"kind": "property",
|
|
22489
|
+
"lexicon": "aws"
|
|
22490
|
+
},
|
|
22491
|
+
"ConfiguredModelAlgorithmAssociation_TrainedModelExportsConfigurationPolicy": {
|
|
22492
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.TrainedModelExportsConfigurationPolicy",
|
|
22493
|
+
"kind": "property",
|
|
22494
|
+
"lexicon": "aws"
|
|
22495
|
+
},
|
|
22496
|
+
"ConfiguredModelAlgorithmAssociation_TrainedModelExportsMaxSize": {
|
|
22497
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.TrainedModelExportsMaxSize",
|
|
22498
|
+
"kind": "property",
|
|
22499
|
+
"lexicon": "aws"
|
|
22500
|
+
},
|
|
22501
|
+
"ConfiguredModelAlgorithmAssociation_TrainedModelInferenceJobsConfigurationPolicy": {
|
|
22502
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.TrainedModelInferenceJobsConfigurationPolicy",
|
|
22503
|
+
"kind": "property",
|
|
22504
|
+
"lexicon": "aws"
|
|
22505
|
+
},
|
|
22506
|
+
"ConfiguredModelAlgorithmAssociation_TrainedModelInferenceMaxOutputSize": {
|
|
22507
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.TrainedModelInferenceMaxOutputSize",
|
|
22508
|
+
"kind": "property",
|
|
22509
|
+
"lexicon": "aws"
|
|
22510
|
+
},
|
|
22511
|
+
"ConfiguredModelAlgorithmAssociation_TrainedModelsConfigurationPolicy": {
|
|
22512
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.TrainedModelsConfigurationPolicy",
|
|
22513
|
+
"kind": "property",
|
|
22514
|
+
"lexicon": "aws"
|
|
22515
|
+
},
|
|
22516
|
+
"ConfiguredModelAlgorithm_ContainerConfig": {
|
|
22517
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithm.ContainerConfig",
|
|
22518
|
+
"kind": "property",
|
|
22519
|
+
"lexicon": "aws"
|
|
22520
|
+
},
|
|
22521
|
+
"ConfiguredModelAlgorithm_InferenceContainerConfig": {
|
|
22522
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithm.InferenceContainerConfig",
|
|
22523
|
+
"kind": "property",
|
|
22524
|
+
"lexicon": "aws"
|
|
22525
|
+
},
|
|
22526
|
+
"ConfiguredModelAlgorithm_MetricDefinition": {
|
|
22527
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithm.MetricDefinition",
|
|
22528
|
+
"kind": "property",
|
|
22529
|
+
"lexicon": "aws"
|
|
22530
|
+
},
|
|
22531
|
+
"ConfiguredModelAlgorithm_Tag": {
|
|
22532
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithm.Tag",
|
|
22533
|
+
"kind": "property",
|
|
22534
|
+
"lexicon": "aws"
|
|
22535
|
+
},
|
|
22239
22536
|
"ConfiguredTable": {
|
|
22240
22537
|
"resourceType": "AWS::CleanRooms::ConfiguredTable",
|
|
22241
22538
|
"kind": "resource",
|
|
@@ -24754,11 +25051,6 @@
|
|
|
24754
25051
|
"kind": "property",
|
|
24755
25052
|
"lexicon": "aws"
|
|
24756
25053
|
},
|
|
24757
|
-
"ContainerConfig": {
|
|
24758
|
-
"resourceType": "AWS::SageMaker::AppImageConfig.ContainerConfig",
|
|
24759
|
-
"kind": "property",
|
|
24760
|
-
"lexicon": "aws"
|
|
24761
|
-
},
|
|
24762
25054
|
"ContainerConfiguration": {
|
|
24763
25055
|
"resourceType": "AWS::BedrockAgentCore::Runtime.ContainerConfiguration",
|
|
24764
25056
|
"kind": "property",
|
|
@@ -25870,6 +26162,11 @@
|
|
|
25870
26162
|
"kind": "property",
|
|
25871
26163
|
"lexicon": "aws"
|
|
25872
26164
|
},
|
|
26165
|
+
"CrossRegionCopyTarget": {
|
|
26166
|
+
"resourceType": "AWS::DLM::LifecyclePolicy.CrossRegionCopyTarget",
|
|
26167
|
+
"kind": "property",
|
|
26168
|
+
"lexicon": "aws"
|
|
26169
|
+
},
|
|
25873
26170
|
"CsrExtensions": {
|
|
25874
26171
|
"resourceType": "AWS::ACMPCA::CertificateAuthority.CsrExtensions",
|
|
25875
26172
|
"kind": "property",
|
|
@@ -26213,6 +26510,11 @@
|
|
|
26213
26510
|
"kind": "property",
|
|
26214
26511
|
"lexicon": "aws"
|
|
26215
26512
|
},
|
|
26513
|
+
"CustomEntityConfig": {
|
|
26514
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.CustomEntityConfig",
|
|
26515
|
+
"kind": "property",
|
|
26516
|
+
"lexicon": "aws"
|
|
26517
|
+
},
|
|
26216
26518
|
"CustomEntityType": {
|
|
26217
26519
|
"resourceType": "AWS::Glue::CustomEntityType",
|
|
26218
26520
|
"kind": "resource",
|
|
@@ -27573,6 +27875,11 @@
|
|
|
27573
27875
|
"kind": "property",
|
|
27574
27876
|
"lexicon": "aws"
|
|
27575
27877
|
},
|
|
27878
|
+
"DLMLifecyclePolicy_CrossRegionCopyTarget": {
|
|
27879
|
+
"resourceType": "AWS::DLM::LifecyclePolicy.CrossRegionCopyTarget",
|
|
27880
|
+
"kind": "property",
|
|
27881
|
+
"lexicon": "aws"
|
|
27882
|
+
},
|
|
27576
27883
|
"DLMLifecyclePolicy_DeprecateRule": {
|
|
27577
27884
|
"resourceType": "AWS::DLM::LifecyclePolicy.DeprecateRule",
|
|
27578
27885
|
"kind": "property",
|
|
@@ -29041,6 +29348,16 @@
|
|
|
29041
29348
|
"Id"
|
|
29042
29349
|
]
|
|
29043
29350
|
},
|
|
29351
|
+
"DataLakeSettings_DataLakePrincipal": {
|
|
29352
|
+
"resourceType": "AWS::LakeFormation::DataLakeSettings.DataLakePrincipal",
|
|
29353
|
+
"kind": "property",
|
|
29354
|
+
"lexicon": "aws"
|
|
29355
|
+
},
|
|
29356
|
+
"DataLakeSettings_PrincipalPermissions": {
|
|
29357
|
+
"resourceType": "AWS::LakeFormation::DataLakeSettings.PrincipalPermissions",
|
|
29358
|
+
"kind": "property",
|
|
29359
|
+
"lexicon": "aws"
|
|
29360
|
+
},
|
|
29044
29361
|
"DataLake_EncryptionConfiguration": {
|
|
29045
29362
|
"resourceType": "AWS::SecurityLake::DataLake.EncryptionConfiguration",
|
|
29046
29363
|
"kind": "property",
|
|
@@ -34895,6 +35212,11 @@
|
|
|
34895
35212
|
"tagUpdatable": true
|
|
34896
35213
|
}
|
|
34897
35214
|
},
|
|
35215
|
+
"DeploymentStrategyOptions": {
|
|
35216
|
+
"resourceType": "AWS::OpenSearchService::Domain.DeploymentStrategyOptions",
|
|
35217
|
+
"kind": "property",
|
|
35218
|
+
"lexicon": "aws"
|
|
35219
|
+
},
|
|
34898
35220
|
"DeploymentStrategy_Tag": {
|
|
34899
35221
|
"resourceType": "AWS::AppConfig::DeploymentStrategy.Tag",
|
|
34900
35222
|
"kind": "property",
|
|
@@ -36411,6 +36733,56 @@
|
|
|
36411
36733
|
"kind": "property",
|
|
36412
36734
|
"lexicon": "aws"
|
|
36413
36735
|
},
|
|
36736
|
+
"DnsView": {
|
|
36737
|
+
"resourceType": "AWS::Route53GlobalResolver::DnsView",
|
|
36738
|
+
"kind": "resource",
|
|
36739
|
+
"lexicon": "aws",
|
|
36740
|
+
"attrs": {
|
|
36741
|
+
"Arn": "Arn",
|
|
36742
|
+
"DnsViewId": "DnsViewId",
|
|
36743
|
+
"CreatedAt": "CreatedAt",
|
|
36744
|
+
"UpdatedAt": "UpdatedAt",
|
|
36745
|
+
"Status": "Status"
|
|
36746
|
+
},
|
|
36747
|
+
"propertyConstraints": {
|
|
36748
|
+
"DnsViewId": {
|
|
36749
|
+
"minLength": 1,
|
|
36750
|
+
"maxLength": 64
|
|
36751
|
+
},
|
|
36752
|
+
"Arn": {
|
|
36753
|
+
"minLength": 1,
|
|
36754
|
+
"maxLength": 2048
|
|
36755
|
+
},
|
|
36756
|
+
"GlobalResolverId": {
|
|
36757
|
+
"minLength": 1,
|
|
36758
|
+
"maxLength": 64
|
|
36759
|
+
},
|
|
36760
|
+
"ClientToken": {
|
|
36761
|
+
"minLength": 1,
|
|
36762
|
+
"maxLength": 256
|
|
36763
|
+
}
|
|
36764
|
+
},
|
|
36765
|
+
"createOnly": [
|
|
36766
|
+
"GlobalResolverId",
|
|
36767
|
+
"ClientToken"
|
|
36768
|
+
],
|
|
36769
|
+
"writeOnly": [
|
|
36770
|
+
"ClientToken"
|
|
36771
|
+
],
|
|
36772
|
+
"primaryIdentifier": [
|
|
36773
|
+
"DnsViewId"
|
|
36774
|
+
],
|
|
36775
|
+
"tagging": {
|
|
36776
|
+
"taggable": true,
|
|
36777
|
+
"tagOnCreate": true,
|
|
36778
|
+
"tagUpdatable": true
|
|
36779
|
+
}
|
|
36780
|
+
},
|
|
36781
|
+
"DnsView_Tag": {
|
|
36782
|
+
"resourceType": "AWS::Route53GlobalResolver::DnsView.Tag",
|
|
36783
|
+
"kind": "property",
|
|
36784
|
+
"lexicon": "aws"
|
|
36785
|
+
},
|
|
36414
36786
|
"DocDBDBCluster": {
|
|
36415
36787
|
"resourceType": "AWS::DocDB::DBCluster",
|
|
36416
36788
|
"kind": "resource",
|
|
@@ -37635,18 +38007,18 @@
|
|
|
37635
38007
|
"FleetId": "FleetId"
|
|
37636
38008
|
},
|
|
37637
38009
|
"propertyConstraints": {
|
|
38010
|
+
"ExcessCapacityTerminationPolicy": {
|
|
38011
|
+
"enum": [
|
|
38012
|
+
"termination",
|
|
38013
|
+
"no-termination"
|
|
38014
|
+
]
|
|
38015
|
+
},
|
|
37638
38016
|
"Type": {
|
|
37639
38017
|
"enum": [
|
|
37640
38018
|
"maintain",
|
|
37641
38019
|
"request",
|
|
37642
38020
|
"instant"
|
|
37643
38021
|
]
|
|
37644
|
-
},
|
|
37645
|
-
"ExcessCapacityTerminationPolicy": {
|
|
37646
|
-
"enum": [
|
|
37647
|
-
"termination",
|
|
37648
|
-
"no-termination"
|
|
37649
|
-
]
|
|
37650
38022
|
}
|
|
37651
38023
|
},
|
|
37652
38024
|
"createOnly": [
|
|
@@ -37780,6 +38152,11 @@
|
|
|
37780
38152
|
"kind": "property",
|
|
37781
38153
|
"lexicon": "aws"
|
|
37782
38154
|
},
|
|
38155
|
+
"EC2Fleet_ReservedCapacityOptionsRequest": {
|
|
38156
|
+
"resourceType": "AWS::EC2::EC2Fleet.ReservedCapacityOptionsRequest",
|
|
38157
|
+
"kind": "property",
|
|
38158
|
+
"lexicon": "aws"
|
|
38159
|
+
},
|
|
37783
38160
|
"EC2Fleet_SpotOptionsRequest": {
|
|
37784
38161
|
"resourceType": "AWS::EC2::EC2Fleet.SpotOptionsRequest",
|
|
37785
38162
|
"kind": "property",
|
|
@@ -43732,11 +44109,6 @@
|
|
|
43732
44109
|
"kind": "property",
|
|
43733
44110
|
"lexicon": "aws"
|
|
43734
44111
|
},
|
|
43735
|
-
"ExecutionControls": {
|
|
43736
|
-
"resourceType": "AWS::Config::RemediationConfiguration.ExecutionControls",
|
|
43737
|
-
"kind": "property",
|
|
43738
|
-
"lexicon": "aws"
|
|
43739
|
-
},
|
|
43740
44112
|
"ExecutionPlan": {
|
|
43741
44113
|
"resourceType": "AWS::KendraRanking::ExecutionPlan",
|
|
43742
44114
|
"kind": "resource",
|
|
@@ -45658,90 +46030,6 @@
|
|
|
45658
46030
|
"tagUpdatable": true
|
|
45659
46031
|
}
|
|
45660
46032
|
},
|
|
45661
|
-
"FirewallDomainList": {
|
|
45662
|
-
"resourceType": "AWS::Route53Resolver::FirewallDomainList",
|
|
45663
|
-
"kind": "resource",
|
|
45664
|
-
"lexicon": "aws",
|
|
45665
|
-
"attrs": {
|
|
45666
|
-
"Id": "Id",
|
|
45667
|
-
"Arn": "Arn",
|
|
45668
|
-
"DomainCount": "DomainCount",
|
|
45669
|
-
"Status": "Status",
|
|
45670
|
-
"StatusMessage": "StatusMessage",
|
|
45671
|
-
"ManagedOwnerName": "ManagedOwnerName",
|
|
45672
|
-
"CreatorRequestId": "CreatorRequestId",
|
|
45673
|
-
"CreationTime": "CreationTime",
|
|
45674
|
-
"ModificationTime": "ModificationTime"
|
|
45675
|
-
},
|
|
45676
|
-
"propertyConstraints": {
|
|
45677
|
-
"Id": {
|
|
45678
|
-
"minLength": 1,
|
|
45679
|
-
"maxLength": 64
|
|
45680
|
-
},
|
|
45681
|
-
"Arn": {
|
|
45682
|
-
"minLength": 1,
|
|
45683
|
-
"maxLength": 600
|
|
45684
|
-
},
|
|
45685
|
-
"Name": {
|
|
45686
|
-
"pattern": "(?!^[0-9]+$)([a-zA-Z0-9\\-_' ']+)",
|
|
45687
|
-
"minLength": 1,
|
|
45688
|
-
"maxLength": 64
|
|
45689
|
-
},
|
|
45690
|
-
"DomainCount": {
|
|
45691
|
-
"minimum": 0
|
|
45692
|
-
},
|
|
45693
|
-
"Status": {
|
|
45694
|
-
"enum": [
|
|
45695
|
-
"COMPLETE",
|
|
45696
|
-
"DELETING",
|
|
45697
|
-
"UPDATING",
|
|
45698
|
-
"COMPLETE_IMPORT_FAILED",
|
|
45699
|
-
"IMPORTING",
|
|
45700
|
-
"INACTIVE_OWNER_ACCOUNT_CLOSED"
|
|
45701
|
-
]
|
|
45702
|
-
},
|
|
45703
|
-
"ManagedOwnerName": {
|
|
45704
|
-
"minLength": 1,
|
|
45705
|
-
"maxLength": 512
|
|
45706
|
-
},
|
|
45707
|
-
"CreatorRequestId": {
|
|
45708
|
-
"minLength": 1,
|
|
45709
|
-
"maxLength": 255
|
|
45710
|
-
},
|
|
45711
|
-
"CreationTime": {
|
|
45712
|
-
"minLength": 20,
|
|
45713
|
-
"maxLength": 40
|
|
45714
|
-
},
|
|
45715
|
-
"ModificationTime": {
|
|
45716
|
-
"minLength": 20,
|
|
45717
|
-
"maxLength": 40
|
|
45718
|
-
},
|
|
45719
|
-
"DomainFileUrl": {
|
|
45720
|
-
"minLength": 1,
|
|
45721
|
-
"maxLength": 1024
|
|
45722
|
-
}
|
|
45723
|
-
},
|
|
45724
|
-
"createOnly": [
|
|
45725
|
-
"Name"
|
|
45726
|
-
],
|
|
45727
|
-
"writeOnly": [
|
|
45728
|
-
"Domains",
|
|
45729
|
-
"DomainFileUrl"
|
|
45730
|
-
],
|
|
45731
|
-
"primaryIdentifier": [
|
|
45732
|
-
"Id"
|
|
45733
|
-
],
|
|
45734
|
-
"tagging": {
|
|
45735
|
-
"taggable": true,
|
|
45736
|
-
"tagOnCreate": true,
|
|
45737
|
-
"tagUpdatable": true
|
|
45738
|
-
}
|
|
45739
|
-
},
|
|
45740
|
-
"FirewallDomainList_Tag": {
|
|
45741
|
-
"resourceType": "AWS::Route53Resolver::FirewallDomainList.Tag",
|
|
45742
|
-
"kind": "property",
|
|
45743
|
-
"lexicon": "aws"
|
|
45744
|
-
},
|
|
45745
46033
|
"FirewallPolicy": {
|
|
45746
46034
|
"resourceType": "AWS::NetworkFirewall::FirewallPolicy",
|
|
45747
46035
|
"kind": "resource",
|
|
@@ -45835,9 +46123,63 @@
|
|
|
45835
46123
|
"lexicon": "aws"
|
|
45836
46124
|
},
|
|
45837
46125
|
"FirewallRule": {
|
|
45838
|
-
"resourceType": "AWS::
|
|
45839
|
-
"kind": "
|
|
45840
|
-
"lexicon": "aws"
|
|
46126
|
+
"resourceType": "AWS::Route53GlobalResolver::FirewallRule",
|
|
46127
|
+
"kind": "resource",
|
|
46128
|
+
"lexicon": "aws",
|
|
46129
|
+
"attrs": {
|
|
46130
|
+
"FirewallRuleId": "FirewallRuleId",
|
|
46131
|
+
"CreatedAt": "CreatedAt",
|
|
46132
|
+
"UpdatedAt": "UpdatedAt",
|
|
46133
|
+
"Status": "Status",
|
|
46134
|
+
"QueryType": "QueryType"
|
|
46135
|
+
},
|
|
46136
|
+
"propertyConstraints": {
|
|
46137
|
+
"FirewallRuleId": {
|
|
46138
|
+
"minLength": 1,
|
|
46139
|
+
"maxLength": 64
|
|
46140
|
+
},
|
|
46141
|
+
"BlockOverrideTtl": {
|
|
46142
|
+
"minimum": 0,
|
|
46143
|
+
"maximum": 604800
|
|
46144
|
+
},
|
|
46145
|
+
"FirewallDomainListId": {
|
|
46146
|
+
"minLength": 1,
|
|
46147
|
+
"maxLength": 64
|
|
46148
|
+
},
|
|
46149
|
+
"Priority": {
|
|
46150
|
+
"minimum": 1,
|
|
46151
|
+
"maximum": 10000
|
|
46152
|
+
},
|
|
46153
|
+
"DnsViewId": {
|
|
46154
|
+
"minLength": 1,
|
|
46155
|
+
"maxLength": 64
|
|
46156
|
+
},
|
|
46157
|
+
"QType": {
|
|
46158
|
+
"minLength": 0,
|
|
46159
|
+
"maxLength": 16
|
|
46160
|
+
},
|
|
46161
|
+
"QueryType": {
|
|
46162
|
+
"minLength": 0,
|
|
46163
|
+
"maxLength": 16
|
|
46164
|
+
},
|
|
46165
|
+
"ClientToken": {
|
|
46166
|
+
"minLength": 1,
|
|
46167
|
+
"maxLength": 256
|
|
46168
|
+
}
|
|
46169
|
+
},
|
|
46170
|
+
"createOnly": [
|
|
46171
|
+
"DnsViewId",
|
|
46172
|
+
"ClientToken",
|
|
46173
|
+
"FirewallDomainListId",
|
|
46174
|
+
"QType"
|
|
46175
|
+
],
|
|
46176
|
+
"writeOnly": [
|
|
46177
|
+
"ClientToken",
|
|
46178
|
+
"QType"
|
|
46179
|
+
],
|
|
46180
|
+
"primaryIdentifier": [
|
|
46181
|
+
"FirewallRuleId"
|
|
46182
|
+
]
|
|
45841
46183
|
},
|
|
45842
46184
|
"FirewallRuleGroup": {
|
|
45843
46185
|
"resourceType": "AWS::Route53Resolver::FirewallRuleGroup",
|
|
@@ -48980,6 +49322,59 @@
|
|
|
48980
49322
|
"kind": "property",
|
|
48981
49323
|
"lexicon": "aws"
|
|
48982
49324
|
},
|
|
49325
|
+
"GlobalResolver": {
|
|
49326
|
+
"resourceType": "AWS::Route53GlobalResolver::GlobalResolver",
|
|
49327
|
+
"kind": "resource",
|
|
49328
|
+
"lexicon": "aws",
|
|
49329
|
+
"attrs": {
|
|
49330
|
+
"Arn": "Arn",
|
|
49331
|
+
"GlobalResolverId": "GlobalResolverId",
|
|
49332
|
+
"DnsName": "DnsName",
|
|
49333
|
+
"IPv4Addresses": "IPv4Addresses",
|
|
49334
|
+
"IPv6Addresses": "IPv6Addresses",
|
|
49335
|
+
"CreatedAt": "CreatedAt",
|
|
49336
|
+
"UpdatedAt": "UpdatedAt",
|
|
49337
|
+
"Status": "Status"
|
|
49338
|
+
},
|
|
49339
|
+
"propertyConstraints": {
|
|
49340
|
+
"GlobalResolverId": {
|
|
49341
|
+
"minLength": 1,
|
|
49342
|
+
"maxLength": 64
|
|
49343
|
+
},
|
|
49344
|
+
"Arn": {
|
|
49345
|
+
"minLength": 1,
|
|
49346
|
+
"maxLength": 2048
|
|
49347
|
+
},
|
|
49348
|
+
"DnsName": {
|
|
49349
|
+
"minLength": 1,
|
|
49350
|
+
"maxLength": 128
|
|
49351
|
+
},
|
|
49352
|
+
"ClientToken": {
|
|
49353
|
+
"minLength": 1,
|
|
49354
|
+
"maxLength": 256
|
|
49355
|
+
}
|
|
49356
|
+
},
|
|
49357
|
+
"createOnly": [
|
|
49358
|
+
"Regions",
|
|
49359
|
+
"ClientToken"
|
|
49360
|
+
],
|
|
49361
|
+
"writeOnly": [
|
|
49362
|
+
"ClientToken"
|
|
49363
|
+
],
|
|
49364
|
+
"primaryIdentifier": [
|
|
49365
|
+
"GlobalResolverId"
|
|
49366
|
+
],
|
|
49367
|
+
"tagging": {
|
|
49368
|
+
"taggable": true,
|
|
49369
|
+
"tagOnCreate": true,
|
|
49370
|
+
"tagUpdatable": true
|
|
49371
|
+
}
|
|
49372
|
+
},
|
|
49373
|
+
"GlobalResolver_Tag": {
|
|
49374
|
+
"resourceType": "AWS::Route53GlobalResolver::GlobalResolver.Tag",
|
|
49375
|
+
"kind": "property",
|
|
49376
|
+
"lexicon": "aws"
|
|
49377
|
+
},
|
|
48983
49378
|
"GlobalTable": {
|
|
48984
49379
|
"resourceType": "AWS::DynamoDB::GlobalTable",
|
|
48985
49380
|
"kind": "resource",
|
|
@@ -49561,6 +49956,11 @@
|
|
|
49561
49956
|
"kind": "property",
|
|
49562
49957
|
"lexicon": "aws"
|
|
49563
49958
|
},
|
|
49959
|
+
"GlueSecurityConfiguration_S3Encryption": {
|
|
49960
|
+
"resourceType": "AWS::Glue::SecurityConfiguration.S3Encryption",
|
|
49961
|
+
"kind": "property",
|
|
49962
|
+
"lexicon": "aws"
|
|
49963
|
+
},
|
|
49564
49964
|
"GlueTable": {
|
|
49565
49965
|
"resourceType": "AWS::Glue::Table",
|
|
49566
49966
|
"kind": "resource",
|
|
@@ -51230,6 +51630,35 @@
|
|
|
51230
51630
|
"tagUpdatable": true
|
|
51231
51631
|
}
|
|
51232
51632
|
},
|
|
51633
|
+
"HostedZoneAssociation": {
|
|
51634
|
+
"resourceType": "AWS::Route53GlobalResolver::HostedZoneAssociation",
|
|
51635
|
+
"kind": "resource",
|
|
51636
|
+
"lexicon": "aws",
|
|
51637
|
+
"attrs": {
|
|
51638
|
+
"HostedZoneAssociationId": "HostedZoneAssociationId",
|
|
51639
|
+
"HostedZoneName": "HostedZoneName",
|
|
51640
|
+
"CreatedAt": "CreatedAt",
|
|
51641
|
+
"UpdatedAt": "UpdatedAt",
|
|
51642
|
+
"Status": "Status"
|
|
51643
|
+
},
|
|
51644
|
+
"propertyConstraints": {
|
|
51645
|
+
"HostedZoneAssociationId": {
|
|
51646
|
+
"minLength": 1,
|
|
51647
|
+
"maxLength": 64
|
|
51648
|
+
},
|
|
51649
|
+
"HostedZoneName": {
|
|
51650
|
+
"minLength": 1,
|
|
51651
|
+
"maxLength": 1024
|
|
51652
|
+
}
|
|
51653
|
+
},
|
|
51654
|
+
"createOnly": [
|
|
51655
|
+
"HostedZoneId",
|
|
51656
|
+
"ResourceArn"
|
|
51657
|
+
],
|
|
51658
|
+
"primaryIdentifier": [
|
|
51659
|
+
"HostedZoneAssociationId"
|
|
51660
|
+
]
|
|
51661
|
+
},
|
|
51233
51662
|
"HostedZoneConfig": {
|
|
51234
51663
|
"resourceType": "AWS::Route53::HostedZone.HostedZoneConfig",
|
|
51235
51664
|
"kind": "property",
|
|
@@ -54083,6 +54512,11 @@
|
|
|
54083
54512
|
"kind": "property",
|
|
54084
54513
|
"lexicon": "aws"
|
|
54085
54514
|
},
|
|
54515
|
+
"InferenceContainerConfig": {
|
|
54516
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithm.InferenceContainerConfig",
|
|
54517
|
+
"kind": "property",
|
|
54518
|
+
"lexicon": "aws"
|
|
54519
|
+
},
|
|
54086
54520
|
"InferenceExecutionConfig": {
|
|
54087
54521
|
"resourceType": "AWS::SageMaker::Model.InferenceExecutionConfig",
|
|
54088
54522
|
"kind": "property",
|
|
@@ -55083,6 +55517,11 @@
|
|
|
55083
55517
|
"Id"
|
|
55084
55518
|
]
|
|
55085
55519
|
},
|
|
55520
|
+
"InsightRule_Tag": {
|
|
55521
|
+
"resourceType": "AWS::CloudWatch::InsightRule.Tag",
|
|
55522
|
+
"kind": "property",
|
|
55523
|
+
"lexicon": "aws"
|
|
55524
|
+
},
|
|
55086
55525
|
"Insight_AwsSecurityFindingFilters": {
|
|
55087
55526
|
"resourceType": "AWS::SecurityHub::Insight.AwsSecurityFindingFilters",
|
|
55088
55527
|
"kind": "property",
|
|
@@ -63912,6 +64351,11 @@
|
|
|
63912
64351
|
"kind": "property",
|
|
63913
64352
|
"lexicon": "aws"
|
|
63914
64353
|
},
|
|
64354
|
+
"LogRedactionConfiguration": {
|
|
64355
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.LogRedactionConfiguration",
|
|
64356
|
+
"kind": "property",
|
|
64357
|
+
"lexicon": "aws"
|
|
64358
|
+
},
|
|
63915
64359
|
"LogSource": {
|
|
63916
64360
|
"resourceType": "AWS::ObservabilityAdmin::S3TableIntegration.LogSource",
|
|
63917
64361
|
"kind": "property",
|
|
@@ -64102,6 +64546,11 @@
|
|
|
64102
64546
|
"kind": "property",
|
|
64103
64547
|
"lexicon": "aws"
|
|
64104
64548
|
},
|
|
64549
|
+
"LogsConfigurationPolicy": {
|
|
64550
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.LogsConfigurationPolicy",
|
|
64551
|
+
"kind": "property",
|
|
64552
|
+
"lexicon": "aws"
|
|
64553
|
+
},
|
|
64105
64554
|
"LogsDestination": {
|
|
64106
64555
|
"resourceType": "AWS::Logs::Destination",
|
|
64107
64556
|
"kind": "resource",
|
|
@@ -69388,11 +69837,6 @@
|
|
|
69388
69837
|
"kind": "property",
|
|
69389
69838
|
"lexicon": "aws"
|
|
69390
69839
|
},
|
|
69391
|
-
"MetricDefinition": {
|
|
69392
|
-
"resourceType": "AWS::RUM::AppMonitor.MetricDefinition",
|
|
69393
|
-
"kind": "property",
|
|
69394
|
-
"lexicon": "aws"
|
|
69395
|
-
},
|
|
69396
69840
|
"MetricDefinitionObject": {
|
|
69397
69841
|
"resourceType": "AWS::Evidently::Launch.MetricDefinitionObject",
|
|
69398
69842
|
"kind": "property",
|
|
@@ -69591,6 +70035,11 @@
|
|
|
69591
70035
|
"kind": "property",
|
|
69592
70036
|
"lexicon": "aws"
|
|
69593
70037
|
},
|
|
70038
|
+
"MetricsConfigurationPolicy": {
|
|
70039
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.MetricsConfigurationPolicy",
|
|
70040
|
+
"kind": "property",
|
|
70041
|
+
"lexicon": "aws"
|
|
70042
|
+
},
|
|
69594
70043
|
"MetricsSource": {
|
|
69595
70044
|
"resourceType": "AWS::SageMaker::ModelPackage.MetricsSource",
|
|
69596
70045
|
"kind": "property",
|
|
@@ -75063,6 +75512,11 @@
|
|
|
75063
75512
|
"kind": "property",
|
|
75064
75513
|
"lexicon": "aws"
|
|
75065
75514
|
},
|
|
75515
|
+
"OpenSearchServiceDomain_DeploymentStrategyOptions": {
|
|
75516
|
+
"resourceType": "AWS::OpenSearchService::Domain.DeploymentStrategyOptions",
|
|
75517
|
+
"kind": "property",
|
|
75518
|
+
"lexicon": "aws"
|
|
75519
|
+
},
|
|
75066
75520
|
"OpenSearchServiceDomain_DomainEndpointOptions": {
|
|
75067
75521
|
"resourceType": "AWS::OpenSearchService::Domain.DomainEndpointOptions",
|
|
75068
75522
|
"kind": "property",
|
|
@@ -80255,6 +80709,11 @@
|
|
|
80255
80709
|
"kind": "property",
|
|
80256
80710
|
"lexicon": "aws"
|
|
80257
80711
|
},
|
|
80712
|
+
"PolicyStore_SchemaDefinition": {
|
|
80713
|
+
"resourceType": "AWS::VerifiedPermissions::PolicyStore.SchemaDefinition",
|
|
80714
|
+
"kind": "property",
|
|
80715
|
+
"lexicon": "aws"
|
|
80716
|
+
},
|
|
80258
80717
|
"PolicyStore_Tag": {
|
|
80259
80718
|
"resourceType": "AWS::VerifiedPermissions::PolicyStore.Tag",
|
|
80260
80719
|
"kind": "property",
|
|
@@ -81086,6 +81545,16 @@
|
|
|
81086
81545
|
"kind": "property",
|
|
81087
81546
|
"lexicon": "aws"
|
|
81088
81547
|
},
|
|
81548
|
+
"PrivacyConfiguration": {
|
|
81549
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.PrivacyConfiguration",
|
|
81550
|
+
"kind": "property",
|
|
81551
|
+
"lexicon": "aws"
|
|
81552
|
+
},
|
|
81553
|
+
"PrivacyConfigurationPolicies": {
|
|
81554
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.PrivacyConfigurationPolicies",
|
|
81555
|
+
"kind": "property",
|
|
81556
|
+
"lexicon": "aws"
|
|
81557
|
+
},
|
|
81089
81558
|
"PrivateDnsNameOptionsRequest": {
|
|
81090
81559
|
"resourceType": "AWS::WorkspacesInstances::WorkspaceInstance.PrivateDnsNameOptionsRequest",
|
|
81091
81560
|
"kind": "property",
|
|
@@ -92297,30 +92766,6 @@
|
|
|
92297
92766
|
"kind": "property",
|
|
92298
92767
|
"lexicon": "aws"
|
|
92299
92768
|
},
|
|
92300
|
-
"RemediationConfiguration": {
|
|
92301
|
-
"resourceType": "AWS::Config::RemediationConfiguration",
|
|
92302
|
-
"kind": "resource",
|
|
92303
|
-
"lexicon": "aws",
|
|
92304
|
-
"attrs": {
|
|
92305
|
-
"Id": "Id"
|
|
92306
|
-
},
|
|
92307
|
-
"createOnly": [
|
|
92308
|
-
"ConfigRuleName"
|
|
92309
|
-
],
|
|
92310
|
-
"primaryIdentifier": [
|
|
92311
|
-
"Id"
|
|
92312
|
-
]
|
|
92313
|
-
},
|
|
92314
|
-
"RemediationConfiguration_ExecutionControls": {
|
|
92315
|
-
"resourceType": "AWS::Config::RemediationConfiguration.ExecutionControls",
|
|
92316
|
-
"kind": "property",
|
|
92317
|
-
"lexicon": "aws"
|
|
92318
|
-
},
|
|
92319
|
-
"RemediationConfiguration_SsmControls": {
|
|
92320
|
-
"resourceType": "AWS::Config::RemediationConfiguration.SsmControls",
|
|
92321
|
-
"kind": "property",
|
|
92322
|
-
"lexicon": "aws"
|
|
92323
|
-
},
|
|
92324
92769
|
"RemixSettings": {
|
|
92325
92770
|
"resourceType": "AWS::MediaLive::Channel.RemixSettings",
|
|
92326
92771
|
"kind": "property",
|
|
@@ -92545,48 +92990,96 @@
|
|
|
92545
92990
|
"kind": "resource",
|
|
92546
92991
|
"lexicon": "aws",
|
|
92547
92992
|
"attrs": {
|
|
92993
|
+
"ConfigurationEndPoint": "ConfigurationEndPoint",
|
|
92548
92994
|
"ConfigurationEndPoint_Address": "ConfigurationEndPoint.Address",
|
|
92995
|
+
"ConfigurationEndPoint_Port": "ConfigurationEndPoint.Port",
|
|
92996
|
+
"PrimaryEndPoint": "PrimaryEndPoint",
|
|
92549
92997
|
"PrimaryEndPoint_Address": "PrimaryEndPoint.Address",
|
|
92550
92998
|
"PrimaryEndPoint_Port": "PrimaryEndPoint.Port",
|
|
92551
|
-
"
|
|
92552
|
-
"ConfigurationEndPoint_Port": "ConfigurationEndPoint.Port",
|
|
92553
|
-
"ReadEndPoint_Addresses_List": "ReadEndPoint.Addresses.List",
|
|
92554
|
-
"ReadEndPoint_Ports_List": "ReadEndPoint.Ports.List",
|
|
92555
|
-
"ReaderEndPoint_Port": "ReaderEndPoint.Port",
|
|
92999
|
+
"ReadEndPoint": "ReadEndPoint",
|
|
92556
93000
|
"ReadEndPoint_Addresses": "ReadEndPoint.Addresses",
|
|
93001
|
+
"ReadEndPoint_AddressesList": "ReadEndPoint.AddressesList",
|
|
92557
93002
|
"ReadEndPoint_Ports": "ReadEndPoint.Ports",
|
|
92558
|
-
"
|
|
93003
|
+
"ReadEndPoint_PortsList": "ReadEndPoint.PortsList",
|
|
93004
|
+
"ReaderEndPoint": "ReaderEndPoint",
|
|
93005
|
+
"ReaderEndPoint_Address": "ReaderEndPoint.Address",
|
|
93006
|
+
"ReaderEndPoint_Port": "ReaderEndPoint.Port"
|
|
92559
93007
|
},
|
|
92560
93008
|
"propertyConstraints": {
|
|
93009
|
+
"NumNodeGroups": {
|
|
93010
|
+
"default": 1
|
|
93011
|
+
},
|
|
93012
|
+
"AutomaticFailoverEnabled": {
|
|
93013
|
+
"default": false
|
|
93014
|
+
},
|
|
92561
93015
|
"ReplicasPerNodeGroup": {
|
|
92562
93016
|
"minimum": 0,
|
|
92563
93017
|
"maximum": 5
|
|
92564
93018
|
},
|
|
92565
|
-
"
|
|
92566
|
-
"
|
|
93019
|
+
"TransitEncryptionEnabled": {
|
|
93020
|
+
"default": false
|
|
92567
93021
|
},
|
|
92568
93022
|
"NumCacheClusters": {
|
|
92569
93023
|
"minimum": 1,
|
|
92570
93024
|
"maximum": 6
|
|
93025
|
+
},
|
|
93026
|
+
"AtRestEncryptionEnabled": {
|
|
93027
|
+
"default": false
|
|
93028
|
+
},
|
|
93029
|
+
"SecurityGroupIds": {
|
|
93030
|
+
"format": "AWS::EC2::SecurityGroup.Ids"
|
|
93031
|
+
},
|
|
93032
|
+
"SnapshotRetentionLimit": {
|
|
93033
|
+
"default": 0
|
|
92571
93034
|
}
|
|
92572
93035
|
},
|
|
92573
93036
|
"createOnly": [
|
|
93037
|
+
"AtRestEncryptionEnabled",
|
|
93038
|
+
"CacheSubnetGroupName",
|
|
93039
|
+
"DataTieringEnabled",
|
|
93040
|
+
"GlobalReplicationGroupId",
|
|
92574
93041
|
"KmsKeyId",
|
|
93042
|
+
"NetworkType",
|
|
92575
93043
|
"Port",
|
|
93044
|
+
"PreferredCacheClusterAZs",
|
|
93045
|
+
"ReplicasPerNodeGroup",
|
|
93046
|
+
"ReplicationGroupId",
|
|
92576
93047
|
"SnapshotArns",
|
|
92577
|
-
"SnapshotName"
|
|
93048
|
+
"SnapshotName"
|
|
93049
|
+
],
|
|
93050
|
+
"writeOnly": [
|
|
93051
|
+
"AuthToken",
|
|
93052
|
+
"CacheParameterGroupName",
|
|
93053
|
+
"CacheSecurityGroupNames",
|
|
92578
93054
|
"CacheSubnetGroupName",
|
|
92579
|
-
"
|
|
92580
|
-
"
|
|
92581
|
-
"
|
|
92582
|
-
"
|
|
92583
|
-
"
|
|
93055
|
+
"EngineVersion",
|
|
93056
|
+
"NotificationTopicArn",
|
|
93057
|
+
"PreferredMaintenanceWindow",
|
|
93058
|
+
"SecurityGroupIds",
|
|
93059
|
+
"SnapshotArns",
|
|
93060
|
+
"SnapshotName",
|
|
93061
|
+
"NodeGroupConfiguration",
|
|
93062
|
+
"NumNodeGroups",
|
|
92584
93063
|
"ReplicasPerNodeGroup",
|
|
93064
|
+
"KmsKeyId",
|
|
93065
|
+
"PrimaryClusterId",
|
|
92585
93066
|
"PreferredCacheClusterAZs"
|
|
92586
93067
|
],
|
|
92587
93068
|
"primaryIdentifier": [
|
|
92588
93069
|
"ReplicationGroupId"
|
|
92589
|
-
]
|
|
93070
|
+
],
|
|
93071
|
+
"deprecatedProperties": [
|
|
93072
|
+
"CacheSecurityGroupNames"
|
|
93073
|
+
],
|
|
93074
|
+
"conditionalCreateOnly": [
|
|
93075
|
+
"AuthToken",
|
|
93076
|
+
"NodeGroupConfiguration"
|
|
93077
|
+
],
|
|
93078
|
+
"tagging": {
|
|
93079
|
+
"taggable": true,
|
|
93080
|
+
"tagOnCreate": true,
|
|
93081
|
+
"tagUpdatable": true
|
|
93082
|
+
}
|
|
92590
93083
|
},
|
|
92591
93084
|
"ReplicationGroup_CloudWatchLogsDestinationDetails": {
|
|
92592
93085
|
"resourceType": "AWS::ElastiCache::ReplicationGroup.CloudWatchLogsDestinationDetails",
|
|
@@ -92598,6 +93091,11 @@
|
|
|
92598
93091
|
"kind": "property",
|
|
92599
93092
|
"lexicon": "aws"
|
|
92600
93093
|
},
|
|
93094
|
+
"ReplicationGroup_Endpoint": {
|
|
93095
|
+
"resourceType": "AWS::ElastiCache::ReplicationGroup.Endpoint",
|
|
93096
|
+
"kind": "property",
|
|
93097
|
+
"lexicon": "aws"
|
|
93098
|
+
},
|
|
92601
93099
|
"ReplicationGroup_KinesisFirehoseDestinationDetails": {
|
|
92602
93100
|
"resourceType": "AWS::ElastiCache::ReplicationGroup.KinesisFirehoseDestinationDetails",
|
|
92603
93101
|
"kind": "property",
|
|
@@ -93331,6 +93829,11 @@
|
|
|
93331
93829
|
"kind": "property",
|
|
93332
93830
|
"lexicon": "aws"
|
|
93333
93831
|
},
|
|
93832
|
+
"ReservedCapacityOptionsRequest": {
|
|
93833
|
+
"resourceType": "AWS::EC2::EC2Fleet.ReservedCapacityOptionsRequest",
|
|
93834
|
+
"kind": "property",
|
|
93835
|
+
"lexicon": "aws"
|
|
93836
|
+
},
|
|
93334
93837
|
"ResetTimer": {
|
|
93335
93838
|
"resourceType": "AWS::IoTEvents::DetectorModel.ResetTimer",
|
|
93336
93839
|
"kind": "property",
|
|
@@ -95626,6 +96129,66 @@
|
|
|
95626
96129
|
"kind": "property",
|
|
95627
96130
|
"lexicon": "aws"
|
|
95628
96131
|
},
|
|
96132
|
+
"Route53GlobalResolverFirewallDomainList": {
|
|
96133
|
+
"resourceType": "AWS::Route53GlobalResolver::FirewallDomainList",
|
|
96134
|
+
"kind": "resource",
|
|
96135
|
+
"lexicon": "aws",
|
|
96136
|
+
"attrs": {
|
|
96137
|
+
"Arn": "Arn",
|
|
96138
|
+
"FirewallDomainListId": "FirewallDomainListId",
|
|
96139
|
+
"DomainCount": "DomainCount",
|
|
96140
|
+
"CreatedAt": "CreatedAt",
|
|
96141
|
+
"UpdatedAt": "UpdatedAt",
|
|
96142
|
+
"Status": "Status",
|
|
96143
|
+
"StatusMessage": "StatusMessage"
|
|
96144
|
+
},
|
|
96145
|
+
"propertyConstraints": {
|
|
96146
|
+
"FirewallDomainListId": {
|
|
96147
|
+
"minLength": 1,
|
|
96148
|
+
"maxLength": 64
|
|
96149
|
+
},
|
|
96150
|
+
"Arn": {
|
|
96151
|
+
"minLength": 1,
|
|
96152
|
+
"maxLength": 2048
|
|
96153
|
+
},
|
|
96154
|
+
"GlobalResolverId": {
|
|
96155
|
+
"minLength": 1,
|
|
96156
|
+
"maxLength": 64
|
|
96157
|
+
},
|
|
96158
|
+
"DomainFileUrl": {
|
|
96159
|
+
"minLength": 1,
|
|
96160
|
+
"maxLength": 1024
|
|
96161
|
+
},
|
|
96162
|
+
"ClientToken": {
|
|
96163
|
+
"minLength": 1,
|
|
96164
|
+
"maxLength": 256
|
|
96165
|
+
}
|
|
96166
|
+
},
|
|
96167
|
+
"createOnly": [
|
|
96168
|
+
"GlobalResolverId",
|
|
96169
|
+
"Name",
|
|
96170
|
+
"Description",
|
|
96171
|
+
"ClientToken"
|
|
96172
|
+
],
|
|
96173
|
+
"writeOnly": [
|
|
96174
|
+
"ClientToken",
|
|
96175
|
+
"Domains",
|
|
96176
|
+
"DomainFileUrl"
|
|
96177
|
+
],
|
|
96178
|
+
"primaryIdentifier": [
|
|
96179
|
+
"FirewallDomainListId"
|
|
96180
|
+
],
|
|
96181
|
+
"tagging": {
|
|
96182
|
+
"taggable": true,
|
|
96183
|
+
"tagOnCreate": true,
|
|
96184
|
+
"tagUpdatable": true
|
|
96185
|
+
}
|
|
96186
|
+
},
|
|
96187
|
+
"Route53GlobalResolverFirewallDomainList_Tag": {
|
|
96188
|
+
"resourceType": "AWS::Route53GlobalResolver::FirewallDomainList.Tag",
|
|
96189
|
+
"kind": "property",
|
|
96190
|
+
"lexicon": "aws"
|
|
96191
|
+
},
|
|
95629
96192
|
"Route53HealthCheckConfiguration": {
|
|
95630
96193
|
"resourceType": "AWS::ARCRegionSwitch::Plan.Route53HealthCheckConfiguration",
|
|
95631
96194
|
"kind": "property",
|
|
@@ -95787,6 +96350,90 @@
|
|
|
95787
96350
|
"kind": "property",
|
|
95788
96351
|
"lexicon": "aws"
|
|
95789
96352
|
},
|
|
96353
|
+
"Route53ResolverFirewallDomainList": {
|
|
96354
|
+
"resourceType": "AWS::Route53Resolver::FirewallDomainList",
|
|
96355
|
+
"kind": "resource",
|
|
96356
|
+
"lexicon": "aws",
|
|
96357
|
+
"attrs": {
|
|
96358
|
+
"Id": "Id",
|
|
96359
|
+
"Arn": "Arn",
|
|
96360
|
+
"DomainCount": "DomainCount",
|
|
96361
|
+
"Status": "Status",
|
|
96362
|
+
"StatusMessage": "StatusMessage",
|
|
96363
|
+
"ManagedOwnerName": "ManagedOwnerName",
|
|
96364
|
+
"CreatorRequestId": "CreatorRequestId",
|
|
96365
|
+
"CreationTime": "CreationTime",
|
|
96366
|
+
"ModificationTime": "ModificationTime"
|
|
96367
|
+
},
|
|
96368
|
+
"propertyConstraints": {
|
|
96369
|
+
"Id": {
|
|
96370
|
+
"minLength": 1,
|
|
96371
|
+
"maxLength": 64
|
|
96372
|
+
},
|
|
96373
|
+
"Arn": {
|
|
96374
|
+
"minLength": 1,
|
|
96375
|
+
"maxLength": 600
|
|
96376
|
+
},
|
|
96377
|
+
"Name": {
|
|
96378
|
+
"pattern": "(?!^[0-9]+$)([a-zA-Z0-9\\-_' ']+)",
|
|
96379
|
+
"minLength": 1,
|
|
96380
|
+
"maxLength": 64
|
|
96381
|
+
},
|
|
96382
|
+
"DomainCount": {
|
|
96383
|
+
"minimum": 0
|
|
96384
|
+
},
|
|
96385
|
+
"Status": {
|
|
96386
|
+
"enum": [
|
|
96387
|
+
"COMPLETE",
|
|
96388
|
+
"DELETING",
|
|
96389
|
+
"UPDATING",
|
|
96390
|
+
"COMPLETE_IMPORT_FAILED",
|
|
96391
|
+
"IMPORTING",
|
|
96392
|
+
"INACTIVE_OWNER_ACCOUNT_CLOSED"
|
|
96393
|
+
]
|
|
96394
|
+
},
|
|
96395
|
+
"ManagedOwnerName": {
|
|
96396
|
+
"minLength": 1,
|
|
96397
|
+
"maxLength": 512
|
|
96398
|
+
},
|
|
96399
|
+
"CreatorRequestId": {
|
|
96400
|
+
"minLength": 1,
|
|
96401
|
+
"maxLength": 255
|
|
96402
|
+
},
|
|
96403
|
+
"CreationTime": {
|
|
96404
|
+
"minLength": 20,
|
|
96405
|
+
"maxLength": 40
|
|
96406
|
+
},
|
|
96407
|
+
"ModificationTime": {
|
|
96408
|
+
"minLength": 20,
|
|
96409
|
+
"maxLength": 40
|
|
96410
|
+
},
|
|
96411
|
+
"DomainFileUrl": {
|
|
96412
|
+
"minLength": 1,
|
|
96413
|
+
"maxLength": 1024
|
|
96414
|
+
}
|
|
96415
|
+
},
|
|
96416
|
+
"createOnly": [
|
|
96417
|
+
"Name"
|
|
96418
|
+
],
|
|
96419
|
+
"writeOnly": [
|
|
96420
|
+
"Domains",
|
|
96421
|
+
"DomainFileUrl"
|
|
96422
|
+
],
|
|
96423
|
+
"primaryIdentifier": [
|
|
96424
|
+
"Id"
|
|
96425
|
+
],
|
|
96426
|
+
"tagging": {
|
|
96427
|
+
"taggable": true,
|
|
96428
|
+
"tagOnCreate": true,
|
|
96429
|
+
"tagUpdatable": true
|
|
96430
|
+
}
|
|
96431
|
+
},
|
|
96432
|
+
"Route53ResolverFirewallDomainList_Tag": {
|
|
96433
|
+
"resourceType": "AWS::Route53Resolver::FirewallDomainList.Tag",
|
|
96434
|
+
"kind": "property",
|
|
96435
|
+
"lexicon": "aws"
|
|
96436
|
+
},
|
|
95790
96437
|
"Route53ResourceRecordSet": {
|
|
95791
96438
|
"resourceType": "AWS::ARCRegionSwitch::Plan.Route53ResourceRecordSet",
|
|
95792
96439
|
"kind": "property",
|
|
@@ -97215,11 +97862,6 @@
|
|
|
97215
97862
|
"kind": "property",
|
|
97216
97863
|
"lexicon": "aws"
|
|
97217
97864
|
},
|
|
97218
|
-
"S3Encryption": {
|
|
97219
|
-
"resourceType": "AWS::Synthetics::Canary.S3Encryption",
|
|
97220
|
-
"kind": "property",
|
|
97221
|
-
"lexicon": "aws"
|
|
97222
|
-
},
|
|
97223
97865
|
"S3EncryptionConfiguration": {
|
|
97224
97866
|
"resourceType": "AWS::EMRContainers::SecurityConfiguration.S3EncryptionConfiguration",
|
|
97225
97867
|
"kind": "property",
|
|
@@ -105384,11 +106026,6 @@
|
|
|
105384
106026
|
"kind": "property",
|
|
105385
106027
|
"lexicon": "aws"
|
|
105386
106028
|
},
|
|
105387
|
-
"SsmControls": {
|
|
105388
|
-
"resourceType": "AWS::Config::RemediationConfiguration.SsmControls",
|
|
105389
|
-
"kind": "property",
|
|
105390
|
-
"lexicon": "aws"
|
|
105391
|
-
},
|
|
105392
106029
|
"SsmParameter": {
|
|
105393
106030
|
"resourceType": "AWS::SSM::Parameter",
|
|
105394
106031
|
"kind": "resource",
|
|
@@ -105616,6 +106253,9 @@
|
|
|
105616
106253
|
"PortfolioId",
|
|
105617
106254
|
"ProductId"
|
|
105618
106255
|
],
|
|
106256
|
+
"writeOnly": [
|
|
106257
|
+
"AcceptLanguage"
|
|
106258
|
+
],
|
|
105619
106259
|
"primaryIdentifier": [
|
|
105620
106260
|
"Id"
|
|
105621
106261
|
]
|
|
@@ -108506,7 +109146,7 @@
|
|
|
108506
109146
|
],
|
|
108507
109147
|
"tagging": {
|
|
108508
109148
|
"taggable": true,
|
|
108509
|
-
"tagOnCreate":
|
|
109149
|
+
"tagOnCreate": true,
|
|
108510
109150
|
"tagUpdatable": true
|
|
108511
109151
|
}
|
|
108512
109152
|
},
|
|
@@ -109597,6 +110237,20 @@
|
|
|
109597
110237
|
"kind": "property",
|
|
109598
110238
|
"lexicon": "aws"
|
|
109599
110239
|
},
|
|
110240
|
+
"TelemetryEnrichment": {
|
|
110241
|
+
"resourceType": "AWS::ObservabilityAdmin::TelemetryEnrichment",
|
|
110242
|
+
"kind": "resource",
|
|
110243
|
+
"lexicon": "aws",
|
|
110244
|
+
"attrs": {
|
|
110245
|
+
"Status": "Status"
|
|
110246
|
+
},
|
|
110247
|
+
"createOnly": [
|
|
110248
|
+
"Scope"
|
|
110249
|
+
],
|
|
110250
|
+
"primaryIdentifier": [
|
|
110251
|
+
"Scope"
|
|
110252
|
+
]
|
|
110253
|
+
},
|
|
109600
110254
|
"TelemetryPipeline": {
|
|
109601
110255
|
"resourceType": "AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipeline",
|
|
109602
110256
|
"kind": "property",
|
|
@@ -111599,6 +112253,36 @@
|
|
|
111599
112253
|
"kind": "property",
|
|
111600
112254
|
"lexicon": "aws"
|
|
111601
112255
|
},
|
|
112256
|
+
"TrainedModelArtifactMaxSize": {
|
|
112257
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.TrainedModelArtifactMaxSize",
|
|
112258
|
+
"kind": "property",
|
|
112259
|
+
"lexicon": "aws"
|
|
112260
|
+
},
|
|
112261
|
+
"TrainedModelExportsConfigurationPolicy": {
|
|
112262
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.TrainedModelExportsConfigurationPolicy",
|
|
112263
|
+
"kind": "property",
|
|
112264
|
+
"lexicon": "aws"
|
|
112265
|
+
},
|
|
112266
|
+
"TrainedModelExportsMaxSize": {
|
|
112267
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.TrainedModelExportsMaxSize",
|
|
112268
|
+
"kind": "property",
|
|
112269
|
+
"lexicon": "aws"
|
|
112270
|
+
},
|
|
112271
|
+
"TrainedModelInferenceJobsConfigurationPolicy": {
|
|
112272
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.TrainedModelInferenceJobsConfigurationPolicy",
|
|
112273
|
+
"kind": "property",
|
|
112274
|
+
"lexicon": "aws"
|
|
112275
|
+
},
|
|
112276
|
+
"TrainedModelInferenceMaxOutputSize": {
|
|
112277
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.TrainedModelInferenceMaxOutputSize",
|
|
112278
|
+
"kind": "property",
|
|
112279
|
+
"lexicon": "aws"
|
|
112280
|
+
},
|
|
112281
|
+
"TrainedModelsConfigurationPolicy": {
|
|
112282
|
+
"resourceType": "AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation.TrainedModelsConfigurationPolicy",
|
|
112283
|
+
"kind": "property",
|
|
112284
|
+
"lexicon": "aws"
|
|
112285
|
+
},
|
|
111602
112286
|
"TrainingDataset": {
|
|
111603
112287
|
"resourceType": "AWS::CleanRoomsML::TrainingDataset",
|
|
111604
112288
|
"kind": "resource",
|
|
@@ -120385,8 +121069,7 @@
|
|
|
120385
121069
|
"Workgroup_BaseCapacity": "Workgroup.BaseCapacity",
|
|
120386
121070
|
"Workgroup_MaxCapacity": "Workgroup.MaxCapacity",
|
|
120387
121071
|
"Workgroup_EnhancedVpcRouting": "Workgroup.EnhancedVpcRouting",
|
|
120388
|
-
"
|
|
120389
|
-
"Workgroup_ConfigParameters_*_ParameterValue": "Workgroup.ConfigParameters.*.ParameterValue",
|
|
121072
|
+
"Workgroup_ConfigParameters": "Workgroup.ConfigParameters",
|
|
120390
121073
|
"Workgroup_SecurityGroupIds": "Workgroup.SecurityGroupIds",
|
|
120391
121074
|
"Workgroup_SubnetIds": "Workgroup.SubnetIds",
|
|
120392
121075
|
"Workgroup_TrackName": "Workgroup.TrackName",
|
|
@@ -120863,7 +121546,7 @@
|
|
|
120863
121546
|
"tagging": {
|
|
120864
121547
|
"taggable": true,
|
|
120865
121548
|
"tagOnCreate": true,
|
|
120866
|
-
"tagUpdatable":
|
|
121549
|
+
"tagUpdatable": false
|
|
120867
121550
|
}
|
|
120868
121551
|
},
|
|
120869
121552
|
"WorkspacesPool_ApplicationSettings": {
|