aws-sdk 2.1663.0 → 2.1665.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.
Files changed (51) hide show
  1. package/README.md +1 -1
  2. package/apis/application-signals-2024-04-15.min.json +15 -0
  3. package/apis/appstream-2016-12-01.min.json +7 -1
  4. package/apis/autoscaling-2011-01-01.min.json +33 -33
  5. package/apis/bedrock-runtime-2023-09-30.min.json +27 -5
  6. package/apis/codecommit-2015-04-13.min.json +7 -1
  7. package/apis/codepipeline-2015-07-09.min.json +442 -94
  8. package/apis/codepipeline-2015-07-09.paginators.json +6 -0
  9. package/apis/datazone-2018-05-10.min.json +68 -32
  10. package/apis/ecr-2015-09-21.examples.json +186 -0
  11. package/apis/ecr-2015-09-21.min.json +177 -20
  12. package/apis/ecr-2015-09-21.paginators.json +9 -0
  13. package/apis/eks-2017-11-01.min.json +81 -63
  14. package/apis/elasticloadbalancing-2012-06-01.min.json +7 -1
  15. package/apis/elasticloadbalancingv2-2015-12-01.examples.json +33 -0
  16. package/apis/elasticloadbalancingv2-2015-12-01.min.json +113 -73
  17. package/apis/eventbridge-2015-10-07.min.json +4 -1
  18. package/apis/logs-2014-03-28.min.json +7 -1
  19. package/apis/memorydb-2021-01-01.min.json +7 -1
  20. package/apis/models.lex.v2-2020-08-07.min.json +374 -346
  21. package/apis/network-firewall-2020-11-12.min.json +7 -1
  22. package/apis/outposts-2019-12-03.min.json +11 -2
  23. package/apis/rolesanywhere-2018-05-10.min.json +16 -1
  24. package/apis/states-2016-11-23.min.json +163 -128
  25. package/apis/tnb-2008-10-21.min.json +90 -23
  26. package/clients/applicationautoscaling.d.ts +1 -1
  27. package/clients/applicationsignals.d.ts +29 -20
  28. package/clients/appstream.d.ts +8 -8
  29. package/clients/autoscaling.d.ts +4 -3
  30. package/clients/bedrockruntime.d.ts +11 -8
  31. package/clients/codepipeline.d.ts +481 -1
  32. package/clients/datazone.d.ts +36 -0
  33. package/clients/ec2.d.ts +4 -4
  34. package/clients/ecr.d.ts +242 -8
  35. package/clients/eks.d.ts +27 -2
  36. package/clients/elasticache.d.ts +196 -196
  37. package/clients/elbv2.d.ts +54 -8
  38. package/clients/lexmodelsv2.d.ts +45 -5
  39. package/clients/memorydb.d.ts +7 -7
  40. package/clients/networkfirewall.d.ts +7 -7
  41. package/clients/outposts.d.ts +5 -0
  42. package/clients/rolesanywhere.d.ts +12 -0
  43. package/clients/stepfunctions.d.ts +67 -9
  44. package/clients/tnb.d.ts +95 -18
  45. package/clients/workspaces.d.ts +7 -7
  46. package/dist/aws-sdk-core-react-native.js +1 -1
  47. package/dist/aws-sdk-react-native.js +23 -23
  48. package/dist/aws-sdk.js +804 -226
  49. package/dist/aws-sdk.min.js +94 -93
  50. package/lib/core.js +1 -1
  51. package/package.json +1 -1
