aws-sdk 2.1353.0 → 2.1355.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.
@@ -2523,7 +2523,7 @@ declare namespace EventBridge {
2523
2523
  /**
2524
2524
  * The SQL statement text to run.
2525
2525
  */
2526
- Sql: Sql;
2526
+ Sql?: Sql;
2527
2527
  /**
2528
2528
  * The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
2529
2529
  */
@@ -2532,6 +2532,7 @@ declare namespace EventBridge {
2532
2532
  * Indicates whether to send an event back to EventBridge after the SQL statement runs.
2533
2533
  */
2534
2534
  WithEvent?: Boolean;
2535
+ Sqls?: Sqls;
2535
2536
  }
2536
2537
  export type RedshiftSecretManagerArn = string;
2537
2538
  export type ReferenceId = string;
@@ -2766,6 +2767,7 @@ declare namespace EventBridge {
2766
2767
  }
2767
2768
  export type SecretsManagerSecretArn = string;
2768
2769
  export type Sql = string;
2770
+ export type Sqls = Sql[];
2769
2771
  export interface SqsParameters {
2770
2772
  /**
2771
2773
  * The FIFO message group ID to use as the target.
package/clients/iot.d.ts CHANGED
@@ -3454,6 +3454,10 @@ declare namespace Iot {
3454
3454
  * Metadata which can be used to manage the domain configuration. For URI Request parameters use format: ...key1=value1&key2=value2... For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..." For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."
3455
3455
  */
3456
3456
  tags?: TagList;
3457
+ /**
3458
+ * An object that specifies the TLS configuration for a domain.
3459
+ */
3460
+ tlsConfig?: TlsConfig;
3457
3461
  }
3458
3462
  export interface CreateDomainConfigurationResponse {
3459
3463
  /**
@@ -4918,6 +4922,10 @@ declare namespace Iot {
4918
4922
  * The date and time the domain configuration's status was last changed.
4919
4923
  */
4920
4924
  lastStatusChangeDate?: DateType;
4925
+ /**
4926
+ * An object that specifies the TLS configuration for a domain.
4927
+ */
4928
+ tlsConfig?: TlsConfig;
4921
4929
  }
4922
4930
  export interface DescribeEndpointRequest {
4923
4931
  /**
@@ -9648,6 +9656,7 @@ declare namespace Iot {
9648
9656
  export type Seconds = number;
9649
9657
  export type SecurityGroupId = string;
9650
9658
  export type SecurityGroupList = SecurityGroupId[];
9659
+ export type SecurityPolicy = string;
9651
9660
  export type SecurityProfileArn = string;
9652
9661
  export type SecurityProfileDescription = string;
9653
9662
  export interface SecurityProfileIdentifier {
@@ -10557,6 +10566,12 @@ declare namespace Iot {
10557
10566
  export type TimestreamTimestampUnit = string;
10558
10567
  export type TimestreamTimestampValue = string;
10559
10568
  export type TinyMaxResults = number;
10569
+ export interface TlsConfig {
10570
+ /**
10571
+ * The security policy for a domain configuration. For more information, see Security policies in the Amazon Web Services IoT Core developer guide.
10572
+ */
10573
+ securityPolicy?: SecurityPolicy;
10574
+ }
10560
10575
  export interface TlsContext {
10561
10576
  /**
10562
10577
  * The value of the serverName key in a TLS authorization request.
@@ -11007,6 +11022,10 @@ declare namespace Iot {
11007
11022
  * Removes the authorization configuration from a domain.
11008
11023
  */
11009
11024
  removeAuthorizerConfig?: RemoveAuthorizerConfig;
11025
+ /**
11026
+ * An object that specifies the TLS configuration for a domain.
11027
+ */
11028
+ tlsConfig?: TlsConfig;
11010
11029
  }
11011
11030
  export interface UpdateDomainConfigurationResponse {
11012
11031
  /**
@@ -110,6 +110,10 @@ declare namespace IotData {
110
110
  * The Epoch date and time, in milliseconds, when the retained message was stored by IoT.
111
111
  */
112
112
  lastModifiedTime?: Timestamp;
113
+ /**
114
+ * A base64-encoded JSON string that includes an array of JSON objects, or null if the retained message doesn't include any user properties. The following example userProperties parameter is a JSON string that represents two user properties. Note that it will be base64-encoded: [{"deviceName": "alpha"}, {"deviceCnt": "45"}]
115
+ */
116
+ userProperties?: UserPropertiesBlob;
113
117
  }
114
118
  export interface GetThingShadowRequest {
115
119
  /**
@@ -273,6 +277,7 @@ declare namespace IotData {
273
277
  payload?: JsonDocument;
274
278
  }
275
279
  export type UserProperties = string;
280
+ export type UserPropertiesBlob = Buffer|Uint8Array|Blob|string;
276
281
  /**
277
282
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
278
283
  */
@@ -19,6 +19,14 @@ declare class MarketplaceCatalog extends Service {
19
19
  * Used to cancel an open change request. Must be sent before the status of the request changes to APPLYING, the final stage of completing your change request. You can describe a change during the 60-day request history retention period for API calls.
20
20
  */
21
21
  cancelChangeSet(callback?: (err: AWSError, data: MarketplaceCatalog.Types.CancelChangeSetResponse) => void): Request<MarketplaceCatalog.Types.CancelChangeSetResponse, AWSError>;
22
+ /**
23
+ * Deletes a resource-based policy on an Entity that is identified by its resource ARN.
24
+ */
25
+ deleteResourcePolicy(params: MarketplaceCatalog.Types.DeleteResourcePolicyRequest, callback?: (err: AWSError, data: MarketplaceCatalog.Types.DeleteResourcePolicyResponse) => void): Request<MarketplaceCatalog.Types.DeleteResourcePolicyResponse, AWSError>;
26
+ /**
27
+ * Deletes a resource-based policy on an Entity that is identified by its resource ARN.
28
+ */
29
+ deleteResourcePolicy(callback?: (err: AWSError, data: MarketplaceCatalog.Types.DeleteResourcePolicyResponse) => void): Request<MarketplaceCatalog.Types.DeleteResourcePolicyResponse, AWSError>;
22
30
  /**
23
31
  * Provides information about a given change set.
24
32
  */
@@ -35,6 +43,14 @@ declare class MarketplaceCatalog extends Service {
35
43
  * Returns the metadata and content of the entity.
36
44
  */
37
45
  describeEntity(callback?: (err: AWSError, data: MarketplaceCatalog.Types.DescribeEntityResponse) => void): Request<MarketplaceCatalog.Types.DescribeEntityResponse, AWSError>;
46
+ /**
47
+ * Gets a resource-based policy of an Entity that is identified by its resource ARN.
48
+ */
49
+ getResourcePolicy(params: MarketplaceCatalog.Types.GetResourcePolicyRequest, callback?: (err: AWSError, data: MarketplaceCatalog.Types.GetResourcePolicyResponse) => void): Request<MarketplaceCatalog.Types.GetResourcePolicyResponse, AWSError>;
50
+ /**
51
+ * Gets a resource-based policy of an Entity that is identified by its resource ARN.
52
+ */
53
+ getResourcePolicy(callback?: (err: AWSError, data: MarketplaceCatalog.Types.GetResourcePolicyResponse) => void): Request<MarketplaceCatalog.Types.GetResourcePolicyResponse, AWSError>;
38
54
  /**
39
55
  * Returns the list of change sets owned by the account being used to make the call. You can filter this list by providing any combination of entityId, ChangeSetName, and status. If you provide more than one filter, the API operation applies a logical AND between the filters. You can describe a change during the 60-day request history retention period for API calls.
40
56
  */
@@ -60,11 +76,19 @@ declare class MarketplaceCatalog extends Service {
60
76
  */
61
77
  listTagsForResource(callback?: (err: AWSError, data: MarketplaceCatalog.Types.ListTagsForResourceResponse) => void): Request<MarketplaceCatalog.Types.ListTagsForResourceResponse, AWSError>;
62
78
  /**
63
- * Allows you to request changes for your entities. Within a single ChangeSet, you can't start the same change type against the same entity multiple times. Additionally, when a ChangeSet is running, all the entities targeted by the different changes are locked until the change set has completed (either succeeded, cancelled, or failed). If you try to start a change set containing a change against an entity that is already locked, you will receive a ResourceInUseException error. For example, you can't start the ChangeSet described in the example later in this topic because it contains two changes to run the same change type (AddRevisions) against the same entity (entity-id@1). For more information about working with change sets, see Working with change sets.
79
+ * Attaches a resource-based policy to an Entity. Examples of an entity include: AmiProduct and ContainerProduct.
80
+ */
81
+ putResourcePolicy(params: MarketplaceCatalog.Types.PutResourcePolicyRequest, callback?: (err: AWSError, data: MarketplaceCatalog.Types.PutResourcePolicyResponse) => void): Request<MarketplaceCatalog.Types.PutResourcePolicyResponse, AWSError>;
82
+ /**
83
+ * Attaches a resource-based policy to an Entity. Examples of an entity include: AmiProduct and ContainerProduct.
84
+ */
85
+ putResourcePolicy(callback?: (err: AWSError, data: MarketplaceCatalog.Types.PutResourcePolicyResponse) => void): Request<MarketplaceCatalog.Types.PutResourcePolicyResponse, AWSError>;
86
+ /**
87
+ * Allows you to request changes for your entities. Within a single ChangeSet, you can't start the same change type against the same entity multiple times. Additionally, when a ChangeSet is running, all the entities targeted by the different changes are locked until the change set has completed (either succeeded, cancelled, or failed). If you try to start a change set containing a change against an entity that is already locked, you will receive a ResourceInUseException error. For example, you can't start the ChangeSet described in the example later in this topic because it contains two changes to run the same change type (AddRevisions) against the same entity (entity-id@1). For more information about working with change sets, see Working with change sets. For information on change types for single-AMI products, see Working with single-AMI products. Als, for more information on change types available for container-based products, see Working with container products.
64
88
  */
65
89
  startChangeSet(params: MarketplaceCatalog.Types.StartChangeSetRequest, callback?: (err: AWSError, data: MarketplaceCatalog.Types.StartChangeSetResponse) => void): Request<MarketplaceCatalog.Types.StartChangeSetResponse, AWSError>;
66
90
  /**
67
- * Allows you to request changes for your entities. Within a single ChangeSet, you can't start the same change type against the same entity multiple times. Additionally, when a ChangeSet is running, all the entities targeted by the different changes are locked until the change set has completed (either succeeded, cancelled, or failed). If you try to start a change set containing a change against an entity that is already locked, you will receive a ResourceInUseException error. For example, you can't start the ChangeSet described in the example later in this topic because it contains two changes to run the same change type (AddRevisions) against the same entity (entity-id@1). For more information about working with change sets, see Working with change sets.
91
+ * Allows you to request changes for your entities. Within a single ChangeSet, you can't start the same change type against the same entity multiple times. Additionally, when a ChangeSet is running, all the entities targeted by the different changes are locked until the change set has completed (either succeeded, cancelled, or failed). If you try to start a change set containing a change against an entity that is already locked, you will receive a ResourceInUseException error. For example, you can't start the ChangeSet described in the example later in this topic because it contains two changes to run the same change type (AddRevisions) against the same entity (entity-id@1). For more information about working with change sets, see Working with change sets. For information on change types for single-AMI products, see Working with single-AMI products. Als, for more information on change types available for container-based products, see Working with container products.
68
92
  */
69
93
  startChangeSet(callback?: (err: AWSError, data: MarketplaceCatalog.Types.StartChangeSetResponse) => void): Request<MarketplaceCatalog.Types.StartChangeSetResponse, AWSError>;
70
94
  /**
@@ -109,7 +133,7 @@ declare namespace MarketplaceCatalog {
109
133
  export type Catalog = string;
110
134
  export interface Change {
111
135
  /**
112
- * Change types are single string values that describe your intention for the change. Each change type is unique for each EntityType provided in the change's scope.
136
+ * Change types are single string values that describe your intention for the change. Each change type is unique for each EntityType provided in the change's scope. For more information on change types available for single-AMI products, see Working with single-AMI products. Also, for more information on change types available for container-based products, see Working with container products.
113
137
  */
114
138
  ChangeType: ChangeType;
115
139
  /**
@@ -121,7 +145,7 @@ declare namespace MarketplaceCatalog {
121
145
  */
122
146
  EntityTags?: TagList;
123
147
  /**
124
- * This object contains details specific to the change type of the requested change.
148
+ * This object contains details specific to the change type of the requested change. For more information on change types available for single-AMI products, see Working with single-AMI products. Also, for more information on change types available for container-based products, see Working with container products.
125
149
  */
126
150
  Details: Json;
127
151
  /**
@@ -193,6 +217,14 @@ declare namespace MarketplaceCatalog {
193
217
  export type ChangeType = string;
194
218
  export type ClientRequestToken = string;
195
219
  export type DateTimeISO8601 = string;
220
+ export interface DeleteResourcePolicyRequest {
221
+ /**
222
+ * The Amazon Resource Name (ARN) of the Entity resource that is associated with the resource policy.
223
+ */
224
+ ResourceArn: ResourceARN;
225
+ }
226
+ export interface DeleteResourcePolicyResponse {
227
+ }
196
228
  export interface DescribeChangeSetRequest {
197
229
  /**
198
230
  * Required. The catalog related to the request. Fixed value: AWSMarketplace
@@ -339,8 +371,21 @@ declare namespace MarketplaceCatalog {
339
371
  export type FilterList = Filter[];
340
372
  export type FilterName = string;
341
373
  export type FilterValueContent = string;
374
+ export interface GetResourcePolicyRequest {
375
+ /**
376
+ * The Amazon Resource Name (ARN) of the Entity resource that is associated with the resource policy.
377
+ */
378
+ ResourceArn: ResourceARN;
379
+ }
380
+ export interface GetResourcePolicyResponse {
381
+ /**
382
+ * The policy document to set; formatted in JSON.
383
+ */
384
+ Policy?: ResourcePolicyJson;
385
+ }
342
386
  export type Identifier = string;
343
387
  export type Json = string;
388
+ export type ListChangeSetsMaxResultInteger = number;
344
389
  export interface ListChangeSetsRequest {
345
390
  /**
346
391
  * The catalog related to the request. Fixed value: AWSMarketplace
@@ -357,7 +402,7 @@ declare namespace MarketplaceCatalog {
357
402
  /**
358
403
  * The maximum number of results returned by a single call. This value must be provided in the next call to retrieve the next set of results. By default, this value is 20.
359
404
  */
360
- MaxResults?: MaxResultInteger;
405
+ MaxResults?: ListChangeSetsMaxResultInteger;
361
406
  /**
362
407
  * The token value retrieved from a previous call to access the next page of results.
363
408
  */
@@ -373,6 +418,7 @@ declare namespace MarketplaceCatalog {
373
418
  */
374
419
  NextToken?: NextToken;
375
420
  }
421
+ export type ListEntitiesMaxResultInteger = number;
376
422
  export interface ListEntitiesRequest {
377
423
  /**
378
424
  * The catalog related to the request. Fixed value: AWSMarketplace
@@ -397,7 +443,8 @@ declare namespace MarketplaceCatalog {
397
443
  /**
398
444
  * Specifies the upper limit of the elements on a single page. If a value isn't provided, the default value is 20.
399
445
  */
400
- MaxResults?: MaxResultInteger;
446
+ MaxResults?: ListEntitiesMaxResultInteger;
447
+ OwnershipType?: OwnershipType;
401
448
  }
402
449
  export interface ListEntitiesResponse {
403
450
  /**
@@ -425,12 +472,25 @@ declare namespace MarketplaceCatalog {
425
472
  */
426
473
  Tags?: TagList;
427
474
  }
428
- export type MaxResultInteger = number;
429
475
  export type NextToken = string;
476
+ export type OwnershipType = "SELF"|"SHARED"|string;
477
+ export interface PutResourcePolicyRequest {
478
+ /**
479
+ * The Amazon Resource Name (ARN) of the Entity resource you want to associate with a resource policy.
480
+ */
481
+ ResourceArn: ResourceARN;
482
+ /**
483
+ * The policy document to set; formatted in JSON.
484
+ */
485
+ Policy: ResourcePolicyJson;
486
+ }
487
+ export interface PutResourcePolicyResponse {
488
+ }
430
489
  export type RequestedChangeList = Change[];
431
490
  export type ResourceARN = string;
432
491
  export type ResourceId = string;
433
492
  export type ResourceIdList = ResourceId[];
493
+ export type ResourcePolicyJson = string;
434
494
  export interface Sort {
435
495
  /**
436
496
  * For ListEntities, supported attributes include LastModifiedDate (default), Visibility, EntityId, and Name. For ListChangeSets, supported attributes include StartTime and EndTime.
@@ -3144,7 +3144,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
3144
3144
  */
3145
3145
  Queue?: __string;
3146
3146
  /**
3147
- * Required for setting up a job to use queue hopping. Minimum wait time in minutes until the job can hop to the destination queue. Valid range is 1 to 1440 minutes, inclusive.
3147
+ * Required for setting up a job to use queue hopping. Minimum wait time in minutes until the job can hop to the destination queue. Valid range is 1 to 4320 minutes, inclusive.
3148
3148
  */
3149
3149
  WaitMinutes?: __integer;
3150
3150
  }
@@ -3450,6 +3450,10 @@ Within your job settings, all of your DVB-Sub settings must be identical.
3450
3450
  * The tag type that AWS Billing and Cost Management will use to sort your AWS Elemental MediaConvert costs on any billing report that you set up.
3451
3451
  */
3452
3452
  BillingTagsSource?: BillingTagsSource;
3453
+ /**
3454
+ * Prevent duplicate jobs from being created and ensure idempotency for your requests. A client request token can be any string that includes up to 64 ASCII characters. If you reuse a client request token within one minute of a successful request, the API returns the job details of the original request instead. For more information see https://docs.aws.amazon.com/mediaconvert/latest/apireference/idempotency.html.
3455
+ */
3456
+ ClientRequestToken?: __string;
3453
3457
  /**
3454
3458
  * The time, in Unix epoch format in seconds, when the job got created.
3455
3459
  */
@@ -3534,6 +3538,10 @@ Within your job settings, all of your DVB-Sub settings must be identical.
3534
3538
  * User-defined metadata that you want to associate with an MediaConvert job. You specify metadata in key/value pairs.
3535
3539
  */
3536
3540
  UserMetadata?: __mapOf__string;
3541
+ /**
3542
+ * Contains any warning messages for the job. Use to help identify potential issues with your input, output, or job. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/warning_codes.html
3543
+ */
3544
+ Warnings?: __listOfWarningGroup;
3537
3545
  }
3538
3546
  export interface JobMessages {
3539
3547
  /**
@@ -5871,6 +5879,16 @@ When you specify Version 1, you must also set ID3 metadata (timedMetadata) to Pa
5871
5879
  */
5872
5880
  RateControlMode?: Vp9RateControlMode;
5873
5881
  }
5882
+ export interface WarningGroup {
5883
+ /**
5884
+ * Warning code that identifies a specific warning in the job. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/warning_codes.html
5885
+ */
5886
+ Code: __integer;
5887
+ /**
5888
+ * The number of times this warning occurred in the job.
5889
+ */
5890
+ Count: __integer;
5891
+ }
5874
5892
  export type WatermarkingStrength = "LIGHTEST"|"LIGHTER"|"DEFAULT"|"STRONGER"|"STRONGEST"|string;
5875
5893
  export type WavFormat = "RIFF"|"RF64"|string;
5876
5894
  export interface WavSettings {
@@ -6231,6 +6249,7 @@ When you specify Version 1, you must also set ID3 metadata (timedMetadata) to Pa
6231
6249
  export type __listOfQueue = Queue[];
6232
6250
  export type __listOfQueueTransition = QueueTransition[];
6233
6251
  export type __listOfTeletextPageType = TeletextPageType[];
6252
+ export type __listOfWarningGroup = WarningGroup[];
6234
6253
  export type __listOf__doubleMinNegative60Max6 = __doubleMinNegative60Max6[];
6235
6254
  export type __listOf__integerMin1Max2147483647 = __integerMin1Max2147483647[];
6236
6255
  export type __listOf__integerMin32Max8182 = __integerMin32Max8182[];
@@ -4157,10 +4157,10 @@ declare namespace Omics {
4157
4157
  export type WorkflowParameterName = string;
4158
4158
  export type WorkflowParameterTemplate = {[key: string]: WorkflowParameter};
4159
4159
  export type WorkflowRequestId = string;
4160
- export type WorkflowStatus = "CREATING"|"ACTIVE"|"UPDATING"|"DELETED"|"FAILED"|"INACTIVE"|string;
4160
+ export type WorkflowStatus = "CREATING"|"ACTIVE"|"UPDATING"|"DELETED"|"FAILED"|string;
4161
4161
  export type WorkflowStatusMessage = string;
4162
4162
  export type WorkflowTimestamp = Date;
4163
- export type WorkflowType = "PRIVATE"|"SERVICE"|string;
4163
+ export type WorkflowType = "PRIVATE"|string;
4164
4164
  /**
4165
4165
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
4166
4166
  */