Updates an existing state machine by modifying its definition
, roleArn
, loggingConfiguration
, or EncryptionConfiguration
. 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:
The following qualified state machine ARN refers to a Distributed Map state with a label mapStateLabel
in a state machine named myStateMachine
.
arn:partition:states:region:account-id:stateMachine:myStateMachine/mapStateLabel
If you provide a qualified state machine ARN that refers to a Distributed Map state, the request fails with ValidationException
.
The following qualified state machine ARN refers to an alias named PROD
.
arn:<partition>:states:<region>:<account-id>:stateMachine:<myStateMachine:PROD>
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.
The following unqualified state machine ARN refers to a state machine named myStateMachine
.
arn:<partition>:states:<region>:<account-id>:stateMachine:<myStateMachine>
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.
Step Functions assigns monotonically increasing integers for state machine versions, starting at version number 1.
NoteAll 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
.
{
"definition": "string
",
"encryptionConfiguration": {
"kmsDataKeyReusePeriodSeconds": number
,
"kmsKeyId": "string
",
"type": "string
"
},
"loggingConfiguration": {
"destinations": [
{
"cloudWatchLogsLogGroup": {
"logGroupArn": "string
"
}
}
],
"includeExecutionData": boolean
,
"level": "string
"
},
"publish": boolean
,
"roleArn": "string
",
"stateMachineArn": "string
",
"tracingConfiguration": {
"enabled": boolean
},
"versionDescription": "string
"
}
Request Parameters
For information about the parameters that are common to all actions, see Common Parameters.
The request accepts the following data in JSON format.
The Amazon States Language definition of the state machine. See Amazon States Language.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 1048576.
Required: No
Settings to configure server-side encryption.
Type: EncryptionConfiguration object
Required: No
Use the LoggingConfiguration
data type to set CloudWatch Logs options.
Type: LoggingConfiguration object
Required: No
Specifies whether the state machine version is published. The default is false
. To publish a version after updating the state machine, set publish
to true
.
Type: Boolean
Required: No
The Amazon Resource Name (ARN) of the IAM role of the state machine.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 256.
Required: No
The Amazon Resource Name (ARN) of the state machine.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 256.
Required: Yes
Selects whether AWS X-Ray tracing is enabled.
Type: TracingConfiguration object
Required: No
An optional description of the state machine version to publish.
You can only specify the versionDescription
parameter if you've set publish
to true
.
Type: String
Length Constraints: Maximum length of 256.
Required: No
{
"revisionId": "string",
"stateMachineVersionArn": "string",
"updateDate": number
}
Response Elements
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
The revision identifier for the updated state machine.
Type: String
The Amazon Resource Name (ARN) of the published state machine version.
If the publish
parameter isn't set to true
, this field returns null.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 256.
The date and time the state machine was updated.
Type: Timestamp
For information about the errors that are common to all actions, see Common Errors.
Updating or deleting a resource can cause an inconsistent state. This error occurs when there're concurrent requests for DeleteStateMachineVersion, PublishStateMachineVersion, or UpdateStateMachine with the publish
parameter set to true
.
HTTP Status Code: 409
HTTP Status Code: 400
The provided Amazon Resource Name (ARN) is not valid.
HTTP Status Code: 400
The provided Amazon States Language definition is not valid.
HTTP Status Code: 400
Received when encryptionConfiguration
is specified but various conditions exist which make the configuration invalid. For example, if type
is set to CUSTOMER_MANAGED_KMS_KEY
, but kmsKeyId
is null, or kmsDataKeyReusePeriodSeconds
is not between 60 and 900, or the AWS KMS key is not symmetric or inactive.
HTTP Status Code: 400
Configuration is not valid.
HTTP Status Code: 400
Your tracingConfiguration
key does not match, or enabled
has not been set to true
or false
.
HTTP Status Code: 400
Either your AWS KMS key policy or API caller does not have the required permissions.
HTTP Status Code: 400
Received when AWS KMS returns ThrottlingException
for a AWS KMS call that Step Functions makes on behalf of the caller.
HTTP Status Code: 400
Request is missing a required parameter. This error occurs if both definition
and roleArn
are not specified.
HTTP Status Code: 400
The request would cause a service quota to be exceeded.
HTTP Status Code: 402
HTTP Status Code: 400
The specified state machine is being deleted.
HTTP Status Code: 400
The specified state machine does not exist.
HTTP Status Code: 400
The input does not satisfy the constraints specified by an AWS service.
HTTP Status Code: 400
For more information about using this API in one of the language-specific AWS SDKs, see the following:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4