@@ -20,11 +20,11 @@ declare class StepFunctions extends Service {
20
20
  */
21
21
  createActivity(callback?: (err: AWSError, data: StepFunctions.Types.CreateActivityOutput) => void): Request<StepFunctions.Types.CreateActivityOutput, AWSError>;
22
22
  /**
23
- * Creates a state machine. A state machine consists of a collection of states that can do work (Task states), determine to which states to transition next (Choice states), stop an execution with an error (Fail states), and so on. State machines are specified using a JSON-based, structured language. For more information, see Amazon States Language in the Step Functions User Guide. If you set the publish parameter of this API action to true, it publishes version 1 as the first revision of the state machine. This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes. CreateStateMachine is an idempotent API. Subsequent requests won’t create a duplicate resource if it was already created. CreateStateMachine's idempotency check is based on the state machine name, definition, type, LoggingConfiguration, and TracingConfiguration. The check is also based on the publish and versionDescription parameters. If a following request has a different roleArn or tags, Step Functions will ignore these differences and treat it as an idempotent request of the previous. In this case, roleArn and tags will not be updated, even if they are different.
23
+ * Creates a state machine. A state machine consists of a collection of states that can do work (Task states), determine to which states to transition next (Choice states), stop an execution with an error (Fail states), and so on. State machines are specified using a JSON-based, structured language. For more information, see Amazon States Language in the Step Functions User Guide. If you set the publish parameter of this API action to true, it publishes version 1 as the first revision of the state machine. For additional control over security, you can encrypt your data using a customer-managed key for Step Functions state machines. You can configure a symmetric KMS key and data key reuse period when creating or updating a State Machine. The execution history and state machine definition will be encrypted with the key applied to the State Machine. This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes. CreateStateMachine is an idempotent API. Subsequent requests won’t create a duplicate resource if it was already created. CreateStateMachine's idempotency check is based on the state machine name, definition, type, LoggingConfiguration, TracingConfiguration, and EncryptionConfiguration The check is also based on the publish and versionDescription parameters. If a following request has a different roleArn or tags, Step Functions will ignore these differences and treat it as an idempotent request of the previous. In this case, roleArn and tags will not be updated, even if they are different.
24
24
  */
25
25
  createStateMachine(params: StepFunctions.Types.CreateStateMachineInput, callback?: (err: AWSError, data: StepFunctions.Types.CreateStateMachineOutput) => void): Request<StepFunctions.Types.CreateStateMachineOutput, AWSError>;
26
26
  /**
27
- * Creates a state machine. A state machine consists of a collection of states that can do work (Task states), determine to which states to transition next (Choice states), stop an execution with an error (Fail states), and so on. State machines are specified using a JSON-based, structured language. For more information, see Amazon States Language in the Step Functions User Guide. If you set the publish parameter of this API action to true, it publishes version 1 as the first revision of the state machine. This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes. CreateStateMachine is an idempotent API. Subsequent requests won’t create a duplicate resource if it was already created. CreateStateMachine's idempotency check is based on the state machine name, definition, type, LoggingConfiguration, and TracingConfiguration. The check is also based on the publish and versionDescription parameters. If a following request has a different roleArn or tags, Step Functions will ignore these differences and treat it as an idempotent request of the previous. In this case, roleArn and tags will not be updated, even if they are different.
27
+ * Creates a state machine. A state machine consists of a collection of states that can do work (Task states), determine to which states to transition next (Choice states), stop an execution with an error (Fail states), and so on. State machines are specified using a JSON-based, structured language. For more information, see Amazon States Language in the Step Functions User Guide. If you set the publish parameter of this API action to true, it publishes version 1 as the first revision of the state machine. For additional control over security, you can encrypt your data using a customer-managed key for Step Functions state machines. You can configure a symmetric KMS key and data key reuse period when creating or updating a State Machine. The execution history and state machine definition will be encrypted with the key applied to the State Machine. This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes. CreateStateMachine is an idempotent API. Subsequent requests won’t create a duplicate resource if it was already created. CreateStateMachine's idempotency check is based on the state machine name, definition, type, LoggingConfiguration, TracingConfiguration, and EncryptionConfiguration The check is also based on the publish and versionDescription parameters. If a following request has a different roleArn or tags, Step Functions will ignore these differences and treat it as an idempotent request of the previous. In this case, roleArn and tags will not be updated, even if they are different.
28
28
  */
29
29
  createStateMachine(callback?: (err: AWSError, data: StepFunctions.Types.CreateStateMachineOutput) => void): Request<StepFunctions.Types.CreateStateMachineOutput, AWSError>;
30
30
  /**
@@ -204,11 +204,11 @@ declare class StepFunctions extends Service {
204
204
  */
205
205
  redriveExecution(callback?: (err: AWSError, data: StepFunctions.Types.RedriveExecutionOutput) => void): Request<StepFunctions.Types.RedriveExecutionOutput, AWSError>;
206
206
  /**
207
- * Used by activity workers, Task states using the callback pattern, and optionally Task states using the job run pattern to report that the task identified by the taskToken failed.
207
+ * Used by activity workers, Task states using the callback pattern, and optionally Task states using the job run pattern to report that the task identified by the taskToken failed. For an execution with encryption enabled, Step Functions will encrypt the error and cause fields using the KMS key for the execution role. 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 error and cause fields because no data needs to be encrypted.
208
208
  */
209
209
  sendTaskFailure(params: StepFunctions.Types.SendTaskFailureInput, callback?: (err: AWSError, data: StepFunctions.Types.SendTaskFailureOutput) => void): Request<StepFunctions.Types.SendTaskFailureOutput, AWSError>;
210
210
  /**
211
- * Used by activity workers, Task states using the callback pattern, and optionally Task states using the job run pattern to report that the task identified by the taskToken failed.
211
+ * Used by activity workers, Task states using the callback pattern, and optionally Task states using the job run pattern to report that the task identified by the taskToken failed. For an execution with encryption enabled, Step Functions will encrypt the error and cause fields using the KMS key for the execution role. 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 error and cause fields because no data needs to be encrypted.
212
212
  */
213
213
  sendTaskFailure(callback?: (err: AWSError, data: StepFunctions.Types.SendTaskFailureOutput) => void): Request<StepFunctions.Types.SendTaskFailureOutput, AWSError>;
214
214
  /**
@@ -244,11 +244,11 @@ declare class StepFunctions extends Service {
244
244
  */
245
245
  startSyncExecution(callback?: (err: AWSError, data: StepFunctions.Types.StartSyncExecutionOutput) => void): Request<StepFunctions.Types.StartSyncExecutionOutput, AWSError>;
246
246
  /**
247
- * Stops an execution. This API action is not supported by EXPRESS state machines.
247
+ * Stops an execution. This API action is not supported by EXPRESS state machines. For an execution with encryption enabled, Step Functions will encrypt the error and cause fields using the KMS key for the execution role. A caller can stop an execution without using any KMS permissions in the execution role if the caller provides a null value for both error and cause fields because no data needs to be encrypted.
248
248
  */
249
249
  stopExecution(params: StepFunctions.Types.StopExecutionInput, callback?: (err: AWSError, data: StepFunctions.Types.StopExecutionOutput) => void): Request<StepFunctions.Types.StopExecutionOutput, AWSError>;
250
250
  /**
251
- * Stops an execution. This API action is not supported by EXPRESS state machines.
251
+ * Stops an execution. This API action is not supported by EXPRESS state machines. For an execution with encryption enabled, Step Functions will encrypt the error and cause fields using the KMS key for the execution role. A caller can stop an execution without using any KMS permissions in the execution role if the caller provides a null value for both error and cause fields because no data needs to be encrypted.
252
252
  */
253
253
  stopExecution(callback?: (err: AWSError, data: StepFunctions.Types.StopExecutionOutput) => void): Request<StepFunctions.Types.StopExecutionOutput, AWSError>;
254
254
  /**
@@ -284,11 +284,11 @@ declare class StepFunctions extends Service {
284
284
  */
285
285
  updateMapRun(callback?: (err: AWSError, data: StepFunctions.Types.UpdateMapRunOutput) => void): Request<StepFunctions.Types.UpdateMapRunOutput, AWSError>;
286
286
  /**
287
- * 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: 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:&lt;partition&gt;:states:&lt;region&gt;:&lt;account-id&gt;:stateMachine:&lt;myStateMachine:PROD&gt; 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:&lt;partition&gt;:states:&lt;region&gt;:&lt;account-id&gt;:stateMachine:&lt;myStateMachine&gt; 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. 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.
287
+ * 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:&lt;partition&gt;:states:&lt;region&gt;:&lt;account-id&gt;:stateMachine:&lt;myStateMachine:PROD&gt; 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:&lt;partition&gt;:states:&lt;region&gt;:&lt;account-id&gt;:stateMachine:&lt;myStateMachine&gt; 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. 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.
288
288
  */
289
289
  updateStateMachine(params: StepFunctions.Types.UpdateStateMachineInput, callback?: (err: AWSError, data: StepFunctions.Types.UpdateStateMachineOutput) => void): Request<StepFunctions.Types.UpdateStateMachineOutput, AWSError>;
290
290
  /**
291
- * 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: 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:&lt;partition&gt;:states:&lt;region&gt;:&lt;account-id&gt;:stateMachine:&lt;myStateMachine:PROD&gt; 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:&lt;partition&gt;:states:&lt;region&gt;:&lt;account-id&gt;:stateMachine:&lt;myStateMachine&gt; 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. 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.
291
+ * 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:&lt;partition&gt;:states:&lt;region&gt;:&lt;account-id&gt;:stateMachine:&lt;myStateMachine:PROD&gt; 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:&lt;partition&gt;:states:&lt;region&gt;:&lt;account-id&gt;:stateMachine:&lt;myStateMachine&gt; 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. 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.
292
292
  */
293
293
  updateStateMachine(callback?: (err: AWSError, data: StepFunctions.Types.UpdateStateMachineOutput) => void): Request<StepFunctions.Types.UpdateStateMachineOutput, AWSError>;
294
294
  /**
@@ -430,6 +430,10 @@ declare namespace StepFunctions {
430
430
  * The list of tags to add to a resource. An array of key-value pairs. For more information, see Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide, and Controlling Access Using IAM Tags. Tags may only contain Unicode letters, digits, white space, or these symbols: _ . : / = + - @.
431
431
  */
432
432
  tags?: TagList;
433
+ /**
434
+ * Settings to configure server-side encryption.
435
+ */
436
+ encryptionConfiguration?: EncryptionConfiguration;
433
437
  }
