update_state_machine - Boto3 1.34.87 documentation
Updates an existing state machine by modifying its definition, roleArn, or loggingConfiguration. Running executions will continue to use the previous definition and roleArn. You must include at least one of definition or roleArn or you will receive a MissingRequiredParameter error.
A qualified state machine ARN refers to a Distributed Map state defined within a state machine. For example, the qualified state machine ARN arn:partition:states:region:account-id:stateMachine:stateMachineName/mapStateLabel refers to a Distributed Map state with a label mapStateLabel in the state machine named stateMachineName.
A qualified state machine ARN can either refer to a Distributed Map state defined within a state machine, a version ARN, or an alias ARN.
The following are some examples of qualified and unqualified state machine ARNs:
Note
If you provide a qualified state machine ARN that refers to a Distributed Map state, the request fails with ValidationException.
Note
If you provide a qualified state machine ARN that refers to a version ARN or an alias ARN, the request starts execution for that version or alias.
After you update your state machine, you can set the publish parameter to true in the same action to publish a new version. This way, you can opt-in to strict versioning of your state machine.
Note
Step Functions assigns monotonically increasing integers for state machine versions, starting at version number 1.
Note
All StartExecution calls within a few seconds use the updated definition and roleArn. Executions started immediately after you call UpdateStateMachine may use the previous state machine definition and roleArn.
See also: AWS API Documentation
Request Syntax
response = client.update_state_machine( stateMachineArn='string', definition='string', roleArn='string', loggingConfiguration={ 'level': 'ALL'|'ERROR'|'FATAL'|'OFF', 'includeExecutionData': True|False, 'destinations': [ { 'cloudWatchLogsLogGroup': { 'logGroupArn': 'string' } }, ] }, tracingConfiguration={ 'enabled': True|False }, publish=True|False, versionDescription='string')
- Parameters:
stateMachineArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the state machine.
definition (string) – The Amazon States Language definition of the state machine. See Amazon States Language.
roleArn (string) – The Amazon Resource Name (ARN) of the IAM role of the state machine.
loggingConfiguration (dict) –
Use the
LoggingConfigurationdata type to set CloudWatch Logs options.level (string) –
Defines which category of execution history events are logged.
includeExecutionData (boolean) –
Determines whether execution data is included in your log. When set to
false, data is excluded.destinations (list) –
An array of objects that describes where your execution history events will be logged. Limited to size 1. Required, if your log level is not set to
OFF.(dict) –
cloudWatchLogsLogGroup (dict) –
An object describing a CloudWatch log group. For more information, see AWS::Logs::LogGroup in the CloudFormation User Guide.
tracingConfiguration (dict) –
Selects whether X-Ray tracing is enabled.
publish (boolean) – Specifies whether the state machine version is published. The default is
false. To publish a version after updating the state machine, setpublishtotrue.versionDescription (string) –
An optional description of the state machine version to publish.
You can only specify the
versionDescriptionparameter if you’ve setpublishtotrue.
- Return type:
dict
- Returns:
Response Syntax
{ 'updateDate': datetime(2015, 1, 1), 'revisionId': 'string', 'stateMachineVersionArn': 'string'}
Response Structure
(dict) –
updateDate (datetime) –
The date and time the state machine was updated.
revisionId (string) –
The revision identifier for the updated state machine.
stateMachineVersionArn (string) –
The Amazon Resource Name (ARN) of the published state machine version.
If the
publishparameter isn’t set totrue, this field returns null.
Exceptions
SFN.Client.exceptions.InvalidArnSFN.Client.exceptions.InvalidDefinitionSFN.Client.exceptions.InvalidLoggingConfigurationSFN.Client.exceptions.InvalidTracingConfigurationSFN.Client.exceptions.MissingRequiredParameterSFN.Client.exceptions.StateMachineDeletingSFN.Client.exceptions.StateMachineDoesNotExistSFN.Client.exceptions.ServiceQuotaExceededExceptionSFN.Client.exceptions.ConflictExceptionSFN.Client.exceptions.ValidationException