Skip to content

Commit 67e39ee

Browse files
Update CloudFormation schemas to 2024-09-09 (#3647)
Co-authored-by: kddejong <[email protected]> Co-authored-by: Kevin DeJong <[email protected]>
1 parent 75bfb28 commit 67e39ee

File tree

190 files changed

+12201
-293292
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

190 files changed

+12201
-293292
lines changed

docs/rules.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To include these rules, use the `-e/include-experimental` argument when running
4646
## Rules
4747
(_This documentation is generated by running `cfn-lint --update-documentation`, do not alter this manually_)
4848

49-
The following **230** rules are applied by this linter:
49+
The following **232** rules are applied by this linter:
5050

5151
| Rule ID | Title | Description | Config<br />(Name:Type:Default) | Source | Tags |
5252
| -------- | ----- | ----------- | ---------- | ------ | ---- |
@@ -140,7 +140,7 @@ The following **230** rules are applied by this linter:
140140
| [E3041<a name="E3041"></a>](../src/cfnlint/rules/resources/route53/RecordSetName.py) | RecordSet HostedZoneName is a superdomain of or equal to Name | In a RecordSet, the HostedZoneName must be a superdomain of or equal to the Name being validated | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name) | `resource`,`properties`,`route53` |
141141
| [E3042<a name="E3042"></a>](../src/cfnlint/rules/resources/ecs/TaskDefinitionEssentialContainer.py) | Validate at least one essential container is specified | Check that every TaskDefinition specifies at least one essential container | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-containerdefinitions.html#cfn-ecs-taskdefinition-containerdefinition-essential) | `properties`,`ecs`,`task`,`container`,`fargate` |
142142
| [E3043<a name="E3043"></a>](../src/cfnlint/rules/resources/cloudformation/NestedStackParameters.py) | Validate parameters for in a nested stack | Evalute if parameters for a nested stack are specified and if parameters are specified for a nested stack that aren't required. | | [Source](https://github.com/awslabs/cfn-lint) | `resources`,`cloudformation` |
143-
| [E3044<a name="E3044"></a>](../src/cfnlint/rules/resources/ecs/FargateDeploymentSchedulingStrategy.py) | ECS service using FARGATE or EXTERNAL can only use SchedulingStrategy of REPLICA | When using a TargetType of Fargate or External the SchedulingStrategy has to be Replica | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy) | `properties`,`ecs`,`service`,`container`,`fargate` |
143+
| [E3044<a name="E3044"></a>](../src/cfnlint/rules/resources/ecs/FargateDeploymentSchedulingStrategy.py) | ECS service using FARGATE or EXTERNAL can only use SchedulingStrategy of REPLICA | When using a LaunchType of Fargate the SchedulingStrategy has to be Replica | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-schedulingstrategy) | `properties`,`ecs`,`service`,`container`,`fargate` |
144144
| [E3045<a name="E3045"></a>](../src/cfnlint/rules/resources/s3/AccessControlOwnership.py) | Validate AccessControl are set with OwnershipControls | When using AccessControl other than private you must also configure OwnershipControls. The default is bucket owner enforced which disables ACLs. | | [Source](https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html) | `resources`,`s3` |
145145
| [E3046<a name="E3046"></a>](../src/cfnlint/rules/resources/ecs/LogConfiguration.py) | Validate ECS task logging configuration for awslogs | When 'awslogs' the options 'awslogs-group' and 'awslogs-region' are required | | [Source]() | `resources` |
146146
| [E3047<a name="E3047"></a>](../src/cfnlint/rules/resources/ecs/FargateCpuMemory.py) | Validate ECS Fargate tasks have the right combination of CPU and memory | When using a ECS Fargate task there is a specfic combination of memory and cpu that can be used | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-memory) | `properties`,`ecs`,`service`,`container`,`fargate` |
@@ -152,6 +152,7 @@ The following **230** rules are applied by this linter:
152152
| [E3053<a name="E3053"></a>](../src/cfnlint/rules/resources/ecs/TaskDefinitionAwsVpc.py) | Validate ECS task definition is has correct values for 'HostPort' | The 'HostPort' must either be undefined or equal to the 'ContainerPort' value | | [Source]() | `resources`,`ecs` |
153153
| [E3054<a name="E3054"></a>](../src/cfnlint/rules/resources/ecs/ServiceFargate.py) | Validate ECS service using Fargate uses TaskDefinition that allows Fargate | When using an ECS service with 'LaunchType' of 'FARGATE' the associated task definition must have 'RequiresCompatibilities' specified with 'FARGATE' listed | | [Source]() | `resources`,`ecs` |
154154
| [E3055<a name="E3055"></a>](../src/cfnlint/rules/resources/CreationPolicy.py) | Check CreationPolicy values for Resources | Check that the CreationPolicy values are valid | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-creationpolicy.html) | `resources`,`creationPolicy` |
155+
| [E3056<a name="E3056"></a>](../src/cfnlint/rules/resources/ecs/ServiceHealthCheckGracePeriodSeconds.py) | ECS service using HealthCheckGracePeriodSeconds must also have LoadBalancers specified | When using a HealthCheckGracePeriodSeconds on an ECS service, the service must also have a LoadBalancers specified with at least one LoadBalancer in the array. | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds) | `properties`,`ecs`,`service`,`container` |
155156
| [E3057<a name="E3057"></a>](../src/cfnlint/rules/resources/cloudfront/DistributionTargetOriginId.py) | Validate that CloudFront TargetOriginId is a specified Origin | CloudFront TargetOriginId has to map to an Origin Id that is in the same DistributionConfig | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid) | `properties`,`cloudfront` |
156157
| [E3503<a name="E3503"></a>](../src/cfnlint/rules/resources/certificatemanager/DomainValidationOptions.py) | ValidationDomain is superdomain of DomainName | In ValidationDomainOptions, the ValidationDomain must be a superdomain of the DomainName being validated | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-certificate-domainvalidationoption.html#cfn-certificatemanager-certificate-domainvalidationoption-validationdomain) | `certificate`,`certificatemanager`,`domainvalidationoptions`,`validationdomain` |
157158
| [E3504<a name="E3504"></a>](../src/cfnlint/rules/resources/backup/BackupPlanLifecycleRule.py) | Check minimum 90 period is met between BackupPlan cold and delete | Check that Backup plans with lifecycle rules have >= 90 days between cold and delete | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-lifecycleresourcetype.html) | `properties`,`backup`,`plan`,`lifecycle` |
@@ -182,6 +183,7 @@ The following **230** rules are applied by this linter:
182183
| [E3671<a name="E3671"></a>](../src/cfnlint/rules/resources/ectwo/Ebs.py) | Validate block device mapping configuration | Certain volume types require Iops to be specified | | [Source]() | `resources`,`ec2` |
183184
| [E3672<a name="E3672"></a>](../src/cfnlint/rules/resources/dax/ClusterNodeTypeEnum.py) | Validate the cluster node type for a DAX Cluster | Validates the DAX cluster instance types based on region and data gathered from the pricing APIs | | [Source]() | `resources` |
184185
| [E3673<a name="E3673"></a>](../src/cfnlint/rules/resources/ectwo/InstanceImageId.py) | Validate if an ImageId is required | Validate if an ImageID is required. It can be required if the associated LaunchTemplate doesn't specify an ImageID | | [Source]() | `resources`,`ec2` |
186+
| [E3674<a name="E3674"></a>](../src/cfnlint/rules/resources/ectwo/PrivateIpWithNetworkInterface.py) | Primary cannoy be True when PrivateIpAddress is specified | Only specify the private IP address for an instance in one spot | | [Source]() | `resources`,`ec2` |
185187
| [E3675<a name="E3675"></a>](../src/cfnlint/rules/resources/emr/ClusterInstanceTypeConfigInstanceTypeEnum.py) | Validate EMR cluster instance type | Validates the EMR cluster instance types based on region and data gathered from the pricing APIs | | [Source]() | `resources` |
186188
| [E3676<a name="E3676"></a>](../src/cfnlint/rules/resources/elasticloadbalancingv2/ListenerCertificate.py) | Validate ELBv2 protocols that require certificates have a certificate specified | When using HTTP or TLS you must specify a certificate | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-certificates) | `resources` |
187189
| [E3677<a name="E3677"></a>](../src/cfnlint/rules/resources/lmbd/FunctionZipfileRuntimeEnum.py) | Validate Lambda using ZipFile requires an allowable runtime | Using the ZipFile attribute requires a javascript or python runtime to be specified | | [Source]() | `resources` |