434
438
  export interface CreateActivityOutput {
435
439
  /**
@@ -502,6 +506,10 @@ declare namespace StepFunctions {
502
506
  * Sets description about the state machine version. You can only set the description if the publish parameter is set to true. Otherwise, if you set versionDescription, but publish to false, this API action throws ValidationException.
503
507
  */
504
508
  versionDescription?: VersionDescription;
509
+ /**
510
+ * Settings to configure server-side encryption.
511
+ */
512
+ encryptionConfiguration?: EncryptionConfiguration;
505
513
  }
506
514
  export interface CreateStateMachineOutput {
507
515
  /**
@@ -569,12 +577,20 @@ declare namespace StepFunctions {
569
577
  * The date the activity is created.
570
578
  */
571
579
  creationDate: Timestamp;
580
+ /**
581
+ * Settings for configured server-side encryption.
582
+ */
583
+ encryptionConfiguration?: EncryptionConfiguration;
572
584
  }
573
585
  export interface DescribeExecutionInput {
574
586
  /**
575
587
  * The Amazon Resource Name (ARN) of the execution to describe.
576
588
  */
577
589
  executionArn: Arn;
590
+ /**
591
+ * If your state machine definition is encrypted with a KMS key, callers must have kms:Decrypt permission to decrypt the definition. Alternatively, you can call DescribeStateMachine API with includedData = METADATA_ONLY to get a successful response without the encrypted definition.
592
+ */
593
+ includedData?: IncludedData;
578
594
  }
579
595
  export interface DescribeExecutionOutput {
580
596
  /**
@@ -745,6 +761,10 @@ declare namespace StepFunctions {
745
761
  * The Amazon Resource Name (ARN) of the execution you want state machine information for.
746
762
  */
747
763
  executionArn: Arn;
764
+ /**
765
+ * If your state machine definition is encrypted with a KMS key, callers must have kms:Decrypt permission to decrypt the definition. Alternatively, you can call the API with includedData = METADATA_ONLY to get a successful response without the encrypted definition.
766
+ */
767
+ includedData?: IncludedData;
748
768
  }
