aws-sdk 2.1426.0 → 2.1428.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 +17 -1
- package/README.md +1 -1
- package/apis/cognito-idp-2016-04-18.min.json +102 -56
- package/apis/dms-2016-01-01.min.json +60 -16
- package/apis/dms-2016-01-01.paginators.json +5 -0
- package/apis/internetmonitor-2021-06-03.min.json +37 -19
- package/apis/medialive-2017-10-14.min.json +12 -0
- package/apis/rds-2014-10-31.min.json +220 -115
- package/apis/resiliencehub-2020-04-30.min.json +354 -125
- package/apis/resiliencehub-2020-04-30.paginators.json +5 -0
- package/apis/sagemaker-2017-07-24.min.json +680 -556
- package/clients/batch.d.ts +9 -9
- package/clients/budgets.d.ts +1 -1
- package/clients/cognitoidentityserviceprovider.d.ts +290 -213
- package/clients/dms.d.ts +65 -1
- package/clients/glue.d.ts +2 -2
- package/clients/internetmonitor.d.ts +49 -26
- package/clients/medialive.d.ts +16 -0
- package/clients/polly.d.ts +2 -2
- package/clients/rds.d.ts +173 -8
- package/clients/resiliencehub.d.ts +588 -274
- package/clients/sagemaker.d.ts +185 -8
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +10 -10
- package/dist/aws-sdk.js +325 -174
- package/dist/aws-sdk.min.js +85 -85
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/rds.d.ts
CHANGED
@@ -277,6 +277,14 @@ declare class RDS extends Service {
|
|
277
277
|
* The DeleteDBCluster action deletes a previously provisioned DB cluster. When you delete a DB cluster, all automated backups for that DB cluster are deleted and can't be recovered. Manual DB cluster snapshots of the specified DB cluster are not deleted. If you're deleting a Multi-AZ DB cluster with read replicas, all cluster members are terminated and read replicas are promoted to standalone instances. For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide. For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.
|
278
278
|
*/
|
279
279
|
deleteDBCluster(callback?: (err: AWSError, data: RDS.Types.DeleteDBClusterResult) => void): Request<RDS.Types.DeleteDBClusterResult, AWSError>;
|
280
|
+
/**
|
281
|
+
* Deletes automated backups using the DbClusterResourceId value of the source DB cluster or the Amazon Resource Name (ARN) of the automated backups.
|
282
|
+
*/
|
283
|
+
deleteDBClusterAutomatedBackup(params: RDS.Types.DeleteDBClusterAutomatedBackupMessage, callback?: (err: AWSError, data: RDS.Types.DeleteDBClusterAutomatedBackupResult) => void): Request<RDS.Types.DeleteDBClusterAutomatedBackupResult, AWSError>;
|
284
|
+
/**
|
285
|
+
* Deletes automated backups using the DbClusterResourceId value of the source DB cluster or the Amazon Resource Name (ARN) of the automated backups.
|
286
|
+
*/
|
287
|
+
deleteDBClusterAutomatedBackup(callback?: (err: AWSError, data: RDS.Types.DeleteDBClusterAutomatedBackupResult) => void): Request<RDS.Types.DeleteDBClusterAutomatedBackupResult, AWSError>;
|
280
288
|
/**
|
281
289
|
* Deletes a custom endpoint and removes it from an Amazon Aurora DB cluster. This action only applies to Aurora DB clusters.
|
282
290
|
*/
|
@@ -421,6 +429,14 @@ declare class RDS extends Service {
|
|
421
429
|
* Lists the set of CA certificates provided by Amazon RDS for this Amazon Web Services account. 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.
|
422
430
|
*/
|
423
431
|
describeCertificates(callback?: (err: AWSError, data: RDS.Types.CertificateMessage) => void): Request<RDS.Types.CertificateMessage, AWSError>;
|
432
|
+
/**
|
433
|
+
* Displays backups for both current and deleted DB clusters. For example, use this operation to find details about automated backups for previously deleted clusters. Current clusters are returned for both the DescribeDBClusterAutomatedBackups and DescribeDBClusters operations. All parameters are optional.
|
434
|
+
*/
|
435
|
+
describeDBClusterAutomatedBackups(params: RDS.Types.DescribeDBClusterAutomatedBackupsMessage, callback?: (err: AWSError, data: RDS.Types.DBClusterAutomatedBackupMessage) => void): Request<RDS.Types.DBClusterAutomatedBackupMessage, AWSError>;
|
436
|
+
/**
|
437
|
+
* Displays backups for both current and deleted DB clusters. For example, use this operation to find details about automated backups for previously deleted clusters. Current clusters are returned for both the DescribeDBClusterAutomatedBackups and DescribeDBClusters operations. All parameters are optional.
|
438
|
+
*/
|
439
|
+
describeDBClusterAutomatedBackups(callback?: (err: AWSError, data: RDS.Types.DBClusterAutomatedBackupMessage) => void): Request<RDS.Types.DBClusterAutomatedBackupMessage, AWSError>;
|
424
440
|
/**
|
425
441
|
* Returns information about backtracks for a DB cluster. For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide. This action only applies to Aurora MySQL DB clusters.
|
426
442
|
*/
|
@@ -3017,6 +3033,108 @@ declare namespace RDS {
|
|
3017
3033
|
*/
|
3018
3034
|
LocalWriteForwardingStatus?: LocalWriteForwardingStatus;
|
3019
3035
|
}
|
3036
|
+
export interface DBClusterAutomatedBackup {
|
3037
|
+
/**
|
3038
|
+
* The name of the database engine for this automated backup.
|
3039
|
+
*/
|
3040
|
+
Engine?: String;
|
3041
|
+
/**
|
3042
|
+
* The VPC ID associated with the DB cluster.
|
3043
|
+
*/
|
3044
|
+
VpcId?: String;
|
3045
|
+
/**
|
3046
|
+
* The Amazon Resource Name (ARN) for the automated backups.
|
3047
|
+
*/
|
3048
|
+
DBClusterAutomatedBackupsArn?: String;
|
3049
|
+
/**
|
3050
|
+
* The identifier for the source DB cluster, which can't be changed and which is unique to an Amazon Web Services Region.
|
3051
|
+
*/
|
3052
|
+
DBClusterIdentifier?: String;
|
3053
|
+
RestoreWindow?: RestoreWindow;
|
3054
|
+
/**
|
3055
|
+
* The master user name of the automated backup.
|
3056
|
+
*/
|
3057
|
+
MasterUsername?: String;
|
3058
|
+
/**
|
3059
|
+
* The resource ID for the source DB cluster, which can't be changed and which is unique to an Amazon Web Services Region.
|
3060
|
+
*/
|
3061
|
+
DbClusterResourceId?: String;
|
3062
|
+
/**
|
3063
|
+
* The Amazon Web Services Region associated with the automated backup.
|
3064
|
+
*/
|
3065
|
+
Region?: String;
|
3066
|
+
/**
|
3067
|
+
* The license model information for this DB cluster automated backup.
|
3068
|
+
*/
|
3069
|
+
LicenseModel?: String;
|
3070
|
+
/**
|
3071
|
+
* A list of status information for an automated backup: retained - Automated backups for deleted clusters.
|
3072
|
+
*/
|
3073
|
+
Status?: String;
|
3074
|
+
/**
|
3075
|
+
* True if mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.
|
3076
|
+
*/
|
3077
|
+
IAMDatabaseAuthenticationEnabled?: Boolean;
|
3078
|
+
/**
|
3079
|
+
* The time when the DB cluster was created, in Universal Coordinated Time (UTC).
|
3080
|
+
*/
|
3081
|
+
ClusterCreateTime?: TStamp;
|
3082
|
+
/**
|
3083
|
+
* Specifies whether the source DB cluster is encrypted.
|
3084
|
+
*/
|
3085
|
+
StorageEncrypted?: Boolean;
|
3086
|
+
/**
|
3087
|
+
* For all database engines except Amazon Aurora, AllocatedStorage specifies the allocated storage size in gibibytes (GiB). For Aurora, AllocatedStorage always returns 1, because Aurora DB cluster storage size isn't fixed, but instead automatically adjusts as needed.
|
3088
|
+
*/
|
3089
|
+
AllocatedStorage?: Integer;
|
3090
|
+
/**
|
3091
|
+
* The version of the database engine for the automated backup.
|
3092
|
+
*/
|
3093
|
+
EngineVersion?: String;
|
3094
|
+
/**
|
3095
|
+
* The Amazon Resource Name (ARN) for the source DB cluster.
|
3096
|
+
*/
|
3097
|
+
DBClusterArn?: String;
|
3098
|
+
/**
|
3099
|
+
* The retention period for the automated backups.
|
3100
|
+
*/
|
3101
|
+
BackupRetentionPeriod?: IntegerOptional;
|
3102
|
+
/**
|
3103
|
+
* The engine mode of the database engine for the automated backup.
|
3104
|
+
*/
|
3105
|
+
EngineMode?: String;
|
3106
|
+
/**
|
3107
|
+
* The Availability Zones where instances in the DB cluster can be created. For information on Amazon Web Services Regions and Availability Zones, see Regions and Availability Zones.
|
3108
|
+
*/
|
3109
|
+
AvailabilityZones?: AvailabilityZones;
|
3110
|
+
/**
|
3111
|
+
* The port number that the automated backup used for connections. Default: Inherits from the source DB cluster Valid Values: 1150-65535
|
3112
|
+
*/
|
3113
|
+
Port?: Integer;
|
3114
|
+
/**
|
3115
|
+
* The Amazon Web Services KMS key ID for an automated backup. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
|
3116
|
+
*/
|
3117
|
+
KmsKeyId?: String;
|
3118
|
+
/**
|
3119
|
+
* The storage type associated with the DB cluster. This setting is only for non-Aurora Multi-AZ DB clusters.
|
3120
|
+
*/
|
3121
|
+
StorageType?: String;
|
3122
|
+
/**
|
3123
|
+
* The IOPS (I/O operations per second) value for the automated backup. This setting is only for non-Aurora Multi-AZ DB clusters.
|
3124
|
+
*/
|
3125
|
+
Iops?: IntegerOptional;
|
3126
|
+
}
|
3127
|
+
export type DBClusterAutomatedBackupList = DBClusterAutomatedBackup[];
|
3128
|
+
export interface DBClusterAutomatedBackupMessage {
|
3129
|
+
/**
|
3130
|
+
* The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.
|
3131
|
+
*/
|
3132
|
+
Marker?: String;
|
3133
|
+
/**
|
3134
|
+
* A list of DBClusterAutomatedBackup backups.
|
3135
|
+
*/
|
3136
|
+
DBClusterAutomatedBackups?: DBClusterAutomatedBackupList;
|
3137
|
+
}
|
3020
3138
|
export interface DBClusterBacktrack {
|
3021
3139
|
/**
|
3022
3140
|
* Contains a user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster.
|
@@ -3305,7 +3423,7 @@ declare namespace RDS {
|
|
3305
3423
|
*/
|
3306
3424
|
KmsKeyId?: String;
|
3307
3425
|
/**
|
3308
|
-
*
|
3426
|
+
* Specifies the Amazon Resource Name (ARN) for the DB cluster snapshot.
|
3309
3427
|
*/
|
3310
3428
|
DBClusterSnapshotArn?: String;
|
3311
3429
|
/**
|
@@ -3325,6 +3443,10 @@ declare namespace RDS {
|
|
3325
3443
|
* The storage type associated with the DB cluster snapshot. This setting is only for Aurora DB clusters.
|
3326
3444
|
*/
|
3327
3445
|
StorageType?: String;
|
3446
|
+
/**
|
3447
|
+
* Specifies the resource ID of the DB cluster that this DB cluster snapshot was created from.
|
3448
|
+
*/
|
3449
|
+
DbClusterResourceId?: String;
|
3328
3450
|
}
|
3329
3451
|
export interface DBClusterSnapshotAttribute {
|
3330
3452
|
/**
|
@@ -3829,7 +3951,7 @@ declare namespace RDS {
|
|
3829
3951
|
*/
|
3830
3952
|
DBInstanceArn?: String;
|
3831
3953
|
/**
|
3832
|
-
* The
|
3954
|
+
* The resource ID for the source DB instance, which can't be changed and which is unique to an Amazon Web Services Region.
|
3833
3955
|
*/
|
3834
3956
|
DbiResourceId?: String;
|
3835
3957
|
/**
|
@@ -3837,7 +3959,7 @@ declare namespace RDS {
|
|
3837
3959
|
*/
|
3838
3960
|
Region?: String;
|
3839
3961
|
/**
|
3840
|
-
* The
|
3962
|
+
* The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web Services Region.
|
3841
3963
|
*/
|
3842
3964
|
DBInstanceIdentifier?: String;
|
3843
3965
|
/**
|
@@ -3849,7 +3971,7 @@ declare namespace RDS {
|
|
3849
3971
|
*/
|
3850
3972
|
AllocatedStorage?: Integer;
|
3851
3973
|
/**
|
3852
|
-
* Provides a list of status information for an automated backup: active -
|
3974
|
+
* Provides a list of status information for an automated backup: active - Automated backups for current instances. retained - Automated backups for deleted instances. creating - Automated backups that are waiting for the first automated snapshot to be available.
|
3853
3975
|
*/
|
3854
3976
|
Status?: String;
|
3855
3977
|
/**
|
@@ -3869,7 +3991,7 @@ declare namespace RDS {
|
|
3869
3991
|
*/
|
3870
3992
|
InstanceCreateTime?: TStamp;
|
3871
3993
|
/**
|
3872
|
-
* The
|
3994
|
+
* The master user name of an automated backup.
|
3873
3995
|
*/
|
3874
3996
|
MasterUsername?: String;
|
3875
3997
|
/**
|
@@ -4524,6 +4646,15 @@ declare namespace RDS {
|
|
4524
4646
|
*/
|
4525
4647
|
EngineVersion: CustomEngineVersion;
|
4526
4648
|
}
|
4649
|
+
export interface DeleteDBClusterAutomatedBackupMessage {
|
4650
|
+
/**
|
4651
|
+
* The identifier for the source DB cluster, which can't be changed and which is unique to an Amazon Web Services Region.
|
4652
|
+
*/
|
4653
|
+
DbClusterResourceId: String;
|
4654
|
+
}
|
4655
|
+
export interface DeleteDBClusterAutomatedBackupResult {
|
4656
|
+
DBClusterAutomatedBackup?: DBClusterAutomatedBackup;
|
4657
|
+
}
|
4527
4658
|
export interface DeleteDBClusterEndpointMessage {
|
4528
4659
|
/**
|
4529
4660
|
* The identifier associated with the custom endpoint. This parameter is stored as a lowercase string.
|
@@ -4543,6 +4674,10 @@ declare namespace RDS {
|
|
4543
4674
|
* The DB cluster snapshot identifier of the new DB cluster snapshot created when SkipFinalSnapshot is disabled. Specifying this parameter and also skipping the creation of a final DB cluster snapshot with the SkipFinalShapshot parameter results in an error. Constraints: Must be 1 to 255 letters, numbers, or hyphens. First character must be a letter Can't end with a hyphen or contain two consecutive hyphens
|
4544
4675
|
*/
|
4545
4676
|
FinalDBSnapshotIdentifier?: String;
|
4677
|
+
/**
|
4678
|
+
* A value that indicates whether to remove automated backups immediately after the DB cluster is deleted. This parameter isn't case-sensitive. The default is to remove automated backups immediately after the DB cluster is deleted.
|
4679
|
+
*/
|
4680
|
+
DeleteAutomatedBackups?: BooleanOptional;
|
4546
4681
|
}
|
4547
4682
|
export interface DeleteDBClusterParameterGroupMessage {
|
4548
4683
|
/**
|
@@ -4739,6 +4874,28 @@ declare namespace RDS {
|
|
4739
4874
|
*/
|
4740
4875
|
Marker?: String;
|
4741
4876
|
}
|
4877
|
+
export interface DescribeDBClusterAutomatedBackupsMessage {
|
4878
|
+
/**
|
4879
|
+
* The resource ID of the DB cluster that is the source of the automated backup. This parameter isn't case-sensitive.
|
4880
|
+
*/
|
4881
|
+
DbClusterResourceId?: String;
|
4882
|
+
/**
|
4883
|
+
* (Optional) The user-supplied DB cluster identifier. If this parameter is specified, it must match the identifier of an existing DB cluster. It returns information from the specific DB cluster's automated backup. This parameter isn't case-sensitive.
|
4884
|
+
*/
|
4885
|
+
DBClusterIdentifier?: String;
|
4886
|
+
/**
|
4887
|
+
* A filter that specifies which resources to return based on status. Supported filters are the following: status retained - Automated backups for deleted clusters and after backup replication is stopped. db-cluster-id - Accepts DB cluster identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB cluster automated backups identified by these ARNs. db-cluster-resource-id - Accepts DB resource identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB cluster resources identified by these ARNs. Returns all resources by default. The status for each resource is specified in the response.
|
4888
|
+
*/
|
4889
|
+
Filters?: FilterList;
|
4890
|
+
/**
|
4891
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that you can retrieve the remaining results.
|
4892
|
+
*/
|
4893
|
+
MaxRecords?: IntegerOptional;
|
4894
|
+
/**
|
4895
|
+
* The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.
|
4896
|
+
*/
|
4897
|
+
Marker?: String;
|
4898
|
+
}
|
4742
4899
|
export interface DescribeDBClusterBacktracksMessage {
|
4743
4900
|
/**
|
4744
4901
|
* The DB cluster identifier of the DB cluster to be described. This parameter is stored as a lowercase string. Constraints: Must contain from 1 to 63 alphanumeric characters or hyphens. First character must be a letter. Can't end with a hyphen or contain two consecutive hyphens. Example: my-cluster1
|
@@ -4865,6 +5022,10 @@ declare namespace RDS {
|
|
4865
5022
|
* A value that indicates whether to include manual DB cluster snapshots that are public and can be copied or restored by any Amazon Web Services account. By default, the public snapshots are not included. You can share a manual DB cluster snapshot as public by using the ModifyDBClusterSnapshotAttribute API action.
|
4866
5023
|
*/
|
4867
5024
|
IncludePublic?: Boolean;
|
5025
|
+
/**
|
5026
|
+
* A specific DB cluster resource ID to describe.
|
5027
|
+
*/
|
5028
|
+
DbClusterResourceId?: String;
|
4868
5029
|
}
|
4869
5030
|
export interface DescribeDBClustersMessage {
|
4870
5031
|
/**
|
@@ -4936,11 +5097,11 @@ declare namespace RDS {
|
|
4936
5097
|
*/
|
4937
5098
|
DbiResourceId?: String;
|
4938
5099
|
/**
|
4939
|
-
* (Optional) The user-supplied instance identifier. If this parameter is specified, it must match the identifier of an existing DB instance. It returns information from the specific DB instance' automated backup. This parameter isn't case-sensitive.
|
5100
|
+
* (Optional) The user-supplied instance identifier. If this parameter is specified, it must match the identifier of an existing DB instance. It returns information from the specific DB instance's automated backup. This parameter isn't case-sensitive.
|
4940
5101
|
*/
|
4941
5102
|
DBInstanceIdentifier?: String;
|
4942
5103
|
/**
|
4943
|
-
* A filter that specifies which resources to return based on status. Supported filters are the following: status active -
|
5104
|
+
* A filter that specifies which resources to return based on status. Supported filters are the following: status active - Automated backups for current instances. creating - Automated backups that are waiting for the first automated snapshot to be available. retained - Automated backups for deleted instances and after backup replication is stopped. db-instance-id - Accepts DB instance identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB instance automated backups identified by these ARNs. dbi-resource-id - Accepts DB resource identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB instance resources identified by these ARNs. Returns all resources by default. The status for each resource is specified in the response.
|
4944
5105
|
*/
|
4945
5106
|
Filters?: FilterList;
|
4946
5107
|
/**
|
@@ -8170,7 +8331,7 @@ declare namespace RDS {
|
|
8170
8331
|
/**
|
8171
8332
|
* The identifier of the source DB cluster from which to restore. Constraints: Must match the identifier of an existing DBCluster. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
8172
8333
|
*/
|
8173
|
-
SourceDBClusterIdentifier
|
8334
|
+
SourceDBClusterIdentifier?: String;
|
8174
8335
|
/**
|
8175
8336
|
* The date and time to restore the DB cluster to. Valid Values: Value must be a time in Universal Coordinated Time (UTC) format Constraints: Must be before the latest restorable time for the DB instance Must be specified if UseLatestRestorableTime parameter isn't provided Can't be specified if the UseLatestRestorableTime parameter is enabled Can't be specified if the RestoreType parameter is copy-on-write Example: 2015-03-07T23:45:00Z Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
8176
8337
|
*/
|
@@ -8261,6 +8422,10 @@ declare namespace RDS {
|
|
8261
8422
|
* The network type of the DB cluster. Valid values: IPV4 DUAL The network type is determined by the DBSubnetGroup specified for the DB cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL). For more information, see Working with a DB instance in a VPC in the Amazon Aurora User Guide. Valid for: Aurora DB clusters only
|
8262
8423
|
*/
|
8263
8424
|
NetworkType?: String;
|
8425
|
+
/**
|
8426
|
+
* The resource ID of the source DB cluster from which to restore.
|
8427
|
+
*/
|
8428
|
+
SourceDbClusterResourceId?: String;
|
8264
8429
|
}
|
8265
8430
|
export interface RestoreDBClusterToPointInTimeResult {
|
8266
8431
|
DBCluster?: DBCluster;
|