aws-sdk 2.832.0 → 2.833.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.
package/clients/iot.d.ts CHANGED
@@ -4115,11 +4115,11 @@ declare namespace Iot {
4115
4115
  */
4116
4116
  otaUpdateId: OTAUpdateId;
4117
4117
  /**
4118
- * Specifies if the stream associated with an OTA update should be deleted when the OTA update is deleted.
4118
+ * When true, the stream created by the OTAUpdate process is deleted when the OTA update is deleted. Ignored if the stream specified in the OTAUpdate is supplied by the user.
4119
4119
  */
4120
4120
  deleteStream?: DeleteStream;
4121
4121
  /**
4122
- * Specifies if the AWS Job associated with the OTA update should be deleted when the OTA update is deleted.
4122
+ * When true, deletes the AWS job created by the OTAUpdate process even if it is "IN_PROGRESS". Otherwise, if the job is not in a terminal state ("COMPLETED" or "CANCELED") an exception will occur. The default is false.
4123
4123
  */
4124
4124
  forceDeleteAWSJob?: ForceDeleteAWSJob;
4125
4125
  }
@@ -28,11 +28,11 @@ declare class ManagedBlockchain extends Service {
28
28
  */
29
29
  createNetwork(callback?: (err: AWSError, data: ManagedBlockchain.Types.CreateNetworkOutput) => void): Request<ManagedBlockchain.Types.CreateNetworkOutput, AWSError>;
30
30
  /**
31
- * Creates a node on the specified blockchain network. Applies to Hyperledger Fabric and Ethereum.
31
+ * Creates a node on the specified blockchain network. Applies to Hyperledger Fabric and Ethereum. Ethereum on Managed Blockchain is in preview release and is subject to change.
32
32
  */
33
33
  createNode(params: ManagedBlockchain.Types.CreateNodeInput, callback?: (err: AWSError, data: ManagedBlockchain.Types.CreateNodeOutput) => void): Request<ManagedBlockchain.Types.CreateNodeOutput, AWSError>;
34
34
  /**
35
- * Creates a node on the specified blockchain network. Applies to Hyperledger Fabric and Ethereum.
35
+ * Creates a node on the specified blockchain network. Applies to Hyperledger Fabric and Ethereum. Ethereum on Managed Blockchain is in preview release and is subject to change.
36
36
  */
37
37
  createNode(callback?: (err: AWSError, data: ManagedBlockchain.Types.CreateNodeOutput) => void): Request<ManagedBlockchain.Types.CreateNodeOutput, AWSError>;
38
38
  /**
@@ -139,6 +139,14 @@ declare class ManagedBlockchain extends Service {
139
139
  * Returns a list of proposals for the network. Applies only to Hyperledger Fabric.
140
140
  */
141
141
  listProposals(callback?: (err: AWSError, data: ManagedBlockchain.Types.ListProposalsOutput) => void): Request<ManagedBlockchain.Types.ListProposalsOutput, AWSError>;
142
+ /**
143
+ * Returns a list of tags for the specified resource. Each tag consists of a key and optional value. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.
144
+ */
145
+ listTagsForResource(params: ManagedBlockchain.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: ManagedBlockchain.Types.ListTagsForResourceResponse) => void): Request<ManagedBlockchain.Types.ListTagsForResourceResponse, AWSError>;
146
+ /**
147
+ * Returns a list of tags for the specified resource. Each tag consists of a key and optional value. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.
148
+ */
149
+ listTagsForResource(callback?: (err: AWSError, data: ManagedBlockchain.Types.ListTagsForResourceResponse) => void): Request<ManagedBlockchain.Types.ListTagsForResourceResponse, AWSError>;
142
150
  /**
143
151
  * Rejects an invitation to join a network. This action can be called by a principal in an AWS account that has received an invitation to create a member and join a network. Applies only to Hyperledger Fabric.
144
152
  */
