sfn-yaml-macro icon indicating copy to clipboard operation
sfn-yaml-macro copied to clipboard

DEPRECATED - An AWS CloudFormation macro to allow the definition of Amazon States Language in YAML within a CloudFormation template

Results 1 sfn-yaml-macro issues
Sort by recently updated
recently updated
newest added

Example: ``` StateMachine: Type: AWS::StepFunctions::StateMachine Properties: StateMachineName: !Sub '${AWS::StackName}-StateMachine' DefinitionString: StartAt: FindKeysQuery States: FindKeysQuery: Type: Pass Next: Success ResultPath: $.query Result: !Sub | SELECT DISTINCT "$path" FROM "${LogsDatabase}"."${SourceTable}" WHERE from_unixtime(timestamp/1000)...