aws-sdk 2.1612.0 → 2.1613.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/README.md +1 -1
- package/apis/bedrock-agent-2023-06-05.min.json +43 -42
- package/apis/connect-2017-08-08.min.json +719 -439
- package/apis/connectcases-2022-10-03.min.json +40 -19
- package/apis/datasync-2018-11-09.min.json +3 -0
- package/apis/inspector2-2020-06-08.min.json +95 -94
- package/apis/sesv2-2019-09-27.min.json +3 -0
- package/clients/bedrockagent.d.ts +13 -4
- package/clients/connect.d.ts +331 -2
- package/clients/connectcases.d.ts +39 -14
- package/clients/datasync.d.ts +6 -6
- package/clients/inspector2.d.ts +6 -1
- package/clients/sagemaker.d.ts +1 -1
- package/clients/sesv2.d.ts +4 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +7 -7
- package/dist/aws-sdk.js +722 -442
- package/dist/aws-sdk.min.js +85 -85
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -681,11 +681,11 @@ declare namespace ConnectCases {
|
|
681
681
|
}
|
682
682
|
export interface DeleteFieldRequest {
|
683
683
|
/**
|
684
|
-
* The unique identifier of the Cases domain.
|
684
|
+
* The unique identifier of the Cases domain.
|
685
685
|
*/
|
686
686
|
domainId: DomainId;
|
687
687
|
/**
|
688
|
-
*
|
688
|
+
* Unique identifier of the field.
|
689
689
|
*/
|
690
690
|
fieldId: FieldId;
|
691
691
|
}
|
@@ -693,7 +693,7 @@ declare namespace ConnectCases {
|
|
693
693
|
}
|
694
694
|
export interface DeleteLayoutRequest {
|
695
695
|
/**
|
696
|
-
* The unique identifier of the Cases domain.
|
696
|
+
* The unique identifier of the Cases domain.
|
697
697
|
*/
|
698
698
|
domainId: DomainId;
|
699
699
|
/**
|
@@ -705,7 +705,7 @@ declare namespace ConnectCases {
|
|
705
705
|
}
|
706
706
|
export interface DeleteTemplateRequest {
|
707
707
|
/**
|
708
|
-
* The unique identifier of the Cases domain.
|
708
|
+
* The unique identifier of the Cases domain.
|
709
709
|
*/
|
710
710
|
domainId: DomainId;
|
711
711
|
/**
|
@@ -914,6 +914,19 @@ declare namespace ConnectCases {
|
|
914
914
|
userArnValue?: String;
|
915
915
|
}
|
916
916
|
export type FieldValueUnionStringValueString = string;
|
917
|
+
export type FileArn = string;
|
918
|
+
export interface FileContent {
|
919
|
+
/**
|
920
|
+
* The Amazon Resource Name (ARN) of a File in Amazon Connect.
|
921
|
+
*/
|
922
|
+
fileArn: FileArn;
|
923
|
+
}
|
924
|
+
export interface FileFilter {
|
925
|
+
/**
|
926
|
+
* The Amazon Resource Name (ARN) of the file.
|
927
|
+
*/
|
928
|
+
fileArn?: FileArn;
|
929
|
+
}
|
917
930
|
export interface GetCaseAuditEventsRequest {
|
918
931
|
/**
|
919
932
|
* A unique identifier of the case.
|
@@ -1028,11 +1041,11 @@ declare namespace ConnectCases {
|
|
1028
1041
|
}
|
1029
1042
|
export interface GetFieldResponse {
|
1030
1043
|
/**
|
1031
|
-
*
|
1044
|
+
* Timestamp at which the resource was created.
|
1032
1045
|
*/
|
1033
1046
|
createdTime?: CreatedTime;
|
1034
1047
|
/**
|
1035
|
-
*
|
1048
|
+
* Denotes whether or not the resource has been deleted.
|
1036
1049
|
*/
|
1037
1050
|
deleted?: Deleted;
|
1038
1051
|
/**
|
@@ -1048,7 +1061,7 @@ declare namespace ConnectCases {
|
|
1048
1061
|
*/
|
1049
1062
|
fieldId: FieldId;
|
1050
1063
|
/**
|
1051
|
-
*
|
1064
|
+
* Timestamp at which the resource was created or last modified.
|
1052
1065
|
*/
|
1053
1066
|
lastModifiedTime?: LastModifiedTime;
|
1054
1067
|
/**
|
@@ -1084,15 +1097,15 @@ declare namespace ConnectCases {
|
|
1084
1097
|
*/
|
1085
1098
|
content: LayoutContent;
|
1086
1099
|
/**
|
1087
|
-
*
|
1100
|
+
* Timestamp at which the resource was created.
|
1088
1101
|
*/
|
1089
1102
|
createdTime?: CreatedTime;
|
1090
1103
|
/**
|
1091
|
-
*
|
1104
|
+
* Denotes whether or not the resource has been deleted.
|
1092
1105
|
*/
|
1093
1106
|
deleted?: Deleted;
|
1094
1107
|
/**
|
1095
|
-
*
|
1108
|
+
* Timestamp at which the resource was created or last modified.
|
1096
1109
|
*/
|
1097
1110
|
lastModifiedTime?: LastModifiedTime;
|
1098
1111
|
/**
|
@@ -1124,11 +1137,11 @@ declare namespace ConnectCases {
|
|
1124
1137
|
}
|
1125
1138
|
export interface GetTemplateResponse {
|
1126
1139
|
/**
|
1127
|
-
*
|
1140
|
+
* Timestamp at which the resource was created.
|
1128
1141
|
*/
|
1129
1142
|
createdTime?: CreatedTime;
|
1130
1143
|
/**
|
1131
|
-
*
|
1144
|
+
* Denotes whether or not the resource has been deleted.
|
1132
1145
|
*/
|
1133
1146
|
deleted?: Deleted;
|
1134
1147
|
/**
|
@@ -1136,7 +1149,7 @@ declare namespace ConnectCases {
|
|
1136
1149
|
*/
|
1137
1150
|
description?: TemplateDescription;
|
1138
1151
|
/**
|
1139
|
-
*
|
1152
|
+
* Timestamp at which the resource was created or last modified.
|
1140
1153
|
*/
|
1141
1154
|
lastModifiedTime?: LastModifiedTime;
|
1142
1155
|
/**
|
@@ -1401,6 +1414,10 @@ declare namespace ConnectCases {
|
|
1401
1414
|
* Represents the content of a contact to be returned to agents.
|
1402
1415
|
*/
|
1403
1416
|
contact?: ContactContent;
|
1417
|
+
/**
|
1418
|
+
* Represents the content of a File to be returned to agents.
|
1419
|
+
*/
|
1420
|
+
file?: FileContent;
|
1404
1421
|
}
|
1405
1422
|
export interface RelatedItemEventIncludedData {
|
1406
1423
|
/**
|
@@ -1418,8 +1435,12 @@ declare namespace ConnectCases {
|
|
1418
1435
|
* Object representing a contact in Amazon Connect as an API request field.
|
1419
1436
|
*/
|
1420
1437
|
contact?: Contact;
|
1438
|
+
/**
|
1439
|
+
* A file of related items.
|
1440
|
+
*/
|
1441
|
+
file?: FileContent;
|
1421
1442
|
}
|
1422
|
-
export type RelatedItemType = "Contact"|"Comment"|string;
|
1443
|
+
export type RelatedItemType = "Contact"|"Comment"|"File"|string;
|
1423
1444
|
export interface RelatedItemTypeFilter {
|
1424
1445
|
/**
|
1425
1446
|
* A filter for related items of type Comment.
|
@@ -1429,6 +1450,10 @@ declare namespace ConnectCases {
|
|
1429
1450
|
* A filter for related items of type Contact.
|
1430
1451
|
*/
|
1431
1452
|
contact?: ContactFilter;
|
1453
|
+
/**
|
1454
|
+
* A filter for related items of this type of File.
|
1455
|
+
*/
|
1456
|
+
file?: FileFilter;
|
1432
1457
|
}
|
1433
1458
|
export interface RequiredField {
|
1434
1459
|
/**
|
package/clients/datasync.d.ts
CHANGED
@@ -452,11 +452,11 @@ declare class DataSync extends Service {
|
|
452
452
|
*/
|
453
453
|
updateLocationNfs(callback?: (err: AWSError, data: DataSync.Types.UpdateLocationNfsResponse) => void): Request<DataSync.Types.UpdateLocationNfsResponse, AWSError>;
|
454
454
|
/**
|
455
|
-
* Updates some parameters of an existing
|
455
|
+
* Updates some parameters of an existing DataSync location for an object storage system.
|
456
456
|
*/
|
457
457
|
updateLocationObjectStorage(params: DataSync.Types.UpdateLocationObjectStorageRequest, callback?: (err: AWSError, data: DataSync.Types.UpdateLocationObjectStorageResponse) => void): Request<DataSync.Types.UpdateLocationObjectStorageResponse, AWSError>;
|
458
458
|
/**
|
459
|
-
* Updates some parameters of an existing
|
459
|
+
* Updates some parameters of an existing DataSync location for an object storage system.
|
460
460
|
*/
|
461
461
|
updateLocationObjectStorage(callback?: (err: AWSError, data: DataSync.Types.UpdateLocationObjectStorageResponse) => void): Request<DataSync.Types.UpdateLocationObjectStorageResponse, AWSError>;
|
462
462
|
/**
|
@@ -945,7 +945,7 @@ declare namespace DataSync {
|
|
945
945
|
*/
|
946
946
|
Tags?: InputTagList;
|
947
947
|
/**
|
948
|
-
* Specifies a
|
948
|
+
* Specifies a certificate chain for DataSync to authenticate with your object storage system if the system uses a private or self-signed certificate authority (CA). You must specify a single .pem file with a full certificate chain (for example, file:///home/user/.ssh/object_storage_certificates.pem). The certificate chain might include: The object storage system's certificate All intermediate certificates (if there are any) The root certificate of the signing CA You can concatenate your certificates into a .pem file (which can be up to 32768 bytes before base64 encoding). The following example cat command creates an object_storage_certificates.pem file that includes three certificates: cat object_server_certificate.pem intermediate_certificate.pem ca_root_certificate.pem > object_storage_certificates.pem To use this parameter, configure ServerProtocol to HTTPS.
|
949
949
|
*/
|
950
950
|
ServerCertificate?: ObjectStorageCertificate;
|
951
951
|
}
|
@@ -1485,7 +1485,7 @@ declare namespace DataSync {
|
|
1485
1485
|
*/
|
1486
1486
|
CreationTime?: Time;
|
1487
1487
|
/**
|
1488
|
-
* The
|
1488
|
+
* The certificate chain for DataSync to authenticate with your object storage system if the system uses a private or self-signed certificate authority (CA).
|
1489
1489
|
*/
|
1490
1490
|
ServerCertificate?: ObjectStorageCertificate;
|
1491
1491
|
}
|
@@ -3000,7 +3000,7 @@ declare namespace DataSync {
|
|
3000
3000
|
*/
|
3001
3001
|
ScheduleExpression: ScheduleExpressionCron;
|
3002
3002
|
/**
|
3003
|
-
* Specifies whether to enable or disable your task schedule. Your schedule is enabled by default, but there can be situations where you need to disable it. For example, you might need to pause a recurring transfer
|
3003
|
+
* Specifies whether to enable or disable your task schedule. Your schedule is enabled by default, but there can be situations where you need to disable it. For example, you might need to pause a recurring transfer to fix an issue with your task or perform maintenance on your storage system. DataSync might disable your schedule automatically if your task fails repeatedly with the same error. For more information, see TaskScheduleDetails.
|
3004
3004
|
*/
|
3005
3005
|
Status?: ScheduleStatus;
|
3006
3006
|
}
|
@@ -3209,7 +3209,7 @@ declare namespace DataSync {
|
|
3209
3209
|
*/
|
3210
3210
|
AgentArns?: AgentArnList;
|
3211
3211
|
/**
|
3212
|
-
* Specifies a certificate to authenticate with
|
3212
|
+
* Specifies a certificate chain for DataSync to authenticate with your object storage system if the system uses a private or self-signed certificate authority (CA). You must specify a single .pem file with a full certificate chain (for example, file:///home/user/.ssh/object_storage_certificates.pem). The certificate chain might include: The object storage system's certificate All intermediate certificates (if there are any) The root certificate of the signing CA You can concatenate your certificates into a .pem file (which can be up to 32768 bytes before base64 encoding). The following example cat command creates an object_storage_certificates.pem file that includes three certificates: cat object_server_certificate.pem intermediate_certificate.pem ca_root_certificate.pem > object_storage_certificates.pem To use this parameter, configure ServerProtocol to HTTPS. Updating this parameter doesn't interfere with tasks that you have in progress.
|
3213
3213
|
*/
|
3214
3214
|
ServerCertificate?: ObjectStorageCertificate;
|
3215
3215
|
}
|
package/clients/inspector2.d.ts
CHANGED
@@ -1108,6 +1108,7 @@ declare namespace Inspector2 {
|
|
1108
1108
|
}
|
1109
1109
|
export type CisNumberFilterList = CisNumberFilter[];
|
1110
1110
|
export type CisOwnerId = string;
|
1111
|
+
export type CisReportFormat = "PDF"|"CSV"|string;
|
1111
1112
|
export type CisReportStatus = "SUCCEEDED"|"FAILED"|"IN_PROGRESS"|string;
|
1112
1113
|
export type CisResultStatus = "PASSED"|"FAILED"|"SKIPPED"|string;
|
1113
1114
|
export type CisResultStatusComparison = "EQUALS"|string;
|
@@ -2821,6 +2822,10 @@ declare namespace Inspector2 {
|
|
2821
2822
|
export type FreeTrialType = "EC2"|"ECR"|"LAMBDA"|"LAMBDA_CODE"|string;
|
2822
2823
|
export type FunctionName = string;
|
2823
2824
|
export interface GetCisScanReportRequest {
|
2825
|
+
/**
|
2826
|
+
* The format of the report. Valid values are PDF and CSV. If no value is specified, the report format defaults to PDF.
|
2827
|
+
*/
|
2828
|
+
reportFormat?: CisReportFormat;
|
2824
2829
|
/**
|
2825
2830
|
* The scan ARN.
|
2826
2831
|
*/
|
@@ -2836,7 +2841,7 @@ declare namespace Inspector2 {
|
|
2836
2841
|
*/
|
2837
2842
|
status?: CisReportStatus;
|
2838
2843
|
/**
|
2839
|
-
* The URL where a PDF of the CIS scan report can be downloaded.
|
2844
|
+
* The URL where a PDF or CSV of the CIS scan report can be downloaded.
|
2840
2845
|
*/
|
2841
2846
|
url?: String;
|
2842
2847
|
}
|
package/clients/sagemaker.d.ts
CHANGED
@@ -22592,7 +22592,7 @@ declare namespace SageMaker {
|
|
22592
22592
|
SplitType?: SplitType;
|
22593
22593
|
}
|
22594
22594
|
export type TransformInstanceCount = number;
|
22595
|
-
export type TransformInstanceType = "ml.m4.xlarge"|"ml.m4.2xlarge"|"ml.m4.4xlarge"|"ml.m4.10xlarge"|"ml.m4.16xlarge"|"ml.c4.xlarge"|"ml.c4.2xlarge"|"ml.c4.4xlarge"|"ml.c4.8xlarge"|"ml.p2.xlarge"|"ml.p2.8xlarge"|"ml.p2.16xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.18xlarge"|"ml.m5.large"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.12xlarge"|"ml.m5.24xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|string;
|
22595
|
+
export type TransformInstanceType = "ml.m4.xlarge"|"ml.m4.2xlarge"|"ml.m4.4xlarge"|"ml.m4.10xlarge"|"ml.m4.16xlarge"|"ml.c4.xlarge"|"ml.c4.2xlarge"|"ml.c4.4xlarge"|"ml.c4.8xlarge"|"ml.p2.xlarge"|"ml.p2.8xlarge"|"ml.p2.16xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.18xlarge"|"ml.m5.large"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.12xlarge"|"ml.m5.24xlarge"|"ml.m6i.large"|"ml.m6i.xlarge"|"ml.m6i.2xlarge"|"ml.m6i.4xlarge"|"ml.m6i.8xlarge"|"ml.m6i.12xlarge"|"ml.m6i.16xlarge"|"ml.m6i.24xlarge"|"ml.m6i.32xlarge"|"ml.c6i.large"|"ml.c6i.xlarge"|"ml.c6i.2xlarge"|"ml.c6i.4xlarge"|"ml.c6i.8xlarge"|"ml.c6i.12xlarge"|"ml.c6i.16xlarge"|"ml.c6i.24xlarge"|"ml.c6i.32xlarge"|"ml.r6i.large"|"ml.r6i.xlarge"|"ml.r6i.2xlarge"|"ml.r6i.4xlarge"|"ml.r6i.8xlarge"|"ml.r6i.12xlarge"|"ml.r6i.16xlarge"|"ml.r6i.24xlarge"|"ml.r6i.32xlarge"|"ml.m7i.large"|"ml.m7i.xlarge"|"ml.m7i.2xlarge"|"ml.m7i.4xlarge"|"ml.m7i.8xlarge"|"ml.m7i.12xlarge"|"ml.m7i.16xlarge"|"ml.m7i.24xlarge"|"ml.m7i.48xlarge"|"ml.c7i.large"|"ml.c7i.xlarge"|"ml.c7i.2xlarge"|"ml.c7i.4xlarge"|"ml.c7i.8xlarge"|"ml.c7i.12xlarge"|"ml.c7i.16xlarge"|"ml.c7i.24xlarge"|"ml.c7i.48xlarge"|"ml.r7i.large"|"ml.r7i.xlarge"|"ml.r7i.2xlarge"|"ml.r7i.4xlarge"|"ml.r7i.8xlarge"|"ml.r7i.12xlarge"|"ml.r7i.16xlarge"|"ml.r7i.24xlarge"|"ml.r7i.48xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|"ml.g5.xlarge"|"ml.g5.2xlarge"|"ml.g5.4xlarge"|"ml.g5.8xlarge"|"ml.g5.12xlarge"|"ml.g5.16xlarge"|"ml.g5.24xlarge"|"ml.g5.48xlarge"|string;
|
22596
22596
|
export type TransformInstanceTypes = TransformInstanceType[];
|
22597
22597
|
export interface TransformJob {
|
22598
22598
|
/**
|
package/clients/sesv2.d.ts
CHANGED
@@ -888,6 +888,10 @@ declare namespace SESV2 {
|
|
888
888
|
* The ReplacementEmailContent associated with a BulkEmailEntry.
|
889
889
|
*/
|
890
890
|
ReplacementEmailContent?: ReplacementEmailContent;
|
891
|
+
/**
|
892
|
+
* The list of message headers associated with the BulkEmailEntry data type. Headers Not Present in BulkEmailEntry: If a header is specified in Template but not in BulkEmailEntry, the header from Template will be added to the outgoing email. Headers Present in BulkEmailEntry: If a header is specified in BulkEmailEntry, it takes precedence over any header of the same name specified in Template : If the header is also defined within Template, the value from BulkEmailEntry will replace the header's value in the email. If the header is not defined within Template, it will simply be added to the email as specified in BulkEmailEntry.
|
893
|
+
*/
|
894
|
+
ReplacementHeaders?: MessageHeaderList;
|
891
895
|
}
|
892
896
|
export type BulkEmailEntryList = BulkEmailEntry[];
|
893
897
|
export interface BulkEmailEntryResult {
|