src/cfnlint/data/AdditionalSpecs/Policies.json

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,6 +539,7 @@
539539
"DeleteExtension",
540540
"DeleteExtensionAssociation",
541541
"DeleteHostedConfigurationVersion",
542+
"GetAccountSettings",
542543
"GetApplication",
543544
"GetConfiguration",
544545
"GetConfigurationProfile",
@@ -563,6 +564,7 @@
563564
"StopDeployment",
564565
"TagResource",
565566
"UntagResource",
567+
"UpdateAccountSettings",
566568
"UpdateApplication",
567569
"UpdateConfigurationProfile",
568570
"UpdateDeploymentStrategy",
@@ -4065,6 +4067,7 @@
40654067
"DeleteTrustStore",
40664068
"DeregisterTargets",
40674069
"DescribeAccountLimits",
4070+
"DescribeListenerAttributes",
40684071
"DescribeListenerCertificates",
40694072
"DescribeListeners",
40704073
"DescribeLoadBalancerAttributes",
@@ -4082,6 +4085,7 @@
40824085
"GetTrustStoreCaCertificatesBundle",
40834086
"GetTrustStoreRevocationContent",
40844087
"ModifyListener",
4088+
"ModifyListenerAttributes",
40854089
"ModifyLoadBalancerAttributes",
40864090
"ModifyRule",
40874091
"ModifyTargetGroup",
@@ -12729,6 +12733,7 @@
1272912733
"DeleteRetentionPolicy",
1273012734
"DeleteSubscriptionFilter",
1273112735
"DescribeAccountPolicies",
12736+
"DescribeConfigurationTemplates",
1273212737
"DescribeDeliveries",
1273312738
"DescribeDeliveryDestinations",
1273412739
"DescribeDeliverySources",
@@ -12784,6 +12789,7 @@
1278412789
"UntagLogGroup",
1278512790
"UntagResource",
1278612791
"UpdateAnomaly",
12792+
"UpdateDeliveryConfiguration",
1278712793
"UpdateLogAnomalyDetector",
1278812794
"UpdateLogDelivery"
1278912795
],
@@ -13724,11 +13730,16 @@
1372413730
"ARNRegex": "^arn:aws:profile:.+:.+:.+",
1372513731
"Actions": [
1372613732
"AddProfileKey",
13733+
"BatchGetCalculatedAttributeForProfile",
13734+
"BatchGetProfile",
1372713735
"CreateCalculatedAttributeDefinition",
1372813736
"CreateDomain",
1372913737
"CreateEventStream",
1373013738
"CreateIntegrationWorkflow",
1373113739
"CreateProfile",
13740+
"CreateSegmentDefinition",
13741+
"CreateSegmentEstimate",
13742+
"CreateSegmentSnapshot",
1373213743
"CreateSnapshot",
1373313744
"DeleteCalculatedAttributeDefinition",
1373413745
"DeleteDomain",
@@ -13738,6 +13749,7 @@
1373813749
"DeleteProfileKey",
1373913750
"DeleteProfileObject",
1374013751
"DeleteProfileObjectType",
13752+
"DeleteSegmentDefinition",
1374113753
"DeleteWorkflow",
1374213754
"DetectProfileObjectType",
1374313755
"GetAutoMergingPreview",
@@ -13750,6 +13762,10 @@
1375013762
"GetMatches",
1375113763
"GetProfileObjectType",
1375213764
"GetProfileObjectTypeTemplate",
13765+
"GetSegmentDefinition",
13766+
"GetSegmentEstimate",
13767+
"GetSegmentMembership",
13768+
"GetSegmentSnapshot",
1375313769
"GetSimilarProfiles",
1375413770
"GetSnapshot",
1375513771
"GetWorkflow",
@@ -13761,10 +13777,13 @@
1376113777
"ListEventStreams",
1376213778
"ListIdentityResolutionJobs",
1376313779
"ListIntegrations",
13780+
"ListObjectTypeAttributes",
13781+
"ListProfileAttributeValues",
1376413782
"ListProfileObjectTypeTemplates",
1376513783
"ListProfileObjectTypes",
1376613784
"ListProfileObjects",
1376713785
"ListRuleBasedMatches",
13786+
"ListSegmentDefinitions",
1376813787
"ListTagsForResource",
1376913788
"ListWorkflows",
1377013789
"MergeProfiles",
@@ -14337,6 +14356,7 @@
1433714356
"CopyImage",
1433814357
"CopySnapshot",
1433914358
"CreateCapacityReservation",
14359+
"CreateCapacityReservationBySplitting",
1434014360
"CreateCapacityReservationFleet",
1434114361
"CreateCarrierGateway",
1434214362
"CreateClientVpnEndpoint",
@@ -14851,6 +14871,7 @@
1485114871
"MonitorInstances",
1485214872
"MoveAddressToVpc",
1485314873
"MoveByoipCidrToIpam",
14874+
"MoveCapacityReservationInstances",
1485414875
"PauseVolumeIO",
1485514876
"ProvisionByoipCidr",
1485614877
"ProvisionIpamByoasn",
@@ -14946,13 +14967,17 @@
1494614967
"ec2:CloudwatchLogStreamArn",
1494714968
"ec2:CpuOptionsAmdSevSnp",
1494814969
"ec2:CreateAction",
14970+
"ec2:CreateDate",
1494914971
"ec2:DPDTimeoutSeconds",
14972+
"ec2:DestinationCapacityReservationId",
1495014973
"ec2:DhcpOptionsID",
1495114974
"ec2:DirectoryArn",
1495214975
"ec2:Domain",
1495314976
"ec2:EbsOptimized",
1495414977
"ec2:ElasticGpuType",
1495514978
"ec2:Encrypted",
14979+
"ec2:EndDate",
14980+
"ec2:EndDateType",
1495614981
"ec2:FisActionId",
1495714982
"ec2:FisTargetArns",
1495814983
"ec2:GatewayType",
@@ -14963,9 +14988,12 @@
1496314988
"ec2:InsideTunnelCidr",
1496414989
"ec2:InsideTunnelIpv6Cidr",
1496514990
"ec2:InstanceAutoRecovery",
14991+
"ec2:InstanceCount",
1496614992
"ec2:InstanceID",
1496714993
"ec2:InstanceMarketType",
14994+
"ec2:InstanceMatchCriteria",
1496814995
"ec2:InstanceMetadataTags",
14996+
"ec2:InstancePlatform",
1496914997
"ec2:InstanceProfile",
1497014998
"ec2:InstanceType",
1497114999
"ec2:InternetGatewayID",
@@ -15022,6 +15050,7 @@
1502215050
"ec2:SnapshotID",
1502315051
"ec2:SnapshotLockDuration",
1502415052
"ec2:SnapshotTime",
15053+
"ec2:SourceCapacityReservationId",
1502515054
"ec2:SourceInstanceARN",
1502615055
"ec2:SourceOutpostArn",
1502715056
"ec2:Subnet",
@@ -19432,19 +19461,26 @@
1943219461
"ARNFormat": "arn:aws:wisdom:${Region}:${Account}:${Resource}/${ResourceId}",
1943319462
"ARNRegex": "^arn:aws:wisdom:.+:.+:.+",
1943419463
"Actions": [
19464+
"ActivateMessageTemplate",
1943519465
"CreateAssistant",
1943619466
"CreateAssistantAssociation",
1943719467
"CreateContent",
1943819468
"CreateContentAssociation",
1943919469
"CreateKnowledgeBase",
19470+
"CreateMessageTemplate",
19471+
"CreateMessageTemplateAttachment",
19472+
"CreateMessageTemplateVersion",
1944019473
"CreateQuickResponse",
1944119474
"CreateSession",
19475+
"DeactivateMessageTemplate",
1944219476
"DeleteAssistant",
1944319477
"DeleteAssistantAssociation",
1944419478
"DeleteContent",
1944519479
"DeleteContentAssociation",
1944619480
"DeleteImportJob",
1944719481
"DeleteKnowledgeBase",
19482+
"DeleteMessageTemplate",
19483+
"DeleteMessageTemplateAttachment",
1944819484
"DeleteQuickResponse",
1944919485
"GetAssistant",
1945019486
"GetAssistantAssociation",
@@ -19453,6 +19489,7 @@
1945319489
"GetContentSummary",
1945419490
"GetImportJob",
1945519491
"GetKnowledgeBase",
19492+
"GetMessageTemplate",
1945619493
"GetQuickResponse",
1945719494
"GetRecommendations",
1945819495
"GetSession",
@@ -19462,13 +19499,17 @@
1946219499
"ListContents",
1946319500
"ListImportJobs",
1946419501
"ListKnowledgeBases",
19502+
"ListMessageTemplateVersions",
19503+
"ListMessageTemplates",
1946519504
"ListQuickResponses",
1946619505
"ListTagsForResource",
1946719506
"NotifyRecommendationsReceived",
1946819507
"PutFeedback",
1946919508
"QueryAssistant",
1947019509
"RemoveKnowledgeBaseTemplateUri",
19510+
"RenderMessageTemplate",
1947119511
"SearchContent",
19512+
"SearchMessageTemplates",
1947219513
"SearchQuickResponses",
1947319514
"SearchSessions",
1947419515
"StartContentUpload",
@@ -19477,6 +19518,8 @@
1947719518
"UntagResource",
1947819519
"UpdateContent",
1947919520
"UpdateKnowledgeBaseTemplateUri",
19521+
"UpdateMessageTemplate",
19522+
"UpdateMessageTemplateMetadata",
1948019523
"UpdateQuickResponse",
1948119524
"UpdateSession"
1948219525
],
@@ -19486,6 +19529,8 @@
1948619529
"aws:RequestTag/${TagKey}",
1948719530
"aws:ResourceTag/${TagKey}",
1948819531
"aws:TagKeys",
19532+
"wisdom:MessageTemplate/RoutingProfileArn",
19533+
"wisdom:SearchFilter/Qualifier",
1948919534
"wisdom:SearchFilter/RoutingProfileArn"
1949019535
]
1949119536
},
@@ -19774,6 +19819,7 @@
1977419819
"AuthorizeDBSecurityGroupIngress",
1977519820
"BacktrackDBCluster",
1977619821
"CancelExportTask",
19822+
"CopyCustomDBEngineVersion",
1977719823
"CopyDBClusterParameterGroup",
1977819824
"CopyDBClusterSnapshot",
1977919825
"CopyDBParameterGroup",
@@ -19847,9 +19893,9 @@
1984719893
"DescribeDBSecurityGroups",
1984819894
"DescribeDBShardGroups",
1984919895
"DescribeDBSnapshotAttributes",
19896+
"DescribeDBSnapshotTenantDatabases",
1985019897
"DescribeDBSnapshots",
1985119898
"DescribeDBSubnetGroups",
19852-
"DescribeDbSnapshotTenantDatabases",
1985319899
"DescribeEngineDefaultClusterParameters",
1985419900
"DescribeEngineDefaultParameters",
1985519901
"DescribeEventCategories",
@@ -20844,6 +20890,7 @@
2084420890
"ListBucket",
2084520891
"ListBucketMultipartUploads",
2084620892
"ListBucketVersions",
20893+
"ListCallerAccessGrants",
2084720894
"ListJobs",
2084820895
"ListMultiRegionAccessPoints",
2084920896
"ListMultipartUploadParts",
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"f6edd82515a16676926f5f3a12d52efb\"", "url": "https://schema.cloudformation.eu-south-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"a86e50b288ee4f4dd6e651ea549ac7de\"", "url": "https://schema.cloudformation.eu-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"972c9c66abd3c137d444e53ebdd3f145\"", "url": "https://schema.cloudformation.cn-north-1.amazonaws.com.cn/CloudformationSchema.zip"}
1+
{"etag": "\"fd28205e00e128a44509fd6455f9c222\"", "url": "https://schema.cloudformation.cn-north-1.amazonaws.com.cn/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"77b7d56615ac52645e5a806c8856ce9e\"", "url": "https://schema.cloudformation.us-gov-east-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"9c86f750034fd005a1b21c6f9690b49b\"", "url": "https://schema.cloudformation.us-gov-east-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"8f79f8805b7537d546dc63450fd56a1b\"", "url": "https://schema.cloudformation.me-south-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"5c22f3c0ac78e9532fc06d49f4db45ef\"", "url": "https://schema.cloudformation.me-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"0bcc71a73165ccfb58eb513536a7184e\"", "url": "https://schema.cloudformation.us-gov-west-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"5f569fa90b0d1f9742e1e19a9bde5c57\"", "url": "https://schema.cloudformation.us-gov-west-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"2dbd8e8abff7e7518cb07bdbb155d843\"", "url": "https://schema.cloudformation.me-central-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"72ab9a453cca76c463acf75c805a6ae5\"", "url": "https://schema.cloudformation.me-central-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"3423c7fa487a9b0388b872d6f066a055\"", "url": "https://schema.cloudformation.eu-west-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"1fa31b77aadc32b6aee47e868309cc1c\"", "url": "https://schema.cloudformation.eu-west-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"c07546067edbe91211f62c41893f72f1\"", "url": "https://schema.cloudformation.cn-northwest-1.amazonaws.com.cn/CloudformationSchema.zip"}
1+
{"etag": "\"f9abffb7469e3261317f8c3649bbab2a\"", "url": "https://schema.cloudformation.cn-northwest-1.amazonaws.com.cn/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"48566226bdcbff3cb167c745d575e48d\"", "url": "https://schema.cloudformation.af-south-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"8c69056580dcf3101dd18a49e3158d10\"", "url": "https://schema.cloudformation.af-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"92cfd52881d5c4374a41db95c11d7626\"", "url": "https://schema.cloudformation.us-west-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"0c9c7b7ca2d73cc8bd20375184a57a6f\"", "url": "https://schema.cloudformation.us-west-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"3bb396a27ad97f604ecf96040fc830d4\"", "url": "https://schema.cloudformation.ap-southeast-5.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"0f99015e3e2abb3cf1ec93499f6ef618\"", "url": "https://schema.cloudformation.ap-southeast-5.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"6268d8d9cd7faa977e4c2f0af2566842\"", "url": "https://schema.cloudformation.eu-central-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"c6a5bc79544e9f53796dc86d89026759\"", "url": "https://schema.cloudformation.eu-central-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"3e29e9eb6036e382722aa92e8580522b\"", "url": "https://schema.cloudformation.ap-south-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"0f053230f8ef526ee06b709d5584dbff\"", "url": "https://schema.cloudformation.ap-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"2263b6d2d3f0dda9e2ad8b4c54418d9a\"", "url": "https://schema.cloudformation.ap-southeast-4.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"bc16edb44b1d9092c5da913722ba9e0e\"", "url": "https://schema.cloudformation.ap-southeast-4.amazonaws.com/CloudformationSchema.zip"}

0 commit comments

Comments
 (0)