Skip to content

Commit

Permalink
Move rule to E2532 to E3601
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong committed Jul 13, 2024
1 parent 7aeacf5 commit fb8cd65
Show file tree
Hide file tree
Showing 6 changed files with 394 additions and 450 deletions.
202 changes: 0 additions & 202 deletions src/cfnlint/rules/resources/stepfunctions/StateMachine.py

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@
from cfnlint.schema.resolver import RefResolver


class Configuration(CfnLintJsonSchema):
class StateMachineDefinition(CfnLintJsonSchema):
id = "E3601"
shortdesc = "Basic CloudFormation Resource Check"
shortdesc = "Validate the structure of a StateMachine definition"
description = (
"Making sure the basic CloudFormation resources are properly configured"
"Validate the Definition or DefinitionString inside a "
"AWS::StepFunctions::StateMachine resource"
)
source_url = "https://github.com/aws-cloudformation/cfn-lint"
tags = ["resources"]
source_url = "https://docs.aws.amazon.com/step-functions/latest/dg/amazon-states-language-state-machine-structure.html"
tags = ["resources", "statemachine"]

def __init__(self):
super().__init__(
Expand Down

This file was deleted.

Loading

0 comments on commit fb8cd65

Please sign in to comment.