749
769
  export interface DescribeStateMachineForExecutionOutput {
750
770
  /**
@@ -784,12 +804,20 @@ declare namespace StepFunctions {
784
804
  * The revision identifier for the state machine. The first revision ID when you create the state machine is null. Use the state machine revisionId parameter to compare the revision of a state machine with the configuration of the state machine used for executions without performing a diff of the properties, such as definition and roleArn.
785
805
  */
786
806
  revisionId?: RevisionId;
807
+ /**
808
+ * Settings to configure server-side encryption.
809
+ */
810
+ encryptionConfiguration?: EncryptionConfiguration;
787
811
  }
788
812
  export interface DescribeStateMachineInput {
789
813
  /**
790
814
  * The Amazon Resource Name (ARN) of the state machine for which you want the information. If you specify a state machine version ARN, this API returns details about that version. The version ARN is a combination of state machine ARN and the version number separated by a colon (:). For example, stateMachineARN:1.
791
815
  */
792
816
  stateMachineArn: Arn;
817
+ /**
818
+ * If your state machine definition is encrypted with a KMS key, callers must have kms:Decrypt permission to decrypt the definition. Alternatively, you can call the API with includedData = METADATA_ONLY to get a successful response without the encrypted definition. When calling a labelled ARN for an encrypted state machine, the includedData = METADATA_ONLY parameter will not apply because Step Functions needs to decrypt the entire state machine definition to get the Distributed Map state’s definition. In this case, the API caller needs to have kms:Decrypt permission.
819
+ */
820
+ includedData?: IncludedData;
793
821
  }
794
822
  export interface DescribeStateMachineOutput {
795
823
  /**
@@ -805,7 +833,7 @@ declare namespace StepFunctions {
805
833
  */
806
834
  status?: StateMachineStatus;
807
835
  /**
808
- * The Amazon States Language definition of the state machine. See Amazon States Language.
836
+ * The Amazon States Language definition of the state machine. See Amazon States Language. If called with includedData = METADATA_ONLY, the returned definition will be {}.
809
837
  */
810
838
  definition: Definition;
811
839
  /**
@@ -837,8 +865,27 @@ declare namespace StepFunctions {
837
865
  * The description of the state machine version.
838
866
  */
839
867
  description?: VersionDescription;
868
+ /**
869
+ * Settings to configure server-side encryption.
870
+ */
871
+ encryptionConfiguration?: EncryptionConfiguration;
840
872
  }
841
873
  export type Enabled = boolean;
874
+ export interface EncryptionConfiguration {
875
+ /**
876
+ * An alias, alias ARN, key ID, or key ARN of a symmetric encryption KMS key to encrypt data. To specify a KMS key in a different Amazon Web Services account, you must use the key ARN or alias ARN.
877
+ */
878
+ kmsKeyId?: KmsKeyId;
879
+ /**
880
+ * Maximum duration that Step Functions will reuse data keys. When the period expires, Step Functions will call GenerateDataKey. Only applies to customer managed keys.
881
+ */
882
+ kmsDataKeyReusePeriodSeconds?: KmsDataKeyReusePeriodSeconds;
883
+ /**
884
+ * Encryption type
885
+ */
886
+ type: EncryptionType;
887
+ }
888
+ export type EncryptionType = "AWS_OWNED_KEY"|"CUSTOMER_MANAGED_KMS_KEY"|string;
842
889
  export type EventId = number;
843
890
  export interface ExecutionAbortedEventDetails {
844
891
  /**
@@ -1145,6 +1192,7 @@ declare namespace StepFunctions {
1145
1192
  export type Identity = string;
1146
1193
  export type IncludeExecutionData = boolean;
1147
1194
  export type IncludeExecutionDataGetExecutionHistory = boolean;
1195
+ export type IncludedData = "ALL_DATA"|"METADATA_ONLY"|string;
1148
1196
  export interface InspectionData {
1149
1197
  /**
1150
1198
  * The raw state input.
@@ -1224,6 +1272,8 @@ declare namespace StepFunctions {
1224
1272
  body?: HTTPBody;
1225
1273
  }
1226
1274
  export type InspectionLevel = "INFO"|"DEBUG"|"TRACE"|string;
1275
+ export type KmsDataKeyReusePeriodSeconds = number;
1276
+ export type KmsKeyId = string;
1227
1277
  export interface LambdaFunctionFailedEventDetails {
1228
1278
  /**
1229
1279
  * The error code of the failure.
@@ -1774,6 +1824,10 @@ declare namespace StepFunctions {
1774
1824
  * Passes the X-Ray trace header. The trace header can also be passed in the request payload.
1775
1825
  */
1776
1826
  traceHeader?: TraceHeader;
1827
+ /**
1828
+ * If your state machine definition is encrypted with a KMS key, callers must have kms:Decrypt permission to decrypt the definition. Alternatively, you can call the API with includedData = METADATA_ONLY to get a successful response without the encrypted definition.
1829
+ */
1830
+ includedData?: IncludedData;
1777
1831
  }
1778
1832
  export interface StartSyncExecutionOutput {
1779
1833
  /**
@@ -2245,6 +2299,10 @@ declare namespace StepFunctions {
2245
2299
  * An optional description of the state machine version to publish. You can only specify the versionDescription parameter if you've set publish to true.
2246
2300
  */
2247
2301
  versionDescription?: VersionDescription;
2302
+ /**
2303
+ * Settings to configure server-side encryption.
2304
+ */
2305
+ encryptionConfiguration?: EncryptionConfiguration;
2248
2306
  }
