@intentius/chant-lexicon-aws 0.13.1 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/__tests__/mock-cloud-executor.d.ts +106 -0
- package/dist/components/__tests__/mock-cloud-executor.d.ts.map +1 -0
- package/dist/components/apply.d.ts +242 -0
- package/dist/components/apply.d.ts.map +1 -0
- package/dist/components/builders.d.ts +37 -0
- package/dist/components/builders.d.ts.map +1 -0
- package/dist/components/capability-plugin.d.ts +23 -0
- package/dist/components/capability-plugin.d.ts.map +1 -0
- package/dist/components/cloud-executor.d.ts +350 -0
- package/dist/components/cloud-executor.d.ts.map +1 -0
- package/dist/components/config-bom.d.ts +135 -0
- package/dist/components/config-bom.d.ts.map +1 -0
- package/dist/components/host-delivery.d.ts +110 -0
- package/dist/components/host-delivery.d.ts.map +1 -0
- package/dist/components/index.d.ts +19 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components/job-submission.d.ts +89 -0
- package/dist/components/job-submission.d.ts.map +1 -0
- package/dist/components/publish.d.ts +194 -0
- package/dist/components/publish.d.ts.map +1 -0
- package/dist/components/safety.d.ts +49 -0
- package/dist/components/safety.d.ts.map +1 -0
- package/dist/components/wait-aws.d.ts +65 -0
- package/dist/components/wait-aws.d.ts.map +1 -0
- package/dist/generated/index.d.ts +68 -40
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/import/live-export.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/integrity.json +4 -4
- package/dist/lint/audit-catalog.d.ts +10 -0
- package/dist/lint/audit-catalog.d.ts.map +1 -0
- package/dist/manifest.json +1 -1
- package/dist/meta.json +893 -737
- package/dist/op/activities/floci.d.ts +54 -0
- package/dist/op/activities/floci.d.ts.map +1 -0
- package/dist/op/activities/index.d.ts +8 -0
- package/dist/op/activities/index.d.ts.map +1 -0
- package/dist/ownership.d.ts +10 -0
- package/dist/ownership.d.ts.map +1 -0
- package/dist/plugin.d.ts.map +1 -1
- package/dist/serializer.d.ts.map +1 -1
- package/dist/types/index.d.ts +905 -659
- package/package.json +12 -2
- package/src/components/__fixtures__/schemas/cyclonedx-1.5.schema.json +3800 -0
- package/src/components/__fixtures__/schemas/cyclonedx-spdx-license.schema.json +621 -0
- package/src/components/__fixtures__/schemas/jsf-0.82.schema.json +240 -0
- package/src/components/__fixtures__/schemas/spdx-2.3.schema.json +740 -0
- package/src/components/__fixtures__/synthesized-template.json +53 -0
- package/src/components/__tests__/mock-cloud-executor.ts +425 -0
- package/src/components/apply.test.ts +382 -0
- package/src/components/apply.ts +499 -0
- package/src/components/builders.test.ts +49 -0
- package/src/components/builders.ts +59 -0
- package/src/components/capability-plugin.ts +73 -0
- package/src/components/cloud-executor.test.ts +25 -0
- package/src/components/cloud-executor.ts +814 -0
- package/src/components/config-bom.test.ts +273 -0
- package/src/components/config-bom.ts +310 -0
- package/src/components/host-delivery.test.ts +121 -0
- package/src/components/host-delivery.ts +193 -0
- package/src/components/index.ts +19 -0
- package/src/components/job-submission.test.ts +97 -0
- package/src/components/job-submission.ts +138 -0
- package/src/components/pilots-e2e.test.ts +460 -0
- package/src/components/presets-e2e.test.ts +166 -0
- package/src/components/publish.test.ts +318 -0
- package/src/components/publish.ts +356 -0
- package/src/components/safety.test.ts +47 -0
- package/src/components/safety.ts +78 -0
- package/src/components/wait-aws.test.ts +79 -0
- package/src/components/wait-aws.ts +132 -0
- package/src/generated/index.d.ts +905 -659
- package/src/generated/index.ts +79 -51
- package/src/generated/lexicon-aws.json +893 -737
- package/src/import/live-export.ts +2 -1
- package/src/index.ts +5 -0
- package/src/lint/audit-catalog.ts +45 -0
- package/src/lsp/completions.test.ts +4 -2
- package/src/op/activities/floci.test.ts +67 -0
- package/src/op/activities/floci.ts +149 -0
- package/src/op/activities/index.ts +16 -0
- package/src/ownership.test.ts +18 -0
- package/src/ownership.ts +15 -0
- package/src/plugin.ts +3 -0
- package/src/serializer.ts +2 -1
package/dist/meta.json
CHANGED
|
@@ -1015,15 +1015,24 @@
|
|
|
1015
1015
|
"resourceType": "AWS::ServiceCatalog::AcceptedPortfolioShare",
|
|
1016
1016
|
"kind": "resource",
|
|
1017
1017
|
"lexicon": "aws",
|
|
1018
|
-
"
|
|
1019
|
-
"
|
|
1018
|
+
"propertyConstraints": {
|
|
1019
|
+
"AcceptLanguage": {
|
|
1020
|
+
"pattern": "^(en|jp|zh)$"
|
|
1021
|
+
},
|
|
1022
|
+
"PortfolioId": {
|
|
1023
|
+
"minLength": 1,
|
|
1024
|
+
"maxLength": 100
|
|
1025
|
+
}
|
|
1020
1026
|
},
|
|
1021
1027
|
"createOnly": [
|
|
1022
|
-
"
|
|
1028
|
+
"AcceptLanguage",
|
|
1029
|
+
"PortfolioId"
|
|
1030
|
+
],
|
|
1031
|
+
"writeOnly": [
|
|
1023
1032
|
"AcceptLanguage"
|
|
1024
1033
|
],
|
|
1025
1034
|
"primaryIdentifier": [
|
|
1026
|
-
"
|
|
1035
|
+
"PortfolioId"
|
|
1027
1036
|
]
|
|
1028
1037
|
},
|
|
1029
1038
|
"AccessConfig": {
|
|
@@ -1769,6 +1778,106 @@
|
|
|
1769
1778
|
"kind": "property",
|
|
1770
1779
|
"lexicon": "aws"
|
|
1771
1780
|
},
|
|
1781
|
+
"AcmeDomainValidation": {
|
|
1782
|
+
"resourceType": "AWS::CertificateManager::AcmeDomainValidation",
|
|
1783
|
+
"kind": "resource",
|
|
1784
|
+
"lexicon": "aws",
|
|
1785
|
+
"attrs": {
|
|
1786
|
+
"Arn": "Arn"
|
|
1787
|
+
},
|
|
1788
|
+
"createOnly": [
|
|
1789
|
+
"AcmeEndpointArn",
|
|
1790
|
+
"DomainName",
|
|
1791
|
+
"PrevalidationOptions/DnsPrevalidation/HostedZoneId"
|
|
1792
|
+
],
|
|
1793
|
+
"primaryIdentifier": [
|
|
1794
|
+
"Arn"
|
|
1795
|
+
],
|
|
1796
|
+
"tagging": {
|
|
1797
|
+
"taggable": true,
|
|
1798
|
+
"tagOnCreate": true,
|
|
1799
|
+
"tagUpdatable": true
|
|
1800
|
+
}
|
|
1801
|
+
},
|
|
1802
|
+
"AcmeDomainValidation_DnsPrevalidationOptions": {
|
|
1803
|
+
"resourceType": "AWS::CertificateManager::AcmeDomainValidation.DnsPrevalidationOptions",
|
|
1804
|
+
"kind": "property",
|
|
1805
|
+
"lexicon": "aws"
|
|
1806
|
+
},
|
|
1807
|
+
"AcmeDomainValidation_DomainScope": {
|
|
1808
|
+
"resourceType": "AWS::CertificateManager::AcmeDomainValidation.DomainScope",
|
|
1809
|
+
"kind": "property",
|
|
1810
|
+
"lexicon": "aws"
|
|
1811
|
+
},
|
|
1812
|
+
"AcmeDomainValidation_PrevalidationOptions": {
|
|
1813
|
+
"resourceType": "AWS::CertificateManager::AcmeDomainValidation.PrevalidationOptions",
|
|
1814
|
+
"kind": "property",
|
|
1815
|
+
"lexicon": "aws"
|
|
1816
|
+
},
|
|
1817
|
+
"AcmeEndpoint": {
|
|
1818
|
+
"resourceType": "AWS::CertificateManager::AcmeEndpoint",
|
|
1819
|
+
"kind": "resource",
|
|
1820
|
+
"lexicon": "aws",
|
|
1821
|
+
"attrs": {
|
|
1822
|
+
"AcmeEndpointArn": "AcmeEndpointArn",
|
|
1823
|
+
"EndpointUrl": "EndpointUrl"
|
|
1824
|
+
},
|
|
1825
|
+
"createOnly": [
|
|
1826
|
+
"CertificateTags"
|
|
1827
|
+
],
|
|
1828
|
+
"primaryIdentifier": [
|
|
1829
|
+
"AcmeEndpointArn"
|
|
1830
|
+
],
|
|
1831
|
+
"tagging": {
|
|
1832
|
+
"taggable": true,
|
|
1833
|
+
"tagOnCreate": true,
|
|
1834
|
+
"tagUpdatable": true
|
|
1835
|
+
}
|
|
1836
|
+
},
|
|
1837
|
+
"AcmeEndpoint_CertificateAuthority": {
|
|
1838
|
+
"resourceType": "AWS::CertificateManager::AcmeEndpoint.CertificateAuthority",
|
|
1839
|
+
"kind": "property",
|
|
1840
|
+
"lexicon": "aws"
|
|
1841
|
+
},
|
|
1842
|
+
"AcmeEndpoint_PublicCertificateAuthority": {
|
|
1843
|
+
"resourceType": "AWS::CertificateManager::AcmeEndpoint.PublicCertificateAuthority",
|
|
1844
|
+
"kind": "property",
|
|
1845
|
+
"lexicon": "aws"
|
|
1846
|
+
},
|
|
1847
|
+
"AcmeEndpoint_Tag": {
|
|
1848
|
+
"resourceType": "AWS::CertificateManager::AcmeEndpoint.Tag",
|
|
1849
|
+
"kind": "property",
|
|
1850
|
+
"lexicon": "aws"
|
|
1851
|
+
},
|
|
1852
|
+
"AcmeExternalAccountBinding": {
|
|
1853
|
+
"resourceType": "AWS::CertificateManager::AcmeExternalAccountBinding",
|
|
1854
|
+
"kind": "resource",
|
|
1855
|
+
"lexicon": "aws",
|
|
1856
|
+
"attrs": {
|
|
1857
|
+
"AcmeExternalAccountBindingArn": "AcmeExternalAccountBindingArn"
|
|
1858
|
+
},
|
|
1859
|
+
"createOnly": [
|
|
1860
|
+
"AcmeEndpointArn",
|
|
1861
|
+
"RoleArn",
|
|
1862
|
+
"Expiration"
|
|
1863
|
+
],
|
|
1864
|
+
"writeOnly": [
|
|
1865
|
+
"Expiration"
|
|
1866
|
+
],
|
|
1867
|
+
"primaryIdentifier": [
|
|
1868
|
+
"AcmeExternalAccountBindingArn"
|
|
1869
|
+
],
|
|
1870
|
+
"tagging": {
|
|
1871
|
+
"taggable": true,
|
|
1872
|
+
"tagOnCreate": true,
|
|
1873
|
+
"tagUpdatable": true
|
|
1874
|
+
}
|
|
1875
|
+
},
|
|
1876
|
+
"AcmeExternalAccountBinding_Expiration": {
|
|
1877
|
+
"resourceType": "AWS::CertificateManager::AcmeExternalAccountBinding.Expiration",
|
|
1878
|
+
"kind": "property",
|
|
1879
|
+
"lexicon": "aws"
|
|
1880
|
+
},
|
|
1772
1881
|
"ActionConfiguration": {
|
|
1773
1882
|
"resourceType": "AWS::QBusiness::DataAccessor.ActionConfiguration",
|
|
1774
1883
|
"kind": "property",
|
|
@@ -2129,6 +2238,16 @@
|
|
|
2129
2238
|
"kind": "property",
|
|
2130
2239
|
"lexicon": "aws"
|
|
2131
2240
|
},
|
|
2241
|
+
"AgentAccessConfig": {
|
|
2242
|
+
"resourceType": "AWS::AppStream::Stack.AgentAccessConfig",
|
|
2243
|
+
"kind": "property",
|
|
2244
|
+
"lexicon": "aws"
|
|
2245
|
+
},
|
|
2246
|
+
"AgentAccessSetting": {
|
|
2247
|
+
"resourceType": "AWS::AppStream::Stack.AgentAccessSetting",
|
|
2248
|
+
"kind": "property",
|
|
2249
|
+
"lexicon": "aws"
|
|
2250
|
+
},
|
|
2132
2251
|
"AgentActionGroup": {
|
|
2133
2252
|
"resourceType": "AWS::Bedrock::Agent.AgentActionGroup",
|
|
2134
2253
|
"kind": "property",
|
|
@@ -3679,6 +3798,7 @@
|
|
|
3679
3798
|
"maxLength": 1024
|
|
3680
3799
|
},
|
|
3681
3800
|
"Arn": {
|
|
3801
|
+
"pattern": "^arn:[^:]+:access-analyzer(-beta|-gamma)?:[^:]*:[^:]*:analyzer/.+$",
|
|
3682
3802
|
"minLength": 1,
|
|
3683
3803
|
"maxLength": 1600
|
|
3684
3804
|
},
|
|
@@ -5965,6 +6085,16 @@
|
|
|
5965
6085
|
"kind": "property",
|
|
5966
6086
|
"lexicon": "aws"
|
|
5967
6087
|
},
|
|
6088
|
+
"AppStreamStack_AgentAccessConfig": {
|
|
6089
|
+
"resourceType": "AWS::AppStream::Stack.AgentAccessConfig",
|
|
6090
|
+
"kind": "property",
|
|
6091
|
+
"lexicon": "aws"
|
|
6092
|
+
},
|
|
6093
|
+
"AppStreamStack_AgentAccessSetting": {
|
|
6094
|
+
"resourceType": "AWS::AppStream::Stack.AgentAccessSetting",
|
|
6095
|
+
"kind": "property",
|
|
6096
|
+
"lexicon": "aws"
|
|
6097
|
+
},
|
|
5968
6098
|
"AppStreamStack_ApplicationSettings": {
|
|
5969
6099
|
"resourceType": "AWS::AppStream::Stack.ApplicationSettings",
|
|
5970
6100
|
"kind": "property",
|
|
@@ -6282,6 +6412,62 @@
|
|
|
6282
6412
|
"kind": "property",
|
|
6283
6413
|
"lexicon": "aws"
|
|
6284
6414
|
},
|
|
6415
|
+
"AppTestTestCase": {
|
|
6416
|
+
"resourceType": "AWS::AppTest::TestCase",
|
|
6417
|
+
"kind": "resource",
|
|
6418
|
+
"lexicon": "aws",
|
|
6419
|
+
"attrs": {
|
|
6420
|
+
"CreationTime": "CreationTime",
|
|
6421
|
+
"LastUpdateTime": "LastUpdateTime",
|
|
6422
|
+
"LatestVersion": "LatestVersion",
|
|
6423
|
+
"Status": "Status",
|
|
6424
|
+
"TestCaseArn": "TestCaseArn",
|
|
6425
|
+
"TestCaseId": "TestCaseId",
|
|
6426
|
+
"TestCaseVersion": "TestCaseVersion"
|
|
6427
|
+
},
|
|
6428
|
+
"propertyConstraints": {
|
|
6429
|
+
"CreationTime": {
|
|
6430
|
+
"format": "date-time"
|
|
6431
|
+
},
|
|
6432
|
+
"Description": {
|
|
6433
|
+
"minLength": 0,
|
|
6434
|
+
"maxLength": 1000
|
|
6435
|
+
},
|
|
6436
|
+
"LastUpdateTime": {
|
|
6437
|
+
"format": "date-time"
|
|
6438
|
+
},
|
|
6439
|
+
"Name": {
|
|
6440
|
+
"pattern": "^[A-Za-z][A-Za-z0-9_\\-]{1,59}$"
|
|
6441
|
+
},
|
|
6442
|
+
"TestCaseArn": {
|
|
6443
|
+
"pattern": "^arn:(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:([a-z]{2}-((iso[a-z]{0,1}-)|(gov-)){0,1}[a-z]+-[0-9]):[0-9]{12}:[A-Za-z0-9/][A-Za-z0-9:_/+=,@.-]{0,1023}$"
|
|
6444
|
+
},
|
|
6445
|
+
"TestCaseId": {
|
|
6446
|
+
"pattern": "^[A-Za-z0-9:/\\-]{1,100}$"
|
|
6447
|
+
}
|
|
6448
|
+
},
|
|
6449
|
+
"createOnly": [
|
|
6450
|
+
"Name"
|
|
6451
|
+
],
|
|
6452
|
+
"primaryIdentifier": [
|
|
6453
|
+
"TestCaseId"
|
|
6454
|
+
],
|
|
6455
|
+
"tagging": {
|
|
6456
|
+
"taggable": true,
|
|
6457
|
+
"tagOnCreate": true,
|
|
6458
|
+
"tagUpdatable": true
|
|
6459
|
+
}
|
|
6460
|
+
},
|
|
6461
|
+
"AppTestTestCase_Step": {
|
|
6462
|
+
"resourceType": "AWS::AppTest::TestCase.Step",
|
|
6463
|
+
"kind": "property",
|
|
6464
|
+
"lexicon": "aws"
|
|
6465
|
+
},
|
|
6466
|
+
"AppTestTestCase_TestCaseLatestVersion": {
|
|
6467
|
+
"resourceType": "AWS::AppTest::TestCase.TestCaseLatestVersion",
|
|
6468
|
+
"kind": "property",
|
|
6469
|
+
"lexicon": "aws"
|
|
6470
|
+
},
|
|
6285
6471
|
"AppleApp": {
|
|
6286
6472
|
"resourceType": "AWS::Location::APIKey.AppleApp",
|
|
6287
6473
|
"kind": "property",
|
|
@@ -7053,138 +7239,6 @@
|
|
|
7053
7239
|
"kind": "property",
|
|
7054
7240
|
"lexicon": "aws"
|
|
7055
7241
|
},
|
|
7056
|
-
"AssetBundleExportJob": {
|
|
7057
|
-
"resourceType": "AWS::QuickSight::AssetBundleExportJob",
|
|
7058
|
-
"kind": "resource",
|
|
7059
|
-
"lexicon": "aws",
|
|
7060
|
-
"attrs": {
|
|
7061
|
-
"Arn": "Arn",
|
|
7062
|
-
"JobStatus": "JobStatus",
|
|
7063
|
-
"CreatedTime": "CreatedTime"
|
|
7064
|
-
},
|
|
7065
|
-
"propertyConstraints": {
|
|
7066
|
-
"AssetBundleExportJobId": {
|
|
7067
|
-
"pattern": "^[\\w\\-]+$",
|
|
7068
|
-
"minLength": 1,
|
|
7069
|
-
"maxLength": 512
|
|
7070
|
-
},
|
|
7071
|
-
"AwsAccountId": {
|
|
7072
|
-
"pattern": "^[0-9]{12}$",
|
|
7073
|
-
"minLength": 12,
|
|
7074
|
-
"maxLength": 12
|
|
7075
|
-
},
|
|
7076
|
-
"ExportFormat": {
|
|
7077
|
-
"enum": [
|
|
7078
|
-
"CLOUDFORMATION_JSON",
|
|
7079
|
-
"QUICKSIGHT_JSON"
|
|
7080
|
-
]
|
|
7081
|
-
},
|
|
7082
|
-
"IncludeFolderMembers": {
|
|
7083
|
-
"enum": [
|
|
7084
|
-
"RECURSE",
|
|
7085
|
-
"ONE_LEVEL",
|
|
7086
|
-
"NONE"
|
|
7087
|
-
]
|
|
7088
|
-
},
|
|
7089
|
-
"JobStatus": {
|
|
7090
|
-
"enum": [
|
|
7091
|
-
"QUEUED_FOR_IMMEDIATE_EXECUTION",
|
|
7092
|
-
"IN_PROGRESS",
|
|
7093
|
-
"SUCCESSFUL",
|
|
7094
|
-
"FAILED"
|
|
7095
|
-
]
|
|
7096
|
-
},
|
|
7097
|
-
"CreatedTime": {
|
|
7098
|
-
"format": "date-time"
|
|
7099
|
-
}
|
|
7100
|
-
},
|
|
7101
|
-
"createOnly": [
|
|
7102
|
-
"AssetBundleExportJobId",
|
|
7103
|
-
"AwsAccountId",
|
|
7104
|
-
"ExportFormat",
|
|
7105
|
-
"IncludeAllDependencies",
|
|
7106
|
-
"IncludeFolderMembers",
|
|
7107
|
-
"IncludeFolderMemberships",
|
|
7108
|
-
"IncludePermissions",
|
|
7109
|
-
"IncludeTags",
|
|
7110
|
-
"ResourceArns"
|
|
7111
|
-
],
|
|
7112
|
-
"primaryIdentifier": [
|
|
7113
|
-
"Arn"
|
|
7114
|
-
]
|
|
7115
|
-
},
|
|
7116
|
-
"AssetBundleImportJob": {
|
|
7117
|
-
"resourceType": "AWS::QuickSight::AssetBundleImportJob",
|
|
7118
|
-
"kind": "resource",
|
|
7119
|
-
"lexicon": "aws",
|
|
7120
|
-
"attrs": {
|
|
7121
|
-
"Arn": "Arn",
|
|
7122
|
-
"JobStatus": "JobStatus",
|
|
7123
|
-
"CreatedTime": "CreatedTime"
|
|
7124
|
-
},
|
|
7125
|
-
"propertyConstraints": {
|
|
7126
|
-
"AssetBundleImportJobId": {
|
|
7127
|
-
"pattern": "^[\\w\\-]+$",
|
|
7128
|
-
"minLength": 1,
|
|
7129
|
-
"maxLength": 512
|
|
7130
|
-
},
|
|
7131
|
-
"AwsAccountId": {
|
|
7132
|
-
"pattern": "^[0-9]{12}$",
|
|
7133
|
-
"minLength": 12,
|
|
7134
|
-
"maxLength": 12
|
|
7135
|
-
},
|
|
7136
|
-
"FailureAction": {
|
|
7137
|
-
"enum": [
|
|
7138
|
-
"DO_NOTHING",
|
|
7139
|
-
"ROLLBACK"
|
|
7140
|
-
]
|
|
7141
|
-
},
|
|
7142
|
-
"JobStatus": {
|
|
7143
|
-
"enum": [
|
|
7144
|
-
"QUEUED_FOR_IMMEDIATE_EXECUTION",
|
|
7145
|
-
"IN_PROGRESS",
|
|
7146
|
-
"SUCCESSFUL",
|
|
7147
|
-
"FAILED",
|
|
7148
|
-
"FAILED_ROLLBACK_IN_PROGRESS",
|
|
7149
|
-
"FAILED_ROLLBACK_COMPLETED",
|
|
7150
|
-
"FAILED_ROLLBACK_ERROR"
|
|
7151
|
-
]
|
|
7152
|
-
},
|
|
7153
|
-
"CreatedTime": {
|
|
7154
|
-
"format": "date-time"
|
|
7155
|
-
}
|
|
7156
|
-
},
|
|
7157
|
-
"createOnly": [
|
|
7158
|
-
"AssetBundleImportJobId",
|
|
7159
|
-
"AssetBundleImportSource",
|
|
7160
|
-
"AwsAccountId",
|
|
7161
|
-
"FailureAction",
|
|
7162
|
-
"OverrideValidationStrategy"
|
|
7163
|
-
],
|
|
7164
|
-
"primaryIdentifier": [
|
|
7165
|
-
"Arn"
|
|
7166
|
-
]
|
|
7167
|
-
},
|
|
7168
|
-
"AssetBundleImportJobOverrideValidationStrategy": {
|
|
7169
|
-
"resourceType": "AWS::QuickSight::AssetBundleImportJob.AssetBundleImportJobOverrideValidationStrategy",
|
|
7170
|
-
"kind": "property",
|
|
7171
|
-
"lexicon": "aws"
|
|
7172
|
-
},
|
|
7173
|
-
"AssetBundleImportJob_AssetBundleImportJobOverrideValidationStrategy": {
|
|
7174
|
-
"resourceType": "AWS::QuickSight::AssetBundleImportJob.AssetBundleImportJobOverrideValidationStrategy",
|
|
7175
|
-
"kind": "property",
|
|
7176
|
-
"lexicon": "aws"
|
|
7177
|
-
},
|
|
7178
|
-
"AssetBundleImportJob_AssetBundleImportSourceDescription": {
|
|
7179
|
-
"resourceType": "AWS::QuickSight::AssetBundleImportJob.AssetBundleImportSourceDescription",
|
|
7180
|
-
"kind": "property",
|
|
7181
|
-
"lexicon": "aws"
|
|
7182
|
-
},
|
|
7183
|
-
"AssetBundleImportSourceDescription": {
|
|
7184
|
-
"resourceType": "AWS::QuickSight::AssetBundleImportJob.AssetBundleImportSourceDescription",
|
|
7185
|
-
"kind": "property",
|
|
7186
|
-
"lexicon": "aws"
|
|
7187
|
-
},
|
|
7188
7242
|
"AssetHierarchy": {
|
|
7189
7243
|
"resourceType": "AWS::IoTSiteWise::Asset.AssetHierarchy",
|
|
7190
7244
|
"kind": "property",
|
|
@@ -8613,6 +8667,11 @@
|
|
|
8613
8667
|
"kind": "property",
|
|
8614
8668
|
"lexicon": "aws"
|
|
8615
8669
|
},
|
|
8670
|
+
"AzureConnectorConfiguration": {
|
|
8671
|
+
"resourceType": "AWS::Config::Connector.AzureConnectorConfiguration",
|
|
8672
|
+
"kind": "property",
|
|
8673
|
+
"lexicon": "aws"
|
|
8674
|
+
},
|
|
8616
8675
|
"B2BICapability": {
|
|
8617
8676
|
"resourceType": "AWS::B2BI::Capability",
|
|
8618
8677
|
"kind": "resource",
|
|
@@ -11807,59 +11866,61 @@
|
|
|
11807
11866
|
"kind": "property",
|
|
11808
11867
|
"lexicon": "aws"
|
|
11809
11868
|
},
|
|
11810
|
-
"
|
|
11811
|
-
"resourceType": "AWS::
|
|
11869
|
+
"Build": {
|
|
11870
|
+
"resourceType": "AWS::GameLift::Build",
|
|
11812
11871
|
"kind": "resource",
|
|
11813
11872
|
"lexicon": "aws",
|
|
11814
11873
|
"attrs": {
|
|
11815
|
-
"
|
|
11816
|
-
"
|
|
11817
|
-
"BuildBatchNumber": "BuildBatchNumber",
|
|
11818
|
-
"BuildBatchStatus": "BuildBatchStatus",
|
|
11819
|
-
"Complete": "Complete",
|
|
11820
|
-
"CurrentPhase": "CurrentPhase",
|
|
11821
|
-
"StartTime": "StartTime",
|
|
11822
|
-
"EncryptionKey": "EncryptionKey",
|
|
11823
|
-
"BuildTimeoutInMinutes": "BuildTimeoutInMinutes",
|
|
11824
|
-
"QueuedTimeoutInMinutes": "QueuedTimeoutInMinutes",
|
|
11825
|
-
"Initiator": "Initiator"
|
|
11874
|
+
"BuildId": "BuildId",
|
|
11875
|
+
"BuildArn": "BuildArn"
|
|
11826
11876
|
},
|
|
11827
11877
|
"propertyConstraints": {
|
|
11828
|
-
"
|
|
11829
|
-
"minLength": 1
|
|
11830
|
-
},
|
|
11831
|
-
"Id": {
|
|
11832
|
-
"minLength": 1
|
|
11833
|
-
},
|
|
11834
|
-
"ProjectName": {
|
|
11835
|
-
"minLength": 1
|
|
11836
|
-
},
|
|
11837
|
-
"BuildBatchStatus": {
|
|
11878
|
+
"OperatingSystem": {
|
|
11838
11879
|
"enum": [
|
|
11839
|
-
"
|
|
11840
|
-
"
|
|
11841
|
-
"
|
|
11842
|
-
"
|
|
11843
|
-
"
|
|
11844
|
-
"
|
|
11880
|
+
"AMAZON_LINUX",
|
|
11881
|
+
"AMAZON_LINUX_2",
|
|
11882
|
+
"AMAZON_LINUX_2023",
|
|
11883
|
+
"WINDOWS_2012",
|
|
11884
|
+
"WINDOWS_2016",
|
|
11885
|
+
"WINDOWS_2022"
|
|
11845
11886
|
]
|
|
11846
11887
|
},
|
|
11847
|
-
"
|
|
11848
|
-
"
|
|
11888
|
+
"BuildArn": {
|
|
11889
|
+
"pattern": "^arn:.*:build\\/build-\\S+"
|
|
11849
11890
|
}
|
|
11850
11891
|
},
|
|
11851
11892
|
"createOnly": [
|
|
11852
|
-
"
|
|
11893
|
+
"StorageLocation",
|
|
11894
|
+
"OperatingSystem",
|
|
11895
|
+
"ServerSdkVersion"
|
|
11896
|
+
],
|
|
11897
|
+
"writeOnly": [
|
|
11898
|
+
"StorageLocation"
|
|
11853
11899
|
],
|
|
11854
11900
|
"primaryIdentifier": [
|
|
11855
|
-
"
|
|
11856
|
-
]
|
|
11901
|
+
"BuildId"
|
|
11902
|
+
],
|
|
11903
|
+
"tagging": {
|
|
11904
|
+
"taggable": true,
|
|
11905
|
+
"tagOnCreate": true,
|
|
11906
|
+
"tagUpdatable": true
|
|
11907
|
+
}
|
|
11857
11908
|
},
|
|
11858
11909
|
"BuildStatusConfig": {
|
|
11859
11910
|
"resourceType": "AWS::CodeBuild::Project.BuildStatusConfig",
|
|
11860
11911
|
"kind": "property",
|
|
11861
11912
|
"lexicon": "aws"
|
|
11862
11913
|
},
|
|
11914
|
+
"Build_StorageLocation": {
|
|
11915
|
+
"resourceType": "AWS::GameLift::Build.StorageLocation",
|
|
11916
|
+
"kind": "property",
|
|
11917
|
+
"lexicon": "aws"
|
|
11918
|
+
},
|
|
11919
|
+
"Build_Tag": {
|
|
11920
|
+
"resourceType": "AWS::GameLift::Build.Tag",
|
|
11921
|
+
"kind": "property",
|
|
11922
|
+
"lexicon": "aws"
|
|
11923
|
+
},
|
|
11863
11924
|
"Bumper": {
|
|
11864
11925
|
"resourceType": "AWS::MediaTailor::PlaybackConfiguration.Bumper",
|
|
11865
11926
|
"kind": "property",
|
|
@@ -14494,24 +14555,36 @@
|
|
|
14494
14555
|
"kind": "resource",
|
|
14495
14556
|
"lexicon": "aws",
|
|
14496
14557
|
"attrs": {
|
|
14497
|
-
"ProvisioningArtifactIds": "ProvisioningArtifactIds",
|
|
14498
14558
|
"Id": "Id",
|
|
14559
|
+
"ProvisioningArtifactIds": "ProvisioningArtifactIds",
|
|
14499
14560
|
"ProvisioningArtifactNames": "ProvisioningArtifactNames",
|
|
14500
14561
|
"ProductName": "ProductName"
|
|
14501
14562
|
},
|
|
14563
|
+
"propertyConstraints": {
|
|
14564
|
+
"ProductType": {
|
|
14565
|
+
"enum": [
|
|
14566
|
+
"CLOUD_FORMATION_TEMPLATE",
|
|
14567
|
+
"MARKETPLACE_AMI",
|
|
14568
|
+
"MARKETPLACE_CAR",
|
|
14569
|
+
"TERRAFORM_OPEN_SOURCE",
|
|
14570
|
+
"TERRAFORM_CLOUD",
|
|
14571
|
+
"EXTERNAL"
|
|
14572
|
+
]
|
|
14573
|
+
}
|
|
14574
|
+
},
|
|
14575
|
+
"writeOnly": [
|
|
14576
|
+
"AcceptLanguage",
|
|
14577
|
+
"ReplaceProvisioningArtifacts",
|
|
14578
|
+
"ProvisioningArtifactParameters/*/DisableTemplateValidation"
|
|
14579
|
+
],
|
|
14502
14580
|
"primaryIdentifier": [
|
|
14503
14581
|
"Id"
|
|
14504
|
-
]
|
|
14505
|
-
|
|
14506
|
-
|
|
14507
|
-
|
|
14508
|
-
|
|
14509
|
-
|
|
14510
|
-
},
|
|
14511
|
-
"CloudFormationProduct_ConnectionParameters": {
|
|
14512
|
-
"resourceType": "AWS::ServiceCatalog::CloudFormationProduct.ConnectionParameters",
|
|
14513
|
-
"kind": "property",
|
|
14514
|
-
"lexicon": "aws"
|
|
14582
|
+
],
|
|
14583
|
+
"tagging": {
|
|
14584
|
+
"taggable": true,
|
|
14585
|
+
"tagOnCreate": true,
|
|
14586
|
+
"tagUpdatable": true
|
|
14587
|
+
}
|
|
14515
14588
|
},
|
|
14516
14589
|
"CloudFormationProduct_ProvisioningArtifactProperties": {
|
|
14517
14590
|
"resourceType": "AWS::ServiceCatalog::CloudFormationProduct.ProvisioningArtifactProperties",
|
|
@@ -15399,59 +15472,6 @@
|
|
|
15399
15472
|
"kind": "property",
|
|
15400
15473
|
"lexicon": "aws"
|
|
15401
15474
|
},
|
|
15402
|
-
"CodeBuildBuild": {
|
|
15403
|
-
"resourceType": "AWS::CodeBuild::Build",
|
|
15404
|
-
"kind": "resource",
|
|
15405
|
-
"lexicon": "aws",
|
|
15406
|
-
"attrs": {
|
|
15407
|
-
"Arn": "Arn",
|
|
15408
|
-
"Id": "Id",
|
|
15409
|
-
"BuildNumber": "BuildNumber",
|
|
15410
|
-
"BuildStatus": "BuildStatus",
|
|
15411
|
-
"BuildComplete": "BuildComplete",
|
|
15412
|
-
"CurrentPhase": "CurrentPhase",
|
|
15413
|
-
"StartTime": "StartTime",
|
|
15414
|
-
"EndTime": "EndTime",
|
|
15415
|
-
"ServiceRole": "ServiceRole",
|
|
15416
|
-
"EncryptionKey": "EncryptionKey",
|
|
15417
|
-
"TimeoutInMinutes": "TimeoutInMinutes",
|
|
15418
|
-
"QueuedTimeoutInMinutes": "QueuedTimeoutInMinutes",
|
|
15419
|
-
"Initiator": "Initiator"
|
|
15420
|
-
},
|
|
15421
|
-
"propertyConstraints": {
|
|
15422
|
-
"Arn": {
|
|
15423
|
-
"minLength": 1
|
|
15424
|
-
},
|
|
15425
|
-
"Id": {
|
|
15426
|
-
"minLength": 1
|
|
15427
|
-
},
|
|
15428
|
-
"ProjectName": {
|
|
15429
|
-
"minLength": 1
|
|
15430
|
-
},
|
|
15431
|
-
"BuildStatus": {
|
|
15432
|
-
"enum": [
|
|
15433
|
-
"SUCCEEDED",
|
|
15434
|
-
"FAILED",
|
|
15435
|
-
"FAULT",
|
|
15436
|
-
"TIMED_OUT",
|
|
15437
|
-
"IN_PROGRESS",
|
|
15438
|
-
"STOPPED"
|
|
15439
|
-
]
|
|
15440
|
-
},
|
|
15441
|
-
"ServiceRole": {
|
|
15442
|
-
"minLength": 1
|
|
15443
|
-
},
|
|
15444
|
-
"EncryptionKey": {
|
|
15445
|
-
"minLength": 1
|
|
15446
|
-
}
|
|
15447
|
-
},
|
|
15448
|
-
"createOnly": [
|
|
15449
|
-
"ProjectName"
|
|
15450
|
-
],
|
|
15451
|
-
"primaryIdentifier": [
|
|
15452
|
-
"Arn"
|
|
15453
|
-
]
|
|
15454
|
-
},
|
|
15455
15475
|
"CodeBuildFleet": {
|
|
15456
15476
|
"resourceType": "AWS::CodeBuild::Fleet",
|
|
15457
15477
|
"kind": "resource",
|
|
@@ -15894,7 +15914,8 @@
|
|
|
15894
15914
|
"kind": "resource",
|
|
15895
15915
|
"lexicon": "aws",
|
|
15896
15916
|
"attrs": {
|
|
15897
|
-
"Version": "Version"
|
|
15917
|
+
"Version": "Version",
|
|
15918
|
+
"Arn": "Arn"
|
|
15898
15919
|
},
|
|
15899
15920
|
"propertyConstraints": {
|
|
15900
15921
|
"ExecutionMode": {
|
|
@@ -15909,6 +15930,9 @@
|
|
|
15909
15930
|
"pattern": "arn:aws(-[\\w]+)*:iam::[0-9]{12}:role/.*",
|
|
15910
15931
|
"format": "AWS::IAM::Role.Arn"
|
|
15911
15932
|
},
|
|
15933
|
+
"Arn": {
|
|
15934
|
+
"pattern": "arn:aws(-[\\w]+)*:codepipeline:[a-z0-9-]+:[0-9]{12}:.+"
|
|
15935
|
+
},
|
|
15912
15936
|
"PipelineType": {
|
|
15913
15937
|
"enum": [
|
|
15914
15938
|
"V1",
|
|
@@ -16288,11 +16312,6 @@
|
|
|
16288
16312
|
"kind": "property",
|
|
16289
16313
|
"lexicon": "aws"
|
|
16290
16314
|
},
|
|
16291
|
-
"CodeStarParameters": {
|
|
16292
|
-
"resourceType": "AWS::ServiceCatalog::CloudFormationProduct.CodeStarParameters",
|
|
16293
|
-
"kind": "property",
|
|
16294
|
-
"lexicon": "aws"
|
|
16295
|
-
},
|
|
16296
16315
|
"CognitoIdentityProvider": {
|
|
16297
16316
|
"resourceType": "AWS::Cognito::IdentityPool.CognitoIdentityProvider",
|
|
16298
16317
|
"kind": "property",
|
|
@@ -16631,40 +16650,6 @@
|
|
|
16631
16650
|
"kind": "property",
|
|
16632
16651
|
"lexicon": "aws"
|
|
16633
16652
|
},
|
|
16634
|
-
"CommonControl": {
|
|
16635
|
-
"resourceType": "AWS::ControlCatalog::CommonControl",
|
|
16636
|
-
"kind": "resource",
|
|
16637
|
-
"lexicon": "aws",
|
|
16638
|
-
"attrs": {
|
|
16639
|
-
"Arn": "Arn",
|
|
16640
|
-
"CommonControlId": "CommonControlId",
|
|
16641
|
-
"Name": "Name",
|
|
16642
|
-
"Description": "Description",
|
|
16643
|
-
"Domain": "Domain",
|
|
16644
|
-
"Objective": "Objective",
|
|
16645
|
-
"CreateTime": "CreateTime",
|
|
16646
|
-
"LastUpdateTime": "LastUpdateTime"
|
|
16647
|
-
},
|
|
16648
|
-
"propertyConstraints": {
|
|
16649
|
-
"Arn": {
|
|
16650
|
-
"pattern": "^arn:(aws(?:[-a-z]*)?):controlcatalog:::common-control/[0-9a-z]+$",
|
|
16651
|
-
"minLength": 41,
|
|
16652
|
-
"maxLength": 2048
|
|
16653
|
-
},
|
|
16654
|
-
"CommonControlId": {
|
|
16655
|
-
"pattern": "^[0-9a-z]+$"
|
|
16656
|
-
},
|
|
16657
|
-
"CreateTime": {
|
|
16658
|
-
"format": "date-time"
|
|
16659
|
-
},
|
|
16660
|
-
"LastUpdateTime": {
|
|
16661
|
-
"format": "date-time"
|
|
16662
|
-
}
|
|
16663
|
-
},
|
|
16664
|
-
"primaryIdentifier": [
|
|
16665
|
-
"Arn"
|
|
16666
|
-
]
|
|
16667
|
-
},
|
|
16668
16653
|
"CommunicationLimits": {
|
|
16669
16654
|
"resourceType": "AWS::ConnectCampaignsV2::Campaign.CommunicationLimits",
|
|
16670
16655
|
"kind": "property",
|
|
@@ -17264,6 +17249,49 @@
|
|
|
17264
17249
|
"tagUpdatable": true
|
|
17265
17250
|
}
|
|
17266
17251
|
},
|
|
17252
|
+
"ConfigConnector": {
|
|
17253
|
+
"resourceType": "AWS::Config::Connector",
|
|
17254
|
+
"kind": "resource",
|
|
17255
|
+
"lexicon": "aws",
|
|
17256
|
+
"attrs": {
|
|
17257
|
+
"Arn": "Arn",
|
|
17258
|
+
"Name": "Name",
|
|
17259
|
+
"CreatedTime": "CreatedTime"
|
|
17260
|
+
},
|
|
17261
|
+
"propertyConstraints": {
|
|
17262
|
+
"Name": {
|
|
17263
|
+
"minLength": 1,
|
|
17264
|
+
"maxLength": 256
|
|
17265
|
+
}
|
|
17266
|
+
},
|
|
17267
|
+
"createOnly": [
|
|
17268
|
+
"ConnectorConfiguration"
|
|
17269
|
+
],
|
|
17270
|
+
"primaryIdentifier": [
|
|
17271
|
+
"Arn"
|
|
17272
|
+
],
|
|
17273
|
+
"replacementStrategy": "delete_then_create",
|
|
17274
|
+
"tagging": {
|
|
17275
|
+
"taggable": true,
|
|
17276
|
+
"tagOnCreate": true,
|
|
17277
|
+
"tagUpdatable": true
|
|
17278
|
+
}
|
|
17279
|
+
},
|
|
17280
|
+
"ConfigConnector_AzureConnectorConfiguration": {
|
|
17281
|
+
"resourceType": "AWS::Config::Connector.AzureConnectorConfiguration",
|
|
17282
|
+
"kind": "property",
|
|
17283
|
+
"lexicon": "aws"
|
|
17284
|
+
},
|
|
17285
|
+
"ConfigConnector_ConnectorConfiguration": {
|
|
17286
|
+
"resourceType": "AWS::Config::Connector.ConnectorConfiguration",
|
|
17287
|
+
"kind": "property",
|
|
17288
|
+
"lexicon": "aws"
|
|
17289
|
+
},
|
|
17290
|
+
"ConfigConnector_Tag": {
|
|
17291
|
+
"resourceType": "AWS::Config::Connector.Tag",
|
|
17292
|
+
"kind": "property",
|
|
17293
|
+
"lexicon": "aws"
|
|
17294
|
+
},
|
|
17267
17295
|
"ConfigData": {
|
|
17268
17296
|
"resourceType": "AWS::GroundStation::Config.ConfigData",
|
|
17269
17297
|
"kind": "property",
|
|
@@ -18922,6 +18950,72 @@
|
|
|
18922
18950
|
"kind": "property",
|
|
18923
18951
|
"lexicon": "aws"
|
|
18924
18952
|
},
|
|
18953
|
+
"ConnectTestCase": {
|
|
18954
|
+
"resourceType": "AWS::Connect::TestCase",
|
|
18955
|
+
"kind": "resource",
|
|
18956
|
+
"lexicon": "aws",
|
|
18957
|
+
"attrs": {
|
|
18958
|
+
"TestCaseArn": "TestCaseArn",
|
|
18959
|
+
"LastModifiedRegion": "LastModifiedRegion",
|
|
18960
|
+
"LastModifiedTime": "LastModifiedTime"
|
|
18961
|
+
},
|
|
18962
|
+
"propertyConstraints": {
|
|
18963
|
+
"InstanceArn": {
|
|
18964
|
+
"pattern": "^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$",
|
|
18965
|
+
"minLength": 1,
|
|
18966
|
+
"maxLength": 256
|
|
18967
|
+
},
|
|
18968
|
+
"TestCaseArn": {
|
|
18969
|
+
"pattern": "^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*/test-case/[-a-zA-Z0-9]*$",
|
|
18970
|
+
"minLength": 1,
|
|
18971
|
+
"maxLength": 500
|
|
18972
|
+
},
|
|
18973
|
+
"Name": {
|
|
18974
|
+
"pattern": ".*\\S.*",
|
|
18975
|
+
"minLength": 1,
|
|
18976
|
+
"maxLength": 127
|
|
18977
|
+
},
|
|
18978
|
+
"Content": {
|
|
18979
|
+
"minLength": 1,
|
|
18980
|
+
"maxLength": 256000
|
|
18981
|
+
},
|
|
18982
|
+
"Description": {
|
|
18983
|
+
"pattern": ".*\\S.*",
|
|
18984
|
+
"maxLength": 500
|
|
18985
|
+
},
|
|
18986
|
+
"Status": {
|
|
18987
|
+
"enum": [
|
|
18988
|
+
"SAVED",
|
|
18989
|
+
"PUBLISHED"
|
|
18990
|
+
]
|
|
18991
|
+
},
|
|
18992
|
+
"InitializationData": {
|
|
18993
|
+
"minLength": 1,
|
|
18994
|
+
"maxLength": 256000
|
|
18995
|
+
},
|
|
18996
|
+
"LastModifiedRegion": {
|
|
18997
|
+
"pattern": "[a-z]{2}(-[a-z]+){1,2}(-[0-9])?"
|
|
18998
|
+
}
|
|
18999
|
+
},
|
|
19000
|
+
"primaryIdentifier": [
|
|
19001
|
+
"TestCaseArn"
|
|
19002
|
+
],
|
|
19003
|
+
"tagging": {
|
|
19004
|
+
"taggable": true,
|
|
19005
|
+
"tagOnCreate": true,
|
|
19006
|
+
"tagUpdatable": true
|
|
19007
|
+
}
|
|
19008
|
+
},
|
|
19009
|
+
"ConnectTestCase_EntryPoint": {
|
|
19010
|
+
"resourceType": "AWS::Connect::TestCase.EntryPoint",
|
|
19011
|
+
"kind": "property",
|
|
19012
|
+
"lexicon": "aws"
|
|
19013
|
+
},
|
|
19014
|
+
"ConnectTestCase_Tag": {
|
|
19015
|
+
"resourceType": "AWS::Connect::TestCase.Tag",
|
|
19016
|
+
"kind": "property",
|
|
19017
|
+
"lexicon": "aws"
|
|
19018
|
+
},
|
|
18925
19019
|
"ConnectUser": {
|
|
18926
19020
|
"resourceType": "AWS::Connect::User",
|
|
18927
19021
|
"kind": "resource",
|
|
@@ -19039,12 +19133,12 @@
|
|
|
19039
19133
|
"maxLength": 500
|
|
19040
19134
|
},
|
|
19041
19135
|
"Name": {
|
|
19042
|
-
"pattern": "^([\\p{L}\\p{N}_.:\\/=+\\-@]+[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@]*)$",
|
|
19136
|
+
"pattern": "^([\\p{L}\\p{N}_.:\\/=+\\-@()']+[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@()']*)$",
|
|
19043
19137
|
"minLength": 1,
|
|
19044
19138
|
"maxLength": 512
|
|
19045
19139
|
},
|
|
19046
19140
|
"Description": {
|
|
19047
|
-
"pattern": "^([\\p{L}\\p{N}_.:\\/=+\\-@,]+[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@,]*)$",
|
|
19141
|
+
"pattern": "^([\\p{L}\\p{N}_.:\\/=+\\-@,()']+[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@,()']*)$",
|
|
19048
19142
|
"minLength": 0,
|
|
19049
19143
|
"maxLength": 4096
|
|
19050
19144
|
},
|
|
@@ -19359,11 +19453,6 @@
|
|
|
19359
19453
|
"kind": "property",
|
|
19360
19454
|
"lexicon": "aws"
|
|
19361
19455
|
},
|
|
19362
|
-
"ConnectionParameters": {
|
|
19363
|
-
"resourceType": "AWS::ServiceCatalog::CloudFormationProduct.ConnectionParameters",
|
|
19364
|
-
"kind": "property",
|
|
19365
|
-
"lexicon": "aws"
|
|
19366
|
-
},
|
|
19367
19456
|
"ConnectionPasswordEncryption": {
|
|
19368
19457
|
"resourceType": "AWS::Glue::DataCatalogEncryptionSettings.ConnectionPasswordEncryption",
|
|
19369
19458
|
"kind": "property",
|
|
@@ -19399,6 +19488,11 @@
|
|
|
19399
19488
|
"kind": "property",
|
|
19400
19489
|
"lexicon": "aws"
|
|
19401
19490
|
},
|
|
19491
|
+
"ConnectorConfiguration": {
|
|
19492
|
+
"resourceType": "AWS::Config::Connector.ConnectorConfiguration",
|
|
19493
|
+
"kind": "property",
|
|
19494
|
+
"lexicon": "aws"
|
|
19495
|
+
},
|
|
19402
19496
|
"ConnectorDefinition": {
|
|
19403
19497
|
"resourceType": "AWS::Greengrass::ConnectorDefinition",
|
|
19404
19498
|
"kind": "resource",
|
|
@@ -20736,55 +20830,6 @@
|
|
|
20736
20830
|
"kind": "property",
|
|
20737
20831
|
"lexicon": "aws"
|
|
20738
20832
|
},
|
|
20739
|
-
"Control": {
|
|
20740
|
-
"resourceType": "AWS::ControlCatalog::Control",
|
|
20741
|
-
"kind": "resource",
|
|
20742
|
-
"lexicon": "aws",
|
|
20743
|
-
"attrs": {
|
|
20744
|
-
"Arn": "Arn",
|
|
20745
|
-
"ControlId": "ControlId",
|
|
20746
|
-
"Name": "Name",
|
|
20747
|
-
"Description": "Description",
|
|
20748
|
-
"Behavior": "Behavior",
|
|
20749
|
-
"Severity": "Severity",
|
|
20750
|
-
"RegionConfiguration": "RegionConfiguration",
|
|
20751
|
-
"Implementation": "Implementation",
|
|
20752
|
-
"Aliases": "Aliases",
|
|
20753
|
-
"CreateTime": "CreateTime",
|
|
20754
|
-
"GovernedResources": "GovernedResources"
|
|
20755
|
-
},
|
|
20756
|
-
"propertyConstraints": {
|
|
20757
|
-
"Arn": {
|
|
20758
|
-
"pattern": "^arn:(aws(?:[-a-z]*)?):(controlcatalog|controltower):[a-zA-Z0-9-]*::control/[0-9a-zA-Z_\\-]+$",
|
|
20759
|
-
"minLength": 34,
|
|
20760
|
-
"maxLength": 2048
|
|
20761
|
-
},
|
|
20762
|
-
"ControlId": {
|
|
20763
|
-
"pattern": "^[0-9a-zA-Z_\\-]+$"
|
|
20764
|
-
},
|
|
20765
|
-
"Behavior": {
|
|
20766
|
-
"enum": [
|
|
20767
|
-
"PREVENTIVE",
|
|
20768
|
-
"PROACTIVE",
|
|
20769
|
-
"DETECTIVE"
|
|
20770
|
-
]
|
|
20771
|
-
},
|
|
20772
|
-
"Severity": {
|
|
20773
|
-
"enum": [
|
|
20774
|
-
"LOW",
|
|
20775
|
-
"MEDIUM",
|
|
20776
|
-
"HIGH",
|
|
20777
|
-
"CRITICAL"
|
|
20778
|
-
]
|
|
20779
|
-
},
|
|
20780
|
-
"CreateTime": {
|
|
20781
|
-
"format": "date-time"
|
|
20782
|
-
}
|
|
20783
|
-
},
|
|
20784
|
-
"primaryIdentifier": [
|
|
20785
|
-
"Arn"
|
|
20786
|
-
]
|
|
20787
|
-
},
|
|
20788
20833
|
"ControlCondition": {
|
|
20789
20834
|
"resourceType": "AWS::ARCZonalShift::ZonalAutoshiftConfiguration.ControlCondition",
|
|
20790
20835
|
"kind": "property",
|
|
@@ -20852,16 +20897,6 @@
|
|
|
20852
20897
|
"kind": "property",
|
|
20853
20898
|
"lexicon": "aws"
|
|
20854
20899
|
},
|
|
20855
|
-
"Control_ImplementationDetails": {
|
|
20856
|
-
"resourceType": "AWS::ControlCatalog::Control.ImplementationDetails",
|
|
20857
|
-
"kind": "property",
|
|
20858
|
-
"lexicon": "aws"
|
|
20859
|
-
},
|
|
20860
|
-
"Control_RegionConfiguration": {
|
|
20861
|
-
"resourceType": "AWS::ControlCatalog::Control.RegionConfiguration",
|
|
20862
|
-
"kind": "property",
|
|
20863
|
-
"lexicon": "aws"
|
|
20864
|
-
},
|
|
20865
20900
|
"CookieObject": {
|
|
20866
20901
|
"resourceType": "AWS::Lightsail::Distribution.CookieObject",
|
|
20867
20902
|
"kind": "property",
|
|
@@ -21411,7 +21446,8 @@
|
|
|
21411
21446
|
"Version"
|
|
21412
21447
|
],
|
|
21413
21448
|
"writeOnly": [
|
|
21414
|
-
"ConfigurationProperties/*/Type"
|
|
21449
|
+
"ConfigurationProperties/*/Type",
|
|
21450
|
+
"Settings/ThirdPartyConfigurationUrl"
|
|
21415
21451
|
],
|
|
21416
21452
|
"primaryIdentifier": [
|
|
21417
21453
|
"Category",
|
|
@@ -21618,11 +21654,6 @@
|
|
|
21618
21654
|
"kind": "property",
|
|
21619
21655
|
"lexicon": "aws"
|
|
21620
21656
|
},
|
|
21621
|
-
"CustomEmailSender": {
|
|
21622
|
-
"resourceType": "AWS::Cognito::UserPool.CustomEmailSender",
|
|
21623
|
-
"kind": "property",
|
|
21624
|
-
"lexicon": "aws"
|
|
21625
|
-
},
|
|
21626
21657
|
"CustomEntityType": {
|
|
21627
21658
|
"resourceType": "AWS::Glue::CustomEntityType",
|
|
21628
21659
|
"kind": "resource",
|
|
@@ -22003,11 +22034,6 @@
|
|
|
22003
22034
|
"kind": "property",
|
|
22004
22035
|
"lexicon": "aws"
|
|
22005
22036
|
},
|
|
22006
|
-
"CustomSMSSender": {
|
|
22007
|
-
"resourceType": "AWS::Cognito::UserPool.CustomSMSSender",
|
|
22008
|
-
"kind": "property",
|
|
22009
|
-
"lexicon": "aws"
|
|
22010
|
-
},
|
|
22011
22037
|
"CustomTransformationConfiguration": {
|
|
22012
22038
|
"resourceType": "AWS::Bedrock::DataSource.CustomTransformationConfiguration",
|
|
22013
22039
|
"kind": "property",
|
|
@@ -24311,14 +24337,11 @@
|
|
|
24311
24337
|
"resourceType": "AWS::Glue::DataCatalogEncryptionSettings",
|
|
24312
24338
|
"kind": "resource",
|
|
24313
24339
|
"lexicon": "aws",
|
|
24314
|
-
"attrs": {
|
|
24315
|
-
"Id": "Id"
|
|
24316
|
-
},
|
|
24317
24340
|
"createOnly": [
|
|
24318
24341
|
"CatalogId"
|
|
24319
24342
|
],
|
|
24320
24343
|
"primaryIdentifier": [
|
|
24321
|
-
"
|
|
24344
|
+
"CatalogId"
|
|
24322
24345
|
]
|
|
24323
24346
|
},
|
|
24324
24347
|
"DataCatalogEncryptionSettings_ConnectionPasswordEncryption": {
|
|
@@ -24392,59 +24415,6 @@
|
|
|
24392
24415
|
"kind": "property",
|
|
24393
24416
|
"lexicon": "aws"
|
|
24394
24417
|
},
|
|
24395
|
-
"DataDeletionJob": {
|
|
24396
|
-
"resourceType": "AWS::Personalize::DataDeletionJob",
|
|
24397
|
-
"kind": "resource",
|
|
24398
|
-
"lexicon": "aws",
|
|
24399
|
-
"attrs": {
|
|
24400
|
-
"DataDeletionJobArn": "DataDeletionJobArn",
|
|
24401
|
-
"Status": "Status",
|
|
24402
|
-
"CreationDateTime": "CreationDateTime",
|
|
24403
|
-
"LastUpdatedDateTime": "LastUpdatedDateTime"
|
|
24404
|
-
},
|
|
24405
|
-
"propertyConstraints": {
|
|
24406
|
-
"JobName": {
|
|
24407
|
-
"pattern": "^[a-zA-Z0-9][a-zA-Z0-9\\-_]*$",
|
|
24408
|
-
"minLength": 1,
|
|
24409
|
-
"maxLength": 63
|
|
24410
|
-
},
|
|
24411
|
-
"DataDeletionJobArn": {
|
|
24412
|
-
"pattern": "^arn:([a-z\\d-]+):personalize:.*:.*:.+$",
|
|
24413
|
-
"maxLength": 256
|
|
24414
|
-
},
|
|
24415
|
-
"DatasetGroupArn": {
|
|
24416
|
-
"pattern": "^arn:([a-z\\d-]+):personalize:.*:.*:.+$",
|
|
24417
|
-
"maxLength": 256
|
|
24418
|
-
},
|
|
24419
|
-
"RoleArn": {
|
|
24420
|
-
"pattern": "^arn:([a-z\\d-]+):iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+$",
|
|
24421
|
-
"maxLength": 256
|
|
24422
|
-
},
|
|
24423
|
-
"Status": {
|
|
24424
|
-
"maxLength": 256
|
|
24425
|
-
},
|
|
24426
|
-
"CreationDateTime": {
|
|
24427
|
-
"format": "date-time"
|
|
24428
|
-
},
|
|
24429
|
-
"LastUpdatedDateTime": {
|
|
24430
|
-
"format": "date-time"
|
|
24431
|
-
}
|
|
24432
|
-
},
|
|
24433
|
-
"createOnly": [
|
|
24434
|
-
"DataSource",
|
|
24435
|
-
"DatasetGroupArn",
|
|
24436
|
-
"JobName",
|
|
24437
|
-
"RoleArn"
|
|
24438
|
-
],
|
|
24439
|
-
"primaryIdentifier": [
|
|
24440
|
-
"DataDeletionJobArn"
|
|
24441
|
-
]
|
|
24442
|
-
},
|
|
24443
|
-
"DataDeletionJob_DataSource": {
|
|
24444
|
-
"resourceType": "AWS::Personalize::DataDeletionJob.DataSource",
|
|
24445
|
-
"kind": "property",
|
|
24446
|
-
"lexicon": "aws"
|
|
24447
|
-
},
|
|
24448
24418
|
"DataDeliveryObject": {
|
|
24449
24419
|
"resourceType": "AWS::Evidently::Project.DataDeliveryObject",
|
|
24450
24420
|
"kind": "property",
|
|
@@ -30950,6 +30920,11 @@
|
|
|
30950
30920
|
"kind": "property",
|
|
30951
30921
|
"lexicon": "aws"
|
|
30952
30922
|
},
|
|
30923
|
+
"DnsPrevalidationOptions": {
|
|
30924
|
+
"resourceType": "AWS::CertificateManager::AcmeDomainValidation.DnsPrevalidationOptions",
|
|
30925
|
+
"kind": "property",
|
|
30926
|
+
"lexicon": "aws"
|
|
30927
|
+
},
|
|
30953
30928
|
"DnsRecord": {
|
|
30954
30929
|
"resourceType": "AWS::ServiceDiscovery::Service.DnsRecord",
|
|
30955
30930
|
"kind": "property",
|
|
@@ -31794,11 +31769,39 @@
|
|
|
31794
31769
|
"kind": "property",
|
|
31795
31770
|
"lexicon": "aws"
|
|
31796
31771
|
},
|
|
31772
|
+
"DomainObjectType": {
|
|
31773
|
+
"resourceType": "AWS::CustomerProfiles::DomainObjectType",
|
|
31774
|
+
"kind": "resource",
|
|
31775
|
+
"lexicon": "aws",
|
|
31776
|
+
"attrs": {
|
|
31777
|
+
"CreatedAt": "CreatedAt",
|
|
31778
|
+
"LastUpdatedAt": "LastUpdatedAt"
|
|
31779
|
+
},
|
|
31780
|
+
"createOnly": [
|
|
31781
|
+
"DomainName",
|
|
31782
|
+
"ObjectTypeName",
|
|
31783
|
+
"Fields"
|
|
31784
|
+
],
|
|
31785
|
+
"primaryIdentifier": [
|
|
31786
|
+
"DomainName",
|
|
31787
|
+
"ObjectTypeName"
|
|
31788
|
+
],
|
|
31789
|
+
"tagging": {
|
|
31790
|
+
"taggable": true,
|
|
31791
|
+
"tagOnCreate": true,
|
|
31792
|
+
"tagUpdatable": true
|
|
31793
|
+
}
|
|
31794
|
+
},
|
|
31797
31795
|
"DomainResult": {
|
|
31798
31796
|
"resourceType": "AWS::CloudFront::DistributionTenant.DomainResult",
|
|
31799
31797
|
"kind": "property",
|
|
31800
31798
|
"lexicon": "aws"
|
|
31801
31799
|
},
|
|
31800
|
+
"DomainScope": {
|
|
31801
|
+
"resourceType": "AWS::CertificateManager::AcmeDomainValidation.DomainScope",
|
|
31802
|
+
"kind": "property",
|
|
31803
|
+
"lexicon": "aws"
|
|
31804
|
+
},
|
|
31802
31805
|
"DomainSettings": {
|
|
31803
31806
|
"resourceType": "AWS::SageMaker::Domain.DomainSettings",
|
|
31804
31807
|
"kind": "property",
|
|
@@ -31998,52 +32001,6 @@
|
|
|
31998
32001
|
"kind": "property",
|
|
31999
32002
|
"lexicon": "aws"
|
|
32000
32003
|
},
|
|
32001
|
-
"DynamoDBStream": {
|
|
32002
|
-
"resourceType": "AWS::DynamoDB::Stream",
|
|
32003
|
-
"kind": "resource",
|
|
32004
|
-
"lexicon": "aws",
|
|
32005
|
-
"attrs": {
|
|
32006
|
-
"StreamArn": "StreamArn",
|
|
32007
|
-
"StreamLabel": "StreamLabel",
|
|
32008
|
-
"StreamStatus": "StreamStatus",
|
|
32009
|
-
"CreationRequestDateTime": "CreationRequestDateTime",
|
|
32010
|
-
"KeySchema": "KeySchema"
|
|
32011
|
-
},
|
|
32012
|
-
"propertyConstraints": {
|
|
32013
|
-
"StreamArn": {
|
|
32014
|
-
"minLength": 37,
|
|
32015
|
-
"maxLength": 1024
|
|
32016
|
-
},
|
|
32017
|
-
"TableName": {
|
|
32018
|
-
"pattern": "^[a-zA-Z0-9_.-]+$",
|
|
32019
|
-
"minLength": 3,
|
|
32020
|
-
"maxLength": 255
|
|
32021
|
-
},
|
|
32022
|
-
"StreamStatus": {
|
|
32023
|
-
"enum": [
|
|
32024
|
-
"ENABLING",
|
|
32025
|
-
"ENABLED",
|
|
32026
|
-
"DISABLING",
|
|
32027
|
-
"DISABLED"
|
|
32028
|
-
]
|
|
32029
|
-
},
|
|
32030
|
-
"StreamViewType": {
|
|
32031
|
-
"enum": [
|
|
32032
|
-
"KEYS_ONLY",
|
|
32033
|
-
"NEW_IMAGE",
|
|
32034
|
-
"OLD_IMAGE",
|
|
32035
|
-
"NEW_AND_OLD_IMAGES"
|
|
32036
|
-
]
|
|
32037
|
-
}
|
|
32038
|
-
},
|
|
32039
|
-
"createOnly": [
|
|
32040
|
-
"StreamViewType",
|
|
32041
|
-
"TableName"
|
|
32042
|
-
],
|
|
32043
|
-
"primaryIdentifier": [
|
|
32044
|
-
"StreamArn"
|
|
32045
|
-
]
|
|
32046
|
-
},
|
|
32047
32004
|
"DynamoDBTarget": {
|
|
32048
32005
|
"resourceType": "AWS::Glue::Crawler.DynamoDBTarget",
|
|
32049
32006
|
"kind": "property",
|
|
@@ -32871,22 +32828,22 @@
|
|
|
32871
32828
|
"KubernetesNetworkConfig_ServiceIpv6Cidr": "KubernetesNetworkConfig.ServiceIpv6Cidr"
|
|
32872
32829
|
},
|
|
32873
32830
|
"propertyConstraints": {
|
|
32874
|
-
"Force": {
|
|
32875
|
-
"default": false
|
|
32876
|
-
},
|
|
32877
32831
|
"Name": {
|
|
32878
32832
|
"pattern": "^[0-9A-Za-z][A-Za-z0-9\\-_]*",
|
|
32879
32833
|
"minLength": 1,
|
|
32880
32834
|
"maxLength": 100
|
|
32881
32835
|
},
|
|
32836
|
+
"RoleArn": {
|
|
32837
|
+
"format": "AWS::IAM::Role.Arn"
|
|
32838
|
+
},
|
|
32882
32839
|
"Version": {
|
|
32883
32840
|
"pattern": "1\\.\\d\\d"
|
|
32884
32841
|
},
|
|
32842
|
+
"Force": {
|
|
32843
|
+
"default": false
|
|
32844
|
+
},
|
|
32885
32845
|
"ClusterSecurityGroupId": {
|
|
32886
32846
|
"format": "AWS::EC2::SecurityGroup.Id"
|
|
32887
|
-
},
|
|
32888
|
-
"RoleArn": {
|
|
32889
|
-
"format": "AWS::IAM::Role.Arn"
|
|
32890
32847
|
}
|
|
32891
32848
|
},
|
|
32892
32849
|
"createOnly": [
|
|
@@ -32902,7 +32859,8 @@
|
|
|
32902
32859
|
"writeOnly": [
|
|
32903
32860
|
"AccessConfig/BootstrapClusterCreatorAdminPermissions",
|
|
32904
32861
|
"BootstrapSelfManagedAddons",
|
|
32905
|
-
"Force"
|
|
32862
|
+
"Force",
|
|
32863
|
+
"RollbackConfig"
|
|
32906
32864
|
],
|
|
32907
32865
|
"primaryIdentifier": [
|
|
32908
32866
|
"Name"
|
|
@@ -32988,6 +32946,11 @@
|
|
|
32988
32946
|
"kind": "property",
|
|
32989
32947
|
"lexicon": "aws"
|
|
32990
32948
|
},
|
|
32949
|
+
"EKSCluster_RollbackConfig": {
|
|
32950
|
+
"resourceType": "AWS::EKS::Cluster.RollbackConfig",
|
|
32951
|
+
"kind": "property",
|
|
32952
|
+
"lexicon": "aws"
|
|
32953
|
+
},
|
|
32991
32954
|
"EKSCluster_StorageConfig": {
|
|
32992
32955
|
"resourceType": "AWS::EKS::Cluster.StorageConfig",
|
|
32993
32956
|
"kind": "property",
|
|
@@ -33171,7 +33134,8 @@
|
|
|
33171
33134
|
"FailureReason": "FailureReason",
|
|
33172
33135
|
"CreatedAt": "CreatedAt",
|
|
33173
33136
|
"SecurityGroup": "SecurityGroup",
|
|
33174
|
-
"CertificateAuthority": "CertificateAuthority"
|
|
33137
|
+
"CertificateAuthority": "CertificateAuthority",
|
|
33138
|
+
"AuthProxyUrl": "AuthProxyUrl"
|
|
33175
33139
|
},
|
|
33176
33140
|
"propertyConstraints": {
|
|
33177
33141
|
"Name": {
|
|
@@ -33183,6 +33147,10 @@
|
|
|
33183
33147
|
"pattern": "[A-Za-z0-9._/-]+",
|
|
33184
33148
|
"minLength": 1,
|
|
33185
33149
|
"maxLength": 64
|
|
33150
|
+
},
|
|
33151
|
+
"SessionIdleTimeoutInMinutes": {
|
|
33152
|
+
"minimum": 1,
|
|
33153
|
+
"maximum": 1440
|
|
33186
33154
|
}
|
|
33187
33155
|
},
|
|
33188
33156
|
"createOnly": [
|
|
@@ -33191,7 +33159,11 @@
|
|
|
33191
33159
|
"Type",
|
|
33192
33160
|
"ReleaseLabel",
|
|
33193
33161
|
"ExecutionRoleArn",
|
|
33194
|
-
"ConfigurationOverrides"
|
|
33162
|
+
"ConfigurationOverrides",
|
|
33163
|
+
"SessionIdleTimeoutInMinutes"
|
|
33164
|
+
],
|
|
33165
|
+
"writeOnly": [
|
|
33166
|
+
"SessionIdleTimeoutInMinutes"
|
|
33195
33167
|
],
|
|
33196
33168
|
"primaryIdentifier": [
|
|
33197
33169
|
"Arn"
|
|
@@ -33520,7 +33492,8 @@
|
|
|
33520
33492
|
"VcfVersion": {
|
|
33521
33493
|
"enum": [
|
|
33522
33494
|
"VCF-5.2.1",
|
|
33523
|
-
"VCF-5.2.2"
|
|
33495
|
+
"VCF-5.2.2",
|
|
33496
|
+
"SELF_DEPLOYED"
|
|
33524
33497
|
]
|
|
33525
33498
|
},
|
|
33526
33499
|
"EnvironmentId": {
|
|
@@ -34103,6 +34076,11 @@
|
|
|
34103
34076
|
"kind": "property",
|
|
34104
34077
|
"lexicon": "aws"
|
|
34105
34078
|
},
|
|
34079
|
+
"EcsService_ThresholdConfiguration": {
|
|
34080
|
+
"resourceType": "AWS::ECS::Service.ThresholdConfiguration",
|
|
34081
|
+
"kind": "property",
|
|
34082
|
+
"lexicon": "aws"
|
|
34083
|
+
},
|
|
34106
34084
|
"EcsService_TimeoutConfiguration": {
|
|
34107
34085
|
"resourceType": "AWS::ECS::Service.TimeoutConfiguration",
|
|
34108
34086
|
"kind": "property",
|
|
@@ -34684,11 +34662,6 @@
|
|
|
34684
34662
|
"kind": "property",
|
|
34685
34663
|
"lexicon": "aws"
|
|
34686
34664
|
},
|
|
34687
|
-
"EmailConfiguration": {
|
|
34688
|
-
"resourceType": "AWS::Cognito::UserPool.EmailConfiguration",
|
|
34689
|
-
"kind": "property",
|
|
34690
|
-
"lexicon": "aws"
|
|
34691
|
-
},
|
|
34692
34665
|
"EmailContact": {
|
|
34693
34666
|
"resourceType": "AWS::NotificationsContacts::EmailContact",
|
|
34694
34667
|
"kind": "resource",
|
|
@@ -35613,6 +35586,11 @@
|
|
|
35613
35586
|
"kind": "property",
|
|
35614
35587
|
"lexicon": "aws"
|
|
35615
35588
|
},
|
|
35589
|
+
"EntryPoint": {
|
|
35590
|
+
"resourceType": "AWS::Connect::TestCase.EntryPoint",
|
|
35591
|
+
"kind": "property",
|
|
35592
|
+
"lexicon": "aws"
|
|
35593
|
+
},
|
|
35616
35594
|
"Environment": {
|
|
35617
35595
|
"resourceType": "AWS::Lambda::Function.Environment",
|
|
35618
35596
|
"kind": "property",
|
|
@@ -36062,6 +36040,11 @@
|
|
|
36062
36040
|
"kind": "property",
|
|
36063
36041
|
"lexicon": "aws"
|
|
36064
36042
|
},
|
|
36043
|
+
"EvaluationFormScoreThreshold": {
|
|
36044
|
+
"resourceType": "AWS::Connect::EvaluationForm.EvaluationFormScoreThreshold",
|
|
36045
|
+
"kind": "property",
|
|
36046
|
+
"lexicon": "aws"
|
|
36047
|
+
},
|
|
36065
36048
|
"EvaluationFormSection": {
|
|
36066
36049
|
"resourceType": "AWS::Connect::EvaluationForm.EvaluationFormSection",
|
|
36067
36050
|
"kind": "property",
|
|
@@ -36092,6 +36075,11 @@
|
|
|
36092
36075
|
"kind": "property",
|
|
36093
36076
|
"lexicon": "aws"
|
|
36094
36077
|
},
|
|
36078
|
+
"EvaluationForm_EvaluationFormScoreThreshold": {
|
|
36079
|
+
"resourceType": "AWS::Connect::EvaluationForm.EvaluationFormScoreThreshold",
|
|
36080
|
+
"kind": "property",
|
|
36081
|
+
"lexicon": "aws"
|
|
36082
|
+
},
|
|
36095
36083
|
"EvaluationForm_EvaluationFormSection": {
|
|
36096
36084
|
"resourceType": "AWS::Connect::EvaluationForm.EvaluationFormSection",
|
|
36097
36085
|
"kind": "property",
|
|
@@ -37662,11 +37650,6 @@
|
|
|
37662
37650
|
"kind": "property",
|
|
37663
37651
|
"lexicon": "aws"
|
|
37664
37652
|
},
|
|
37665
|
-
"Expiration": {
|
|
37666
|
-
"resourceType": "AWS::SecurityLake::DataLake.Expiration",
|
|
37667
|
-
"kind": "property",
|
|
37668
|
-
"lexicon": "aws"
|
|
37669
|
-
},
|
|
37670
37653
|
"ExpirationDataRule": {
|
|
37671
37654
|
"resourceType": "AWS::S3Files::FileSystem.ExpirationDataRule",
|
|
37672
37655
|
"kind": "property",
|
|
@@ -37845,6 +37828,7 @@
|
|
|
37845
37828
|
"writeOnly": [
|
|
37846
37829
|
"ExecutionRoleArn",
|
|
37847
37830
|
"TaskRoleArn",
|
|
37831
|
+
"TaskDefinitionArn",
|
|
37848
37832
|
"HealthCheckPath",
|
|
37849
37833
|
"PrimaryContainer",
|
|
37850
37834
|
"NetworkConfiguration",
|
|
@@ -39246,44 +39230,6 @@
|
|
|
39246
39230
|
"kind": "property",
|
|
39247
39231
|
"lexicon": "aws"
|
|
39248
39232
|
},
|
|
39249
|
-
"FirewallConfig": {
|
|
39250
|
-
"resourceType": "AWS::Route53Resolver::FirewallConfig",
|
|
39251
|
-
"kind": "resource",
|
|
39252
|
-
"lexicon": "aws",
|
|
39253
|
-
"attrs": {
|
|
39254
|
-
"Arn": "Arn",
|
|
39255
|
-
"Id": "Id",
|
|
39256
|
-
"OwnerId": "OwnerId"
|
|
39257
|
-
},
|
|
39258
|
-
"propertyConstraints": {
|
|
39259
|
-
"Id": {
|
|
39260
|
-
"minLength": 1,
|
|
39261
|
-
"maxLength": 64
|
|
39262
|
-
},
|
|
39263
|
-
"ResourceId": {
|
|
39264
|
-
"minLength": 1,
|
|
39265
|
-
"maxLength": 64
|
|
39266
|
-
},
|
|
39267
|
-
"OwnerId": {
|
|
39268
|
-
"minLength": 12,
|
|
39269
|
-
"maxLength": 32
|
|
39270
|
-
},
|
|
39271
|
-
"FirewallFailOpen": {
|
|
39272
|
-
"enum": [
|
|
39273
|
-
"ENABLED",
|
|
39274
|
-
"DISABLED",
|
|
39275
|
-
"USE_LOCAL_RESOURCE_SETTING"
|
|
39276
|
-
]
|
|
39277
|
-
}
|
|
39278
|
-
},
|
|
39279
|
-
"createOnly": [
|
|
39280
|
-
"FirewallFailOpen",
|
|
39281
|
-
"ResourceId"
|
|
39282
|
-
],
|
|
39283
|
-
"primaryIdentifier": [
|
|
39284
|
-
"Arn"
|
|
39285
|
-
]
|
|
39286
|
-
},
|
|
39287
39233
|
"FirewallPolicy": {
|
|
39288
39234
|
"resourceType": "AWS::NetworkFirewall::FirewallPolicy",
|
|
39289
39235
|
"kind": "resource",
|
|
@@ -39435,7 +39381,8 @@
|
|
|
39435
39381
|
"CreatorRequestId": "CreatorRequestId",
|
|
39436
39382
|
"CreationTime": "CreationTime",
|
|
39437
39383
|
"ModificationTime": "ModificationTime",
|
|
39438
|
-
"FirewallRules_*_FirewallThreatProtectionId": "FirewallRules.*.FirewallThreatProtectionId"
|
|
39384
|
+
"FirewallRules_*_FirewallThreatProtectionId": "FirewallRules.*.FirewallThreatProtectionId",
|
|
39385
|
+
"FirewallRules_*_Status": "FirewallRules.*.Status"
|
|
39439
39386
|
},
|
|
39440
39387
|
"propertyConstraints": {
|
|
39441
39388
|
"Id": {
|
|
@@ -39601,6 +39548,11 @@
|
|
|
39601
39548
|
"kind": "property",
|
|
39602
39549
|
"lexicon": "aws"
|
|
39603
39550
|
},
|
|
39551
|
+
"FirewallRuleGroup_PartnerThreatProtectionConfig": {
|
|
39552
|
+
"resourceType": "AWS::Route53Resolver::FirewallRuleGroup.PartnerThreatProtectionConfig",
|
|
39553
|
+
"kind": "property",
|
|
39554
|
+
"lexicon": "aws"
|
|
39555
|
+
},
|
|
39604
39556
|
"FirewallRuleGroup_Tag": {
|
|
39605
39557
|
"resourceType": "AWS::Route53Resolver::FirewallRuleGroup.Tag",
|
|
39606
39558
|
"kind": "property",
|
|
@@ -40952,6 +40904,7 @@
|
|
|
40952
40904
|
"Code/S3ObjectVersion",
|
|
40953
40905
|
"Code/ZipFile",
|
|
40954
40906
|
"Code/SourceKMSKeyArn",
|
|
40907
|
+
"Code/S3ObjectStorageMode",
|
|
40955
40908
|
"PublishToLatestPublished"
|
|
40956
40909
|
],
|
|
40957
40910
|
"primaryIdentifier": [
|
|
@@ -41343,56 +41296,6 @@
|
|
|
41343
41296
|
"kind": "property",
|
|
41344
41297
|
"lexicon": "aws"
|
|
41345
41298
|
},
|
|
41346
|
-
"GameLiftBuild": {
|
|
41347
|
-
"resourceType": "AWS::GameLift::Build",
|
|
41348
|
-
"kind": "resource",
|
|
41349
|
-
"lexicon": "aws",
|
|
41350
|
-
"attrs": {
|
|
41351
|
-
"BuildId": "BuildId",
|
|
41352
|
-
"BuildArn": "BuildArn"
|
|
41353
|
-
},
|
|
41354
|
-
"propertyConstraints": {
|
|
41355
|
-
"OperatingSystem": {
|
|
41356
|
-
"enum": [
|
|
41357
|
-
"AMAZON_LINUX",
|
|
41358
|
-
"AMAZON_LINUX_2",
|
|
41359
|
-
"AMAZON_LINUX_2023",
|
|
41360
|
-
"WINDOWS_2012",
|
|
41361
|
-
"WINDOWS_2016",
|
|
41362
|
-
"WINDOWS_2022"
|
|
41363
|
-
]
|
|
41364
|
-
},
|
|
41365
|
-
"BuildArn": {
|
|
41366
|
-
"pattern": "^arn:.*:build\\/build-\\S+"
|
|
41367
|
-
}
|
|
41368
|
-
},
|
|
41369
|
-
"createOnly": [
|
|
41370
|
-
"StorageLocation",
|
|
41371
|
-
"OperatingSystem",
|
|
41372
|
-
"ServerSdkVersion"
|
|
41373
|
-
],
|
|
41374
|
-
"writeOnly": [
|
|
41375
|
-
"StorageLocation"
|
|
41376
|
-
],
|
|
41377
|
-
"primaryIdentifier": [
|
|
41378
|
-
"BuildId"
|
|
41379
|
-
],
|
|
41380
|
-
"tagging": {
|
|
41381
|
-
"taggable": true,
|
|
41382
|
-
"tagOnCreate": true,
|
|
41383
|
-
"tagUpdatable": true
|
|
41384
|
-
}
|
|
41385
|
-
},
|
|
41386
|
-
"GameLiftBuild_StorageLocation": {
|
|
41387
|
-
"resourceType": "AWS::GameLift::Build.StorageLocation",
|
|
41388
|
-
"kind": "property",
|
|
41389
|
-
"lexicon": "aws"
|
|
41390
|
-
},
|
|
41391
|
-
"GameLiftBuild_Tag": {
|
|
41392
|
-
"resourceType": "AWS::GameLift::Build.Tag",
|
|
41393
|
-
"kind": "property",
|
|
41394
|
-
"lexicon": "aws"
|
|
41395
|
-
},
|
|
41396
41299
|
"GameLiftFleet": {
|
|
41397
41300
|
"resourceType": "AWS::GameLift::Fleet",
|
|
41398
41301
|
"kind": "resource",
|
|
@@ -46532,6 +46435,11 @@
|
|
|
46532
46435
|
"kind": "property",
|
|
46533
46436
|
"lexicon": "aws"
|
|
46534
46437
|
},
|
|
46438
|
+
"IdentityProviderVpcConnectionProperties": {
|
|
46439
|
+
"resourceType": "AWS::QuickSight::OAuthClientApplication.IdentityProviderVpcConnectionProperties",
|
|
46440
|
+
"kind": "property",
|
|
46441
|
+
"lexicon": "aws"
|
|
46442
|
+
},
|
|
46535
46443
|
"IdentityProvider_Tag": {
|
|
46536
46444
|
"resourceType": "AWS::WorkSpacesWeb::IdentityProvider.Tag",
|
|
46537
46445
|
"kind": "property",
|
|
@@ -47069,7 +46977,10 @@
|
|
|
47069
46977
|
"ParentImage",
|
|
47070
46978
|
"Description",
|
|
47071
46979
|
"BlockDeviceMappings",
|
|
47072
|
-
"WorkingDirectory"
|
|
46980
|
+
"WorkingDirectory",
|
|
46981
|
+
"AdditionalInstanceConfiguration",
|
|
46982
|
+
"AmiTags",
|
|
46983
|
+
"AmiWatermarks"
|
|
47073
46984
|
],
|
|
47074
46985
|
"primaryIdentifier": [
|
|
47075
46986
|
"Arn"
|
|
@@ -47157,11 +47068,6 @@
|
|
|
47157
47068
|
"ImageVersionArn"
|
|
47158
47069
|
]
|
|
47159
47070
|
},
|
|
47160
|
-
"ImplementationDetails": {
|
|
47161
|
-
"resourceType": "AWS::ControlCatalog::Control.ImplementationDetails",
|
|
47162
|
-
"kind": "property",
|
|
47163
|
-
"lexicon": "aws"
|
|
47164
|
-
},
|
|
47165
47071
|
"ImportDataRule": {
|
|
47166
47072
|
"resourceType": "AWS::S3Files::FileSystem.ImportDataRule",
|
|
47167
47073
|
"kind": "property",
|
|
@@ -47289,11 +47195,6 @@
|
|
|
47289
47195
|
"kind": "property",
|
|
47290
47196
|
"lexicon": "aws"
|
|
47291
47197
|
},
|
|
47292
|
-
"InboundFederation": {
|
|
47293
|
-
"resourceType": "AWS::Cognito::UserPool.InboundFederation",
|
|
47294
|
-
"kind": "property",
|
|
47295
|
-
"lexicon": "aws"
|
|
47296
|
-
},
|
|
47297
47198
|
"IncidentTemplate": {
|
|
47298
47199
|
"resourceType": "AWS::SSMIncidents::ResponsePlan.IncidentTemplate",
|
|
47299
47200
|
"kind": "property",
|
|
@@ -48401,15 +48302,30 @@
|
|
|
48401
48302
|
"kind": "resource",
|
|
48402
48303
|
"lexicon": "aws",
|
|
48403
48304
|
"attrs": {
|
|
48404
|
-
"Id": "Id",
|
|
48405
48305
|
"Arn": "Arn"
|
|
48406
48306
|
},
|
|
48307
|
+
"propertyConstraints": {
|
|
48308
|
+
"RuleState": {
|
|
48309
|
+
"enum": [
|
|
48310
|
+
"ENABLED",
|
|
48311
|
+
"DISABLED"
|
|
48312
|
+
]
|
|
48313
|
+
},
|
|
48314
|
+
"ApplyOnTransformedLogs": {
|
|
48315
|
+
"default": false
|
|
48316
|
+
}
|
|
48317
|
+
},
|
|
48407
48318
|
"createOnly": [
|
|
48408
48319
|
"RuleName"
|
|
48409
48320
|
],
|
|
48410
48321
|
"primaryIdentifier": [
|
|
48411
|
-
"
|
|
48412
|
-
]
|
|
48322
|
+
"Arn"
|
|
48323
|
+
],
|
|
48324
|
+
"tagging": {
|
|
48325
|
+
"taggable": true,
|
|
48326
|
+
"tagOnCreate": true,
|
|
48327
|
+
"tagUpdatable": true
|
|
48328
|
+
}
|
|
48413
48329
|
},
|
|
48414
48330
|
"InsightRule_Tag": {
|
|
48415
48331
|
"resourceType": "AWS::CloudWatch::InsightRule.Tag",
|
|
@@ -50341,36 +50257,6 @@
|
|
|
50341
50257
|
"kind": "property",
|
|
50342
50258
|
"lexicon": "aws"
|
|
50343
50259
|
},
|
|
50344
|
-
"IoTIndex": {
|
|
50345
|
-
"resourceType": "AWS::IoT::Index",
|
|
50346
|
-
"kind": "resource",
|
|
50347
|
-
"lexicon": "aws",
|
|
50348
|
-
"attrs": {
|
|
50349
|
-
"Arn": "Arn",
|
|
50350
|
-
"IndexStatus": "IndexStatus",
|
|
50351
|
-
"Schema": "Schema"
|
|
50352
|
-
},
|
|
50353
|
-
"propertyConstraints": {
|
|
50354
|
-
"IndexName": {
|
|
50355
|
-
"pattern": "^[a-zA-Z0-9:_-]+$",
|
|
50356
|
-
"minLength": 1,
|
|
50357
|
-
"maxLength": 128
|
|
50358
|
-
},
|
|
50359
|
-
"IndexStatus": {
|
|
50360
|
-
"enum": [
|
|
50361
|
-
"ACTIVE",
|
|
50362
|
-
"BUILDING",
|
|
50363
|
-
"REBUILDING"
|
|
50364
|
-
]
|
|
50365
|
-
}
|
|
50366
|
-
},
|
|
50367
|
-
"createOnly": [
|
|
50368
|
-
"IndexName"
|
|
50369
|
-
],
|
|
50370
|
-
"primaryIdentifier": [
|
|
50371
|
-
"Arn"
|
|
50372
|
-
]
|
|
50373
|
-
},
|
|
50374
50260
|
"IoTJobAbortConfig": {
|
|
50375
50261
|
"resourceType": "AWS::GreengrassV2::Deployment.IoTJobAbortConfig",
|
|
50376
50262
|
"kind": "property",
|
|
@@ -51126,6 +51012,11 @@
|
|
|
51126
51012
|
"kind": "property",
|
|
51127
51013
|
"lexicon": "aws"
|
|
51128
51014
|
},
|
|
51015
|
+
"IssuerConfiguration": {
|
|
51016
|
+
"resourceType": "AWS::Cognito::UserPool.IssuerConfiguration",
|
|
51017
|
+
"kind": "property",
|
|
51018
|
+
"lexicon": "aws"
|
|
51019
|
+
},
|
|
51129
51020
|
"IssuerData": {
|
|
51130
51021
|
"resourceType": "AWS::LicenseManager::License.IssuerData",
|
|
51131
51022
|
"kind": "property",
|
|
@@ -52002,6 +51893,11 @@
|
|
|
52002
51893
|
"kind": "property",
|
|
52003
51894
|
"lexicon": "aws"
|
|
52004
51895
|
},
|
|
51896
|
+
"KeyConfiguration": {
|
|
51897
|
+
"resourceType": "AWS::Cognito::UserPool.KeyConfiguration",
|
|
51898
|
+
"kind": "property",
|
|
51899
|
+
"lexicon": "aws"
|
|
51900
|
+
},
|
|
52005
51901
|
"KeyGroup": {
|
|
52006
51902
|
"resourceType": "AWS::CloudFront::KeyGroup",
|
|
52007
51903
|
"kind": "resource",
|
|
@@ -52180,6 +52076,10 @@
|
|
|
52180
52076
|
"createOnly": [
|
|
52181
52077
|
"KeyspaceName"
|
|
52182
52078
|
],
|
|
52079
|
+
"writeOnly": [
|
|
52080
|
+
"ClientSideTimestampsEnabled",
|
|
52081
|
+
"ReplicationSpecification/RegionList"
|
|
52082
|
+
],
|
|
52183
52083
|
"primaryIdentifier": [
|
|
52184
52084
|
"KeyspaceName"
|
|
52185
52085
|
],
|
|
@@ -65564,6 +65464,129 @@
|
|
|
65564
65464
|
"kind": "property",
|
|
65565
65465
|
"lexicon": "aws"
|
|
65566
65466
|
},
|
|
65467
|
+
"OAuthClientApplication": {
|
|
65468
|
+
"resourceType": "AWS::QuickSight::OAuthClientApplication",
|
|
65469
|
+
"kind": "resource",
|
|
65470
|
+
"lexicon": "aws",
|
|
65471
|
+
"attrs": {
|
|
65472
|
+
"Arn": "Arn",
|
|
65473
|
+
"CreatedTime": "CreatedTime",
|
|
65474
|
+
"LastUpdatedTime": "LastUpdatedTime"
|
|
65475
|
+
},
|
|
65476
|
+
"propertyConstraints": {
|
|
65477
|
+
"OAuthClientApplicationId": {
|
|
65478
|
+
"pattern": "[^/][^\\u0000-\\u001f]*",
|
|
65479
|
+
"minLength": 1,
|
|
65480
|
+
"maxLength": 256
|
|
65481
|
+
},
|
|
65482
|
+
"Arn": {
|
|
65483
|
+
"pattern": "^arn:[-a-z0-9]*:quicksight:[-a-z0-9]*:[0-9]{12}:oauthclientapplication/.+"
|
|
65484
|
+
},
|
|
65485
|
+
"Name": {
|
|
65486
|
+
"minLength": 1,
|
|
65487
|
+
"maxLength": 2048
|
|
65488
|
+
},
|
|
65489
|
+
"OAuthClientAuthenticationType": {
|
|
65490
|
+
"enum": [
|
|
65491
|
+
"TOKEN"
|
|
65492
|
+
]
|
|
65493
|
+
},
|
|
65494
|
+
"ClientId": {
|
|
65495
|
+
"minLength": 1,
|
|
65496
|
+
"maxLength": 2048
|
|
65497
|
+
},
|
|
65498
|
+
"ClientSecret": {
|
|
65499
|
+
"minLength": 1,
|
|
65500
|
+
"maxLength": 2048
|
|
65501
|
+
},
|
|
65502
|
+
"OAuthTokenEndpointUrl": {
|
|
65503
|
+
"minLength": 1,
|
|
65504
|
+
"maxLength": 2048
|
|
65505
|
+
},
|
|
65506
|
+
"OAuthAuthorizationEndpointUrl": {
|
|
65507
|
+
"minLength": 1,
|
|
65508
|
+
"maxLength": 2048
|
|
65509
|
+
},
|
|
65510
|
+
"OAuthScopes": {
|
|
65511
|
+
"minLength": 1,
|
|
65512
|
+
"maxLength": 4096
|
|
65513
|
+
},
|
|
65514
|
+
"DataSourceType": {
|
|
65515
|
+
"enum": [
|
|
65516
|
+
"ADOBE_ANALYTICS",
|
|
65517
|
+
"AMAZON_ELASTICSEARCH",
|
|
65518
|
+
"AMAZON_OPENSEARCH",
|
|
65519
|
+
"ATHENA",
|
|
65520
|
+
"AURORA",
|
|
65521
|
+
"AURORA_POSTGRESQL",
|
|
65522
|
+
"AWS_IOT_ANALYTICS",
|
|
65523
|
+
"BIGQUERY",
|
|
65524
|
+
"CONFLUENCE",
|
|
65525
|
+
"DATABRICKS",
|
|
65526
|
+
"EXASOL",
|
|
65527
|
+
"GITHUB",
|
|
65528
|
+
"GOOGLESHEETS",
|
|
65529
|
+
"GOOGLE_DRIVE",
|
|
65530
|
+
"JIRA",
|
|
65531
|
+
"MARIADB",
|
|
65532
|
+
"MYSQL",
|
|
65533
|
+
"ONE_DRIVE",
|
|
65534
|
+
"ORACLE",
|
|
65535
|
+
"POSTGRESQL",
|
|
65536
|
+
"PRESTO",
|
|
65537
|
+
"QBUSINESS",
|
|
65538
|
+
"REDSHIFT",
|
|
65539
|
+
"S3",
|
|
65540
|
+
"S3_KNOWLEDGE_BASE",
|
|
65541
|
+
"S3_TABLES",
|
|
65542
|
+
"SALESFORCE",
|
|
65543
|
+
"SERVICENOW",
|
|
65544
|
+
"SHAREPOINT",
|
|
65545
|
+
"SNOWFLAKE",
|
|
65546
|
+
"SPARK",
|
|
65547
|
+
"SQLSERVER",
|
|
65548
|
+
"STARBURST",
|
|
65549
|
+
"TERADATA",
|
|
65550
|
+
"TIMESTREAM",
|
|
65551
|
+
"TRINO",
|
|
65552
|
+
"TWITTER",
|
|
65553
|
+
"WEB_CRAWLER"
|
|
65554
|
+
]
|
|
65555
|
+
},
|
|
65556
|
+
"CreatedTime": {
|
|
65557
|
+
"format": "date-time"
|
|
65558
|
+
},
|
|
65559
|
+
"LastUpdatedTime": {
|
|
65560
|
+
"format": "date-time"
|
|
65561
|
+
}
|
|
65562
|
+
},
|
|
65563
|
+
"createOnly": [
|
|
65564
|
+
"OAuthClientApplicationId",
|
|
65565
|
+
"OAuthClientAuthenticationType"
|
|
65566
|
+
],
|
|
65567
|
+
"writeOnly": [
|
|
65568
|
+
"ClientId",
|
|
65569
|
+
"ClientSecret"
|
|
65570
|
+
],
|
|
65571
|
+
"primaryIdentifier": [
|
|
65572
|
+
"Arn"
|
|
65573
|
+
],
|
|
65574
|
+
"tagging": {
|
|
65575
|
+
"taggable": true,
|
|
65576
|
+
"tagOnCreate": true,
|
|
65577
|
+
"tagUpdatable": true
|
|
65578
|
+
}
|
|
65579
|
+
},
|
|
65580
|
+
"OAuthClientApplication_IdentityProviderVpcConnectionProperties": {
|
|
65581
|
+
"resourceType": "AWS::QuickSight::OAuthClientApplication.IdentityProviderVpcConnectionProperties",
|
|
65582
|
+
"kind": "property",
|
|
65583
|
+
"lexicon": "aws"
|
|
65584
|
+
},
|
|
65585
|
+
"OAuthClientApplication_Tag": {
|
|
65586
|
+
"resourceType": "AWS::QuickSight::OAuthClientApplication.Tag",
|
|
65587
|
+
"kind": "property",
|
|
65588
|
+
"lexicon": "aws"
|
|
65589
|
+
},
|
|
65567
65590
|
"OIDCProvider": {
|
|
65568
65591
|
"resourceType": "AWS::IAM::OIDCProvider",
|
|
65569
65592
|
"kind": "resource",
|
|
@@ -65627,7 +65650,7 @@
|
|
|
65627
65650
|
"maxLength": 28
|
|
65628
65651
|
},
|
|
65629
65652
|
"VpcEndpointService": {
|
|
65630
|
-
"minLength":
|
|
65653
|
+
"minLength": 0,
|
|
65631
65654
|
"maxLength": 128
|
|
65632
65655
|
},
|
|
65633
65656
|
"PipelineArn": {
|
|
@@ -66716,7 +66739,8 @@
|
|
|
66716
66739
|
},
|
|
66717
66740
|
"createOnly": [
|
|
66718
66741
|
"IndexName",
|
|
66719
|
-
"CollectionEndpoint"
|
|
66742
|
+
"CollectionEndpoint",
|
|
66743
|
+
"Settings/Analysis"
|
|
66720
66744
|
],
|
|
66721
66745
|
"writeOnly": [
|
|
66722
66746
|
"Settings/Index/RefreshInterval",
|
|
@@ -69251,6 +69275,11 @@
|
|
|
69251
69275
|
"kind": "property",
|
|
69252
69276
|
"lexicon": "aws"
|
|
69253
69277
|
},
|
|
69278
|
+
"PartnerThreatProtectionConfig": {
|
|
69279
|
+
"resourceType": "AWS::Route53Resolver::FirewallRuleGroup.PartnerThreatProtectionConfig",
|
|
69280
|
+
"kind": "property",
|
|
69281
|
+
"lexicon": "aws"
|
|
69282
|
+
},
|
|
69254
69283
|
"Partnership": {
|
|
69255
69284
|
"resourceType": "AWS::B2BI::Partnership",
|
|
69256
69285
|
"kind": "resource",
|
|
@@ -71984,11 +72013,6 @@
|
|
|
71984
72013
|
"kind": "property",
|
|
71985
72014
|
"lexicon": "aws"
|
|
71986
72015
|
},
|
|
71987
|
-
"PreTokenGenerationConfig": {
|
|
71988
|
-
"resourceType": "AWS::Cognito::UserPool.PreTokenGenerationConfig",
|
|
71989
|
-
"kind": "property",
|
|
71990
|
-
"lexicon": "aws"
|
|
71991
|
-
},
|
|
71992
72016
|
"PredefinedAttribute": {
|
|
71993
72017
|
"resourceType": "AWS::Connect::PredefinedAttribute",
|
|
71994
72018
|
"kind": "resource",
|
|
@@ -72159,6 +72183,11 @@
|
|
|
72159
72183
|
"kind": "property",
|
|
72160
72184
|
"lexicon": "aws"
|
|
72161
72185
|
},
|
|
72186
|
+
"PrevalidationOptions": {
|
|
72187
|
+
"resourceType": "AWS::CertificateManager::AcmeDomainValidation.PrevalidationOptions",
|
|
72188
|
+
"kind": "property",
|
|
72189
|
+
"lexicon": "aws"
|
|
72190
|
+
},
|
|
72162
72191
|
"PricingPlan": {
|
|
72163
72192
|
"resourceType": "AWS::BillingConductor::PricingPlan",
|
|
72164
72193
|
"kind": "resource",
|
|
@@ -73587,6 +73616,11 @@
|
|
|
73587
73616
|
"kind": "property",
|
|
73588
73617
|
"lexicon": "aws"
|
|
73589
73618
|
},
|
|
73619
|
+
"PublicCertificateAuthority": {
|
|
73620
|
+
"resourceType": "AWS::CertificateManager::AcmeEndpoint.PublicCertificateAuthority",
|
|
73621
|
+
"kind": "property",
|
|
73622
|
+
"lexicon": "aws"
|
|
73623
|
+
},
|
|
73590
73624
|
"PublicDnsNamespace": {
|
|
73591
73625
|
"resourceType": "AWS::ServiceDiscovery::PublicDnsNamespace",
|
|
73592
73626
|
"kind": "resource",
|
|
@@ -75457,6 +75491,64 @@
|
|
|
75457
75491
|
"kind": "property",
|
|
75458
75492
|
"lexicon": "aws"
|
|
75459
75493
|
},
|
|
75494
|
+
"QuickSightFlow": {
|
|
75495
|
+
"resourceType": "AWS::QuickSight::Flow",
|
|
75496
|
+
"kind": "resource",
|
|
75497
|
+
"lexicon": "aws",
|
|
75498
|
+
"attrs": {
|
|
75499
|
+
"Arn": "Arn",
|
|
75500
|
+
"CreatedTime": "CreatedTime",
|
|
75501
|
+
"FlowId": "FlowId",
|
|
75502
|
+
"LastUpdatedTime": "LastUpdatedTime",
|
|
75503
|
+
"PublishState": "PublishState",
|
|
75504
|
+
"StepAliases": "StepAliases"
|
|
75505
|
+
},
|
|
75506
|
+
"propertyConstraints": {
|
|
75507
|
+
"AwsAccountId": {
|
|
75508
|
+
"pattern": "^[0-9]{12}$",
|
|
75509
|
+
"minLength": 12,
|
|
75510
|
+
"maxLength": 12
|
|
75511
|
+
},
|
|
75512
|
+
"CreatedTime": {
|
|
75513
|
+
"format": "date-time"
|
|
75514
|
+
},
|
|
75515
|
+
"Description": {
|
|
75516
|
+
"pattern": "^(?!\\s+$)[^{}\"\\\\<>]*$",
|
|
75517
|
+
"minLength": 0,
|
|
75518
|
+
"maxLength": 1024
|
|
75519
|
+
},
|
|
75520
|
+
"FlowId": {
|
|
75521
|
+
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$"
|
|
75522
|
+
},
|
|
75523
|
+
"LastUpdatedTime": {
|
|
75524
|
+
"format": "date-time"
|
|
75525
|
+
},
|
|
75526
|
+
"Name": {
|
|
75527
|
+
"pattern": "^(?!\\s+$)[^{}\"\\\\<>]*$",
|
|
75528
|
+
"minLength": 1,
|
|
75529
|
+
"maxLength": 128
|
|
75530
|
+
}
|
|
75531
|
+
},
|
|
75532
|
+
"createOnly": [
|
|
75533
|
+
"AwsAccountId"
|
|
75534
|
+
],
|
|
75535
|
+
"writeOnly": [
|
|
75536
|
+
"Permissions"
|
|
75537
|
+
],
|
|
75538
|
+
"primaryIdentifier": [
|
|
75539
|
+
"Arn"
|
|
75540
|
+
]
|
|
75541
|
+
},
|
|
75542
|
+
"QuickSightFlow_Permission": {
|
|
75543
|
+
"resourceType": "AWS::QuickSight::Flow.Permission",
|
|
75544
|
+
"kind": "property",
|
|
75545
|
+
"lexicon": "aws"
|
|
75546
|
+
},
|
|
75547
|
+
"QuickSightFlow_StepAliasMapping": {
|
|
75548
|
+
"resourceType": "AWS::QuickSight::Flow.StepAliasMapping",
|
|
75549
|
+
"kind": "property",
|
|
75550
|
+
"lexicon": "aws"
|
|
75551
|
+
},
|
|
75460
75552
|
"QuickSightTemplate": {
|
|
75461
75553
|
"resourceType": "AWS::QuickSight::Template",
|
|
75462
75554
|
"kind": "resource",
|
|
@@ -77366,11 +77458,6 @@
|
|
|
77366
77458
|
"kind": "property",
|
|
77367
77459
|
"lexicon": "aws"
|
|
77368
77460
|
},
|
|
77369
|
-
"RecurringCharge": {
|
|
77370
|
-
"resourceType": "AWS::RDS::ReservedDBInstance.RecurringCharge",
|
|
77371
|
-
"kind": "property",
|
|
77372
|
-
"lexicon": "aws"
|
|
77373
|
-
},
|
|
77374
77461
|
"RedactionPlaceHolder": {
|
|
77375
77462
|
"resourceType": "AWS::WorkSpacesWeb::DataProtectionSettings.RedactionPlaceHolder",
|
|
77376
77463
|
"kind": "property",
|
|
@@ -78207,11 +78294,6 @@
|
|
|
78207
78294
|
"kind": "property",
|
|
78208
78295
|
"lexicon": "aws"
|
|
78209
78296
|
},
|
|
78210
|
-
"RegionConfiguration": {
|
|
78211
|
-
"resourceType": "AWS::ControlCatalog::Control.RegionConfiguration",
|
|
78212
|
-
"kind": "property",
|
|
78213
|
-
"lexicon": "aws"
|
|
78214
|
-
},
|
|
78215
78297
|
"RegionalConfiguration": {
|
|
78216
78298
|
"resourceType": "AWS::ElastiCache::GlobalReplicationGroup.RegionalConfiguration",
|
|
78217
78299
|
"kind": "property",
|
|
@@ -78315,14 +78397,11 @@
|
|
|
78315
78397
|
"resourceType": "AWS::Config::RemediationConfiguration",
|
|
78316
78398
|
"kind": "resource",
|
|
78317
78399
|
"lexicon": "aws",
|
|
78318
|
-
"attrs": {
|
|
78319
|
-
"Id": "Id"
|
|
78320
|
-
},
|
|
78321
78400
|
"createOnly": [
|
|
78322
78401
|
"ConfigRuleName"
|
|
78323
78402
|
],
|
|
78324
78403
|
"primaryIdentifier": [
|
|
78325
|
-
"
|
|
78404
|
+
"ConfigRuleName"
|
|
78326
78405
|
]
|
|
78327
78406
|
},
|
|
78328
78407
|
"RemediationConfiguration_ExecutionControls": {
|
|
@@ -79384,49 +79463,6 @@
|
|
|
79384
79463
|
"kind": "property",
|
|
79385
79464
|
"lexicon": "aws"
|
|
79386
79465
|
},
|
|
79387
|
-
"ReservedDBInstance": {
|
|
79388
|
-
"resourceType": "AWS::RDS::ReservedDBInstance",
|
|
79389
|
-
"kind": "resource",
|
|
79390
|
-
"lexicon": "aws",
|
|
79391
|
-
"attrs": {
|
|
79392
|
-
"ReservedDBInstanceArn": "ReservedDBInstanceArn",
|
|
79393
|
-
"ReservedDBInstanceId": "ReservedDBInstanceId",
|
|
79394
|
-
"ReservedDBInstancesOfferingId": "ReservedDBInstancesOfferingId",
|
|
79395
|
-
"DBInstanceClass": "DBInstanceClass",
|
|
79396
|
-
"StartTime": "StartTime",
|
|
79397
|
-
"Duration": "Duration",
|
|
79398
|
-
"FixedPrice": "FixedPrice",
|
|
79399
|
-
"UsagePrice": "UsagePrice",
|
|
79400
|
-
"CurrencyCode": "CurrencyCode",
|
|
79401
|
-
"ProductDescription": "ProductDescription",
|
|
79402
|
-
"OfferingType": "OfferingType",
|
|
79403
|
-
"MultiAZ": "MultiAZ",
|
|
79404
|
-
"State": "State",
|
|
79405
|
-
"RecurringCharges": "RecurringCharges",
|
|
79406
|
-
"Tags": "Tags"
|
|
79407
|
-
},
|
|
79408
|
-
"createOnly": [
|
|
79409
|
-
"DBInstanceCount"
|
|
79410
|
-
],
|
|
79411
|
-
"primaryIdentifier": [
|
|
79412
|
-
"ReservedDBInstanceArn"
|
|
79413
|
-
],
|
|
79414
|
-
"tagging": {
|
|
79415
|
-
"taggable": true,
|
|
79416
|
-
"tagOnCreate": false,
|
|
79417
|
-
"tagUpdatable": false
|
|
79418
|
-
}
|
|
79419
|
-
},
|
|
79420
|
-
"ReservedDBInstance_RecurringCharge": {
|
|
79421
|
-
"resourceType": "AWS::RDS::ReservedDBInstance.RecurringCharge",
|
|
79422
|
-
"kind": "property",
|
|
79423
|
-
"lexicon": "aws"
|
|
79424
|
-
},
|
|
79425
|
-
"ReservedDBInstance_Tag": {
|
|
79426
|
-
"resourceType": "AWS::RDS::ReservedDBInstance.Tag",
|
|
79427
|
-
"kind": "property",
|
|
79428
|
-
"lexicon": "aws"
|
|
79429
|
-
},
|
|
79430
79466
|
"ReshardingConfiguration": {
|
|
79431
79467
|
"resourceType": "AWS::ElastiCache::GlobalReplicationGroup.ReshardingConfiguration",
|
|
79432
79468
|
"kind": "property",
|
|
@@ -81721,6 +81757,11 @@
|
|
|
81721
81757
|
"kind": "property",
|
|
81722
81758
|
"lexicon": "aws"
|
|
81723
81759
|
},
|
|
81760
|
+
"RollbackConfig": {
|
|
81761
|
+
"resourceType": "AWS::EKS::Cluster.RollbackConfig",
|
|
81762
|
+
"kind": "property",
|
|
81763
|
+
"lexicon": "aws"
|
|
81764
|
+
},
|
|
81724
81765
|
"RollingInterval": {
|
|
81725
81766
|
"resourceType": "AWS::ApplicationSignals::ServiceLevelObjective.RollingInterval",
|
|
81726
81767
|
"kind": "property",
|
|
@@ -82440,6 +82481,7 @@
|
|
|
82440
82481
|
"lexicon": "aws",
|
|
82441
82482
|
"attrs": {
|
|
82442
82483
|
"Arn": "Arn",
|
|
82484
|
+
"ContentQualityAnalysisType": "ContentQualityAnalysisType",
|
|
82443
82485
|
"CreatedAt": "CreatedAt",
|
|
82444
82486
|
"Id": "Id",
|
|
82445
82487
|
"InputType": "InputType",
|
|
@@ -87053,7 +87095,9 @@
|
|
|
87053
87095
|
"attrs": {
|
|
87054
87096
|
"AgentSpaceId": "AgentSpaceId",
|
|
87055
87097
|
"CreatedAt": "CreatedAt",
|
|
87056
|
-
"UpdatedAt": "UpdatedAt"
|
|
87098
|
+
"UpdatedAt": "UpdatedAt",
|
|
87099
|
+
"IntegratedResources_*_ProviderResources_*_ConfluenceDocument_Title": "IntegratedResources.*.ProviderResources.*.ConfluenceDocument.Title",
|
|
87100
|
+
"IntegratedResources_*_ProviderResources_*_ConfluenceDocument_SpaceTitle": "IntegratedResources.*.ProviderResources.*.ConfluenceDocument.SpaceTitle"
|
|
87057
87101
|
},
|
|
87058
87102
|
"propertyConstraints": {
|
|
87059
87103
|
"KmsKeyId": {
|
|
@@ -87655,6 +87699,63 @@
|
|
|
87655
87699
|
"Name"
|
|
87656
87700
|
]
|
|
87657
87701
|
},
|
|
87702
|
+
"SecurityRequirement": {
|
|
87703
|
+
"resourceType": "AWS::SecurityAgent::SecurityRequirementPack.SecurityRequirement",
|
|
87704
|
+
"kind": "property",
|
|
87705
|
+
"lexicon": "aws"
|
|
87706
|
+
},
|
|
87707
|
+
"SecurityRequirementPack": {
|
|
87708
|
+
"resourceType": "AWS::SecurityAgent::SecurityRequirementPack",
|
|
87709
|
+
"kind": "resource",
|
|
87710
|
+
"lexicon": "aws",
|
|
87711
|
+
"attrs": {
|
|
87712
|
+
"PackId": "PackId"
|
|
87713
|
+
},
|
|
87714
|
+
"propertyConstraints": {
|
|
87715
|
+
"PackId": {
|
|
87716
|
+
"pattern": "^(srp)-(am|cm)-[a-zA-Z0-9\\-]+$",
|
|
87717
|
+
"minLength": 8,
|
|
87718
|
+
"maxLength": 64
|
|
87719
|
+
},
|
|
87720
|
+
"Name": {
|
|
87721
|
+
"minLength": 1,
|
|
87722
|
+
"maxLength": 120
|
|
87723
|
+
},
|
|
87724
|
+
"Description": {
|
|
87725
|
+
"maxLength": 500
|
|
87726
|
+
},
|
|
87727
|
+
"Status": {
|
|
87728
|
+
"enum": [
|
|
87729
|
+
"ENABLED",
|
|
87730
|
+
"DISABLED"
|
|
87731
|
+
]
|
|
87732
|
+
},
|
|
87733
|
+
"KmsKeyId": {
|
|
87734
|
+
"maxLength": 2048
|
|
87735
|
+
}
|
|
87736
|
+
},
|
|
87737
|
+
"createOnly": [
|
|
87738
|
+
"KmsKeyId"
|
|
87739
|
+
],
|
|
87740
|
+
"primaryIdentifier": [
|
|
87741
|
+
"PackId"
|
|
87742
|
+
],
|
|
87743
|
+
"tagging": {
|
|
87744
|
+
"taggable": true,
|
|
87745
|
+
"tagOnCreate": true,
|
|
87746
|
+
"tagUpdatable": true
|
|
87747
|
+
}
|
|
87748
|
+
},
|
|
87749
|
+
"SecurityRequirementPack_SecurityRequirement": {
|
|
87750
|
+
"resourceType": "AWS::SecurityAgent::SecurityRequirementPack.SecurityRequirement",
|
|
87751
|
+
"kind": "property",
|
|
87752
|
+
"lexicon": "aws"
|
|
87753
|
+
},
|
|
87754
|
+
"SecurityRequirementPack_Tag": {
|
|
87755
|
+
"resourceType": "AWS::SecurityAgent::SecurityRequirementPack.Tag",
|
|
87756
|
+
"kind": "property",
|
|
87757
|
+
"lexicon": "aws"
|
|
87758
|
+
},
|
|
87658
87759
|
"SecurityServicePolicyData": {
|
|
87659
87760
|
"resourceType": "AWS::FMS::Policy.SecurityServicePolicyData",
|
|
87660
87761
|
"kind": "property",
|
|
@@ -90279,11 +90380,6 @@
|
|
|
90279
90380
|
"kind": "property",
|
|
90280
90381
|
"lexicon": "aws"
|
|
90281
90382
|
},
|
|
90282
|
-
"SmsConfiguration": {
|
|
90283
|
-
"resourceType": "AWS::Cognito::UserPool.SmsConfiguration",
|
|
90284
|
-
"kind": "property",
|
|
90285
|
-
"lexicon": "aws"
|
|
90286
|
-
},
|
|
90287
90383
|
"SmsMessageTemplateContent": {
|
|
90288
90384
|
"resourceType": "AWS::Wisdom::MessageTemplate.SmsMessageTemplateContent",
|
|
90289
90385
|
"kind": "property",
|
|
@@ -91351,6 +91447,9 @@
|
|
|
91351
91447
|
"resourceType": "AWS::SSM::Parameter",
|
|
91352
91448
|
"kind": "resource",
|
|
91353
91449
|
"lexicon": "aws",
|
|
91450
|
+
"attrs": {
|
|
91451
|
+
"Arn": "Arn"
|
|
91452
|
+
},
|
|
91354
91453
|
"propertyConstraints": {
|
|
91355
91454
|
"Type": {
|
|
91356
91455
|
"enum": [
|
|
@@ -91373,6 +91472,9 @@
|
|
|
91373
91472
|
},
|
|
91374
91473
|
"Name": {
|
|
91375
91474
|
"pattern": "^((?![aA][wW][sS]|[sS]{2}[mM])[\\w.-]+|\\/(?![aA][wW][sS]|[sS]{2}[mM])[\\w.-]+(\\/[\\w.-]+)+)$"
|
|
91475
|
+
},
|
|
91476
|
+
"Arn": {
|
|
91477
|
+
"pattern": "arn:aws(-[a-z0-9-]+)*:ssm:[a-z0-9-]+:[0-9]{12}:parameter/.+"
|
|
91376
91478
|
}
|
|
91377
91479
|
},
|
|
91378
91480
|
"createOnly": [
|
|
@@ -92021,6 +92123,11 @@
|
|
|
92021
92123
|
"Id"
|
|
92022
92124
|
]
|
|
92023
92125
|
},
|
|
92126
|
+
"StepAliasMapping": {
|
|
92127
|
+
"resourceType": "AWS::QuickSight::Flow.StepAliasMapping",
|
|
92128
|
+
"kind": "property",
|
|
92129
|
+
"lexicon": "aws"
|
|
92130
|
+
},
|
|
92024
92131
|
"StepFunctionsAction": {
|
|
92025
92132
|
"resourceType": "AWS::IoT::TopicRule.StepFunctionsAction",
|
|
92026
92133
|
"kind": "property",
|
|
@@ -93566,6 +93673,9 @@
|
|
|
93566
93673
|
"pattern": "^((arn:aws(-[^:]+)?:kms:[a-zA-Z0-9-]*:[0-9]{12}:((key/[a-zA-Z0-9-]{36})|(alias/[a-zA-Z0-9-_/]+)))|([a-zA-Z0-9-]{36})|(alias/[a-zA-Z0-9-_/]+))$",
|
|
93567
93674
|
"minLength": 1,
|
|
93568
93675
|
"maxLength": 2048
|
|
93676
|
+
},
|
|
93677
|
+
"SharingEnabled": {
|
|
93678
|
+
"default": false
|
|
93569
93679
|
}
|
|
93570
93680
|
},
|
|
93571
93681
|
"createOnly": [
|
|
@@ -95751,67 +95861,11 @@
|
|
|
95751
95861
|
"kind": "property",
|
|
95752
95862
|
"lexicon": "aws"
|
|
95753
95863
|
},
|
|
95754
|
-
"TestCase": {
|
|
95755
|
-
"resourceType": "AWS::AppTest::TestCase",
|
|
95756
|
-
"kind": "resource",
|
|
95757
|
-
"lexicon": "aws",
|
|
95758
|
-
"attrs": {
|
|
95759
|
-
"CreationTime": "CreationTime",
|
|
95760
|
-
"LastUpdateTime": "LastUpdateTime",
|
|
95761
|
-
"LatestVersion": "LatestVersion",
|
|
95762
|
-
"Status": "Status",
|
|
95763
|
-
"TestCaseArn": "TestCaseArn",
|
|
95764
|
-
"TestCaseId": "TestCaseId",
|
|
95765
|
-
"TestCaseVersion": "TestCaseVersion"
|
|
95766
|
-
},
|
|
95767
|
-
"propertyConstraints": {
|
|
95768
|
-
"CreationTime": {
|
|
95769
|
-
"format": "date-time"
|
|
95770
|
-
},
|
|
95771
|
-
"Description": {
|
|
95772
|
-
"minLength": 0,
|
|
95773
|
-
"maxLength": 1000
|
|
95774
|
-
},
|
|
95775
|
-
"LastUpdateTime": {
|
|
95776
|
-
"format": "date-time"
|
|
95777
|
-
},
|
|
95778
|
-
"Name": {
|
|
95779
|
-
"pattern": "^[A-Za-z][A-Za-z0-9_\\-]{1,59}$"
|
|
95780
|
-
},
|
|
95781
|
-
"TestCaseArn": {
|
|
95782
|
-
"pattern": "^arn:(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:([a-z]{2}-((iso[a-z]{0,1}-)|(gov-)){0,1}[a-z]+-[0-9]):[0-9]{12}:[A-Za-z0-9/][A-Za-z0-9:_/+=,@.-]{0,1023}$"
|
|
95783
|
-
},
|
|
95784
|
-
"TestCaseId": {
|
|
95785
|
-
"pattern": "^[A-Za-z0-9:/\\-]{1,100}$"
|
|
95786
|
-
}
|
|
95787
|
-
},
|
|
95788
|
-
"createOnly": [
|
|
95789
|
-
"Name"
|
|
95790
|
-
],
|
|
95791
|
-
"primaryIdentifier": [
|
|
95792
|
-
"TestCaseId"
|
|
95793
|
-
],
|
|
95794
|
-
"tagging": {
|
|
95795
|
-
"taggable": true,
|
|
95796
|
-
"tagOnCreate": true,
|
|
95797
|
-
"tagUpdatable": true
|
|
95798
|
-
}
|
|
95799
|
-
},
|
|
95800
95864
|
"TestCaseLatestVersion": {
|
|
95801
95865
|
"resourceType": "AWS::AppTest::TestCase.TestCaseLatestVersion",
|
|
95802
95866
|
"kind": "property",
|
|
95803
95867
|
"lexicon": "aws"
|
|
95804
95868
|
},
|
|
95805
|
-
"TestCase_Step": {
|
|
95806
|
-
"resourceType": "AWS::AppTest::TestCase.Step",
|
|
95807
|
-
"kind": "property",
|
|
95808
|
-
"lexicon": "aws"
|
|
95809
|
-
},
|
|
95810
|
-
"TestCase_TestCaseLatestVersion": {
|
|
95811
|
-
"resourceType": "AWS::AppTest::TestCase.TestCaseLatestVersion",
|
|
95812
|
-
"kind": "property",
|
|
95813
|
-
"lexicon": "aws"
|
|
95814
|
-
},
|
|
95815
95869
|
"TextAttributes": {
|
|
95816
95870
|
"resourceType": "AWS::Cases::Field.TextAttributes",
|
|
95817
95871
|
"kind": "property",
|
|
@@ -96069,6 +96123,11 @@
|
|
|
96069
96123
|
"kind": "property",
|
|
96070
96124
|
"lexicon": "aws"
|
|
96071
96125
|
},
|
|
96126
|
+
"ThresholdConfiguration": {
|
|
96127
|
+
"resourceType": "AWS::ECS::Service.ThresholdConfiguration",
|
|
96128
|
+
"kind": "property",
|
|
96129
|
+
"lexicon": "aws"
|
|
96130
|
+
},
|
|
96072
96131
|
"ThrottleSettings": {
|
|
96073
96132
|
"resourceType": "AWS::ApiGateway::UsagePlan.ThrottleSettings",
|
|
96074
96133
|
"kind": "property",
|
|
@@ -99172,6 +99231,82 @@
|
|
|
99172
99231
|
"ProviderName"
|
|
99173
99232
|
]
|
|
99174
99233
|
},
|
|
99234
|
+
"UserPoolRegionalConfigurationAttachment": {
|
|
99235
|
+
"resourceType": "AWS::Cognito::UserPoolRegionalConfigurationAttachment",
|
|
99236
|
+
"kind": "resource",
|
|
99237
|
+
"lexicon": "aws",
|
|
99238
|
+
"createOnly": [
|
|
99239
|
+
"UserPoolId"
|
|
99240
|
+
],
|
|
99241
|
+
"primaryIdentifier": [
|
|
99242
|
+
"UserPoolId"
|
|
99243
|
+
],
|
|
99244
|
+
"tagging": {
|
|
99245
|
+
"taggable": true,
|
|
99246
|
+
"tagOnCreate": true,
|
|
99247
|
+
"tagUpdatable": true
|
|
99248
|
+
}
|
|
99249
|
+
},
|
|
99250
|
+
"UserPoolRegionalConfigurationAttachment_CustomEmailSender": {
|
|
99251
|
+
"resourceType": "AWS::Cognito::UserPoolRegionalConfigurationAttachment.CustomEmailSender",
|
|
99252
|
+
"kind": "property",
|
|
99253
|
+
"lexicon": "aws"
|
|
99254
|
+
},
|
|
99255
|
+
"UserPoolRegionalConfigurationAttachment_CustomSMSSender": {
|
|
99256
|
+
"resourceType": "AWS::Cognito::UserPoolRegionalConfigurationAttachment.CustomSMSSender",
|
|
99257
|
+
"kind": "property",
|
|
99258
|
+
"lexicon": "aws"
|
|
99259
|
+
},
|
|
99260
|
+
"UserPoolRegionalConfigurationAttachment_EmailConfiguration": {
|
|
99261
|
+
"resourceType": "AWS::Cognito::UserPoolRegionalConfigurationAttachment.EmailConfiguration",
|
|
99262
|
+
"kind": "property",
|
|
99263
|
+
"lexicon": "aws"
|
|
99264
|
+
},
|
|
99265
|
+
"UserPoolRegionalConfigurationAttachment_InboundFederation": {
|
|
99266
|
+
"resourceType": "AWS::Cognito::UserPoolRegionalConfigurationAttachment.InboundFederation",
|
|
99267
|
+
"kind": "property",
|
|
99268
|
+
"lexicon": "aws"
|
|
99269
|
+
},
|
|
99270
|
+
"UserPoolRegionalConfigurationAttachment_LambdaConfig": {
|
|
99271
|
+
"resourceType": "AWS::Cognito::UserPoolRegionalConfigurationAttachment.LambdaConfig",
|
|
99272
|
+
"kind": "property",
|
|
99273
|
+
"lexicon": "aws"
|
|
99274
|
+
},
|
|
99275
|
+
"UserPoolRegionalConfigurationAttachment_PreTokenGenerationConfig": {
|
|
99276
|
+
"resourceType": "AWS::Cognito::UserPoolRegionalConfigurationAttachment.PreTokenGenerationConfig",
|
|
99277
|
+
"kind": "property",
|
|
99278
|
+
"lexicon": "aws"
|
|
99279
|
+
},
|
|
99280
|
+
"UserPoolRegionalConfigurationAttachment_SmsConfiguration": {
|
|
99281
|
+
"resourceType": "AWS::Cognito::UserPoolRegionalConfigurationAttachment.SmsConfiguration",
|
|
99282
|
+
"kind": "property",
|
|
99283
|
+
"lexicon": "aws"
|
|
99284
|
+
},
|
|
99285
|
+
"UserPoolReplica": {
|
|
99286
|
+
"resourceType": "AWS::Cognito::UserPoolReplica",
|
|
99287
|
+
"kind": "resource",
|
|
99288
|
+
"lexicon": "aws",
|
|
99289
|
+
"propertyConstraints": {
|
|
99290
|
+
"RegionName": {
|
|
99291
|
+
"minLength": 5,
|
|
99292
|
+
"maxLength": 32
|
|
99293
|
+
}
|
|
99294
|
+
},
|
|
99295
|
+
"createOnly": [
|
|
99296
|
+
"UserPoolId",
|
|
99297
|
+
"RegionName",
|
|
99298
|
+
"UserPoolTagsAtCreate"
|
|
99299
|
+
],
|
|
99300
|
+
"primaryIdentifier": [
|
|
99301
|
+
"UserPoolId",
|
|
99302
|
+
"RegionName"
|
|
99303
|
+
],
|
|
99304
|
+
"tagging": {
|
|
99305
|
+
"taggable": true,
|
|
99306
|
+
"tagOnCreate": true,
|
|
99307
|
+
"tagUpdatable": true
|
|
99308
|
+
}
|
|
99309
|
+
},
|
|
99175
99310
|
"UserPoolResourceServer": {
|
|
99176
99311
|
"resourceType": "AWS::Cognito::UserPoolResourceServer",
|
|
99177
99312
|
"kind": "resource",
|
|
@@ -99347,6 +99482,16 @@
|
|
|
99347
99482
|
"kind": "property",
|
|
99348
99483
|
"lexicon": "aws"
|
|
99349
99484
|
},
|
|
99485
|
+
"UserPool_IssuerConfiguration": {
|
|
99486
|
+
"resourceType": "AWS::Cognito::UserPool.IssuerConfiguration",
|
|
99487
|
+
"kind": "property",
|
|
99488
|
+
"lexicon": "aws"
|
|
99489
|
+
},
|
|
99490
|
+
"UserPool_KeyConfiguration": {
|
|
99491
|
+
"resourceType": "AWS::Cognito::UserPool.KeyConfiguration",
|
|
99492
|
+
"kind": "property",
|
|
99493
|
+
"lexicon": "aws"
|
|
99494
|
+
},
|
|
99350
99495
|
"UserPool_LambdaConfig": {
|
|
99351
99496
|
"resourceType": "AWS::Cognito::UserPool.LambdaConfig",
|
|
99352
99497
|
"kind": "property",
|
|
@@ -101013,7 +101158,7 @@
|
|
|
101013
101158
|
"maxLength": 255
|
|
101014
101159
|
},
|
|
101015
101160
|
"VersionDescription": {
|
|
101016
|
-
"pattern": "^([\\p{L}\\p{N}_.:\\/=+\\-@,]+[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@,]*)$",
|
|
101161
|
+
"pattern": "^([\\p{L}\\p{N}_.:\\/=+\\-@,()']+[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@,()']*)$",
|
|
101017
101162
|
"minLength": 1,
|
|
101018
101163
|
"maxLength": 4096
|
|
101019
101164
|
},
|
|
@@ -101067,7 +101212,9 @@
|
|
|
101067
101212
|
},
|
|
101068
101213
|
"createOnly": [
|
|
101069
101214
|
"ContainerProvider",
|
|
101070
|
-
"Name"
|
|
101215
|
+
"Name",
|
|
101216
|
+
"SecurityConfigurationId",
|
|
101217
|
+
"SessionEnabled"
|
|
101071
101218
|
],
|
|
101072
101219
|
"primaryIdentifier": [
|
|
101073
101220
|
"Id"
|
|
@@ -102302,6 +102449,10 @@
|
|
|
102302
102449
|
"pattern": "^(arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:certificate/[0-9a-z-]+)?$",
|
|
102303
102450
|
"maxLength": 2048
|
|
102304
102451
|
},
|
|
102452
|
+
"IdleTimeoutSeconds": {
|
|
102453
|
+
"minimum": 60,
|
|
102454
|
+
"maximum": 600
|
|
102455
|
+
},
|
|
102305
102456
|
"CustomDomainName": {
|
|
102306
102457
|
"minLength": 3,
|
|
102307
102458
|
"maxLength": 255
|
|
@@ -104073,7 +104224,12 @@
|
|
|
104073
104224
|
"writeOnly": [
|
|
104074
104225
|
"WorkGroupConfigurationUpdates",
|
|
104075
104226
|
"RecursiveDeleteOption",
|
|
104076
|
-
"WorkGroupConfiguration/AdditionalConfiguration"
|
|
104227
|
+
"WorkGroupConfiguration/AdditionalConfiguration",
|
|
104228
|
+
"WorkGroupConfiguration/EngineConfiguration/CoordinatorDpuSize",
|
|
104229
|
+
"WorkGroupConfiguration/EngineConfiguration/MaxConcurrentDpus",
|
|
104230
|
+
"WorkGroupConfiguration/EngineConfiguration/DefaultExecutorDpuSize",
|
|
104231
|
+
"WorkGroupConfiguration/EngineConfiguration/AdditionalConfigs",
|
|
104232
|
+
"WorkGroupConfiguration/EngineConfiguration/SparkProperties"
|
|
104077
104233
|
],
|
|
104078
104234
|
"primaryIdentifier": [
|
|
104079
104235
|
"Name"
|