Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(cfnspec): v101.0.0 introduced specific types on several types that previously were typed as json #23448

Merged
merged 33 commits into from Dec 23, 2022
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b892f6d
AWS Backup
madeline-k Dec 22, 2022
a8e4047
CloudFormation
madeline-k Dec 22, 2022
450d032
CodeGuruProfiler
madeline-k Dec 22, 2022
11dc1f3
Config
madeline-k Dec 22, 2022
69bd208
Connect
madeline-k Dec 22, 2022
8d768be
DataBrew
madeline-k Dec 22, 2022
9a540bf
EC2
madeline-k Dec 22, 2022
6c71fd5
ECR
madeline-k Dec 22, 2022
f5d1a2c
ElastiCache
madeline-k Dec 22, 2022
b64eb7d
FIS
madeline-k Dec 23, 2022
dbf875e
Forecast
madeline-k Dec 23, 2022
67cec5f
GreengrassV2
madeline-k Dec 23, 2022
0dc64af
IoT
madeline-k Dec 23, 2022
3aa0133
IoTCoreDeviceAdvisor
madeline-k Dec 23, 2022
f2265bc
IoTSiteWise
madeline-k Dec 23, 2022
388b757
IoTTwinMaker
madeline-k Dec 23, 2022
1562d94
IoTWireless
madeline-k Dec 23, 2022
6660ec6
Lex
madeline-k Dec 23, 2022
5e56e16
LookoutEquipment
madeline-k Dec 23, 2022
f5f58bc
MemoryDB
madeline-k Dec 23, 2022
19243e9
Personalize
madeline-k Dec 23, 2022
1a2c615
Redshift
madeline-k Dec 23, 2022
e17b669
Route53
madeline-k Dec 23, 2022
d0ff7bc
S3
madeline-k Dec 23, 2022
98cffce
S3ObjectLambda
madeline-k Dec 23, 2022
6c29414
S3Outposts
madeline-k Dec 23, 2022
9112024
SageMaker
madeline-k Dec 23, 2022
e219c80
Transfer
madeline-k Dec 23, 2022
076a20c
WAFv2
madeline-k Dec 23, 2022
25a3d7f
fix copy-paste error in IoTTwinMaker
madeline-k Dec 23, 2022
f5326f8
Revert "chore: fixes for upcoming cfnspec"
madeline-k Dec 23, 2022
8f817d8
add back change to comment out resource-attribute awslint rule
madeline-k Dec 23, 2022
bcb26d5
Merge branch 'main' into madeline-k/fix-cfn-spec-primitive-type-json
mergify[bot] Dec 23, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1,63 @@
{
"ResourceTypes": {
"AWS::Backup::ReportPlan": {
"patch": {
"description": "This patch fixes all types that were previously typed as Json, and CfnSpec v101.0.0 added types to them, which is a breaking change.",
"operations": [
{
"op": "remove",
"path": "/Properties/ReportDeliveryChannel/Type"
},
{
"op": "add",
"path": "/Properties/ReportDeliveryChannel/PrimitiveType",
"value": "Json"
},
{
"op": "remove",
"path": "/Properties/ReportSetting/Type"
},
{
"op": "add",
"path": "/Properties/ReportSetting/PrimitiveType",
"value": "Json"
}
]
}
}
},
"PropertyTypes": {
"AWS::Backup::BackupSelection.BackupSelectionResourceType": {
"patch": {
"description": "This patch fixes all types that were previously typed as Json, and CfnSpec v101.0.0 added types to them, which is a breaking change.",
"operations": [
{
"op": "remove",
"path": "/Properties/Conditions/Type"
},
{
"op": "add",
"path": "/Properties/Conditions/PrimitiveType",
"value": "Json"
}
]
}
},
"AWS::Backup::Framework.FrameworkControl": {
"patch": {
"description": "This patch fixes all types that were previously typed as Json, and CfnSpec v101.0.0 added types to them, which is a breaking change.",
"operations": [
{
"op": "remove",
"path": "/Properties/ControlScope/Type"
},
{
"op": "add",
"path": "/Properties/ControlScope/PrimitiveType",
"value": "Json"
}
]
}
}
}
}