aws-sdk 2.916.0 → 2.920.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 +26 -1
- package/README.md +1 -1
- package/apis/autoscaling-2011-01-01.min.json +63 -60
- package/apis/datasync-2018-11-09.min.json +16 -15
- package/apis/devicefarm-2015-06-23.min.json +144 -92
- package/apis/docdb-2014-10-31.min.json +233 -65
- package/apis/docdb-2014-10-31.paginators.json +6 -0
- package/apis/ec2-2016-11-15.min.json +6 -0
- package/apis/fsx-2018-03-01.min.json +27 -24
- package/apis/iotevents-2018-07-27.min.json +715 -188
- package/apis/iotevents-data-2018-10-23.min.json +380 -1
- package/apis/iotsitewise-2019-12-02.min.json +65 -43
- package/apis/iotwireless-2020-11-22.min.json +210 -6
- package/apis/kendra-2019-02-03.min.json +351 -77
- package/apis/location-2020-11-19.min.json +677 -84
- package/apis/location-2020-11-19.paginators.json +12 -0
- package/apis/sns-2010-03-31.min.json +150 -13
- package/apis/sns-2010-03-31.paginators.json +12 -0
- package/clients/autoscaling.d.ts +55 -50
- package/clients/braket.d.ts +2 -2
- package/clients/datasync.d.ts +39 -34
- package/clients/devicefarm.d.ts +41 -10
- package/clients/docdb.d.ts +217 -4
- package/clients/ec2.d.ts +8 -0
- package/clients/ecs.d.ts +4 -4
- package/clients/fsx.d.ts +15 -2
- package/clients/iam.d.ts +1 -1
- package/clients/iotevents.d.ts +595 -11
- package/clients/ioteventsdata.d.ts +474 -9
- package/clients/iotsitewise.d.ts +34 -0
- package/clients/iotwireless.d.ts +126 -0
- package/clients/kendra.d.ts +410 -6
- package/clients/lightsail.d.ts +3 -3
- package/clients/location.d.ts +651 -77
- package/clients/polly.d.ts +1 -1
- package/clients/resourcegroups.d.ts +4 -4
- package/clients/servicediscovery.d.ts +41 -41
- package/clients/sns.d.ts +181 -4
- package/clients/sqs.d.ts +5 -5
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +17 -17
- package/dist/aws-sdk.js +378 -168
- package/dist/aws-sdk.min.js +68 -68
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/docdb.d.ts
CHANGED
|
@@ -100,6 +100,14 @@ declare class DocDB extends Service {
|
|
|
100
100
|
* Creates an Amazon DocumentDB event notification subscription. This action requires a topic Amazon Resource Name (ARN) created by using the Amazon DocumentDB console, the Amazon SNS console, or the Amazon SNS API. To obtain an ARN with Amazon SNS, you must create a topic in Amazon SNS and subscribe to the topic. The ARN is displayed in the Amazon SNS console. You can specify the type of source (SourceType) that you want to be notified of. You can also provide a list of Amazon DocumentDB sources (SourceIds) that trigger the events, and you can provide a list of event categories (EventCategories) for events that you want to be notified of. For example, you can specify SourceType = db-instance, SourceIds = mydbinstance1, mydbinstance2 and EventCategories = Availability, Backup. If you specify both the SourceType and SourceIds (such as SourceType = db-instance and SourceIdentifier = myDBInstance1), you are notified of all the db-instance events for the specified source. If you specify a SourceType but do not specify a SourceIdentifier, you receive notice of the events for that source type for all your Amazon DocumentDB sources. If you do not specify either the SourceType or the SourceIdentifier, you are notified of events generated from all Amazon DocumentDB sources belonging to your customer account.
|
|
101
101
|
*/
|
|
102
102
|
createEventSubscription(callback?: (err: AWSError, data: DocDB.Types.CreateEventSubscriptionResult) => void): Request<DocDB.Types.CreateEventSubscriptionResult, AWSError>;
|
|
103
|
+
/**
|
|
104
|
+
* Creates an Amazon DocumentDB global cluster that can span multiple multiple AWS Regions. The global cluster contains one primary cluster with read-write capability, and up-to give read-only secondary clusters. Global clusters uses storage-based fast replication across regions with latencies less than one second, using dedicated infrastructure with no impact to your workload’s performance. You can create a global cluster that is initially empty, and then add a primary and a secondary to it. Or you can specify an existing cluster during the create operation, and this cluster becomes the primary of the global cluster. This action only applies to Amazon DocumentDB clusters.
|
|
105
|
+
*/
|
|
106
|
+
createGlobalCluster(params: DocDB.Types.CreateGlobalClusterMessage, callback?: (err: AWSError, data: DocDB.Types.CreateGlobalClusterResult) => void): Request<DocDB.Types.CreateGlobalClusterResult, AWSError>;
|
|
107
|
+
/**
|
|
108
|
+
* Creates an Amazon DocumentDB global cluster that can span multiple multiple AWS Regions. The global cluster contains one primary cluster with read-write capability, and up-to give read-only secondary clusters. Global clusters uses storage-based fast replication across regions with latencies less than one second, using dedicated infrastructure with no impact to your workload’s performance. You can create a global cluster that is initially empty, and then add a primary and a secondary to it. Or you can specify an existing cluster during the create operation, and this cluster becomes the primary of the global cluster. This action only applies to Amazon DocumentDB clusters.
|
|
109
|
+
*/
|
|
110
|
+
createGlobalCluster(callback?: (err: AWSError, data: DocDB.Types.CreateGlobalClusterResult) => void): Request<DocDB.Types.CreateGlobalClusterResult, AWSError>;
|
|
103
111
|
/**
|
|
104
112
|
* Deletes a previously provisioned cluster. When you delete a cluster, all automated backups for that cluster are deleted and can't be recovered. Manual DB cluster snapshots of the specified cluster are not deleted.
|
|
105
113
|
*/
|
|
@@ -148,6 +156,14 @@ declare class DocDB extends Service {
|
|
|
148
156
|
* Deletes an Amazon DocumentDB event notification subscription.
|
|
149
157
|
*/
|
|
150
158
|
deleteEventSubscription(callback?: (err: AWSError, data: DocDB.Types.DeleteEventSubscriptionResult) => void): Request<DocDB.Types.DeleteEventSubscriptionResult, AWSError>;
|
|
159
|
+
/**
|
|
160
|
+
* Deletes a global cluster. The primary and secondary clusters must already be detached or deleted before attempting to delete a global cluster. This action only applies to Amazon DocumentDB clusters.
|
|
161
|
+
*/
|
|
162
|
+
deleteGlobalCluster(params: DocDB.Types.DeleteGlobalClusterMessage, callback?: (err: AWSError, data: DocDB.Types.DeleteGlobalClusterResult) => void): Request<DocDB.Types.DeleteGlobalClusterResult, AWSError>;
|
|
163
|
+
/**
|
|
164
|
+
* Deletes a global cluster. The primary and secondary clusters must already be detached or deleted before attempting to delete a global cluster. This action only applies to Amazon DocumentDB clusters.
|
|
165
|
+
*/
|
|
166
|
+
deleteGlobalCluster(callback?: (err: AWSError, data: DocDB.Types.DeleteGlobalClusterResult) => void): Request<DocDB.Types.DeleteGlobalClusterResult, AWSError>;
|
|
151
167
|
/**
|
|
152
168
|
* Returns a list of certificate authority (CA) certificates provided by Amazon DocumentDB for this AWS account.
|
|
153
169
|
*/
|
|
@@ -252,6 +268,14 @@ declare class DocDB extends Service {
|
|
|
252
268
|
* Returns events related to instances, security groups, snapshots, and DB parameter groups for the past 14 days. You can obtain events specific to a particular DB instance, security group, snapshot, or parameter group by providing the name as a parameter. By default, the events of the past hour are returned.
|
|
253
269
|
*/
|
|
254
270
|
describeEvents(callback?: (err: AWSError, data: DocDB.Types.EventsMessage) => void): Request<DocDB.Types.EventsMessage, AWSError>;
|
|
271
|
+
/**
|
|
272
|
+
* Returns information about Amazon DocumentDB global clusters. This API supports pagination. This action only applies to Amazon DocumentDB clusters.
|
|
273
|
+
*/
|
|
274
|
+
describeGlobalClusters(params: DocDB.Types.DescribeGlobalClustersMessage, callback?: (err: AWSError, data: DocDB.Types.GlobalClustersMessage) => void): Request<DocDB.Types.GlobalClustersMessage, AWSError>;
|
|
275
|
+
/**
|
|
276
|
+
* Returns information about Amazon DocumentDB global clusters. This API supports pagination. This action only applies to Amazon DocumentDB clusters.
|
|
277
|
+
*/
|
|
278
|
+
describeGlobalClusters(callback?: (err: AWSError, data: DocDB.Types.GlobalClustersMessage) => void): Request<DocDB.Types.GlobalClustersMessage, AWSError>;
|
|
255
279
|
/**
|
|
256
280
|
* Returns a list of orderable instance options for the specified engine.
|
|
257
281
|
*/
|
|
@@ -332,6 +356,14 @@ declare class DocDB extends Service {
|
|
|
332
356
|
* Modifies an existing Amazon DocumentDB event notification subscription.
|
|
333
357
|
*/
|
|
334
358
|
modifyEventSubscription(callback?: (err: AWSError, data: DocDB.Types.ModifyEventSubscriptionResult) => void): Request<DocDB.Types.ModifyEventSubscriptionResult, AWSError>;
|
|
359
|
+
/**
|
|
360
|
+
* Modify a setting for an Amazon DocumentDB global cluster. You can change one or more configuration parameters (for example: deletion protection), or the global cluster identifier by specifying these parameters and the new values in the request. This action only applies to Amazon DocumentDB clusters.
|
|
361
|
+
*/
|
|
362
|
+
modifyGlobalCluster(params: DocDB.Types.ModifyGlobalClusterMessage, callback?: (err: AWSError, data: DocDB.Types.ModifyGlobalClusterResult) => void): Request<DocDB.Types.ModifyGlobalClusterResult, AWSError>;
|
|
363
|
+
/**
|
|
364
|
+
* Modify a setting for an Amazon DocumentDB global cluster. You can change one or more configuration parameters (for example: deletion protection), or the global cluster identifier by specifying these parameters and the new values in the request. This action only applies to Amazon DocumentDB clusters.
|
|
365
|
+
*/
|
|
366
|
+
modifyGlobalCluster(callback?: (err: AWSError, data: DocDB.Types.ModifyGlobalClusterResult) => void): Request<DocDB.Types.ModifyGlobalClusterResult, AWSError>;
|
|
335
367
|
/**
|
|
336
368
|
* You might need to reboot your instance, usually for maintenance reasons. For example, if you make certain changes, or if you change the cluster parameter group that is associated with the instance, you must reboot the instance for the changes to take effect. Rebooting an instance restarts the database engine service. Rebooting an instance results in a momentary outage, during which the instance status is set to rebooting.
|
|
337
369
|
*/
|
|
@@ -340,6 +372,14 @@ declare class DocDB extends Service {
|
|
|
340
372
|
* You might need to reboot your instance, usually for maintenance reasons. For example, if you make certain changes, or if you change the cluster parameter group that is associated with the instance, you must reboot the instance for the changes to take effect. Rebooting an instance restarts the database engine service. Rebooting an instance results in a momentary outage, during which the instance status is set to rebooting.
|
|
341
373
|
*/
|
|
342
374
|
rebootDBInstance(callback?: (err: AWSError, data: DocDB.Types.RebootDBInstanceResult) => void): Request<DocDB.Types.RebootDBInstanceResult, AWSError>;
|
|
375
|
+
/**
|
|
376
|
+
* Detaches an Amazon DocumentDB secondary cluster from a global cluster. The cluster becomes a standalone cluster with read-write capability instead of being read-only and receiving data from a primary in a different region. This action only applies to Amazon DocumentDB clusters.
|
|
377
|
+
*/
|
|
378
|
+
removeFromGlobalCluster(params: DocDB.Types.RemoveFromGlobalClusterMessage, callback?: (err: AWSError, data: DocDB.Types.RemoveFromGlobalClusterResult) => void): Request<DocDB.Types.RemoveFromGlobalClusterResult, AWSError>;
|
|
379
|
+
/**
|
|
380
|
+
* Detaches an Amazon DocumentDB secondary cluster from a global cluster. The cluster becomes a standalone cluster with read-write capability instead of being read-only and receiving data from a primary in a different region. This action only applies to Amazon DocumentDB clusters.
|
|
381
|
+
*/
|
|
382
|
+
removeFromGlobalCluster(callback?: (err: AWSError, data: DocDB.Types.RemoveFromGlobalClusterResult) => void): Request<DocDB.Types.RemoveFromGlobalClusterResult, AWSError>;
|
|
343
383
|
/**
|
|
344
384
|
* Removes a source identifier from an existing Amazon DocumentDB event notification subscription.
|
|
345
385
|
*/
|
|
@@ -603,11 +643,11 @@ declare namespace DocDB {
|
|
|
603
643
|
/**
|
|
604
644
|
* The name of the master user for the cluster. Constraints: Must be from 1 to 63 letters or numbers. The first character must be a letter. Cannot be a reserved word for the chosen database engine.
|
|
605
645
|
*/
|
|
606
|
-
MasterUsername
|
|
646
|
+
MasterUsername?: String;
|
|
607
647
|
/**
|
|
608
648
|
* The password for the master database user. This password can contain any printable ASCII character except forward slash (/), double quote ("), or the "at" symbol (@). Constraints: Must contain from 8 to 100 characters.
|
|
609
649
|
*/
|
|
610
|
-
MasterUserPassword
|
|
650
|
+
MasterUserPassword?: String;
|
|
611
651
|
/**
|
|
612
652
|
* The daily time range during which automated backups are created if automated backups are enabled using the BackupRetentionPeriod parameter. The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region. Constraints: Must be in the format hh24:mi-hh24:mi. Must be in Universal Coordinated Time (UTC). Must not conflict with the preferred maintenance window. Must be at least 30 minutes.
|
|
613
653
|
*/
|
|
@@ -640,6 +680,10 @@ declare namespace DocDB {
|
|
|
640
680
|
* Specifies whether this cluster can be deleted. If DeletionProtection is enabled, the cluster cannot be deleted unless it is modified and DeletionProtection is disabled. DeletionProtection protects clusters from being accidentally deleted.
|
|
641
681
|
*/
|
|
642
682
|
DeletionProtection?: BooleanOptional;
|
|
683
|
+
/**
|
|
684
|
+
* The cluster identifier of the new global cluster.
|
|
685
|
+
*/
|
|
686
|
+
GlobalClusterIdentifier?: GlobalClusterIdentifier;
|
|
643
687
|
}
|
|
644
688
|
export interface CreateDBClusterParameterGroupMessage {
|
|
645
689
|
/**
|
|
@@ -777,6 +821,39 @@ declare namespace DocDB {
|
|
|
777
821
|
export interface CreateEventSubscriptionResult {
|
|
778
822
|
EventSubscription?: EventSubscription;
|
|
779
823
|
}
|
|
824
|
+
export interface CreateGlobalClusterMessage {
|
|
825
|
+
/**
|
|
826
|
+
* The cluster identifier of the new global cluster.
|
|
827
|
+
*/
|
|
828
|
+
GlobalClusterIdentifier: GlobalClusterIdentifier;
|
|
829
|
+
/**
|
|
830
|
+
* The Amazon Resource Name (ARN) to use as the primary cluster of the global cluster. This parameter is optional.
|
|
831
|
+
*/
|
|
832
|
+
SourceDBClusterIdentifier?: String;
|
|
833
|
+
/**
|
|
834
|
+
* The name of the database engine to be used for this cluster.
|
|
835
|
+
*/
|
|
836
|
+
Engine?: String;
|
|
837
|
+
/**
|
|
838
|
+
* The engine version of the global cluster.
|
|
839
|
+
*/
|
|
840
|
+
EngineVersion?: String;
|
|
841
|
+
/**
|
|
842
|
+
* The deletion protection setting for the new global cluster. The global cluster can't be deleted when deletion protection is enabled.
|
|
843
|
+
*/
|
|
844
|
+
DeletionProtection?: BooleanOptional;
|
|
845
|
+
/**
|
|
846
|
+
* The name for your database of up to 64 alpha-numeric characters. If you do not provide a name, Amazon DocumentDB will not create a database in the global cluster you are creating.
|
|
847
|
+
*/
|
|
848
|
+
DatabaseName?: String;
|
|
849
|
+
/**
|
|
850
|
+
* The storage encryption setting for the new global cluster.
|
|
851
|
+
*/
|
|
852
|
+
StorageEncrypted?: BooleanOptional;
|
|
853
|
+
}
|
|
854
|
+
export interface CreateGlobalClusterResult {
|
|
855
|
+
GlobalCluster?: GlobalCluster;
|
|
856
|
+
}
|
|
780
857
|
export interface DBCluster {
|
|
781
858
|
/**
|
|
782
859
|
* Provides the list of Amazon EC2 Availability Zones that instances in the cluster can be created in.
|
|
@@ -850,6 +927,14 @@ declare namespace DocDB {
|
|
|
850
927
|
* Specifies the weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).
|
|
851
928
|
*/
|
|
852
929
|
PreferredMaintenanceWindow?: String;
|
|
930
|
+
/**
|
|
931
|
+
* Contains the identifier of the source cluster if this cluster is a secondary cluster.
|
|
932
|
+
*/
|
|
933
|
+
ReplicationSourceIdentifier?: String;
|
|
934
|
+
/**
|
|
935
|
+
* Contains one or more identifiers of the secondary clusters that are associated with this cluster.
|
|
936
|
+
*/
|
|
937
|
+
ReadReplicaIdentifiers?: ReadReplicaIdentifierList;
|
|
853
938
|
/**
|
|
854
939
|
* Provides the list of instances that make up the cluster.
|
|
855
940
|
*/
|
|
@@ -1357,6 +1442,15 @@ declare namespace DocDB {
|
|
|
1357
1442
|
export interface DeleteEventSubscriptionResult {
|
|
1358
1443
|
EventSubscription?: EventSubscription;
|
|
1359
1444
|
}
|
|
1445
|
+
export interface DeleteGlobalClusterMessage {
|
|
1446
|
+
/**
|
|
1447
|
+
* The cluster identifier of the global cluster being deleted.
|
|
1448
|
+
*/
|
|
1449
|
+
GlobalClusterIdentifier: GlobalClusterIdentifier;
|
|
1450
|
+
}
|
|
1451
|
+
export interface DeleteGlobalClusterResult {
|
|
1452
|
+
GlobalCluster?: GlobalCluster;
|
|
1453
|
+
}
|
|
1360
1454
|
export interface DescribeCertificatesMessage {
|
|
1361
1455
|
/**
|
|
1362
1456
|
* The user-supplied certificate identifier. If this parameter is specified, information for only the specified certificate is returned. If this parameter is omitted, a list of up to MaxRecords certificates is returned. This parameter is not case sensitive. Constraints Must match an existing CertificateIdentifier.
|
|
@@ -1434,7 +1528,7 @@ declare namespace DocDB {
|
|
|
1434
1528
|
*/
|
|
1435
1529
|
DBClusterSnapshotIdentifier?: String;
|
|
1436
1530
|
/**
|
|
1437
|
-
* The type of cluster snapshots to be returned. You can specify one of the following values: automated - Return all cluster snapshots that Amazon DocumentDB has automatically created for your AWS account. manual - Return all cluster snapshots that you have manually created for your AWS account. shared - Return all manual cluster snapshots that have been shared to your AWS account. public - Return all cluster snapshots that have been marked as public. If you don't specify a SnapshotType value, then both automated and manual cluster snapshots are returned. You can include shared cluster snapshots with these results by setting the IncludeShared parameter to true. You can include public cluster snapshots with these results by setting
|
|
1531
|
+
* The type of cluster snapshots to be returned. You can specify one of the following values: automated - Return all cluster snapshots that Amazon DocumentDB has automatically created for your AWS account. manual - Return all cluster snapshots that you have manually created for your AWS account. shared - Return all manual cluster snapshots that have been shared to your AWS account. public - Return all cluster snapshots that have been marked as public. If you don't specify a SnapshotType value, then both automated and manual cluster snapshots are returned. You can include shared cluster snapshots with these results by setting the IncludeShared parameter to true. You can include public cluster snapshots with these results by setting theIncludePublic parameter to true. The IncludeShared and IncludePublic parameters don't apply for SnapshotType values of manual or automated. The IncludePublic parameter doesn't apply when SnapshotType is set to shared. The IncludeShared parameter doesn't apply when SnapshotType is set to public.
|
|
1438
1532
|
*/
|
|
1439
1533
|
SnapshotType?: String;
|
|
1440
1534
|
/**
|
|
@@ -1637,6 +1731,24 @@ declare namespace DocDB {
|
|
|
1637
1731
|
*/
|
|
1638
1732
|
Marker?: String;
|
|
1639
1733
|
}
|
|
1734
|
+
export interface DescribeGlobalClustersMessage {
|
|
1735
|
+
/**
|
|
1736
|
+
* The user-supplied cluster identifier. If this parameter is specified, information from only the specific cluster is returned. This parameter isn't case-sensitive.
|
|
1737
|
+
*/
|
|
1738
|
+
GlobalClusterIdentifier?: GlobalClusterIdentifier;
|
|
1739
|
+
/**
|
|
1740
|
+
* A filter that specifies one or more global DB clusters to describe. Supported filters: db-cluster-id accepts cluster identifiers and cluster Amazon Resource Names (ARNs). The results list will only include information about the clusters identified by these ARNs.
|
|
1741
|
+
*/
|
|
1742
|
+
Filters?: FilterList;
|
|
1743
|
+
/**
|
|
1744
|
+
* 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.
|
|
1745
|
+
*/
|
|
1746
|
+
MaxRecords?: IntegerOptional;
|
|
1747
|
+
/**
|
|
1748
|
+
* An optional pagination token provided by a previous DescribeGlobalClusters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
|
|
1749
|
+
*/
|
|
1750
|
+
Marker?: String;
|
|
1751
|
+
}
|
|
1640
1752
|
export interface DescribeOrderableDBInstanceOptionsMessage {
|
|
1641
1753
|
/**
|
|
1642
1754
|
* The name of the engine to retrieve instance options for.
|
|
@@ -1850,6 +1962,75 @@ declare namespace DocDB {
|
|
|
1850
1962
|
}
|
|
1851
1963
|
export type FilterList = Filter[];
|
|
1852
1964
|
export type FilterValueList = String[];
|
|
1965
|
+
export interface GlobalCluster {
|
|
1966
|
+
/**
|
|
1967
|
+
* Contains a user-supplied global cluster identifier. This identifier is the unique key that identifies a global cluster.
|
|
1968
|
+
*/
|
|
1969
|
+
GlobalClusterIdentifier?: GlobalClusterIdentifier;
|
|
1970
|
+
/**
|
|
1971
|
+
* The AWS Region-unique, immutable identifier for the global database cluster. This identifier is found in AWS CloudTrail log entries whenever the AWS KMS customer master key (CMK) for the cluster is accessed.
|
|
1972
|
+
*/
|
|
1973
|
+
GlobalClusterResourceId?: String;
|
|
1974
|
+
/**
|
|
1975
|
+
* The Amazon Resource Name (ARN) for the global cluster.
|
|
1976
|
+
*/
|
|
1977
|
+
GlobalClusterArn?: String;
|
|
1978
|
+
/**
|
|
1979
|
+
* Specifies the current state of this global cluster.
|
|
1980
|
+
*/
|
|
1981
|
+
Status?: String;
|
|
1982
|
+
/**
|
|
1983
|
+
* The Amazon DocumentDB database engine used by the global cluster.
|
|
1984
|
+
*/
|
|
1985
|
+
Engine?: String;
|
|
1986
|
+
/**
|
|
1987
|
+
* Indicates the database engine version.
|
|
1988
|
+
*/
|
|
1989
|
+
EngineVersion?: String;
|
|
1990
|
+
/**
|
|
1991
|
+
* The default database name within the new global cluster.
|
|
1992
|
+
*/
|
|
1993
|
+
DatabaseName?: String;
|
|
1994
|
+
/**
|
|
1995
|
+
* The storage encryption setting for the global cluster.
|
|
1996
|
+
*/
|
|
1997
|
+
StorageEncrypted?: BooleanOptional;
|
|
1998
|
+
/**
|
|
1999
|
+
* The deletion protection setting for the new global cluster.
|
|
2000
|
+
*/
|
|
2001
|
+
DeletionProtection?: BooleanOptional;
|
|
2002
|
+
/**
|
|
2003
|
+
* The list of cluster IDs for secondary clusters within the global cluster. Currently limited to one item.
|
|
2004
|
+
*/
|
|
2005
|
+
GlobalClusterMembers?: GlobalClusterMemberList;
|
|
2006
|
+
}
|
|
2007
|
+
export type GlobalClusterIdentifier = string;
|
|
2008
|
+
export type GlobalClusterList = GlobalCluster[];
|
|
2009
|
+
export interface GlobalClusterMember {
|
|
2010
|
+
/**
|
|
2011
|
+
* The Amazon Resource Name (ARN) for each Amazon DocumentDB cluster.
|
|
2012
|
+
*/
|
|
2013
|
+
DBClusterArn?: String;
|
|
2014
|
+
/**
|
|
2015
|
+
* The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Aurora global cluster.
|
|
2016
|
+
*/
|
|
2017
|
+
Readers?: ReadersArnList;
|
|
2018
|
+
/**
|
|
2019
|
+
* Specifies whether the Amazon DocumentDB cluster is the primary cluster (that is, has read-write capability) for the Amazon DocumentDB global cluster with which it is associated.
|
|
2020
|
+
*/
|
|
2021
|
+
IsWriter?: Boolean;
|
|
2022
|
+
}
|
|
2023
|
+
export type GlobalClusterMemberList = GlobalClusterMember[];
|
|
2024
|
+
export interface GlobalClustersMessage {
|
|
2025
|
+
/**
|
|
2026
|
+
*
|
|
2027
|
+
*/
|
|
2028
|
+
Marker?: String;
|
|
2029
|
+
/**
|
|
2030
|
+
*
|
|
2031
|
+
*/
|
|
2032
|
+
GlobalClusters?: GlobalClusterList;
|
|
2033
|
+
}
|
|
1853
2034
|
export type Integer = number;
|
|
1854
2035
|
export type IntegerOptional = number;
|
|
1855
2036
|
export type KeyList = String[];
|
|
@@ -1910,7 +2091,7 @@ declare namespace DocDB {
|
|
|
1910
2091
|
*/
|
|
1911
2092
|
CloudwatchLogsExportConfiguration?: CloudwatchLogsExportConfiguration;
|
|
1912
2093
|
/**
|
|
1913
|
-
* The version number of the database engine to which you want to upgrade.
|
|
2094
|
+
* The version number of the database engine to which you want to upgrade. Modifying engine version is not supported on Amazon DocumentDB.
|
|
1914
2095
|
*/
|
|
1915
2096
|
EngineVersion?: String;
|
|
1916
2097
|
/**
|
|
@@ -2031,6 +2212,23 @@ declare namespace DocDB {
|
|
|
2031
2212
|
export interface ModifyEventSubscriptionResult {
|
|
2032
2213
|
EventSubscription?: EventSubscription;
|
|
2033
2214
|
}
|
|
2215
|
+
export interface ModifyGlobalClusterMessage {
|
|
2216
|
+
/**
|
|
2217
|
+
* The identifier for the global cluster being modified. This parameter isn't case-sensitive. Constraints: Must match the identifier of an existing global cluster.
|
|
2218
|
+
*/
|
|
2219
|
+
GlobalClusterIdentifier: GlobalClusterIdentifier;
|
|
2220
|
+
/**
|
|
2221
|
+
* The new identifier for a global cluster when you modify a global cluster. This value is stored as a lowercase string. Must contain from 1 to 63 letters, numbers, or hyphens The first character must be a letter Can't end with a hyphen or contain two consecutive hyphens Example: my-cluster2
|
|
2222
|
+
*/
|
|
2223
|
+
NewGlobalClusterIdentifier?: GlobalClusterIdentifier;
|
|
2224
|
+
/**
|
|
2225
|
+
* Indicates if the global cluster has deletion protection enabled. The global cluster can't be deleted when deletion protection is enabled.
|
|
2226
|
+
*/
|
|
2227
|
+
DeletionProtection?: BooleanOptional;
|
|
2228
|
+
}
|
|
2229
|
+
export interface ModifyGlobalClusterResult {
|
|
2230
|
+
GlobalCluster?: GlobalCluster;
|
|
2231
|
+
}
|
|
2034
2232
|
export interface OrderableDBInstanceOption {
|
|
2035
2233
|
/**
|
|
2036
2234
|
* The engine type of an instance.
|
|
@@ -2217,6 +2415,8 @@ declare namespace DocDB {
|
|
|
2217
2415
|
*/
|
|
2218
2416
|
PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports;
|
|
2219
2417
|
}
|
|
2418
|
+
export type ReadReplicaIdentifierList = String[];
|
|
2419
|
+
export type ReadersArnList = String[];
|
|
2220
2420
|
export interface RebootDBInstanceMessage {
|
|
2221
2421
|
/**
|
|
2222
2422
|
* The instance identifier. This parameter is stored as a lowercase string. Constraints: Must match the identifier of an existing DBInstance.
|
|
@@ -2230,6 +2430,19 @@ declare namespace DocDB {
|
|
|
2230
2430
|
export interface RebootDBInstanceResult {
|
|
2231
2431
|
DBInstance?: DBInstance;
|
|
2232
2432
|
}
|
|
2433
|
+
export interface RemoveFromGlobalClusterMessage {
|
|
2434
|
+
/**
|
|
2435
|
+
* The cluster identifier to detach from the Amazon DocumentDB global cluster.
|
|
2436
|
+
*/
|
|
2437
|
+
GlobalClusterIdentifier: GlobalClusterIdentifier;
|
|
2438
|
+
/**
|
|
2439
|
+
* The Amazon Resource Name (ARN) identifying the cluster that was detached from the Amazon DocumentDB global cluster.
|
|
2440
|
+
*/
|
|
2441
|
+
DbClusterIdentifier: String;
|
|
2442
|
+
}
|
|
2443
|
+
export interface RemoveFromGlobalClusterResult {
|
|
2444
|
+
GlobalCluster?: GlobalCluster;
|
|
2445
|
+
}
|
|
2233
2446
|
export interface RemoveSourceIdentifierFromSubscriptionMessage {
|
|
2234
2447
|
/**
|
|
2235
2448
|
* The name of the Amazon DocumentDB event notification subscription that you want to remove a source identifier from.
|
package/clients/ec2.d.ts
CHANGED
|
@@ -7342,12 +7342,20 @@ declare namespace EC2 {
|
|
|
7342
7342
|
* The tags to apply to the new network interface.
|
|
7343
7343
|
*/
|
|
7344
7344
|
TagSpecifications?: TagSpecificationList;
|
|
7345
|
+
/**
|
|
7346
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.
|
|
7347
|
+
*/
|
|
7348
|
+
ClientToken?: String;
|
|
7345
7349
|
}
|
|
7346
7350
|
export interface CreateNetworkInterfaceResult {
|
|
7347
7351
|
/**
|
|
7348
7352
|
* Information about the network interface.
|
|
7349
7353
|
*/
|
|
7350
7354
|
NetworkInterface?: NetworkInterface;
|
|
7355
|
+
/**
|
|
7356
|
+
* The token to use to retrieve the next page of results. This value is null when there are no more results to return.
|
|
7357
|
+
*/
|
|
7358
|
+
ClientToken?: String;
|
|
7351
7359
|
}
|
|
7352
7360
|
export interface CreatePlacementGroupRequest {
|
|
7353
7361
|
/**
|
package/clients/ecs.d.ts
CHANGED
|
@@ -125,11 +125,11 @@ declare class ECS extends Service {
|
|
|
125
125
|
*/
|
|
126
126
|
describeClusters(callback?: (err: AWSError, data: ECS.Types.DescribeClustersResponse) => void): Request<ECS.Types.DescribeClustersResponse, AWSError>;
|
|
127
127
|
/**
|
|
128
|
-
* Describes
|
|
128
|
+
* Describes one or more container instances. Returns metadata about each container instance requested.
|
|
129
129
|
*/
|
|
130
130
|
describeContainerInstances(params: ECS.Types.DescribeContainerInstancesRequest, callback?: (err: AWSError, data: ECS.Types.DescribeContainerInstancesResponse) => void): Request<ECS.Types.DescribeContainerInstancesResponse, AWSError>;
|
|
131
131
|
/**
|
|
132
|
-
* Describes
|
|
132
|
+
* Describes one or more container instances. Returns metadata about each container instance requested.
|
|
133
133
|
*/
|
|
134
134
|
describeContainerInstances(callback?: (err: AWSError, data: ECS.Types.DescribeContainerInstancesResponse) => void): Request<ECS.Types.DescribeContainerInstancesResponse, AWSError>;
|
|
135
135
|
/**
|
|
@@ -940,7 +940,7 @@ declare namespace ECS {
|
|
|
940
940
|
*/
|
|
941
941
|
containerInstanceArn?: String;
|
|
942
942
|
/**
|
|
943
|
-
* The EC2 instance ID
|
|
943
|
+
* The ID of the container instance. For Amazon EC2 instances, this value is the Amazon EC2 instance ID. For external instances, this value is the AWS Systems Manager managed instance ID.
|
|
944
944
|
*/
|
|
945
945
|
ec2InstanceId?: String;
|
|
946
946
|
/**
|
|
@@ -1548,7 +1548,7 @@ declare namespace ECS {
|
|
|
1548
1548
|
*/
|
|
1549
1549
|
clusters?: StringList;
|
|
1550
1550
|
/**
|
|
1551
|
-
* Whether to include additional information about
|
|
1551
|
+
* Whether to include additional information about the clusters in the response. If this field is omitted, this information isn't included. If ATTACHMENTS is specified, the attachments for the container instances or tasks within the cluster are included. If SETTINGS is specified, the settings for the cluster are included. If STATISTICS is specified, the task and service count is included, separated by launch type. If TAGS is specified, the metadata tags associated with the cluster are included.
|
|
1552
1552
|
*/
|
|
1553
1553
|
include?: ClusterFieldList;
|
|
1554
1554
|
}
|
package/clients/fsx.d.ts
CHANGED
|
@@ -148,11 +148,11 @@ declare class FSx extends Service {
|
|
|
148
148
|
*/
|
|
149
149
|
untagResource(callback?: (err: AWSError, data: FSx.Types.UntagResourceResponse) => void): Request<FSx.Types.UntagResourceResponse, AWSError>;
|
|
150
150
|
/**
|
|
151
|
-
* Use this operation to update the configuration of an existing Amazon FSx file system. You can update multiple properties in a single request. For Amazon FSx for Windows File Server file systems, you can update the following properties: AutomaticBackupRetentionDays DailyAutomaticBackupStartTime SelfManagedActiveDirectoryConfiguration StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime For Amazon FSx for Lustre file systems, you can update the following properties: AutoImportPolicy AutomaticBackupRetentionDays DailyAutomaticBackupStartTime StorageCapacity WeeklyMaintenanceStartTime
|
|
151
|
+
* Use this operation to update the configuration of an existing Amazon FSx file system. You can update multiple properties in a single request. For Amazon FSx for Windows File Server file systems, you can update the following properties: AutomaticBackupRetentionDays DailyAutomaticBackupStartTime SelfManagedActiveDirectoryConfiguration StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime For Amazon FSx for Lustre file systems, you can update the following properties: AutoImportPolicy AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DataCompressionType StorageCapacity WeeklyMaintenanceStartTime
|
|
152
152
|
*/
|
|
153
153
|
updateFileSystem(params: FSx.Types.UpdateFileSystemRequest, callback?: (err: AWSError, data: FSx.Types.UpdateFileSystemResponse) => void): Request<FSx.Types.UpdateFileSystemResponse, AWSError>;
|
|
154
154
|
/**
|
|
155
|
-
* Use this operation to update the configuration of an existing Amazon FSx file system. You can update multiple properties in a single request. For Amazon FSx for Windows File Server file systems, you can update the following properties: AutomaticBackupRetentionDays DailyAutomaticBackupStartTime SelfManagedActiveDirectoryConfiguration StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime For Amazon FSx for Lustre file systems, you can update the following properties: AutoImportPolicy AutomaticBackupRetentionDays DailyAutomaticBackupStartTime StorageCapacity WeeklyMaintenanceStartTime
|
|
155
|
+
* Use this operation to update the configuration of an existing Amazon FSx file system. You can update multiple properties in a single request. For Amazon FSx for Windows File Server file systems, you can update the following properties: AutomaticBackupRetentionDays DailyAutomaticBackupStartTime SelfManagedActiveDirectoryConfiguration StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime For Amazon FSx for Lustre file systems, you can update the following properties: AutoImportPolicy AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DataCompressionType StorageCapacity WeeklyMaintenanceStartTime
|
|
156
156
|
*/
|
|
157
157
|
updateFileSystem(callback?: (err: AWSError, data: FSx.Types.UpdateFileSystemResponse) => void): Request<FSx.Types.UpdateFileSystemResponse, AWSError>;
|
|
158
158
|
}
|
|
@@ -464,6 +464,10 @@ declare namespace FSx {
|
|
|
464
464
|
* The type of drive cache used by PERSISTENT_1 file systems that are provisioned with HDD storage devices. This parameter is required when storage type is HDD. Set to READ, improve the performance for frequently accessed files and allows 20% of the total storage capacity of the file system to be cached. This parameter is required when StorageType is set to HDD.
|
|
465
465
|
*/
|
|
466
466
|
DriveCacheType?: DriveCacheType;
|
|
467
|
+
/**
|
|
468
|
+
* Sets the data compression configuration for the file system. DataCompressionType can have the following values: NONE - (Default) Data compression is turned off when the file system is created. LZ4 - Data compression is turned on with the LZ4 algorithm. For more information, see Lustre data compression.
|
|
469
|
+
*/
|
|
470
|
+
DataCompressionType?: DataCompressionType;
|
|
467
471
|
}
|
|
468
472
|
export interface CreateFileSystemRequest {
|
|
469
473
|
/**
|
|
@@ -549,6 +553,7 @@ declare namespace FSx {
|
|
|
549
553
|
export type CreationTime = Date;
|
|
550
554
|
export type DNSName = string;
|
|
551
555
|
export type DailyTime = string;
|
|
556
|
+
export type DataCompressionType = "NONE"|"LZ4"|string;
|
|
552
557
|
export interface DataRepositoryConfiguration {
|
|
553
558
|
/**
|
|
554
559
|
* Describes the state of the file system's S3 durable data repository, if it is configured with an S3 repository. The lifecycle can have the following values: CREATING - The data repository configuration between the FSx file system and the linked S3 data repository is being created. The data repository is unavailable. AVAILABLE - The data repository is available for use. MISCONFIGURED - Amazon FSx cannot automatically import updates from the S3 bucket until the data repository configuration is corrected. For more information, see Troubleshooting a Misconfigured linked S3 bucket. UPDATING - The data repository is undergoing a customer initiated update and availability may be impacted.
|
|
@@ -1013,6 +1018,10 @@ declare namespace FSx {
|
|
|
1013
1018
|
* The type of drive cache used by PERSISTENT_1 file systems that are provisioned with HDD storage devices. This parameter is required when storage type is HDD. Set to READ, improve the performance for frequently accessed files and allows 20% of the total storage capacity of the file system to be cached. This parameter is required when StorageType is set to HDD.
|
|
1014
1019
|
*/
|
|
1015
1020
|
DriveCacheType?: DriveCacheType;
|
|
1021
|
+
/**
|
|
1022
|
+
* The data compression configuration for the file system. DataCompressionType can have the following values: NONE - Data compression is turned off for the file system. LZ4 - Data compression is turned on with the LZ4 algorithm. For more information, see Lustre data compression.
|
|
1023
|
+
*/
|
|
1024
|
+
DataCompressionType?: DataCompressionType;
|
|
1016
1025
|
}
|
|
1017
1026
|
export type LustreFileSystemMountName = string;
|
|
1018
1027
|
export type MaxResults = number;
|
|
@@ -1153,6 +1162,10 @@ declare namespace FSx {
|
|
|
1153
1162
|
* (Optional) When you create your file system, your existing S3 objects appear as file and directory listings. Use this property to choose how Amazon FSx keeps your file and directory listing up to date as you add or modify objects in your linked S3 bucket. AutoImportPolicy can have the following values: NONE - (Default) AutoImport is off. Amazon FSx only updates file and directory listings from the linked S3 bucket when the file system is created. FSx does not update the file and directory listing for any new or changed objects after choosing this option. NEW - AutoImport is on. Amazon FSx automatically imports directory listings of any new objects added to the linked S3 bucket that do not currently exist in the FSx file system. NEW_CHANGED - AutoImport is on. Amazon FSx automatically imports file and directory listings of any new objects added to the S3 bucket and any existing objects that are changed in the S3 bucket after you choose this option. For more information, see Automatically import updates from your S3 bucket.
|
|
1154
1163
|
*/
|
|
1155
1164
|
AutoImportPolicy?: AutoImportPolicyType;
|
|
1165
|
+
/**
|
|
1166
|
+
* Sets the data compression configuration for the file system. DataCompressionType can have the following values: NONE - Data compression is turned off for the file system. LZ4 - Data compression is turned on with the LZ4 algorithm. If you don't use DataCompressionType, the file system retains its current data compression configuration. For more information, see Lustre data compression.
|
|
1167
|
+
*/
|
|
1168
|
+
DataCompressionType?: DataCompressionType;
|
|
1156
1169
|
}
|
|
1157
1170
|
export interface UpdateFileSystemRequest {
|
|
1158
1171
|
/**
|
package/clients/iam.d.ts
CHANGED
|
@@ -1596,7 +1596,7 @@ declare namespace IAM {
|
|
|
1596
1596
|
*/
|
|
1597
1597
|
Path?: policyPathType;
|
|
1598
1598
|
/**
|
|
1599
|
-
* The JSON policy document that you want to use as the content for the new policy. You must provide policies in JSON format in IAM. However, for AWS CloudFormation templates formatted in YAML, you can provide the policy in JSON or YAML format. AWS CloudFormation always converts a YAML policy to JSON format before submitting it to IAM. The regex pattern used to validate this parameter is a string of characters consisting of the following: Any printable ASCII character ranging from the space character (\u0020) through the end of the ASCII character range The printable characters in the Basic Latin and Latin-1 Supplement character set (through \u00FF) The special characters tab (\u0009), line feed (\u000A), and carriage return (\u000D)
|
|
1599
|
+
* The JSON policy document that you want to use as the content for the new policy. You must provide policies in JSON format in IAM. However, for AWS CloudFormation templates formatted in YAML, you can provide the policy in JSON or YAML format. AWS CloudFormation always converts a YAML policy to JSON format before submitting it to IAM. To learn more about JSON policy grammar, see Grammar of the IAM JSON policy language in the IAM User Guide. The regex pattern used to validate this parameter is a string of characters consisting of the following: Any printable ASCII character ranging from the space character (\u0020) through the end of the ASCII character range The printable characters in the Basic Latin and Latin-1 Supplement character set (through \u00FF) The special characters tab (\u0009), line feed (\u000A), and carriage return (\u000D)
|
|
1600
1600
|
*/
|
|
1601
1601
|
PolicyDocument: policyDocumentType;
|
|
1602
1602
|
/**
|