2249
2307
  export interface UpdateStateMachineOutput {
2250
2308
  /**
package/clients/tnb.d.ts CHANGED
@@ -68,11 +68,11 @@ declare class Tnb extends Service {
68
68
  */
69
69
  deleteSolNetworkPackage(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
70
70
  /**
71
- * Gets the details of a network function instance, including the instantation state and metadata from the function package descriptor in the network function package. A network function instance is a function in a function package .
71
+ * Gets the details of a network function instance, including the instantiation state and metadata from the function package descriptor in the network function package. A network function instance is a function in a function package .
72
72
  */
73
73
  getSolFunctionInstance(params: Tnb.Types.GetSolFunctionInstanceInput, callback?: (err: AWSError, data: Tnb.Types.GetSolFunctionInstanceOutput) => void): Request<Tnb.Types.GetSolFunctionInstanceOutput, AWSError>;
74
74
  /**
75
- * Gets the details of a network function instance, including the instantation state and metadata from the function package descriptor in the network function package. A network function instance is a function in a function package .
75
+ * Gets the details of a network function instance, including the instantiation state and metadata from the function package descriptor in the network function package. A network function instance is a function in a function package .
76
76
  */
77
77
  getSolFunctionInstance(callback?: (err: AWSError, data: Tnb.Types.GetSolFunctionInstanceOutput) => void): Request<Tnb.Types.GetSolFunctionInstanceOutput, AWSError>;
78
78
  /**
@@ -244,11 +244,11 @@ declare class Tnb extends Service {
244
244
  */
245
245
  updateSolFunctionPackage(callback?: (err: AWSError, data: Tnb.Types.UpdateSolFunctionPackageOutput) => void): Request<Tnb.Types.UpdateSolFunctionPackageOutput, AWSError>;
246
246
  /**
247
- * Update a network instance. A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.
247
+ * Update a network instance. A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed. Choose the updateType parameter to target the necessary update of the network instance.
248
248
  */
249
249
  updateSolNetworkInstance(params: Tnb.Types.UpdateSolNetworkInstanceInput, callback?: (err: AWSError, data: Tnb.Types.UpdateSolNetworkInstanceOutput) => void): Request<Tnb.Types.UpdateSolNetworkInstanceOutput, AWSError>;
250
250
  /**
251
- * Update a network instance. A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.
251
+ * Update a network instance. A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed. Choose the updateType parameter to target the necessary update of the network instance.
252
252
  */
253
253
  updateSolNetworkInstance(callback?: (err: AWSError, data: Tnb.Types.UpdateSolNetworkInstanceOutput) => void): Request<Tnb.Types.UpdateSolNetworkInstanceOutput, AWSError>;
254
254
  /**
@@ -662,10 +662,22 @@ declare namespace Tnb {
662
662
  * The date that the resource was created.
663
663
  */
664
664
  createdAt: SyntheticTimestamp_date_time;
665
+ /**
666
+ * Metadata related to the network operation occurrence for network instantiation. This is populated only if the lcmOperationType is INSTANTIATE.
667
+ */
668
+ instantiateMetadata?: InstantiateMetadata;
665
669
  /**
666
670
  * The date that the resource was last modified.
667
671
  */
668
672
  lastModified: SyntheticTimestamp_date_time;
673
+ /**
674
+ * Metadata related to the network operation occurrence for network function updates in a network instance. This is populated only if the lcmOperationType is UPDATE and the updateType is MODIFY_VNF_INFORMATION.
675
+ */
676
+ modifyVnfInfoMetadata?: ModifyVnfInfoMetadata;
677
+ /**
678
+ * Metadata related to the network operation occurrence for network instance updates. This is populated only if the lcmOperationType is UPDATE and the updateType is UPDATE_NS.
679
+ */
680
+ updateNsMetadata?: UpdateNsMetadata;
669
681
  }
670
682
  export interface GetSolNetworkOperationOutput {
671
683
  /**
@@ -704,6 +716,10 @@ declare namespace Tnb {
704
716
  * All tasks associated with this operation occurrence.
705
717
  */
706
718
  tasks?: GetSolNetworkOperationTasksList;
719
+ /**
720
+ * Type of the update. Only present if the network operation lcmOperationType is UPDATE.
721
+ */
722
+ updateType?: UpdateSolNetworkType;
707
723
  }
708
724
  export interface GetSolNetworkOperationTaskDetails {
709
725
  /**
@@ -862,6 +878,16 @@ declare namespace Tnb {
862
878
  */
863
879
  nodeGroup?: String;
864
880
  }
881
+ export interface InstantiateMetadata {
882
+ /**
883
+ * The configurable properties used during instantiation.
884
+ */
885
+ additionalParamsForNs?: Document;
886
+ /**
887
+ * The network service descriptor used for instantiating the network instance.
888
+ */
889
+ nsdInfoId: NsdInfoId;
890
+ }
865
891
  export interface InstantiateSolNetworkInstanceInput {
866
892
  /**
867
893
  * Provides values for the configurable properties.
@@ -876,7 +902,7 @@ declare namespace Tnb {
876
902
  */
877
903
  nsInstanceId: NsInstanceId;
878
904
  /**
879
- * A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.
905
+ * A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are only applied to the network operation that is created. These tags are not applied to the network instance. Use tags to search and filter your resources or track your Amazon Web Services costs.
880
906
  */
881
907
  tags?: TagMap;
882
908
  }
@@ -886,7 +912,7 @@ declare namespace Tnb {
886
912
  */
887
913
  nsLcmOpOccId: NsLcmOpOccId;
888
914
  /**
889
- * A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.
915
+ * A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are only applied to the network operation that is created. These tags are not applied to the network instance. Use tags to search and filter your resources or track your Amazon Web Services costs.
890
916
  */
891
917
  tags?: TagMap;
892
918
  }
@@ -1129,6 +1155,10 @@ declare namespace Tnb {
1129
1155
  * The state of the network operation.
1130
1156
  */
1131
1157
  operationState: NsLcmOperationState;
1158
+ /**
1159
+ * Type of the update. Only present if the network operation lcmOperationType is UPDATE.
1160
+ */
1161
+ updateType?: UpdateSolNetworkType;
1132
1162
  }
1133
1163
  export interface ListSolNetworkOperationsInput {
1134
1164
  /**
@@ -1139,6 +1169,10 @@ declare namespace Tnb {
1139
1169
  * The token for the next page of results.
1140
1170
  */
1141
1171
  nextToken?: PaginationToken;
1172
+ /**
1173
+ * Network instance id filter, to retrieve network operations associated to a network instance.
1174
+ */
1175
+ nsInstanceId?: NsInstanceId;
1142
1176
  }
1143
1177
  export type ListSolNetworkOperationsInputMaxResultsInteger = number;
1144
1178
  export interface ListSolNetworkOperationsMetadata {
@@ -1150,6 +1184,14 @@ declare namespace Tnb {
1150
1184
  * The date that the resource was last modified.
1151
1185
  */
1152
1186
  lastModified: SyntheticTimestamp_date_time;
1187
+ /**
1188
+ * The network service descriptor id used for the operation. Only present if the updateType is UPDATE_NS.
1189
+ */
1190
+ nsdInfoId?: NsdInfoId;
1191
+ /**
1192
+ * The network function id used for the operation. Only present if the updateType is MODIFY_VNF_INFO.
1193
+ */
1194
+ vnfInstanceId?: VnfInstanceId;
1153
1195
  }
1154
1196
  export interface ListSolNetworkOperationsOutput {
1155
1197
  /**
@@ -1256,6 +1298,16 @@ declare namespace Tnb {
1256
1298
  */
1257
1299
  tags: TagMap;
1258
1300
  }
1301
+ export interface ModifyVnfInfoMetadata {
1302
+ /**
1303
+ * The configurable properties used during update of the network function instance.
1304
+ */
1305
+ vnfConfigurableProperties: Document;
1306
+ /**
1307
+ * The network function instance that was updated in the network instance.
1308
+ */
1309
+ vnfInstanceId: VnfInstanceId;
1310
+ }
1259
1311
  export interface NetworkArtifactMeta {
1260
1312
  /**
1261
1313
  * Lists network package overrides.
@@ -1267,7 +1319,7 @@ declare namespace Tnb {
1267
1319
  export type NsLcmOpOccArn = string;
1268
1320
  export type NsLcmOpOccId = string;
1269
1321
  export type NsLcmOperationState = "PROCESSING"|"COMPLETED"|"FAILED"|"CANCELLING"|"CANCELLED"|string;
1270
- export type NsState = "INSTANTIATED"|"NOT_INSTANTIATED"|"IMPAIRED"|"STOPPED"|"DELETED"|"INSTANTIATE_IN_PROGRESS"|"UPDATE_IN_PROGRESS"|"TERMINATE_IN_PROGRESS"|string;
1322
+ export type NsState = "INSTANTIATED"|"NOT_INSTANTIATED"|"UPDATED"|"IMPAIRED"|"UPDATE_FAILED"|"STOPPED"|"DELETED"|"INSTANTIATE_IN_PROGRESS"|"INTENT_TO_UPDATE_IN_PROGRESS"|"UPDATE_IN_PROGRESS"|"TERMINATE_IN_PROGRESS"|string;
1271
1323
  export type NsdId = string;
1272
1324
  export type NsdInfoArn = string;
1273
1325
  export type NsdInfoId = string;
@@ -1297,7 +1349,7 @@ declare namespace Tnb {
1297
1349
  /**
1298
1350
  * Function package file.
1299
1351
  */
1300
- file: _Blob;
1352
+ file: SensitiveBlob;
1301
1353
  /**
1302
1354
  * Function package ID.
1303
1355
  */
@@ -1340,7 +1392,7 @@ declare namespace Tnb {
1340
1392
  /**
1341
1393
  * Network package file.
1342
1394
  */
1343
- file: _Blob;
1395
+ file: SensitiveBlob;
1344
1396
  /**
1345
1397
  * Network service descriptor info ID.
1346
1398
  */
@@ -1379,6 +1431,7 @@ declare namespace Tnb {
1379
1431
  */
1380
1432
  vnfPkgIds: VnfPkgIdList;
1381
1433
  }
1434
+ export type SensitiveBlob = Buffer|Uint8Array|Blob|string;
1382
1435
  export type String = string;
1383
1436
  export type StringMap = {[key: string]: String};
1384
1437
  export type SyntheticTimestamp_date_time = Date;
@@ -1406,7 +1459,7 @@ declare namespace Tnb {
1406
1459
  */
1407
1460
  nsInstanceId: NsInstanceId;
1408
1461
  /**
1409
- * A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.
1462
+ * A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are only applied to the network operation that is created. These tags are not applied to the network instance. Use tags to search and filter your resources or track your Amazon Web Services costs.
1410
1463
  */
1411
1464
  tags?: TagMap;
1412
1465
  }
@@ -1416,7 +1469,7 @@ declare namespace Tnb {
1416
1469
  */
1417
1470
  nsLcmOpOccId?: NsLcmOpOccId;
1418
1471
  /**
1419
- * A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.
1472
+ * A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are only applied to the network operation that is created. These tags are not applied to the network instance. Use tags to search and filter your resources or track your Amazon Web Services costs.
1420
1473
  */
1421
1474
  tags?: TagMap;
1422
1475
  }
@@ -1442,6 +1495,16 @@ declare namespace Tnb {
1442
1495
  }
1443
1496
  export interface UntagResourceOutput {
1444
1497
  }
1498
+ export interface UpdateNsMetadata {
1499
+ /**
1500
+ * The configurable properties used during update.
1501
+ */
1502
+ additionalParamsForNs?: Document;
1503
+ /**
1504
+ * The network service descriptor used for updating the network instance.
1505
+ */
1506
+ nsdInfoId: NsdInfoId;
1507
+ }
1445
1508
  export interface UpdateSolFunctionPackageInput {
1446
1509
  /**
1447
1510
  * Operational state of the function package.
@@ -1460,7 +1523,7 @@ declare namespace Tnb {
1460
1523
  }
1461
1524
  export interface UpdateSolNetworkInstanceInput {
1462
1525
  /**
1463
- * Identifies the network function information parameters and/or the configurable properties of the network function to be modified.
1526
+ * Identifies the network function information parameters and/or the configurable properties of the network function to be modified. Include this property only if the update type is MODIFY_VNF_INFORMATION.
1464
1527
  */
1465
1528
  modifyVnfInfoData?: UpdateSolNetworkModify;
1466
1529
  /**
@@ -1468,11 +1531,15 @@ declare namespace Tnb {
1468
1531
  */
1469
1532
  nsInstanceId: NsInstanceId;
1470
1533
  /**
1471
- * A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.
1534
+ * A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are only applied to the network operation that is created. These tags are not applied to the network instance. Use tags to search and filter your resources or track your Amazon Web Services costs.
1472
1535
  */
1473
1536
  tags?: TagMap;
1474
1537
  /**
1475
- * The type of update.
1538
+ * Identifies the network service descriptor and the configurable properties of the descriptor, to be used for the update. Include this property only if the update type is UPDATE_NS.
1539
+ */
1540
+ updateNs?: UpdateSolNetworkServiceData;
1541
+ /**
1542
+ * The type of update. Use the MODIFY_VNF_INFORMATION update type, to update a specific network function configuration, in the network instance. Use the UPDATE_NS update type, to update the network instance to a new network service descriptor.
1476
1543
  */
1477
1544
  updateType: UpdateSolNetworkType;
1478
1545
  }
@@ -1482,7 +1549,7 @@ declare namespace Tnb {
1482
1549
  */
1483
1550
  nsLcmOpOccId?: NsLcmOpOccId;
1484
1551
  /**
1485
- * A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.
1552
+ * A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are only applied to the network operation that is created. These tags are not applied to the network instance. Use tags to search and filter your resources or track your Amazon Web Services costs.
1486
1553
  */
1487
1554
  tags?: TagMap;
1488
1555
  }
@@ -1512,7 +1579,17 @@ declare namespace Tnb {
1512
1579
  */
1513
1580
  nsdOperationalState: NsdOperationalState;
1514
1581
  }
1515
- export type UpdateSolNetworkType = "MODIFY_VNF_INFORMATION"|string;
1582
+ export interface UpdateSolNetworkServiceData {
1583
+ /**
1584
+ * Values for the configurable properties declared in the network service descriptor.
1585
+ */
1586
+ additionalParamsForNs?: Document;
1587
+ /**
1588
+ * ID of the network service descriptor.
1589
+ */
1590
+ nsdInfoId: NsdInfoId;
1591
+ }
1592
+ export type UpdateSolNetworkType = "MODIFY_VNF_INFORMATION"|"UPDATE_NS"|string;
1516
1593
  export type UsageState = "IN_USE"|"NOT_IN_USE"|string;
1517
1594
  export interface ValidateSolFunctionPackageContentInput {
1518
1595
  /**
@@ -1522,7 +1599,7 @@ declare namespace Tnb {
1522
1599
  /**
1523
1600
  * Function package file.
1524
1601
  */
1525
- file: _Blob;
1602
+ file: SensitiveBlob;
1526
1603
  /**
1527
1604
  * Function package ID.
1528
1605
  */
@@ -1565,7 +1642,7 @@ declare namespace Tnb {
1565
1642
  /**
1566
1643
  * Network package file.
1567
1644
  */
1568
- file: _Blob;
1645
+ file: SensitiveBlob;
1569
1646
  /**
1570
1647
  * Network service descriptor file.
1571
1648
  */
@@ -132,11 +132,11 @@ declare class WorkSpaces extends Service {
132
132
  */
133
133
  createWorkspaceImage(callback?: (err: AWSError, data: WorkSpaces.Types.CreateWorkspaceImageResult) => void): Request<WorkSpaces.Types.CreateWorkspaceImageResult, AWSError>;
134
134
  /**
135
- * Creates one or more WorkSpaces. This operation is asynchronous and returns before the WorkSpaces are created. The MANUAL running mode value is only supported by Amazon WorkSpaces Core. Contact your account team to be allow-listed to use this value. For more information, see Amazon WorkSpaces Core. You don't need to specify the PCOIP protocol for Linux bundles because WSP is the default protocol for those bundles. User-decoupled WorkSpaces are only supported by Amazon WorkSpaces Core.
135
+ * Creates one or more WorkSpaces. This operation is asynchronous and returns before the WorkSpaces are created. The MANUAL running mode value is only supported by Amazon WorkSpaces Core. Contact your account team to be allow-listed to use this value. For more information, see Amazon WorkSpaces Core. You don't need to specify the PCOIP protocol for Linux bundles because WSP is the default protocol for those bundles. User-decoupled WorkSpaces are only supported by Amazon WorkSpaces Core. Review your running mode to ensure you are using one that is optimal for your needs and budget. For more information on switching running modes, see Can I switch between hourly and monthly billing?
136
136
  */
137
137
  createWorkspaces(params: WorkSpaces.Types.CreateWorkspacesRequest, callback?: (err: AWSError, data: WorkSpaces.Types.CreateWorkspacesResult) => void): Request<WorkSpaces.Types.CreateWorkspacesResult, AWSError>;
138
138
  /**
139
- * Creates one or more WorkSpaces. This operation is asynchronous and returns before the WorkSpaces are created. The MANUAL running mode value is only supported by Amazon WorkSpaces Core. Contact your account team to be allow-listed to use this value. For more information, see Amazon WorkSpaces Core. You don't need to specify the PCOIP protocol for Linux bundles because WSP is the default protocol for those bundles. User-decoupled WorkSpaces are only supported by Amazon WorkSpaces Core.
139
+ * Creates one or more WorkSpaces. This operation is asynchronous and returns before the WorkSpaces are created. The MANUAL running mode value is only supported by Amazon WorkSpaces Core. Contact your account team to be allow-listed to use this value. For more information, see Amazon WorkSpaces Core. You don't need to specify the PCOIP protocol for Linux bundles because WSP is the default protocol for those bundles. User-decoupled WorkSpaces are only supported by Amazon WorkSpaces Core. Review your running mode to ensure you are using one that is optimal for your needs and budget. For more information on switching running modes, see Can I switch between hourly and monthly billing?
140
140
  */
141
141
  createWorkspaces(callback?: (err: AWSError, data: WorkSpaces.Types.CreateWorkspacesResult) => void): Request<WorkSpaces.Types.CreateWorkspacesResult, AWSError>;
142
142
  /**
@@ -971,13 +971,13 @@ declare namespace WorkSpaces {
971
971
  export type BundleType = "REGULAR"|"STANDBY"|string;
972
972
  export interface Capacity {
973
973
  /**
974
- * The desired number of user sessions for a multi-session pool. This is not allowed for single-session pools.
974
+ * The desired number of user sessions for the WorkSpaces in the pool.
975
975
  */
976
976
  DesiredUserSessions: DesiredUserSessions;
977
977
  }
978
978
  export interface CapacityStatus {
979
979
  /**
980
- * The number of user sessions currently being used for pool sessions. This only applies to multi-session pools.
980
+ * The number of user sessions currently available for streaming from your pool. AvailableUserSessions = ActualUserSessions - ActiveUserSessions
981
981
  */
982
982
  AvailableUserSessions: AvailableUserSessions;
983
983
  /**
@@ -985,11 +985,11 @@ declare namespace WorkSpaces {
985
985
  */
986
986
  DesiredUserSessions: DesiredUserSessions;
987
987
  /**
988
- * The total number of session slots that are available for a pool of WorkSpaces.
988
+ * The total number of user sessions that are available for streaming or are currently streaming in your pool. ActualUserSessions = AvailableUserSessions + ActiveUserSessions
989
989
  */
990
990
  ActualUserSessions: ActualUserSessions;
991
991
  /**
992
- * The number of user sessions currently being used for pool sessions. This only applies to multi-session pools.
992
+ * The number of user sessions currently being used for your pool.
993
993
  */
994
994
  ActiveUserSessions: ActiveUserSessions;
995
995
  }
@@ -3774,7 +3774,7 @@ declare namespace WorkSpaces {
3774
3774
  export type WorkspaceName = string;
3775
3775
  export interface WorkspaceProperties {
3776
3776
  /**
3777
- * The running mode. For more information, see Manage the WorkSpace Running Mode. The MANUAL value is only supported by Amazon WorkSpaces Core. Contact your account team to be allow-listed to use this value. For more information, see Amazon WorkSpaces Core.
3777
+ * The running mode. For more information, see Manage the WorkSpace Running Mode. The MANUAL value is only supported by Amazon WorkSpaces Core. Contact your account team to be allow-listed to use this value. For more information, see Amazon WorkSpaces Core. Review your running mode to ensure you are using one that is optimal for your needs and budget. For more information on switching running modes, see Can I switch between hourly and monthly billing?
3778
3778
  */
3779
3779
  RunningMode?: RunningMode;
3780
3780
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1663.0',
86
+ VERSION: '2.1665.0',
87
87
 
88
88
  /**
89
89
  * @api private