@@ -147,6 +155,22 @@ declare class ManagedBlockchain extends Service {
147
155
  * Rejects an invitation to join a network. This action can be called by a principal in an AWS account that has received an invitation to create a member and join a network. Applies only to Hyperledger Fabric.
148
156
  */
149
157
  rejectInvitation(callback?: (err: AWSError, data: ManagedBlockchain.Types.RejectInvitationOutput) => void): Request<ManagedBlockchain.Types.RejectInvitationOutput, AWSError>;
158
+ /**
159
+ * Adds or overwrites the specified tags for the specified Amazon Managed Blockchain resource. Each tag consists of a key and optional value. When you specify a tag key that already exists, the tag value is overwritten with the new value. Use UntagResource to remove tag keys. A resource can have up to 50 tags. If you try to create more than 50 tags for a resource, your request fails and returns an error. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.
160
+ */
161
+ tagResource(params: ManagedBlockchain.Types.TagResourceRequest, callback?: (err: AWSError, data: ManagedBlockchain.Types.TagResourceResponse) => void): Request<ManagedBlockchain.Types.TagResourceResponse, AWSError>;
162
+ /**
163
+ * Adds or overwrites the specified tags for the specified Amazon Managed Blockchain resource. Each tag consists of a key and optional value. When you specify a tag key that already exists, the tag value is overwritten with the new value. Use UntagResource to remove tag keys. A resource can have up to 50 tags. If you try to create more than 50 tags for a resource, your request fails and returns an error. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.
164
+ */
165
+ tagResource(callback?: (err: AWSError, data: ManagedBlockchain.Types.TagResourceResponse) => void): Request<ManagedBlockchain.Types.TagResourceResponse, AWSError>;
166
+ /**
167
+ * Removes the specified tags from the Amazon Managed Blockchain resource. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.
168
+ */
169
+ untagResource(params: ManagedBlockchain.Types.UntagResourceRequest, callback?: (err: AWSError, data: ManagedBlockchain.Types.UntagResourceResponse) => void): Request<ManagedBlockchain.Types.UntagResourceResponse, AWSError>;
170
+ /**
171
+ * Removes the specified tags from the Amazon Managed Blockchain resource. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.
172
+ */
173
+ untagResource(callback?: (err: AWSError, data: ManagedBlockchain.Types.UntagResourceResponse) => void): Request<ManagedBlockchain.Types.UntagResourceResponse, AWSError>;
150
174
  /**
151
175
  * Updates a member configuration with new parameters. Applies only to Hyperledger Fabric.
152
176
  */
@@ -187,6 +211,7 @@ declare namespace ManagedBlockchain {
187
211
  */
188
212
  ThresholdComparator?: ThresholdComparator;
189
213
  }
214
+ export type ArnString = string;
190
215
  export type AvailabilityZoneString = string;
191
216
  export type ClientRequestTokenString = string;
192
217
  export interface CreateMemberInput {
@@ -246,6 +271,10 @@ declare namespace ManagedBlockchain {
246
271
  * Configuration properties for the first member within the network.
247
272
  */
248
273
  MemberConfiguration: MemberConfiguration;
274
+ /**
275
+ * Tags to assign to the network. Each tag consists of a key and optional value. When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 added to each resource. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.
276
+ */
277
+ Tags?: InputTagMap;
249
278
  }
250
279
  export interface CreateNetworkOutput {
251
280
  /**
@@ -274,6 +303,10 @@ declare namespace ManagedBlockchain {
274
303
  * The properties of a node configuration.
275
304
  */
276
305
  NodeConfiguration: NodeConfiguration;
306
+ /**
307
+ * Tags to assign to the node. Each tag consists of a key and optional value. When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 added to each resource. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.
308
+ */
309
+ Tags?: InputTagMap;
277
310
  }
278
311
  export interface CreateNodeOutput {
279
312
  /**
@@ -302,6 +335,10 @@ declare namespace ManagedBlockchain {
302
335
  * A description for the proposal that is visible to voting members, for example, "Proposal to add Example Corp. as member."
303
336
  */
304
337
  Description?: DescriptionString;
338
+ /**
339
+ * Tags to assign to the proposal. Each tag consists of a key and optional value. When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 added to each resource. If the proposal is for a network invitation, the invitation inherits the tags added to the proposal. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.
340
+ */
341
+ Tags?: InputTagMap;
305
342
  }
306
343
  export interface CreateProposalOutput {
307
344
  /**
@@ -406,6 +443,7 @@ declare namespace ManagedBlockchain {
406
443
  */
407
444
  Proposal?: Proposal;
408
445
  }
446
+ export type InputTagMap = {[key: string]: TagValue};
409
447
  export type InstanceTypeString = string;
410
448
  export interface Invitation {
411
449
  /**
@@ -425,6 +463,10 @@ declare namespace ManagedBlockchain {
425
463
  */
426
464
  Status?: InvitationStatus;
427
465
  NetworkSummary?: NetworkSummary;
466
+ /**
467
+ * The Amazon Resource Name (ARN) of the invitation. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
468
+ */
469
+ Arn?: ArnString;
428
470
  }
429
471
  export type InvitationList = Invitation[];
430
472
  export type InvitationStatus = "PENDING"|"ACCEPTED"|"ACCEPTING"|"REJECTED"|"EXPIRED"|string;
@@ -608,6 +650,18 @@ declare namespace ManagedBlockchain {
608
650
  */
609
651
  NextToken?: PaginationToken;
610
652
  }
653
+ export interface ListTagsForResourceRequest {
654
+ /**
655
+ * The Amazon Resource Name (ARN) of the resource. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
656
+ */
657
+ ResourceArn: ArnString;
658
+ }
659
+ export interface ListTagsForResourceResponse {
660
+ /**
661
+ * The tags assigned to the resource.
662
+ */
663
+ Tags?: OutputTagMap;
664
+ }
611
665
  export interface LogConfiguration {
612
666
  /**
613
667
  * Indicates whether logging is enabled.
@@ -653,6 +707,14 @@ declare namespace ManagedBlockchain {
653
707
  * The date and time that the member was created.
654
708
  */
655
709
  CreationDate?: Timestamp;
710
+ /**
711
+ * Tags assigned to the member. Tags consist of a key and optional value. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.
712
+ */
713
+ Tags?: OutputTagMap;
714
+ /**
715
+ * The Amazon Resource Name (ARN) of the member. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
716
+ */
717
+ Arn?: ArnString;
656
718
  }
657
719
  export interface MemberConfiguration {
658
720
  /**
@@ -671,6 +733,10 @@ declare namespace ManagedBlockchain {
671
733
  * Configuration properties for logging events associated with a member of a Managed Blockchain network.
672
734
  */
673
735
  LogPublishingConfiguration?: MemberLogPublishingConfiguration;
736
+ /**
737
+ * Tags assigned to the member. Tags consist of a key and optional value. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide. When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 added to each resource.
738
+ */
739
+ Tags?: InputTagMap;
674
740
  }
675
741
  export interface MemberFabricAttributes {
676
742
  /**
@@ -743,6 +809,10 @@ declare namespace ManagedBlockchain {
743
809
  * An indicator of whether the member is owned by your AWS account or a different AWS account.
744
810
  */
745
811
  IsOwned?: IsOwned;
812
+ /**
813
+ * The Amazon Resource Name (ARN) of the member. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
814
+ */
815
+ Arn?: ArnString;
746
816
  }
747
817
  export type MemberSummaryList = MemberSummary[];
748
818
  export type NameString = string;
@@ -787,6 +857,14 @@ declare namespace ManagedBlockchain {
787
857
  * The date and time that the network was created.
788
858
  */
789
859
  CreationDate?: Timestamp;
860
+ /**
861
+ * Tags assigned to the network. Each tag consists of a key and optional value. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.
862
+ */
863
+ Tags?: OutputTagMap;
864
+ /**
865
+ * The Amazon Resource Name (ARN) of the network. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
866
+ */
867
+ Arn?: ArnString;
790
868
  }
791
869
  export interface NetworkEthereumAttributes {
792
870
  /**
@@ -816,7 +894,7 @@ declare namespace ManagedBlockchain {
816
894
  */
817
895
  Fabric?: NetworkFabricAttributes;
818
896
  /**
819
- * Attributes of an Ethereum network for Managed Blockchain resources participating in an Ethereum network.
897
+ * Attributes of an Ethereum network for Managed Blockchain resources participating in an Ethereum network. Ethereum on Managed Blockchain is in preview release and is subject to change.
820
898
  */
821
899
  Ethereum?: NetworkEthereumAttributes;
822
900
  }
@@ -858,6 +936,10 @@ declare namespace ManagedBlockchain {
858
936
  * The date and time that the network was created.
859
937
  */
860
938
  CreationDate?: Timestamp;
939
+ /**
940
+ * The Amazon Resource Name (ARN) of the network. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
941
+ */
942
+ Arn?: ArnString;
861
943
  }
862
944
  export type NetworkSummaryList = NetworkSummary[];
863
945
  export interface Node {
@@ -878,7 +960,7 @@ declare namespace ManagedBlockchain {
878
960
  */
879
961
  InstanceType?: InstanceTypeString;
880
962
  /**
881
- * The Availability Zone in which the node exists.
963
+ * The Availability Zone in which the node exists. Required for Ethereum nodes. Ethereum on Managed Blockchain is in preview release and is subject to change.
882
964
  */
883
965
  AvailabilityZone?: AvailabilityZoneString;
884
966
  /**
@@ -901,6 +983,14 @@ declare namespace ManagedBlockchain {
901
983
  * The date and time that the node was created.
902
984
  */
903
985
  CreationDate?: Timestamp;
986
+ /**
987
+ * Tags assigned to the node. Each tag consists of a key and optional value. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.
988
+ */
989
+ Tags?: OutputTagMap;
990
+ /**
991
+ * The Amazon Resource Name (ARN) of the node. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
992
+ */
993
+ Arn?: ArnString;
904
994
  }
905
995
  export interface NodeConfiguration {
906
996
  /**
@@ -908,7 +998,7 @@ declare namespace ManagedBlockchain {
908
998
  */
909
999
  InstanceType: InstanceTypeString;
910
1000
  /**
911
- * The Availability Zone in which the node exists.
1001
+ * The Availability Zone in which the node exists. Required for Ethereum nodes. Ethereum on Managed Blockchain is in preview release and is subject to change.
912
1002
  */
913
1003
  AvailabilityZone?: AvailabilityZoneString;
914
1004
  /**
@@ -956,7 +1046,7 @@ declare namespace ManagedBlockchain {
956
1046
  */
957
1047
  Fabric?: NodeFabricAttributes;
958
1048
  /**
959
- * Attributes of Ethereum for a node on a Managed Blockchain network that uses Ethereum.
1049
+ * Attributes of Ethereum for a node on a Managed Blockchain network that uses Ethereum. Ethereum on Managed Blockchain is in preview release and is subject to change.
960
1050
  */
961
1051
  Ethereum?: NodeEthereumAttributes;
962
1052
  }
@@ -989,8 +1079,13 @@ declare namespace ManagedBlockchain {
989
1079
  * The EC2 instance type for the node.
990
1080
  */
991
1081
  InstanceType?: InstanceTypeString;
1082
+ /**
1083
+ * The Amazon Resource Name (ARN) of the node. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
1084
+ */
1085
+ Arn?: ArnString;
992
1086
  }
993
1087
  export type NodeSummaryList = NodeSummary[];
1088
+ export type OutputTagMap = {[key: string]: TagValue};
994
1089
  export type PaginationToken = string;
995
1090
  export type PasswordString = string;
996
1091
  export type PrincipalString = string;
@@ -1043,6 +1138,14 @@ declare namespace ManagedBlockchain {
1043
1138
  * The number of votes remaining to be cast on the proposal by members. In other words, the number of members minus the sum of YES votes and NO votes.
1044
1139
  */
1045
1140
  OutstandingVoteCount?: VoteCount;
1141
+ /**
1142
+ * Tags assigned to the proposal. Each tag consists of a key and optional value. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.
1143
+ */
1144
+ Tags?: OutputTagMap;
1145
+ /**
1146
+ * The Amazon Resource Name (ARN) of the proposal. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
1147
+ */
1148
+ Arn?: ArnString;
1046
1149
  }
1047
1150
  export interface ProposalActions {
1048
1151
  /**
@@ -1086,6 +1189,10 @@ declare namespace ManagedBlockchain {
1086
1189
  * The date and time that the proposal expires. This is the CreationDate plus the ProposalDurationInHours that is specified in the ProposalThresholdPolicy. After this date and time, if members have not cast enough votes to determine the outcome according to the voting policy, the proposal is EXPIRED and Actions are not carried out.
1087
1190
  */
1088
1191
  ExpirationDate?: Timestamp;
1192
+ /**
1193
+ * The Amazon Resource Name (ARN) of the proposal. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
1194
+ */
1195
+ Arn?: ArnString;
1089
1196
  }
1090
1197
  export type ProposalSummaryList = ProposalSummary[];
1091
1198
  export type ProposalVoteList = VoteSummary[];
@@ -1107,9 +1214,36 @@ declare namespace ManagedBlockchain {
1107
1214
  export type ResourceIdString = string;
1108
1215
  export type StateDBType = "LevelDB"|"CouchDB"|string;
1109
1216
  export type String = string;
1217
+ export type TagKey = string;
1218
+ export type TagKeyList = TagKey[];
1219
+ export interface TagResourceRequest {
1220
+ /**
1221
+ * The Amazon Resource Name (ARN) of the resource. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
1222
+ */
1223
+ ResourceArn: ArnString;
1224
+ /**
1225
+ * The tags to assign to the specified resource. Tag values can be empty, for example, "MyTagKey" : "". You can specify multiple key-value pairs in a single request, with an overall maximum of 50 added to each resource.
1226
+ */
1227
+ Tags: InputTagMap;
1228
+ }
1229
+ export interface TagResourceResponse {
1230
+ }
1231
+ export type TagValue = string;
1110
1232
  export type ThresholdComparator = "GREATER_THAN"|"GREATER_THAN_OR_EQUAL_TO"|string;
1111
1233
  export type ThresholdPercentageInt = number;
1112
1234
  export type Timestamp = Date;
1235
+ export interface UntagResourceRequest {
1236
+ /**
1237
+ * The Amazon Resource Name (ARN) of the resource. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
1238
+ */
1239
+ ResourceArn: ArnString;
1240
+ /**
1241
+ * The tag keys.
1242
+ */
1243
+ TagKeys: TagKeyList;
1244
+ }
1245
+ export interface UntagResourceResponse {
1246
+ }
1113
1247
  export interface UpdateMemberInput {
1114
1248
  /**
1115
1249
  * The unique identifier of the Managed Blockchain network to which the member belongs.
@@ -2049,7 +2049,7 @@ declare namespace RoboMaker {
2049
2049
  */
2050
2050
  portForwardingConfig?: PortForwardingConfig;
2051
2051
  /**
2052
- * Boolean indicating whether a streaming session will be configured for the application. If True, AWS RoboMaker will configure a connection so you can interact with your application as it is running in the simulation. You must configure and luanch the component. It must have a graphical user interface.
2052
+ * Boolean indicating whether a streaming session will be configured for the application. If True, AWS RoboMaker will configure a connection so you can interact with your application as it is running in the simulation. You must configure and launch the component. It must have a graphical user interface.
2053
2053
  */
2054
2054
  streamUI?: Boolean;
2055
2055
  }
@@ -2504,6 +2504,14 @@ declare namespace RoboMaker {
2504
2504
  * The launch configuration for the robot application.
2505
2505
  */
2506
2506
  launchConfig: LaunchConfig;
2507
+ /**
2508
+ * The upload configurations for the robot application.
2509
+ */
2510
+ uploadConfigurations?: UploadConfigurations;
2511
+ /**
2512
+ * A Boolean indicating whether to use default upload configurations. By default, .ros and .gazebo files are uploaded when the application terminates and all ROS topics will be recorded. If you set this value, you must specify an outputLocation.
2513
+ */
2514
+ useDefaultUploadConfigurations?: BoxedBoolean;
2507
2515
  }
2508
2516
  export type RobotApplicationConfigs = RobotApplicationConfig[];
2509
2517
  export type RobotApplicationNames = Name[];
@@ -2619,10 +2627,18 @@ declare namespace RoboMaker {
2619
2627
  * The launch configuration for the simulation application.
2620
2628
  */
2621
2629
  launchConfig: LaunchConfig;
2630
+ /**
2631
+ * Information about upload configurations for the simulation application.
2632
+ */
2633
+ uploadConfigurations?: UploadConfigurations;
2622
2634
  /**
2623
2635
  * A list of world configurations.
2624
2636
  */
2625
2637
  worldConfigs?: WorldConfigs;
2638
+ /**
2639
+ * A Boolean indicating whether to use default upload configurations. By default, .ros and .gazebo files are uploaded when the application terminates and all ROS topics will be recorded. If you set this value, you must specify an outputLocation.
2640
+ */
2641
+ useDefaultUploadConfigurations?: BoxedBoolean;
2626
2642
  }
2627
2643
  export type SimulationApplicationConfigs = SimulationApplicationConfig[];
2628
2644
  export type SimulationApplicationNames = Name[];
@@ -2772,7 +2788,7 @@ declare namespace RoboMaker {
2772
2788
  */
2773
2789
  createdRequestCount?: Integer;
2774
2790
  }
2775
- export type SimulationJobErrorCode = "InternalServiceError"|"RobotApplicationCrash"|"SimulationApplicationCrash"|"BadPermissionsRobotApplication"|"BadPermissionsSimulationApplication"|"BadPermissionsS3Object"|"BadPermissionsS3Output"|"BadPermissionsCloudwatchLogs"|"SubnetIpLimitExceeded"|"ENILimitExceeded"|"BadPermissionsUserCredentials"|"InvalidBundleRobotApplication"|"InvalidBundleSimulationApplication"|"InvalidS3Resource"|"LimitExceeded"|"MismatchedEtag"|"RobotApplicationVersionMismatchedEtag"|"SimulationApplicationVersionMismatchedEtag"|"ResourceNotFound"|"RequestThrottled"|"BatchTimedOut"|"BatchCanceled"|"InvalidInput"|"WrongRegionS3Bucket"|"WrongRegionS3Output"|"WrongRegionRobotApplication"|"WrongRegionSimulationApplication"|string;
2791
+ export type SimulationJobErrorCode = "InternalServiceError"|"RobotApplicationCrash"|"SimulationApplicationCrash"|"BadPermissionsRobotApplication"|"BadPermissionsSimulationApplication"|"BadPermissionsS3Object"|"BadPermissionsS3Output"|"BadPermissionsCloudwatchLogs"|"SubnetIpLimitExceeded"|"ENILimitExceeded"|"BadPermissionsUserCredentials"|"InvalidBundleRobotApplication"|"InvalidBundleSimulationApplication"|"InvalidS3Resource"|"LimitExceeded"|"MismatchedEtag"|"RobotApplicationVersionMismatchedEtag"|"SimulationApplicationVersionMismatchedEtag"|"ResourceNotFound"|"RequestThrottled"|"BatchTimedOut"|"BatchCanceled"|"InvalidInput"|"WrongRegionS3Bucket"|"WrongRegionS3Output"|"WrongRegionRobotApplication"|"WrongRegionSimulationApplication"|"UploadContentMismatchError"|string;
2776
2792
  export interface SimulationJobRequest {
2777
2793
  outputLocation?: OutputLocation;
2778
2794
  loggingConfig?: LoggingConfig;
@@ -2789,7 +2805,7 @@ declare namespace RoboMaker {
2789
2805
  */
2790
2806
  failureBehavior?: FailureBehavior;
2791
2807
  /**
2792
- * Boolean indicating whether to use default simulation tool applications.
2808
+ * A Boolean indicating whether to use default applications in the simulation job. Default applications include Gazebo, rqt, rviz and terminal access.
2793
2809
  */
2794
2810
  useDefaultApplications?: BoxedBoolean;
2795
2811
  /**
@@ -3210,6 +3226,22 @@ declare namespace RoboMaker {
3210
3226
  */
3211
3227
  lastUpdatedAt?: LastUpdatedAt;
3212
3228
  }
3229
+ export type UploadBehavior = "UPLOAD_ON_TERMINATE"|"UPLOAD_ROLLING_AUTO_REMOVE"|string;
3230
+ export interface UploadConfiguration {
3231
+ /**
3232
+ * A prefix that specifies where files will be uploaded in Amazon S3. It is appended to the simulation output location to determine the final path. For example, if your simulation output location is s3://my-bucket and your upload configuration name is robot-test, your files will be uploaded to s3://my-bucket/&lt;simid&gt;/&lt;runid&gt;/robot-test.
3233
+ */
3234
+ name: Name;
3235
+ /**
3236
+ * Specifies the path of the file(s) to upload. Standard Unix glob matching rules are accepted, with the addition of ** as a super asterisk. For example, specifying /var/log/**.log causes all .log files in the /var/log directory tree to be collected. For more examples, see Glob Library.
3237
+ */
3238
+ path: Path;
3239
+ /**
3240
+ * Specifies how to upload the files: UPLOAD_ON_TERMINATE Matching files are uploaded once the simulation enters the TERMINATING state. Matching files are not uploaded until all of your code (including tools) have stopped. If there is a problem uploading a file, the upload is retried. If problems persist, no further upload attempts will be made. UPLOAD_ROLLING_AUTO_REMOVE Matching files are uploaded as they are created. They are deleted after they are uploaded. The specified path is checked every 5 seconds. A final check is made when all of your code (including tools) have stopped.
3241
+ */
3242
+ uploadBehavior: UploadBehavior;
3243
+ }
3244
+ export type UploadConfigurations = UploadConfiguration[];
3213
3245
  export interface VPCConfig {
3214
3246
  /**
3215
3247
  * A list of one or more subnet IDs in your VPC.
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.832.0',
86
+ VERSION: '2.833.0',
87
87
 
88
88
  /**
89
89
  * @api private