aws-sdk 2.1595.0 → 2.1597.0

Sign up to get free protection for your applications and to get access to all the features.
package/clients/rds.d.ts CHANGED
@@ -2136,7 +2136,7 @@ declare namespace RDS {
2136
2136
  */
2137
2137
  EnableCloudwatchLogsExports?: LogTypeList;
2138
2138
  /**
2139
- * The DB engine mode of the DB cluster, either provisioned or serverless. The serverless engine mode only applies for Aurora Serverless v1 DB clusters. For information about limitations and requirements for Serverless DB clusters, see the following sections in the Amazon Aurora User Guide: Limitations of Aurora Serverless v1 Requirements for Aurora Serverless v2 Valid for Cluster Type: Aurora DB clusters only
2139
+ * The DB engine mode of the DB cluster, either provisioned or serverless. The serverless engine mode only applies for Aurora Serverless v1 DB clusters. Aurora Serverless v2 DB clusters use the provisioned engine mode. For information about limitations and requirements for Serverless DB clusters, see the following sections in the Amazon Aurora User Guide: Limitations of Aurora Serverless v1 Requirements for Aurora Serverless v2 Valid for Cluster Type: Aurora DB clusters only
2140
2140
  */
2141
2141
  EngineMode?: String;
2142
2142
  /**
@@ -2718,6 +2718,10 @@ declare namespace RDS {
2718
2718
  * Whether to upgrade the storage file system configuration on the read replica. This option migrates the read replica from the old storage file system layout to the preferred layout.
2719
2719
  */
2720
2720
  UpgradeStorageConfig?: BooleanOptional;
2721
+ /**
2722
+ * The CA certificate identifier to use for the read replica's server certificate. This setting doesn't apply to RDS Custom DB instances. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
2723
+ */
2724
+ CACertificateIdentifier?: String;
2721
2725
  /**
2722
2726
  * The ID of the region that contains the source for the read replica.
2723
2727
  */
@@ -9769,6 +9773,10 @@ declare namespace RDS {
9769
9773
  * Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
9770
9774
  */
9771
9775
  DedicatedLogVolume?: BooleanOptional;
9776
+ /**
9777
+ * The CA certificate identifier to use for the DB instance's server certificate. This setting doesn't apply to RDS Custom DB instances. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
9778
+ */
9779
+ CACertificateIdentifier?: String;
9772
9780
  }
9773
9781
  export interface RestoreDBInstanceFromDBSnapshotResult {
9774
9782
  DBInstance?: DBInstance;
@@ -9970,6 +9978,10 @@ declare namespace RDS {
9970
9978
  * Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
9971
9979
  */
9972
9980
  DedicatedLogVolume?: BooleanOptional;
9981
+ /**
9982
+ * The CA certificate identifier to use for the DB instance's server certificate. This setting doesn't apply to RDS Custom DB instances. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
9983
+ */
9984
+ CACertificateIdentifier?: String;
9973
9985
  }
9974
9986
  export interface RestoreDBInstanceFromS3Result {
9975
9987
  DBInstance?: DBInstance;
@@ -10148,6 +10160,10 @@ declare namespace RDS {
10148
10160
  * Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
10149
10161
  */
10150
10162
  DedicatedLogVolume?: BooleanOptional;
10163
+ /**
10164
+ * The CA certificate identifier to use for the DB instance's server certificate. This setting doesn't apply to RDS Custom DB instances. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
10165
+ */
10166
+ CACertificateIdentifier?: String;
10151
10167
  }
10152
10168
  export interface RestoreDBInstanceToPointInTimeResult {
10153
10169
  DBInstance?: DBInstance;
@@ -969,6 +969,10 @@ declare namespace Rekognition {
969
969
  * The time duration of a segment in milliseconds, I.e. time elapsed from StartTimestampMillis to EndTimestampMillis.
970
970
  */
971
971
  DurationMillis?: ULong;
972
+ /**
973
+ * A list of predicted results for the type of content an image contains. For example, the image content might be from animation, sports, or a video game.
974
+ */
975
+ ContentTypes?: ContentTypes;
972
976
  }
973
977
  export type ContentModerationDetections = ContentModerationDetection[];
974
978
  export type ContentModerationSortBy = "NAME"|"TIMESTAMP"|string;
@@ -1099,7 +1103,7 @@ declare namespace Rekognition {
1099
1103
  }
1100
1104
  export interface CreateFaceLivenessSessionResponse {
1101
1105
  /**
1102
- * A unique 128-bit UUID identifying a Face Liveness session.
1106
+ * A unique 128-bit UUID identifying a Face Liveness session. A new sessionID must be used for every Face Liveness check. If a given sessionID is used for subsequent Face Liveness checks, the checks will fail. Additionally, a SessionId expires 3 minutes after it's sent, making all Liveness data associated with the session (e.g., sessionID, reference image, audit images, etc.) unavailable.
1103
1107
  */
1104
1108
  SessionId: LivenessSessionId;
1105
1109
  }
@@ -27,6 +27,14 @@ declare class SupplyChain extends Service {
27
27
  * Get status and details of a BillOfMaterialsImportJob.
28
28
  */
29
29
  getBillOfMaterialsImportJob(callback?: (err: AWSError, data: SupplyChain.Types.GetBillOfMaterialsImportJobResponse) => void): Request<SupplyChain.Types.GetBillOfMaterialsImportJobResponse, AWSError>;
30
+ /**
31
+ * Send transactional data events with real-time data for analysis or monitoring.
32
+ */
33
+ sendDataIntegrationEvent(params: SupplyChain.Types.SendDataIntegrationEventRequest, callback?: (err: AWSError, data: SupplyChain.Types.SendDataIntegrationEventResponse) => void): Request<SupplyChain.Types.SendDataIntegrationEventResponse, AWSError>;
34
+ /**
35
+ * Send transactional data events with real-time data for analysis or monitoring.
36
+ */
37
+ sendDataIntegrationEvent(callback?: (err: AWSError, data: SupplyChain.Types.SendDataIntegrationEventResponse) => void): Request<SupplyChain.Types.SendDataIntegrationEventResponse, AWSError>;
30
38
  }
31
39
  declare namespace SupplyChain {
32
40
  export interface BillOfMaterialsImportJob {
@@ -74,6 +82,9 @@ declare namespace SupplyChain {
74
82
  */
75
83
  jobId: UUID;
76
84
  }
85
+ export type DataIntegrationEventData = string;
86
+ export type DataIntegrationEventGroupId = string;
87
+ export type DataIntegrationEventType = "scn.data.forecast"|"scn.data.inventorylevel"|"scn.data.inboundorder"|"scn.data.inboundorderline"|"scn.data.inboundorderlineschedule"|"scn.data.outboundorderline"|"scn.data.outboundshipment"|"scn.data.processheader"|"scn.data.processoperation"|"scn.data.processproduct"|"scn.data.reservation"|"scn.data.shipment"|"scn.data.shipmentstop"|"scn.data.shipmentstoporder"|"scn.data.supplyplan"|string;
77
88
  export interface GetBillOfMaterialsImportJobRequest {
78
89
  /**
79
90
  * The AWS Supply Chain instance identifier.
@@ -90,7 +101,40 @@ declare namespace SupplyChain {
90
101
  */
91
102
  job: BillOfMaterialsImportJob;
92
103
  }
104
+ export interface SendDataIntegrationEventRequest {
105
+ /**
106
+ * The AWS Supply Chain instance identifier.
107
+ */
108
+ instanceId: UUID;
109
+ /**
110
+ * The data event type.
111
+ */
112
+ eventType: DataIntegrationEventType;
113
+ /**
114
+ * The data payload of the event.
115
+ */
116
+ data: DataIntegrationEventData;
117
+ /**
118
+ * Event identifier (for example, orderId for InboundOrder) used for data sharing or partitioning.
119
+ */
120
+ eventGroupId: DataIntegrationEventGroupId;
121
+ /**
122
+ * The event timestamp (in epoch seconds).
123
+ */
124
+ eventTimestamp?: SyntheticTimestamp_epoch_seconds;
125
+ /**
126
+ * The idempotent client token.
127
+ */
128
+ clientToken?: ClientToken;
129
+ }
130
+ export interface SendDataIntegrationEventResponse {
131
+ /**
132
+ * The unique event identifier.
133
+ */
134
+ eventId: UUID;
135
+ }
93
136
  export type String = string;
137
+ export type SyntheticTimestamp_epoch_seconds = Date;
94
138
  export type UUID = string;
95
139
  /**
96
140
  * 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.
@@ -321,7 +321,7 @@ declare namespace WorkSpacesThinClient {
321
321
  /**
322
322
  * The tag keys and optional values for the resource.
323
323
  */
324
- tags?: EmbeddedTag;
324
+ tags?: TagsMap;
325
325
  }
326
326
  export type DeviceId = string;
327
327
  export type DeviceList = DeviceSummary[];
@@ -389,20 +389,6 @@ declare namespace WorkSpacesThinClient {
389
389
  * The Amazon Resource Name (ARN) of the device.
390
390
  */
391
391
  arn?: Arn;
392
- /**
393
- * The tag keys and optional values for the resource.
394
- */
395
- tags?: EmbeddedTag;
396
- }
397
- export interface EmbeddedTag {
398
- /**
399
- * The Amazon Resource Name (ARN) of a resource to tag.
400
- */
401
- resourceArn?: String;
402
- /**
403
- * The internal ID of a resource to tag.
404
- */
405
- internalId?: String;
406
392
  }
407
393
  export interface Environment {
408
394
  /**
@@ -480,7 +466,7 @@ declare namespace WorkSpacesThinClient {
480
466
  /**
481
467
  * The tag keys and optional values for the resource.
482
468
  */
483
- tags?: EmbeddedTag;
469
+ tags?: TagsMap;
484
470
  }
485
471
  export type EnvironmentId = string;
486
472
  export type EnvironmentList = EnvironmentSummary[];
@@ -543,10 +529,6 @@ declare namespace WorkSpacesThinClient {
543
529
  * The Amazon Resource Name (ARN) of the environment.
544
530
  */
545
531
  arn?: Arn;
546
- /**
547
- * The tag keys and optional values for the resource.
548
- */
549
- tags?: EmbeddedTag;
550
532
  }
551
533
  export interface GetDeviceRequest {
552
534
  /**
@@ -733,6 +715,10 @@ declare namespace WorkSpacesThinClient {
733
715
  * The Amazon Resource Name (ARN) of the software set.
734
716
  */
735
717
  arn?: Arn;
718
+ /**
719
+ * The tag keys and optional values for the resource.
720
+ */
721
+ tags?: TagsMap;
736
722
  }
737
723
  export type SoftwareSetId = string;
738
724
  export type SoftwareSetIdOrEmptyString = string;
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1595.0',
86
+ VERSION: '2.1597.0',
87
87
 
88
88
  /**
89
89
  * @api private