@aws-sdk/client-sfn 3.616.0 → 3.620.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -35,6 +35,9 @@ declare const CreateStateMachineCommand_base: {
35
35
  * Language</a> in the Step Functions User Guide.</p>
36
36
  * <p>If you set the <code>publish</code> parameter of this API action to <code>true</code>, it
37
37
  * publishes version <code>1</code> as the first revision of the state machine.</p>
38
+ * <p>
39
+ * For additional control over security, you can encrypt your data using a <b>customer-managed key</b> for Step Functions state machines. You can configure a symmetric KMS key and data key reuse period when creating or updating a <b>State Machine</b>. The execution history and state machine definition will be encrypted with the key applied to the State Machine.
40
+ * </p>
38
41
  * <note>
39
42
  * <p>This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes.</p>
40
43
  * </note>
@@ -43,8 +46,8 @@ declare const CreateStateMachineCommand_base: {
43
46
  * <code>CreateStateMachine</code> is an idempotent API. Subsequent requests won’t create a
44
47
  * duplicate resource if it was already created. <code>CreateStateMachine</code>'s idempotency
45
48
  * check is based on the state machine <code>name</code>, <code>definition</code>,
46
- * <code>type</code>, <code>LoggingConfiguration</code>, and
47
- * <code>TracingConfiguration</code>. The check is also based on the <code>publish</code> and <code>versionDescription</code> parameters. If a following request has a different
49
+ * <code>type</code>, <code>LoggingConfiguration</code>,
50
+ * <code>TracingConfiguration</code>, and <code>EncryptionConfiguration</code> The check is also based on the <code>publish</code> and <code>versionDescription</code> parameters. If a following request has a different
48
51
  * <code>roleArn</code> or <code>tags</code>, Step Functions will ignore these differences and treat
49
52
  * it as an idempotent request of the previous. In this case, <code>roleArn</code> and
50
53
  * <code>tags</code> will not be updated, even if they are different.</p>
@@ -82,6 +85,11 @@ declare const CreateStateMachineCommand_base: {
82
85
  * },
83
86
  * publish: true || false,
84
87
  * versionDescription: "STRING_VALUE",
88
+ * encryptionConfiguration: { // EncryptionConfiguration
89
+ * kmsKeyId: "STRING_VALUE",
90
+ * kmsDataKeyReusePeriodSeconds: Number("int"),
91
+ * type: "AWS_OWNED_KEY" || "CUSTOMER_MANAGED_KMS_KEY", // required
92
+ * },
85
93
  * };
86
94
  * const command = new CreateStateMachineCommand(input);
87
95
  * const response = await client.send(command);
@@ -109,8 +117,11 @@ declare const CreateStateMachineCommand_base: {
109
117
  * @throws {@link InvalidDefinition} (client fault)
110
118
  * <p>The provided Amazon States Language definition is not valid.</p>
111
119
  *
120
+ * @throws {@link InvalidEncryptionConfiguration} (client fault)
121
+ * <p>Received when <code>encryptionConfiguration</code> is specified but various conditions exist which make the configuration invalid. For example, if <code>type</code> is set to <code>CUSTOMER_MANAGED_KMS_KEY</code>, but <code>kmsKeyId</code> is null, or <code>kmsDataKeyReusePeriodSeconds</code> is not between 60 and 900, or the KMS key is not symmetric or inactive.</p>
122
+ *
112
123
  * @throws {@link InvalidLoggingConfiguration} (client fault)
113
- * <p></p>
124
+ * <p>Configuration is not valid.</p>
114
125
  *
115
126
  * @throws {@link InvalidName} (client fault)
116
127
  * <p>The provided name is not valid.</p>
@@ -119,6 +130,12 @@ declare const CreateStateMachineCommand_base: {
119
130
  * <p>Your <code>tracingConfiguration</code> key does not match, or <code>enabled</code> has not
120
131
  * been set to <code>true</code> or <code>false</code>.</p>
121
132
  *
133
+ * @throws {@link KmsAccessDeniedException} (client fault)
134
+ * <p>Either your KMS key policy or API caller does not have the required permissions.</p>
135
+ *
136
+ * @throws {@link KmsThrottlingException} (client fault)
137
+ * <p>Received when KMS returns <code>ThrottlingException</code> for a KMS call that Step Functions makes on behalf of the caller.</p>
138
+ *
122
139
  * @throws {@link StateMachineAlreadyExists} (client fault)
123
140
  * <p>A state machine with the same name but a different definition or role ARN already
124
141
  * exists.</p>
@@ -131,7 +148,7 @@ declare const CreateStateMachineCommand_base: {
131
148
  * deleted before a new state machine can be created.</p>
132
149
  *
133
150
  * @throws {@link StateMachineTypeNotSupported} (client fault)
134
- * <p></p>
151
+ * <p>State machine type is not supported.</p>
135
152
  *
136
153
  * @throws {@link TooManyTags} (client fault)
137
154
  * <p>You've exceeded the number of tags allowed for a resource. See the <a href="https://docs.aws.amazon.com/step-functions/latest/dg/limits.html"> Limits Topic</a> in the
@@ -29,9 +29,7 @@ declare const DeleteStateMachineVersionCommand_base: {
29
29
  /**
30
30
  * <p>Deletes a state machine <a href="https://docs.aws.amazon.com/step-functions/latest/dg/concepts-state-machine-version.html">version</a>. After
31
31
  * you delete a version, you can't call <a>StartExecution</a> using that version's ARN
32
- * or use
33
- * the
34
- * version with a state machine <a href="https://docs.aws.amazon.com/step-functions/latest/dg/concepts-state-machine-alias.html">alias</a>.</p>
32
+ * or use the version with a state machine <a href="https://docs.aws.amazon.com/step-functions/latest/dg/concepts-state-machine-alias.html">alias</a>.</p>
35
33
  * <note>
36
34
  * <p>Deleting a state machine version won't terminate its in-progress executions.</p>
37
35
  * </note>
@@ -46,6 +46,11 @@ declare const DescribeActivityCommand_base: {
46
46
  * // activityArn: "STRING_VALUE", // required
47
47
  * // name: "STRING_VALUE", // required
48
48
  * // creationDate: new Date("TIMESTAMP"), // required
49
+ * // encryptionConfiguration: { // EncryptionConfiguration
50
+ * // kmsKeyId: "STRING_VALUE",
51
+ * // kmsDataKeyReusePeriodSeconds: Number("int"),
52
+ * // type: "AWS_OWNED_KEY" || "CUSTOMER_MANAGED_KMS_KEY", // required
53
+ * // },
49
54
  * // };
50
55
  *
51
56
  * ```
@@ -42,6 +42,7 @@ declare const DescribeExecutionCommand_base: {
42
42
  * const client = new SFNClient(config);
43
43
  * const input = { // DescribeExecutionInput
44
44
  * executionArn: "STRING_VALUE", // required
45
+ * includedData: "ALL_DATA" || "METADATA_ONLY",
45
46
  * };
46
47
  * const command = new DescribeExecutionCommand(input);
47
48
  * const response = await client.send(command);
@@ -86,6 +87,15 @@ declare const DescribeExecutionCommand_base: {
86
87
  * @throws {@link InvalidArn} (client fault)
87
88
  * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
88
89
  *
90
+ * @throws {@link KmsAccessDeniedException} (client fault)
91
+ * <p>Either your KMS key policy or API caller does not have the required permissions.</p>
92
+ *
93
+ * @throws {@link KmsInvalidStateException} (client fault)
94
+ * <p>The KMS key is not in valid state, for example: Disabled or Deleted.</p>
95
+ *
96
+ * @throws {@link KmsThrottlingException} (client fault)
97
+ * <p>Received when KMS returns <code>ThrottlingException</code> for a KMS call that Step Functions makes on behalf of the caller.</p>
98
+ *
89
99
  * @throws {@link SFNServiceException}
90
100
  * <p>Base exception class for all service exceptions from SFN service.</p>
91
101
  *
@@ -69,6 +69,7 @@ declare const DescribeStateMachineCommand_base: {
69
69
  * const client = new SFNClient(config);
70
70
  * const input = { // DescribeStateMachineInput
71
71
  * stateMachineArn: "STRING_VALUE", // required
72
+ * includedData: "ALL_DATA" || "METADATA_ONLY",
72
73
  * };
73
74
  * const command = new DescribeStateMachineCommand(input);
74
75
  * const response = await client.send(command);
@@ -97,6 +98,11 @@ declare const DescribeStateMachineCommand_base: {
97
98
  * // label: "STRING_VALUE",
98
99
  * // revisionId: "STRING_VALUE",
99
100
  * // description: "STRING_VALUE",
101
+ * // encryptionConfiguration: { // EncryptionConfiguration
102
+ * // kmsKeyId: "STRING_VALUE",
103
+ * // kmsDataKeyReusePeriodSeconds: Number("int"),
104
+ * // type: "AWS_OWNED_KEY" || "CUSTOMER_MANAGED_KMS_KEY", // required
105
+ * // },
100
106
  * // };
101
107
  *
102
108
  * ```
@@ -110,6 +116,15 @@ declare const DescribeStateMachineCommand_base: {
110
116
  * @throws {@link InvalidArn} (client fault)
111
117
  * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
112
118
  *
119
+ * @throws {@link KmsAccessDeniedException} (client fault)
120
+ * <p>Either your KMS key policy or API caller does not have the required permissions.</p>
121
+ *
122
+ * @throws {@link KmsInvalidStateException} (client fault)
123
+ * <p>The KMS key is not in valid state, for example: Disabled or Deleted.</p>
124
+ *
125
+ * @throws {@link KmsThrottlingException} (client fault)
126
+ * <p>Received when KMS returns <code>ThrottlingException</code> for a KMS call that Step Functions makes on behalf of the caller.</p>
127
+ *
113
128
  * @throws {@link StateMachineDoesNotExist} (client fault)
114
129
  * <p>The specified state machine does not exist.</p>
115
130
  *
@@ -29,9 +29,7 @@ declare const DescribeStateMachineForExecutionCommand_base: {
29
29
  /**
30
30
  * <p>Provides information about a state machine's definition, its execution role ARN, and
31
31
  * configuration. If a Map Run dispatched the execution, this action returns the Map Run
32
- * Amazon Resource Name (ARN) in the response.
33
- * The
34
- * state machine returned is the state machine associated with the
32
+ * Amazon Resource Name (ARN) in the response. The state machine returned is the state machine associated with the
35
33
  * Map Run.</p>
36
34
  * <note>
37
35
  * <p>This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes.</p>
@@ -45,6 +43,7 @@ declare const DescribeStateMachineForExecutionCommand_base: {
45
43
  * const client = new SFNClient(config);
46
44
  * const input = { // DescribeStateMachineForExecutionInput
47
45
  * executionArn: "STRING_VALUE", // required
46
+ * includedData: "ALL_DATA" || "METADATA_ONLY",
48
47
  * };
49
48
  * const command = new DescribeStateMachineForExecutionCommand(input);
50
49
  * const response = await client.send(command);
@@ -71,6 +70,11 @@ declare const DescribeStateMachineForExecutionCommand_base: {
71
70
  * // mapRunArn: "STRING_VALUE",
72
71
  * // label: "STRING_VALUE",
73
72
  * // revisionId: "STRING_VALUE",
73
+ * // encryptionConfiguration: { // EncryptionConfiguration
74
+ * // kmsKeyId: "STRING_VALUE",
75
+ * // kmsDataKeyReusePeriodSeconds: Number("int"),
76
+ * // type: "AWS_OWNED_KEY" || "CUSTOMER_MANAGED_KMS_KEY", // required
77
+ * // },
74
78
  * // };
75
79
  *
76
80
  * ```
@@ -87,6 +91,15 @@ declare const DescribeStateMachineForExecutionCommand_base: {
87
91
  * @throws {@link InvalidArn} (client fault)
88
92
  * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
89
93
  *
94
+ * @throws {@link KmsAccessDeniedException} (client fault)
95
+ * <p>Either your KMS key policy or API caller does not have the required permissions.</p>
96
+ *
97
+ * @throws {@link KmsInvalidStateException} (client fault)
98
+ * <p>The KMS key is not in valid state, for example: Disabled or Deleted.</p>
99
+ *
100
+ * @throws {@link KmsThrottlingException} (client fault)
101
+ * <p>Received when KMS returns <code>ThrottlingException</code> for a KMS call that Step Functions makes on behalf of the caller.</p>
102
+ *
90
103
  * @throws {@link SFNServiceException}
91
104
  * <p>Base exception class for all service exceptions from SFN service.</p>
92
105
  *
@@ -78,6 +78,15 @@ declare const GetActivityTaskCommand_base: {
78
78
  * @throws {@link InvalidArn} (client fault)
79
79
  * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
80
80
  *
81
+ * @throws {@link KmsAccessDeniedException} (client fault)
82
+ * <p>Either your KMS key policy or API caller does not have the required permissions.</p>
83
+ *
84
+ * @throws {@link KmsInvalidStateException} (client fault)
85
+ * <p>The KMS key is not in valid state, for example: Disabled or Deleted.</p>
86
+ *
87
+ * @throws {@link KmsThrottlingException} (client fault)
88
+ * <p>Received when KMS returns <code>ThrottlingException</code> for a KMS call that Step Functions makes on behalf of the caller.</p>
89
+ *
81
90
  * @throws {@link SFNServiceException}
82
91
  * <p>Base exception class for all service exceptions from SFN service.</p>
83
92
  *
@@ -259,6 +259,15 @@ declare const GetExecutionHistoryCommand_base: {
259
259
  * @throws {@link InvalidToken} (client fault)
260
260
  * <p>The provided token is not valid.</p>
261
261
  *
262
+ * @throws {@link KmsAccessDeniedException} (client fault)
263
+ * <p>Either your KMS key policy or API caller does not have the required permissions.</p>
264
+ *
265
+ * @throws {@link KmsInvalidStateException} (client fault)
266
+ * <p>The KMS key is not in valid state, for example: Disabled or Deleted.</p>
267
+ *
268
+ * @throws {@link KmsThrottlingException} (client fault)
269
+ * <p>Received when KMS returns <code>ThrottlingException</code> for a KMS call that Step Functions makes on behalf of the caller.</p>
270
+ *
262
271
  * @throws {@link SFNServiceException}
263
272
  * <p>Base exception class for all service exceptions from SFN service.</p>
264
273
  *
@@ -94,7 +94,7 @@ declare const ListExecutionsCommand_base: {
94
94
  * <p>The specified state machine does not exist.</p>
95
95
  *
96
96
  * @throws {@link StateMachineTypeNotSupported} (client fault)
97
- * <p></p>
97
+ * <p>State machine type is not supported.</p>
98
98
  *
99
99
  * @throws {@link ValidationException} (client fault)
100
100
  * <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
@@ -29,6 +29,8 @@ declare const SendTaskFailureCommand_base: {
29
29
  /**
30
30
  * <p>Used by activity workers, Task states using the <a href="https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-resource.html#connect-wait-token">callback</a>
31
31
  * pattern, and optionally Task states using the <a href="https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-resource.html#connect-sync">job run</a> pattern to report that the task identified by the <code>taskToken</code> failed.</p>
32
+ * <p>For an execution with encryption enabled, Step Functions will encrypt the error and cause fields using the KMS key for the execution role.</p>
33
+ * <p>A caller can mark a task as fail without using any KMS permissions in the execution role if the caller provides a null value for both <code>error</code> and <code>cause</code> fields because no data needs to be encrypted.</p>
32
34
  * @example
33
35
  * Use a bare-bones client and the command you need to make an API call.
34
36
  * ```javascript
@@ -55,6 +57,15 @@ declare const SendTaskFailureCommand_base: {
55
57
  * @throws {@link InvalidToken} (client fault)
56
58
  * <p>The provided token is not valid.</p>
57
59
  *
60
+ * @throws {@link KmsAccessDeniedException} (client fault)
61
+ * <p>Either your KMS key policy or API caller does not have the required permissions.</p>
62
+ *
63
+ * @throws {@link KmsInvalidStateException} (client fault)
64
+ * <p>The KMS key is not in valid state, for example: Disabled or Deleted.</p>
65
+ *
66
+ * @throws {@link KmsThrottlingException} (client fault)
67
+ * <p>Received when KMS returns <code>ThrottlingException</code> for a KMS call that Step Functions makes on behalf of the caller.</p>
68
+ *
58
69
  * @throws {@link TaskDoesNotExist} (client fault)
59
70
  * <p>The activity does not exist.</p>
60
71
  *
@@ -58,6 +58,15 @@ declare const SendTaskSuccessCommand_base: {
58
58
  * @throws {@link InvalidToken} (client fault)
59
59
  * <p>The provided token is not valid.</p>
60
60
  *
61
+ * @throws {@link KmsAccessDeniedException} (client fault)
62
+ * <p>Either your KMS key policy or API caller does not have the required permissions.</p>
63
+ *
64
+ * @throws {@link KmsInvalidStateException} (client fault)
65
+ * <p>The KMS key is not in valid state, for example: Disabled or Deleted.</p>
66
+ *
67
+ * @throws {@link KmsThrottlingException} (client fault)
68
+ * <p>Received when KMS returns <code>ThrottlingException</code> for a KMS call that Step Functions makes on behalf of the caller.</p>
69
+ *
61
70
  * @throws {@link TaskDoesNotExist} (client fault)
62
71
  * <p>The activity does not exist.</p>
63
72
  *
@@ -117,6 +117,15 @@ declare const StartExecutionCommand_base: {
117
117
  * @throws {@link InvalidName} (client fault)
118
118
  * <p>The provided name is not valid.</p>
119
119
  *
120
+ * @throws {@link KmsAccessDeniedException} (client fault)
121
+ * <p>Either your KMS key policy or API caller does not have the required permissions.</p>
122
+ *
123
+ * @throws {@link KmsInvalidStateException} (client fault)
124
+ * <p>The KMS key is not in valid state, for example: Disabled or Deleted.</p>
125
+ *
126
+ * @throws {@link KmsThrottlingException} (client fault)
127
+ * <p>Received when KMS returns <code>ThrottlingException</code> for a KMS call that Step Functions makes on behalf of the caller.</p>
128
+ *
120
129
  * @throws {@link StateMachineDeleting} (client fault)
121
130
  * <p>The specified state machine is being deleted.</p>
122
131
  *
@@ -51,6 +51,7 @@ declare const StartSyncExecutionCommand_base: {
51
51
  * name: "STRING_VALUE",
52
52
  * input: "STRING_VALUE",
53
53
  * traceHeader: "STRING_VALUE",
54
+ * includedData: "ALL_DATA" || "METADATA_ONLY",
54
55
  * };
55
56
  * const command = new StartSyncExecutionCommand(input);
56
57
  * const response = await client.send(command);
@@ -95,6 +96,15 @@ declare const StartSyncExecutionCommand_base: {
95
96
  * @throws {@link InvalidName} (client fault)
96
97
  * <p>The provided name is not valid.</p>
97
98
  *
99
+ * @throws {@link KmsAccessDeniedException} (client fault)
100
+ * <p>Either your KMS key policy or API caller does not have the required permissions.</p>
101
+ *
102
+ * @throws {@link KmsInvalidStateException} (client fault)
103
+ * <p>The KMS key is not in valid state, for example: Disabled or Deleted.</p>
104
+ *
105
+ * @throws {@link KmsThrottlingException} (client fault)
106
+ * <p>Received when KMS returns <code>ThrottlingException</code> for a KMS call that Step Functions makes on behalf of the caller.</p>
107
+ *
98
108
  * @throws {@link StateMachineDeleting} (client fault)
99
109
  * <p>The specified state machine is being deleted.</p>
100
110
  *
@@ -102,7 +112,7 @@ declare const StartSyncExecutionCommand_base: {
102
112
  * <p>The specified state machine does not exist.</p>
103
113
  *
104
114
  * @throws {@link StateMachineTypeNotSupported} (client fault)
105
- * <p></p>
115
+ * <p>State machine type is not supported.</p>
106
116
  *
107
117
  * @throws {@link SFNServiceException}
108
118
  * <p>Base exception class for all service exceptions from SFN service.</p>
@@ -29,6 +29,8 @@ declare const StopExecutionCommand_base: {
29
29
  /**
30
30
  * <p>Stops an execution.</p>
31
31
  * <p>This API action is not supported by <code>EXPRESS</code> state machines.</p>
32
+ * <p>For an execution with encryption enabled, Step Functions will encrypt the error and cause fields using the KMS key for the execution role.</p>
33
+ * <p>A caller can stop an execution without using any KMS permissions in the execution role if the caller provides a null value for both <code>error</code> and <code>cause</code> fields because no data needs to be encrypted.</p>
32
34
  * @example
33
35
  * Use a bare-bones client and the command you need to make an API call.
34
36
  * ```javascript
@@ -60,6 +62,15 @@ declare const StopExecutionCommand_base: {
60
62
  * @throws {@link InvalidArn} (client fault)
61
63
  * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
62
64
  *
65
+ * @throws {@link KmsAccessDeniedException} (client fault)
66
+ * <p>Either your KMS key policy or API caller does not have the required permissions.</p>
67
+ *
68
+ * @throws {@link KmsInvalidStateException} (client fault)
69
+ * <p>The KMS key is not in valid state, for example: Disabled or Deleted.</p>
70
+ *
71
+ * @throws {@link KmsThrottlingException} (client fault)
72
+ * <p>Received when KMS returns <code>ThrottlingException</code> for a KMS call that Step Functions makes on behalf of the caller.</p>
73
+ *
63
74
  * @throws {@link ValidationException} (client fault)
64
75
  * <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
65
76
  *
@@ -28,7 +28,7 @@ declare const UpdateStateMachineCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Updates an existing state machine by modifying its <code>definition</code>,
31
- * <code>roleArn</code>, or <code>loggingConfiguration</code>. Running executions will continue
31
+ * <code>roleArn</code>, <code>loggingConfiguration</code>, or <code>EncryptionConfiguration</code>. Running executions will continue
32
32
  * to use the previous <code>definition</code> and <code>roleArn</code>. You must include at
33
33
  * least one of <code>definition</code> or <code>roleArn</code> or you will receive a
34
34
  * <code>MissingRequiredParameter</code> error.</p>
@@ -99,6 +99,11 @@ declare const UpdateStateMachineCommand_base: {
99
99
  * },
100
100
  * publish: true || false,
101
101
  * versionDescription: "STRING_VALUE",
102
+ * encryptionConfiguration: { // EncryptionConfiguration
103
+ * kmsKeyId: "STRING_VALUE",
104
+ * kmsDataKeyReusePeriodSeconds: Number("int"),
105
+ * type: "AWS_OWNED_KEY" || "CUSTOMER_MANAGED_KMS_KEY", // required
106
+ * },
102
107
  * };
103
108
  * const command = new UpdateStateMachineCommand(input);
104
109
  * const response = await client.send(command);
@@ -126,13 +131,22 @@ declare const UpdateStateMachineCommand_base: {
126
131
  * @throws {@link InvalidDefinition} (client fault)
127
132
  * <p>The provided Amazon States Language definition is not valid.</p>
128
133
  *
134
+ * @throws {@link InvalidEncryptionConfiguration} (client fault)
135
+ * <p>Received when <code>encryptionConfiguration</code> is specified but various conditions exist which make the configuration invalid. For example, if <code>type</code> is set to <code>CUSTOMER_MANAGED_KMS_KEY</code>, but <code>kmsKeyId</code> is null, or <code>kmsDataKeyReusePeriodSeconds</code> is not between 60 and 900, or the KMS key is not symmetric or inactive.</p>
136
+ *
129
137
  * @throws {@link InvalidLoggingConfiguration} (client fault)
130
- * <p></p>
138
+ * <p>Configuration is not valid.</p>
131
139
  *
132
140
  * @throws {@link InvalidTracingConfiguration} (client fault)
133
141
  * <p>Your <code>tracingConfiguration</code> key does not match, or <code>enabled</code> has not
134
142
  * been set to <code>true</code> or <code>false</code>.</p>
135
143
  *
144
+ * @throws {@link KmsAccessDeniedException} (client fault)
145
+ * <p>Either your KMS key policy or API caller does not have the required permissions.</p>
146
+ *
147
+ * @throws {@link KmsThrottlingException} (client fault)
148
+ * <p>Received when KMS returns <code>ThrottlingException</code> for a KMS call that Step Functions makes on behalf of the caller.</p>
149
+ *
136
150
  * @throws {@link MissingRequiredParameter} (client fault)
137
151
  * <p>Request is missing a required parameter. This error occurs if both <code>definition</code>
138
152
  * and <code>roleArn</code> are not specified.</p>
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * <fullname>Step Functions</fullname>
3
- * <p>Step Functions is a service that lets you coordinate the components of distributed applications
3
+ * <p>Step Functions coordinates the components of distributed applications
4
4
  * and microservices using visual workflows.</p>
5
5
  * <p>You can use Step Functions to build applications from individual components, each of which performs
6
6
  * a discrete function, or <i>task</i>, allowing you to scale and change