aws-sdk 2.1472.0 → 2.1474.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/CHANGELOG.md +32 -1
- package/README.md +1 -1
- package/apis/autoscaling-2011-01-01.examples.json +1 -1
- package/apis/autoscaling-2011-01-01.min.json +57 -57
- package/apis/autoscaling-2011-01-01.paginators.json +15 -0
- package/apis/controltower-2018-05-10.min.json +68 -1
- package/apis/customer-profiles-2020-08-15.min.json +31 -18
- package/apis/drs-2020-02-26.min.json +28 -6
- package/apis/ec2-2016-11-15.min.json +134 -82
- package/apis/entityresolution-2018-05-10.min.json +721 -79
- package/apis/entityresolution-2018-05-10.paginators.json +18 -0
- package/apis/ivs-realtime-2020-07-14.min.json +14 -8
- package/apis/lambda-2015-03-31.min.json +102 -96
- package/apis/location-2020-11-19.min.json +36 -36
- package/apis/machinelearning-2014-12-12.min.json +8 -2
- package/apis/managedblockchain-query-2023-05-04.min.json +111 -0
- package/apis/managedblockchain-query-2023-05-04.paginators.json +6 -0
- package/apis/opensearch-2021-01-01.min.json +78 -59
- package/apis/rds-2014-10-31.min.json +43 -7
- package/apis/redshift-2012-12-01.min.json +205 -184
- package/apis/redshift-serverless-2021-04-21.min.json +34 -18
- package/apis/rekognition-2016-06-27.min.json +194 -161
- package/apis/sagemaker-2017-07-24.min.json +740 -728
- package/apis/sesv2-2019-09-27.min.json +40 -18
- package/apis/textract-2018-06-27.min.json +483 -76
- package/apis/textract-2018-06-27.paginators.json +12 -0
- package/clients/autoscaling.d.ts +4 -3
- package/clients/cloudformation.d.ts +1 -1
- package/clients/configservice.d.ts +15 -15
- package/clients/controltower.d.ts +104 -15
- package/clients/customerprofiles.d.ts +6 -6
- package/clients/drs.d.ts +27 -1
- package/clients/ec2.d.ts +62 -6
- package/clients/elbv2.d.ts +7 -7
- package/clients/entityresolution.d.ts +650 -12
- package/clients/glue.d.ts +5 -5
- package/clients/inspector2.d.ts +25 -25
- package/clients/ivsrealtime.d.ts +25 -0
- package/clients/lambda.d.ts +9 -0
- package/clients/managedblockchainquery.d.ts +125 -9
- package/clients/mediapackagev2.d.ts +13 -13
- package/clients/opensearch.d.ts +46 -6
- package/clients/pricing.d.ts +8 -8
- package/clients/rds.d.ts +48 -0
- package/clients/redshift.d.ts +47 -7
- package/clients/redshiftserverless.d.ts +42 -2
- package/clients/rekognition.d.ts +141 -72
- package/clients/sagemaker.d.ts +26 -6
- package/clients/sesv2.d.ts +43 -3
- package/clients/textract.d.ts +534 -2
- package/clients/transcribeservice.d.ts +1 -1
- package/clients/transfer.d.ts +8 -8
- package/clients/workspaces.d.ts +2 -2
- package/clients/xray.d.ts +2 -2
- package/dist/aws-sdk-core-react-native.js +45 -13
- package/dist/aws-sdk-react-native.js +112 -48
- package/dist/aws-sdk.js +797 -628
- package/dist/aws-sdk.min.js +99 -99
- package/lib/core.js +1 -1
- package/lib/s3/managed_upload.d.ts +1 -1
- package/package.json +1 -1
package/clients/sagemaker.d.ts
CHANGED
@@ -197,11 +197,11 @@ declare class SageMaker extends Service {
|
|
197
197
|
*/
|
198
198
|
createExperiment(callback?: (err: AWSError, data: SageMaker.Types.CreateExperimentResponse) => void): Request<SageMaker.Types.CreateExperimentResponse, AWSError>;
|
199
199
|
/**
|
200
|
-
* Create a new FeatureGroup. A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record. The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features, a RecordIdentifierFeatureName, an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore. Check Amazon Web Services service quotas to see the FeatureGroups quota for your Amazon Web Services account. You must include at least one of OnlineStoreConfig and OfflineStoreConfig to create a FeatureGroup.
|
200
|
+
* Create a new FeatureGroup. A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record. The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features, a RecordIdentifierFeatureName, an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore. Check Amazon Web Services service quotas to see the FeatureGroups quota for your Amazon Web Services account. Note that it can take approximately 10-15 minutes to provision an OnlineStore FeatureGroup with the InMemory StorageType. You must include at least one of OnlineStoreConfig and OfflineStoreConfig to create a FeatureGroup.
|
201
201
|
*/
|
202
202
|
createFeatureGroup(params: SageMaker.Types.CreateFeatureGroupRequest, callback?: (err: AWSError, data: SageMaker.Types.CreateFeatureGroupResponse) => void): Request<SageMaker.Types.CreateFeatureGroupResponse, AWSError>;
|
203
203
|
/**
|
204
|
-
* Create a new FeatureGroup. A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record. The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features, a RecordIdentifierFeatureName, an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore. Check Amazon Web Services service quotas to see the FeatureGroups quota for your Amazon Web Services account. You must include at least one of OnlineStoreConfig and OfflineStoreConfig to create a FeatureGroup.
|
204
|
+
* Create a new FeatureGroup. A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record. The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features, a RecordIdentifierFeatureName, an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore. Check Amazon Web Services service quotas to see the FeatureGroups quota for your Amazon Web Services account. Note that it can take approximately 10-15 minutes to provision an OnlineStore FeatureGroup with the InMemory StorageType. You must include at least one of OnlineStoreConfig and OfflineStoreConfig to create a FeatureGroup.
|
205
205
|
*/
|
206
206
|
createFeatureGroup(callback?: (err: AWSError, data: SageMaker.Types.CreateFeatureGroupResponse) => void): Request<SageMaker.Types.CreateFeatureGroupResponse, AWSError>;
|
207
207
|
/**
|
@@ -605,11 +605,11 @@ declare class SageMaker extends Service {
|
|
605
605
|
*/
|
606
606
|
deleteExperiment(callback?: (err: AWSError, data: SageMaker.Types.DeleteExperimentResponse) => void): Request<SageMaker.Types.DeleteExperimentResponse, AWSError>;
|
607
607
|
/**
|
608
|
-
* Delete the FeatureGroup and any data that was written to the OnlineStore of the FeatureGroup. Data cannot be accessed from the OnlineStore immediately after DeleteFeatureGroup is called. Data written into the OfflineStore will not be deleted. The Amazon Web Services Glue database and tables that are automatically created for your OfflineStore are not deleted.
|
608
|
+
* Delete the FeatureGroup and any data that was written to the OnlineStore of the FeatureGroup. Data cannot be accessed from the OnlineStore immediately after DeleteFeatureGroup is called. Data written into the OfflineStore will not be deleted. The Amazon Web Services Glue database and tables that are automatically created for your OfflineStore are not deleted. Note that it can take approximately 10-15 minutes to delete an OnlineStore FeatureGroup with the InMemory StorageType.
|
609
609
|
*/
|
610
610
|
deleteFeatureGroup(params: SageMaker.Types.DeleteFeatureGroupRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
611
611
|
/**
|
612
|
-
* Delete the FeatureGroup and any data that was written to the OnlineStore of the FeatureGroup. Data cannot be accessed from the OnlineStore immediately after DeleteFeatureGroup is called. Data written into the OfflineStore will not be deleted. The Amazon Web Services Glue database and tables that are automatically created for your OfflineStore are not deleted.
|
612
|
+
* Delete the FeatureGroup and any data that was written to the OnlineStore of the FeatureGroup. Data cannot be accessed from the OnlineStore immediately after DeleteFeatureGroup is called. Data written into the OfflineStore will not be deleted. The Amazon Web Services Glue database and tables that are automatically created for your OfflineStore are not deleted. Note that it can take approximately 10-15 minutes to delete an OnlineStore FeatureGroup with the InMemory StorageType.
|
613
613
|
*/
|
614
614
|
deleteFeatureGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
615
615
|
/**
|
@@ -3681,7 +3681,7 @@ declare namespace SageMaker {
|
|
3681
3681
|
export type CandidateSteps = AutoMLCandidateStep[];
|
3682
3682
|
export interface CanvasAppSettings {
|
3683
3683
|
/**
|
3684
|
-
* Time series forecast settings for the Canvas application.
|
3684
|
+
* Time series forecast settings for the SageMaker Canvas application.
|
3685
3685
|
*/
|
3686
3686
|
TimeSeriesForecastingSettings?: TimeSeriesForecastingSettings;
|
3687
3687
|
/**
|
@@ -3696,6 +3696,14 @@ declare namespace SageMaker {
|
|
3696
3696
|
* The settings for connecting to an external data source with OAuth.
|
3697
3697
|
*/
|
3698
3698
|
IdentityProviderOAuthSettings?: IdentityProviderOAuthSettings;
|
3699
|
+
/**
|
3700
|
+
* The settings for document querying.
|
3701
|
+
*/
|
3702
|
+
KendraSettings?: KendraSettings;
|
3703
|
+
/**
|
3704
|
+
* The model deployment settings for the SageMaker Canvas application.
|
3705
|
+
*/
|
3706
|
+
DirectDeploySettings?: DirectDeploySettings;
|
3699
3707
|
}
|
3700
3708
|
export interface CapacitySize {
|
3701
3709
|
/**
|
@@ -10435,6 +10443,12 @@ declare namespace SageMaker {
|
|
10435
10443
|
}
|
10436
10444
|
export type Devices = Device[];
|
10437
10445
|
export type Dimension = number;
|
10446
|
+
export interface DirectDeploySettings {
|
10447
|
+
/**
|
10448
|
+
* Describes whether model deployment permissions are enabled or disabled in the Canvas application.
|
10449
|
+
*/
|
10450
|
+
Status?: FeatureStatus;
|
10451
|
+
}
|
10438
10452
|
export type DirectInternetAccess = "Enabled"|"Disabled"|string;
|
10439
10453
|
export type Direction = "Both"|"Ascendants"|"Descendants"|string;
|
10440
10454
|
export type DirectoryPath = string;
|
@@ -12868,6 +12882,12 @@ declare namespace SageMaker {
|
|
12868
12882
|
CodeRepositories?: CodeRepositories;
|
12869
12883
|
}
|
12870
12884
|
export type KeepAlivePeriodInSeconds = number;
|
12885
|
+
export interface KendraSettings {
|
12886
|
+
/**
|
12887
|
+
* Describes whether the document querying feature is enabled or disabled in the Canvas application.
|
12888
|
+
*/
|
12889
|
+
Status?: FeatureStatus;
|
12890
|
+
}
|
12871
12891
|
export type KernelDisplayName = string;
|
12872
12892
|
export interface KernelGatewayAppSettings {
|
12873
12893
|
/**
|
@@ -20193,7 +20213,7 @@ declare namespace SageMaker {
|
|
20193
20213
|
export type SelectedStepList = SelectedStep[];
|
20194
20214
|
export interface SelectiveExecutionConfig {
|
20195
20215
|
/**
|
20196
|
-
* The ARN from a reference execution of the current pipeline. Used to copy input collaterals needed for the selected steps to run. The execution status of the pipeline can be either Failed or Success.
|
20216
|
+
* The ARN from a reference execution of the current pipeline. Used to copy input collaterals needed for the selected steps to run. The execution status of the pipeline can be either Failed or Success. This field is required if the steps you specify for SelectedSteps depend on output collaterals from any non-specified pipeline steps. For more information, see Selective Execution for Pipeline Steps.
|
20197
20217
|
*/
|
20198
20218
|
SourcePipelineExecutionArn?: PipelineExecutionArn;
|
20199
20219
|
/**
|
package/clients/sesv2.d.ts
CHANGED
@@ -777,6 +777,7 @@ declare namespace SESV2 {
|
|
777
777
|
}
|
778
778
|
export type AdditionalContactEmailAddress = string;
|
779
779
|
export type AdditionalContactEmailAddresses = AdditionalContactEmailAddress[];
|
780
|
+
export type AdminEmail = string;
|
780
781
|
export type AmazonResourceName = string;
|
781
782
|
export type AttributesData = string;
|
782
783
|
export type BatchGetMetricDataQueries = BatchGetMetricDataQuery[];
|
@@ -1655,7 +1656,7 @@ declare namespace SESV2 {
|
|
1655
1656
|
*/
|
1656
1657
|
Simple?: Message;
|
1657
1658
|
/**
|
1658
|
-
* The raw email message. The message has to meet the following criteria: The message has to contain a header and a body, separated by one blank line. All of the required header fields must be present in the message. Each part of a multipart MIME message must be formatted properly. If you include attachments, they must be in a file format that the Amazon SES API v2 supports. The
|
1659
|
+
* The raw email message. The message has to meet the following criteria: The message has to contain a header and a body, separated by one blank line. All of the required header fields must be present in the message. Each part of a multipart MIME message must be formatted properly. If you include attachments, they must be in a file format that the Amazon SES API v2 supports. The raw data of the message needs to base64-encoded if you are accessing Amazon SES directly through the HTTPS interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base 64-encoding for you. If any of the MIME parts in your message contain content that is outside of the 7-bit ASCII character range, you should encode that content to ensure that recipients' email clients render the message properly. The length of any single line of text in the message can't exceed 1,000 characters. This restriction is defined in RFC 5321.
|
1659
1660
|
*/
|
1660
1661
|
Raw?: RawMessage;
|
1661
1662
|
/**
|
@@ -2257,6 +2258,10 @@ declare namespace SESV2 {
|
|
2257
2258
|
* The verification status of the identity. The status can be one of the following: PENDING – The verification process was initiated, but Amazon SES hasn't yet been able to verify the identity. SUCCESS – The verification process completed successfully. FAILED – The verification process failed. TEMPORARY_FAILURE – A temporary issue is preventing Amazon SES from determining the verification status of the identity. NOT_STARTED – The verification process hasn't been initiated for the identity.
|
2258
2259
|
*/
|
2259
2260
|
VerificationStatus?: VerificationStatus;
|
2261
|
+
/**
|
2262
|
+
* An object that contains additional information about the verification status for the identity.
|
2263
|
+
*/
|
2264
|
+
VerificationInfo?: VerificationInfo;
|
2260
2265
|
}
|
2261
2266
|
export interface GetEmailTemplateRequest {
|
2262
2267
|
/**
|
@@ -2729,7 +2734,7 @@ declare namespace SESV2 {
|
|
2729
2734
|
*/
|
2730
2735
|
NextToken?: NextToken;
|
2731
2736
|
/**
|
2732
|
-
* The number of results to show in a single call to ListEmailTemplates. If the number of results is larger than the number you specified in this parameter, then the response includes a NextToken element, which you can use to obtain additional results. The value you specify has to be at least 1, and can be no more than
|
2737
|
+
* The number of results to show in a single call to ListEmailTemplates. If the number of results is larger than the number you specified in this parameter, then the response includes a NextToken element, which you can use to obtain additional results. The value you specify has to be at least 1, and can be no more than 100.
|
2733
2738
|
*/
|
2734
2739
|
PageSize?: MaxItems;
|
2735
2740
|
}
|
@@ -3081,6 +3086,7 @@ declare namespace SESV2 {
|
|
3081
3086
|
export type PolicyMap = {[key: string]: Policy};
|
3082
3087
|
export type PolicyName = string;
|
3083
3088
|
export type PoolName = string;
|
3089
|
+
export type PrimaryNameServer = string;
|
3084
3090
|
export type PrivateKey = string;
|
3085
3091
|
export type ProcessedRecordsCount = number;
|
3086
3092
|
export interface PutAccountDedicatedIpWarmupAttributesRequest {
|
@@ -3360,7 +3366,7 @@ declare namespace SESV2 {
|
|
3360
3366
|
export type QueryIdentifier = string;
|
3361
3367
|
export interface RawMessage {
|
3362
3368
|
/**
|
3363
|
-
* The raw email message. The message has to meet the following criteria: The message has to contain a header and a body, separated by one blank line. All of the required header fields must be present in the message. Each part of a multipart MIME message must be formatted properly. Attachments must be in a file format that the Amazon SES supports. The
|
3369
|
+
* The raw email message. The message has to meet the following criteria: The message has to contain a header and a body, separated by one blank line. All of the required header fields must be present in the message. Each part of a multipart MIME message must be formatted properly. Attachments must be in a file format that the Amazon SES supports. The raw data of the message needs to base64-encoded if you are accessing Amazon SES directly through the HTTPS interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base 64-encoding for you. If any of the MIME parts in your message contain content that is outside of the 7-bit ASCII character range, you should encode that content to ensure that recipients' email clients render the message properly. The length of any single line of text in the message can't exceed 1,000 characters. This restriction is defined in RFC 5321.
|
3364
3370
|
*/
|
3365
3371
|
Data: RawMessageData;
|
3366
3372
|
}
|
@@ -3438,6 +3444,20 @@ declare namespace SESV2 {
|
|
3438
3444
|
}
|
3439
3445
|
export type ReviewStatus = "PENDING"|"FAILED"|"GRANTED"|"DENIED"|string;
|
3440
3446
|
export type S3Url = string;
|
3447
|
+
export interface SOARecord {
|
3448
|
+
/**
|
3449
|
+
* Primary name server specified in the SOA record.
|
3450
|
+
*/
|
3451
|
+
PrimaryNameServer?: PrimaryNameServer;
|
3452
|
+
/**
|
3453
|
+
* Administrative contact email from the SOA record.
|
3454
|
+
*/
|
3455
|
+
AdminEmail?: AdminEmail;
|
3456
|
+
/**
|
3457
|
+
* Serial number from the SOA record.
|
3458
|
+
*/
|
3459
|
+
SerialNumber?: SerialNumber;
|
3460
|
+
}
|
3441
3461
|
export type ScalingMode = "STANDARD"|"MANAGED"|string;
|
3442
3462
|
export type Selector = string;
|
3443
3463
|
export interface SendBulkEmailRequest {
|
@@ -3574,6 +3594,7 @@ declare namespace SESV2 {
|
|
3574
3594
|
}
|
3575
3595
|
export type SendingPoolName = string;
|
3576
3596
|
export type SentLast24Hours = number;
|
3597
|
+
export type SerialNumber = number;
|
3577
3598
|
export interface SnsDestination {
|
3578
3599
|
/**
|
3579
3600
|
* The Amazon Resource Name (ARN) of the Amazon SNS topic to publish email events to. For more information about Amazon SNS topics, see the Amazon SNS Developer Guide.
|
@@ -3905,6 +3926,25 @@ declare namespace SESV2 {
|
|
3905
3926
|
*/
|
3906
3927
|
GuardianOptions?: GuardianOptions;
|
3907
3928
|
}
|
3929
|
+
export type VerificationError = "SERVICE_ERROR"|"DNS_SERVER_ERROR"|"HOST_NOT_FOUND"|"TYPE_NOT_FOUND"|"INVALID_VALUE"|string;
|
3930
|
+
export interface VerificationInfo {
|
3931
|
+
/**
|
3932
|
+
* The last time a verification attempt was made for this identity.
|
3933
|
+
*/
|
3934
|
+
LastCheckedTimestamp?: Timestamp;
|
3935
|
+
/**
|
3936
|
+
* The last time a successful verification was made for this identity.
|
3937
|
+
*/
|
3938
|
+
LastSuccessTimestamp?: Timestamp;
|
3939
|
+
/**
|
3940
|
+
* Provides the reason for the failure describing why Amazon SES was not able to successfully verify the identity. Below are the possible values: INVALID_VALUE – Amazon SES was able to find the record, but the value contained within the record was invalid. Ensure you have published the correct values for the record. TYPE_NOT_FOUND – The queried hostname exists but does not have the requested type of DNS record. Ensure that you have published the correct type of DNS record. HOST_NOT_FOUND – The queried hostname does not exist or was not reachable at the time of the request. Ensure that you have published the required DNS record(s). SERVICE_ERROR – A temporary issue is preventing Amazon SES from determining the verification status of the domain. DNS_SERVER_ERROR – The DNS server encountered an issue and was unable to complete the request.
|
3941
|
+
*/
|
3942
|
+
ErrorType?: VerificationError;
|
3943
|
+
/**
|
3944
|
+
* An object that contains information about the start of authority (SOA) record associated with the identity.
|
3945
|
+
*/
|
3946
|
+
SOARecord?: SOARecord;
|
3947
|
+
}
|
3908
3948
|
export type VerificationStatus = "PENDING"|"SUCCESS"|"FAILED"|"TEMPORARY_FAILURE"|"NOT_STARTED"|string;
|
3909
3949
|
export type Volume = number;
|
3910
3950
|
export interface VolumeStatistics {
|