aws-sdk 2.1440.0 → 2.1441.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 +6 -1
- package/README.md +1 -1
- package/apis/ec2-2016-11-15.min.json +605 -593
- package/apis/finspace-2021-03-12.min.json +74 -13
- package/apis/rds-2014-10-31.min.json +142 -110
- package/clients/ec2.d.ts +12 -2
- package/clients/finspace.d.ts +73 -5
- package/clients/rds.d.ts +51 -13
- package/clients/route53domains.d.ts +1 -1
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +4 -4
- package/dist/aws-sdk.js +750 -706
- package/dist/aws-sdk.min.js +44 -44
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/ec2.d.ts
CHANGED
@@ -1247,11 +1247,11 @@ declare class EC2 extends Service {
|
|
1247
1247
|
/**
|
1248
1248
|
* Deletes the specified key pair, by removing the public key from Amazon EC2.
|
1249
1249
|
*/
|
1250
|
-
deleteKeyPair(params: EC2.Types.DeleteKeyPairRequest, callback?: (err: AWSError, data:
|
1250
|
+
deleteKeyPair(params: EC2.Types.DeleteKeyPairRequest, callback?: (err: AWSError, data: EC2.Types.DeleteKeyPairResult) => void): Request<EC2.Types.DeleteKeyPairResult, AWSError>;
|
1251
1251
|
/**
|
1252
1252
|
* Deletes the specified key pair, by removing the public key from Amazon EC2.
|
1253
1253
|
*/
|
1254
|
-
deleteKeyPair(callback?: (err: AWSError, data:
|
1254
|
+
deleteKeyPair(callback?: (err: AWSError, data: EC2.Types.DeleteKeyPairResult) => void): Request<EC2.Types.DeleteKeyPairResult, AWSError>;
|
1255
1255
|
/**
|
1256
1256
|
* Deletes a launch template. Deleting a launch template deletes all of its versions.
|
1257
1257
|
*/
|
@@ -11963,6 +11963,16 @@ declare namespace EC2 {
|
|
11963
11963
|
*/
|
11964
11964
|
DryRun?: Boolean;
|
11965
11965
|
}
|
11966
|
+
export interface DeleteKeyPairResult {
|
11967
|
+
/**
|
11968
|
+
* Is true if the request succeeds, and an error otherwise.
|
11969
|
+
*/
|
11970
|
+
Return?: Boolean;
|
11971
|
+
/**
|
11972
|
+
* The ID of the key pair.
|
11973
|
+
*/
|
11974
|
+
KeyPairId?: String;
|
11975
|
+
}
|
11966
11976
|
export interface DeleteLaunchTemplateRequest {
|
11967
11977
|
/**
|
11968
11978
|
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
package/clients/finspace.d.ts
CHANGED
@@ -496,7 +496,7 @@ declare namespace Finspace {
|
|
496
496
|
*/
|
497
497
|
clusterDescription?: KxClusterDescription;
|
498
498
|
/**
|
499
|
-
* A structure for the metadata of a cluster. It includes information
|
499
|
+
* A structure for the metadata of a cluster. It includes information like the CPUs needed, memory of instances, and number of instances.
|
500
500
|
*/
|
501
501
|
capacityConfiguration: CapacityConfiguration;
|
502
502
|
/**
|
@@ -578,7 +578,7 @@ declare namespace Finspace {
|
|
578
578
|
*/
|
579
579
|
clusterDescription?: KxClusterDescription;
|
580
580
|
/**
|
581
|
-
* A structure for the metadata of a cluster. It includes information like the CPUs needed, memory of instances, number of instances
|
581
|
+
* A structure for the metadata of a cluster. It includes information like the CPUs needed, memory of instances, and number of instances.
|
582
582
|
*/
|
583
583
|
capacityConfiguration?: CapacityConfiguration;
|
584
584
|
/**
|
@@ -1053,7 +1053,7 @@ declare namespace Finspace {
|
|
1053
1053
|
*/
|
1054
1054
|
clusterDescription?: KxClusterDescription;
|
1055
1055
|
/**
|
1056
|
-
* A structure for the metadata of a cluster. It includes information like the CPUs needed, memory of instances, number of instances
|
1056
|
+
* A structure for the metadata of a cluster. It includes information like the CPUs needed, memory of instances, and number of instances.
|
1057
1057
|
*/
|
1058
1058
|
capacityConfiguration?: CapacityConfiguration;
|
1059
1059
|
/**
|
@@ -1275,6 +1275,17 @@ declare namespace Finspace {
|
|
1275
1275
|
iamRole?: RoleArn;
|
1276
1276
|
}
|
1277
1277
|
export type IPAddressType = "IP_V4"|string;
|
1278
|
+
export interface IcmpTypeCode {
|
1279
|
+
/**
|
1280
|
+
* The ICMP type. A value of -1 means all types.
|
1281
|
+
*/
|
1282
|
+
type: IcmpTypeOrCode;
|
1283
|
+
/**
|
1284
|
+
* The ICMP code. A value of -1 means all codes for the specified ICMP type.
|
1285
|
+
*/
|
1286
|
+
code: IcmpTypeOrCode;
|
1287
|
+
}
|
1288
|
+
export type IcmpTypeOrCode = number;
|
1278
1289
|
export type IdType = string;
|
1279
1290
|
export type InitializationScriptFilePath = string;
|
1280
1291
|
export type KmsKeyARN = string;
|
@@ -1350,7 +1361,7 @@ declare namespace Finspace {
|
|
1350
1361
|
*/
|
1351
1362
|
executionRole?: ExecutionRoleArn;
|
1352
1363
|
/**
|
1353
|
-
* The number of availability zones assigned per cluster. This can be one of the following
|
1364
|
+
* The number of availability zones assigned per cluster. This can be one of the following: SINGLE – Assigns one availability zone per cluster. MULTI – Assigns all the availability zones per cluster.
|
1354
1365
|
*/
|
1355
1366
|
azMode?: KxAzMode;
|
1356
1367
|
/**
|
@@ -1427,6 +1438,13 @@ declare namespace Finspace {
|
|
1427
1438
|
lastModifiedTimestamp?: Timestamp;
|
1428
1439
|
}
|
1429
1440
|
export type KxDatabases = KxDatabaseListEntry[];
|
1441
|
+
export interface KxDeploymentConfiguration {
|
1442
|
+
/**
|
1443
|
+
* The type of deployment that you want on a cluster. ROLLING – This options loads the updated database by stopping the exiting q process and starting a new q process with updated configuration. NO_RESTART – This option loads the updated database on the running q process without stopping it. This option is quicker as it reduces the turn around time to update a kdb database changeset configuration on a cluster.
|
1444
|
+
*/
|
1445
|
+
deploymentStrategy: KxDeploymentStrategy;
|
1446
|
+
}
|
1447
|
+
export type KxDeploymentStrategy = "NO_RESTART"|"ROLLING"|string;
|
1430
1448
|
export interface KxEnvironment {
|
1431
1449
|
/**
|
1432
1450
|
* The name of the kdb environment.
|
@@ -1521,7 +1539,7 @@ declare namespace Finspace {
|
|
1521
1539
|
*/
|
1522
1540
|
type: KxSavedownStorageType;
|
1523
1541
|
/**
|
1524
|
-
* The size of temporary storage in
|
1542
|
+
* The size of temporary storage in gibibytes.
|
1525
1543
|
*/
|
1526
1544
|
size: KxSavedownStorageSize;
|
1527
1545
|
}
|
@@ -1738,12 +1756,53 @@ declare namespace Finspace {
|
|
1738
1756
|
}
|
1739
1757
|
export type MaxResults = number;
|
1740
1758
|
export type NameString = string;
|
1759
|
+
export type NetworkACLConfiguration = NetworkACLEntry[];
|
1760
|
+
export interface NetworkACLEntry {
|
1761
|
+
/**
|
1762
|
+
* The rule number for the entry. For example 100. All the network ACL entries are processed in ascending order by rule number.
|
1763
|
+
*/
|
1764
|
+
ruleNumber: RuleNumber;
|
1765
|
+
/**
|
1766
|
+
* The protocol number. A value of -1 means all the protocols.
|
1767
|
+
*/
|
1768
|
+
protocol: Protocol;
|
1769
|
+
/**
|
1770
|
+
* Indicates whether to allow or deny the traffic that matches the rule.
|
1771
|
+
*/
|
1772
|
+
ruleAction: RuleAction;
|
1773
|
+
/**
|
1774
|
+
* The range of ports the rule applies to.
|
1775
|
+
*/
|
1776
|
+
portRange?: PortRange;
|
1777
|
+
/**
|
1778
|
+
* Defines the ICMP protocol that consists of the ICMP type and code.
|
1779
|
+
*/
|
1780
|
+
icmpTypeCode?: IcmpTypeCode;
|
1781
|
+
/**
|
1782
|
+
* The IPv4 network range to allow or deny, in CIDR notation. For example, 172.16.0.0/24. We modify the specified CIDR block to its canonical form. For example, if you specify 100.68.0.18/18, we modify it to 100.68.0.0/18.
|
1783
|
+
*/
|
1784
|
+
cidrBlock: ValidCIDRBlock;
|
1785
|
+
}
|
1741
1786
|
export type NodeCount = number;
|
1742
1787
|
export type NodeType = string;
|
1743
1788
|
export type PaginationToken = string;
|
1789
|
+
export type Port = number;
|
1790
|
+
export interface PortRange {
|
1791
|
+
/**
|
1792
|
+
* The first port in the range.
|
1793
|
+
*/
|
1794
|
+
from: Port;
|
1795
|
+
/**
|
1796
|
+
* The last port in the range.
|
1797
|
+
*/
|
1798
|
+
to: Port;
|
1799
|
+
}
|
1800
|
+
export type Protocol = string;
|
1744
1801
|
export type ReleaseLabel = string;
|
1745
1802
|
export type ResultLimit = number;
|
1746
1803
|
export type RoleArn = string;
|
1804
|
+
export type RuleAction = "allow"|"deny"|string;
|
1805
|
+
export type RuleNumber = number;
|
1747
1806
|
export type S3Bucket = string;
|
1748
1807
|
export type S3Key = string;
|
1749
1808
|
export type S3ObjectVersion = string;
|
@@ -1795,6 +1854,10 @@ declare namespace Finspace {
|
|
1795
1854
|
* The routing CIDR on behalf of kdb environment. It could be any "/26 range in the 100.64.0.0 CIDR space. After providing, it will be added to the customer's transit gateway routing table so that the traffics could be routed to kdb network.
|
1796
1855
|
*/
|
1797
1856
|
routableCIDRSpace: ValidCIDRSpace;
|
1857
|
+
/**
|
1858
|
+
* The rules that define how you manage the outbound traffic from kdb network to your internal network.
|
1859
|
+
*/
|
1860
|
+
attachmentNetworkAclConfiguration?: NetworkACLConfiguration;
|
1798
1861
|
}
|
1799
1862
|
export type TransitGatewayID = string;
|
1800
1863
|
export interface UntagResourceRequest {
|
@@ -1851,6 +1914,10 @@ declare namespace Finspace {
|
|
1851
1914
|
* The structure of databases mounted on the cluster.
|
1852
1915
|
*/
|
1853
1916
|
databases: KxDatabaseConfigurations;
|
1917
|
+
/**
|
1918
|
+
* The configuration that allows you to choose how you want to update the databases on a cluster.
|
1919
|
+
*/
|
1920
|
+
deploymentConfiguration?: KxDeploymentConfiguration;
|
1854
1921
|
}
|
1855
1922
|
export interface UpdateKxClusterDatabasesResponse {
|
1856
1923
|
}
|
@@ -2088,6 +2155,7 @@ declare namespace Finspace {
|
|
2088
2155
|
*/
|
2089
2156
|
iamRole?: RoleArn;
|
2090
2157
|
}
|
2158
|
+
export type ValidCIDRBlock = string;
|
2091
2159
|
export type ValidCIDRSpace = string;
|
2092
2160
|
export type ValidHostname = string;
|
2093
2161
|
export type ValidIPAddress = string;
|
package/clients/rds.d.ts
CHANGED
@@ -742,11 +742,11 @@ declare class RDS extends Service {
|
|
742
742
|
*/
|
743
743
|
failoverDBCluster(callback?: (err: AWSError, data: RDS.Types.FailoverDBClusterResult) => void): Request<RDS.Types.FailoverDBClusterResult, AWSError>;
|
744
744
|
/**
|
745
|
-
*
|
745
|
+
* Promotes the specified secondary DB cluster to be the primary DB cluster in the global database cluster to fail over or switch over a global database. Switchover operations were previously called "managed planned failovers." Although this operation can be used either to fail over or to switch over a global database cluster, its intended use is for global database failover. To switch over a global database cluster, we recommend that you use the SwitchoverGlobalCluster operation instead. How you use this operation depends on whether you are failing over or switching over your global database cluster: Failing over - Specify the AllowDataLoss parameter and don't specify the Switchover parameter. Switching over - Specify the Switchover parameter or omit it, but don't specify the AllowDataLoss parameter. About failing over and switching over While failing over and switching over a global database cluster both change the primary DB cluster, you use these operations for different reasons: Failing over - Use this operation to respond to an unplanned event, such as a Regional disaster in the primary Region. Failing over can result in a loss of write transaction data that wasn't replicated to the chosen secondary before the failover event occurred. However, the recovery process that promotes a DB instance on the chosen seconday DB cluster to be the primary writer DB instance guarantees that the data is in a transactionally consistent state. For more information about failing over an Amazon Aurora global database, see Performing managed failovers for Aurora global databases in the Amazon Aurora User Guide. Switching over - Use this operation on a healthy global database cluster for planned events, such as Regional rotation or to fail back to the original primary DB cluster after a failover operation. With this operation, there is no data loss. For more information about switching over an Amazon Aurora global database, see Performing switchovers for Aurora global databases in the Amazon Aurora User Guide.
|
746
746
|
*/
|
747
747
|
failoverGlobalCluster(params: RDS.Types.FailoverGlobalClusterMessage, callback?: (err: AWSError, data: RDS.Types.FailoverGlobalClusterResult) => void): Request<RDS.Types.FailoverGlobalClusterResult, AWSError>;
|
748
748
|
/**
|
749
|
-
*
|
749
|
+
* Promotes the specified secondary DB cluster to be the primary DB cluster in the global database cluster to fail over or switch over a global database. Switchover operations were previously called "managed planned failovers." Although this operation can be used either to fail over or to switch over a global database cluster, its intended use is for global database failover. To switch over a global database cluster, we recommend that you use the SwitchoverGlobalCluster operation instead. How you use this operation depends on whether you are failing over or switching over your global database cluster: Failing over - Specify the AllowDataLoss parameter and don't specify the Switchover parameter. Switching over - Specify the Switchover parameter or omit it, but don't specify the AllowDataLoss parameter. About failing over and switching over While failing over and switching over a global database cluster both change the primary DB cluster, you use these operations for different reasons: Failing over - Use this operation to respond to an unplanned event, such as a Regional disaster in the primary Region. Failing over can result in a loss of write transaction data that wasn't replicated to the chosen secondary before the failover event occurred. However, the recovery process that promotes a DB instance on the chosen seconday DB cluster to be the primary writer DB instance guarantees that the data is in a transactionally consistent state. For more information about failing over an Amazon Aurora global database, see Performing managed failovers for Aurora global databases in the Amazon Aurora User Guide. Switching over - Use this operation on a healthy global database cluster for planned events, such as Regional rotation or to fail back to the original primary DB cluster after a failover operation. With this operation, there is no data loss. For more information about switching over an Amazon Aurora global database, see Performing switchovers for Aurora global databases in the Amazon Aurora User Guide.
|
750
750
|
*/
|
751
751
|
failoverGlobalCluster(callback?: (err: AWSError, data: RDS.Types.FailoverGlobalClusterResult) => void): Request<RDS.Types.FailoverGlobalClusterResult, AWSError>;
|
752
752
|
/**
|
@@ -894,11 +894,11 @@ declare class RDS extends Service {
|
|
894
894
|
*/
|
895
895
|
modifyEventSubscription(callback?: (err: AWSError, data: RDS.Types.ModifyEventSubscriptionResult) => void): Request<RDS.Types.ModifyEventSubscriptionResult, AWSError>;
|
896
896
|
/**
|
897
|
-
* Modifies a setting for an Amazon Aurora global cluster. You can change one or more database configuration parameters by specifying these parameters and the new values in the request. For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide. This operation only applies to Aurora global database clusters.
|
897
|
+
* Modifies a setting for an Amazon Aurora global database cluster. You can change one or more database configuration parameters by specifying these parameters and the new values in the request. For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide. This operation only applies to Aurora global database clusters.
|
898
898
|
*/
|
899
899
|
modifyGlobalCluster(params: RDS.Types.ModifyGlobalClusterMessage, callback?: (err: AWSError, data: RDS.Types.ModifyGlobalClusterResult) => void): Request<RDS.Types.ModifyGlobalClusterResult, AWSError>;
|
900
900
|
/**
|
901
|
-
* Modifies a setting for an Amazon Aurora global cluster. You can change one or more database configuration parameters by specifying these parameters and the new values in the request. For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide. This operation only applies to Aurora global database clusters.
|
901
|
+
* Modifies a setting for an Amazon Aurora global database cluster. You can change one or more database configuration parameters by specifying these parameters and the new values in the request. For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide. This operation only applies to Aurora global database clusters.
|
902
902
|
*/
|
903
903
|
modifyGlobalCluster(callback?: (err: AWSError, data: RDS.Types.ModifyGlobalClusterResult) => void): Request<RDS.Types.ModifyGlobalClusterResult, AWSError>;
|
904
904
|
/**
|
@@ -1149,6 +1149,14 @@ declare class RDS extends Service {
|
|
1149
1149
|
* Switches over a blue/green deployment. Before you switch over, production traffic is routed to the databases in the blue environment. After you switch over, production traffic is routed to the databases in the green environment. For more information, see Using Amazon RDS Blue/Green Deployments for database updates in the Amazon RDS User Guide and Using Amazon RDS Blue/Green Deployments for database updates in the Amazon Aurora User Guide.
|
1150
1150
|
*/
|
1151
1151
|
switchoverBlueGreenDeployment(callback?: (err: AWSError, data: RDS.Types.SwitchoverBlueGreenDeploymentResponse) => void): Request<RDS.Types.SwitchoverBlueGreenDeploymentResponse, AWSError>;
|
1152
|
+
/**
|
1153
|
+
* Switches over the specified secondary DB cluster to be the new primary DB cluster in the global database cluster. Switchover operations were previously called "managed planned failovers." Aurora promotes the specified secondary cluster to assume full read/write capabilities and demotes the current primary cluster to a secondary (read-only) cluster, maintaining the orginal replication topology. All secondary clusters are synchronized with the primary at the beginning of the process so the new primary continues operations for the Aurora global database without losing any data. Your database is unavailable for a short time while the primary and selected secondary clusters are assuming their new roles. For more information about switching over an Aurora global database, see Performing switchovers for Amazon Aurora global databases in the Amazon Aurora User Guide. This operation is intended for controlled environments, for operations such as "regional rotation" or to fall back to the original primary after a global database failover.
|
1154
|
+
*/
|
1155
|
+
switchoverGlobalCluster(params: RDS.Types.SwitchoverGlobalClusterMessage, callback?: (err: AWSError, data: RDS.Types.SwitchoverGlobalClusterResult) => void): Request<RDS.Types.SwitchoverGlobalClusterResult, AWSError>;
|
1156
|
+
/**
|
1157
|
+
* Switches over the specified secondary DB cluster to be the new primary DB cluster in the global database cluster. Switchover operations were previously called "managed planned failovers." Aurora promotes the specified secondary cluster to assume full read/write capabilities and demotes the current primary cluster to a secondary (read-only) cluster, maintaining the orginal replication topology. All secondary clusters are synchronized with the primary at the beginning of the process so the new primary continues operations for the Aurora global database without losing any data. Your database is unavailable for a short time while the primary and selected secondary clusters are assuming their new roles. For more information about switching over an Aurora global database, see Performing switchovers for Amazon Aurora global databases in the Amazon Aurora User Guide. This operation is intended for controlled environments, for operations such as "regional rotation" or to fall back to the original primary after a global database failover.
|
1158
|
+
*/
|
1159
|
+
switchoverGlobalCluster(callback?: (err: AWSError, data: RDS.Types.SwitchoverGlobalClusterResult) => void): Request<RDS.Types.SwitchoverGlobalClusterResult, AWSError>;
|
1152
1160
|
/**
|
1153
1161
|
* Switches over an Oracle standby database in an Oracle Data Guard environment, making it the new primary database. Issue this command in the Region that hosts the current standby database.
|
1154
1162
|
*/
|
@@ -1975,7 +1983,7 @@ declare namespace RDS {
|
|
1975
1983
|
*/
|
1976
1984
|
AllocatedStorage?: IntegerOptional;
|
1977
1985
|
/**
|
1978
|
-
* The storage type to associate with the DB cluster. For information on storage types for Aurora DB clusters, see Storage configurations for Amazon Aurora DB clusters. For information on storage types for Multi-AZ DB clusters, see Settings for creating Multi-AZ DB clusters. This setting is required to create a Multi-AZ DB cluster. When specified for a Multi-AZ DB cluster, a value for the Iops parameter is required. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Valid Values: Aurora DB clusters - aurora | aurora-iopt1 Multi-AZ DB clusters - io1 Default: Aurora DB clusters - aurora Multi-AZ DB clusters - io1
|
1986
|
+
* The storage type to associate with the DB cluster. For information on storage types for Aurora DB clusters, see Storage configurations for Amazon Aurora DB clusters. For information on storage types for Multi-AZ DB clusters, see Settings for creating Multi-AZ DB clusters. This setting is required to create a Multi-AZ DB cluster. When specified for a Multi-AZ DB cluster, a value for the Iops parameter is required. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Valid Values: Aurora DB clusters - aurora | aurora-iopt1 Multi-AZ DB clusters - io1 Default: Aurora DB clusters - aurora Multi-AZ DB clusters - io1 When you create an Aurora DB cluster with the storage type set to aurora-iopt1, the storage type is returned in the response. The storage type isn't returned when you set it to aurora.
|
1979
1987
|
*/
|
1980
1988
|
StorageType?: String;
|
1981
1989
|
/**
|
@@ -6131,20 +6139,28 @@ declare namespace RDS {
|
|
6131
6139
|
}
|
6132
6140
|
export interface FailoverGlobalClusterMessage {
|
6133
6141
|
/**
|
6134
|
-
*
|
6142
|
+
* The identifier of the global database cluster (Aurora global database) this operation should apply to. The identifier is the unique key assigned by the user when the Aurora global database is created. In other words, it's the name of the Aurora global database. Constraints: Must match the identifier of an existing global database cluster.
|
6135
6143
|
*/
|
6136
6144
|
GlobalClusterIdentifier: GlobalClusterIdentifier;
|
6137
6145
|
/**
|
6138
|
-
*
|
6146
|
+
* The identifier of the secondary Aurora DB cluster that you want to promote to the primary for the global database cluster. Use the Amazon Resource Name (ARN) for the identifier so that Aurora can locate the cluster in its Amazon Web Services Region.
|
6139
6147
|
*/
|
6140
6148
|
TargetDbClusterIdentifier: DBClusterIdentifier;
|
6149
|
+
/**
|
6150
|
+
* Specifies whether to allow data loss for this global database cluster operation. Allowing data loss triggers a global failover operation. If you don't specify AllowDataLoss, the global database cluster operation defaults to a switchover. Constraints: Can't be specified together with the Switchover parameter.
|
6151
|
+
*/
|
6152
|
+
AllowDataLoss?: BooleanOptional;
|
6153
|
+
/**
|
6154
|
+
* Specifies whether to switch over this global database cluster. Constraints: Can't be specified together with the AllowDataLoss parameter.
|
6155
|
+
*/
|
6156
|
+
Switchover?: BooleanOptional;
|
6141
6157
|
}
|
6142
6158
|
export interface FailoverGlobalClusterResult {
|
6143
6159
|
GlobalCluster?: GlobalCluster;
|
6144
6160
|
}
|
6145
6161
|
export interface FailoverState {
|
6146
6162
|
/**
|
6147
|
-
* The current status of the
|
6163
|
+
* The current status of the global cluster. Possible values are as follows: pending – The service received a request to switch over or fail over the global cluster. The global cluster's primary DB cluster and the specified secondary DB cluster are being verified before the operation starts. failing-over – This status covers the range of Aurora internal operations that take place during the switchover or failover process, such as demoting the primary Aurora DB cluster, promoting the secondary Aurora DB cluster, and synchronizing replicas. cancelling – The request to switch over or fail over the global cluster was cancelled and the primary Aurora DB cluster and the selected secondary Aurora DB cluster are returning to their previous states.
|
6148
6164
|
*/
|
6149
6165
|
Status?: FailoverStatus;
|
6150
6166
|
/**
|
@@ -6155,6 +6171,10 @@ declare namespace RDS {
|
|
6155
6171
|
* The Amazon Resource Name (ARN) of the Aurora DB cluster that is currently being promoted, and which is associated with this state.
|
6156
6172
|
*/
|
6157
6173
|
ToDbClusterArn?: String;
|
6174
|
+
/**
|
6175
|
+
* Indicates whether the operation is a global switchover or a global failover. If data loss is allowed, then the operation is a global failover. Otherwise, it's a switchover.
|
6176
|
+
*/
|
6177
|
+
IsDataLossAllowed?: Boolean;
|
6158
6178
|
}
|
6159
6179
|
export type FailoverStatus = "pending"|"failing-over"|"cancelling"|string;
|
6160
6180
|
export type FeatureNameList = String[];
|
@@ -6212,7 +6232,7 @@ declare namespace RDS {
|
|
6212
6232
|
*/
|
6213
6233
|
GlobalClusterMembers?: GlobalClusterMemberList;
|
6214
6234
|
/**
|
6215
|
-
* A data object containing all properties for the current state of an in-process or pending failover process for this Aurora global database. This object is empty unless the FailoverGlobalCluster
|
6235
|
+
* A data object containing all properties for the current state of an in-process or pending switchover or failover process for this global cluster (Aurora global database). This object is empty unless the SwitchoverGlobalCluster or FailoverGlobalCluster operation was called on this global cluster.
|
6216
6236
|
*/
|
6217
6237
|
FailoverState?: FailoverState;
|
6218
6238
|
}
|
@@ -6220,23 +6240,28 @@ declare namespace RDS {
|
|
6220
6240
|
export type GlobalClusterList = GlobalCluster[];
|
6221
6241
|
export interface GlobalClusterMember {
|
6222
6242
|
/**
|
6223
|
-
* The Amazon Resource Name (ARN) for each Aurora cluster.
|
6243
|
+
* The Amazon Resource Name (ARN) for each Aurora DB cluster in the global cluster.
|
6224
6244
|
*/
|
6225
6245
|
DBClusterArn?: String;
|
6226
6246
|
/**
|
6227
|
-
* The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the
|
6247
|
+
* The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the global cluster.
|
6228
6248
|
*/
|
6229
6249
|
Readers?: ReadersArnList;
|
6230
6250
|
/**
|
6231
|
-
* Specifies whether the Aurora cluster is the primary cluster (that is, has read-write capability) for the
|
6251
|
+
* Specifies whether the Aurora DB cluster is the primary cluster (that is, has read-write capability) for the global cluster with which it is associated.
|
6232
6252
|
*/
|
6233
6253
|
IsWriter?: Boolean;
|
6234
6254
|
/**
|
6235
|
-
* Specifies whether a secondary cluster in
|
6255
|
+
* Specifies whether a secondary cluster in the global cluster has write forwarding enabled, not enabled, or is in the process of enabling it.
|
6236
6256
|
*/
|
6237
6257
|
GlobalWriteForwardingStatus?: WriteForwardingStatus;
|
6258
|
+
/**
|
6259
|
+
* The status of synchronization of each Aurora DB cluster in the global cluster.
|
6260
|
+
*/
|
6261
|
+
SynchronizationStatus?: GlobalClusterMemberSynchronizationStatus;
|
6238
6262
|
}
|
6239
6263
|
export type GlobalClusterMemberList = GlobalClusterMember[];
|
6264
|
+
export type GlobalClusterMemberSynchronizationStatus = "connected"|"pending-resync"|string;
|
6240
6265
|
export interface GlobalClustersMessage {
|
6241
6266
|
/**
|
6242
6267
|
* 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.
|
@@ -9320,6 +9345,19 @@ declare namespace RDS {
|
|
9320
9345
|
}
|
9321
9346
|
export type SwitchoverDetailList = SwitchoverDetail[];
|
9322
9347
|
export type SwitchoverDetailStatus = string;
|
9348
|
+
export interface SwitchoverGlobalClusterMessage {
|
9349
|
+
/**
|
9350
|
+
* The identifier of the global database cluster to switch over. This parameter isn't case-sensitive. Constraints: Must match the identifier of an existing global database cluster (Aurora global database).
|
9351
|
+
*/
|
9352
|
+
GlobalClusterIdentifier: GlobalClusterIdentifier;
|
9353
|
+
/**
|
9354
|
+
* The identifier of the secondary Aurora DB cluster to promote to the new primary for the global database cluster. Use the Amazon Resource Name (ARN) for the identifier so that Aurora can locate the cluster in its Amazon Web Services Region.
|
9355
|
+
*/
|
9356
|
+
TargetDbClusterIdentifier: DBClusterIdentifier;
|
9357
|
+
}
|
9358
|
+
export interface SwitchoverGlobalClusterResult {
|
9359
|
+
GlobalCluster?: GlobalCluster;
|
9360
|
+
}
|
9323
9361
|
export interface SwitchoverReadReplicaMessage {
|
9324
9362
|
/**
|
9325
9363
|
* The DB instance identifier of the current standby database. This value is stored as a lowercase string. Constraints: Must match the identifier of an existing Oracle read replica DB instance.
|
@@ -925,7 +925,7 @@ declare namespace Route53Domains {
|
|
925
925
|
*/
|
926
926
|
SortBy?: ListOperationsSortAttributeName;
|
927
927
|
/**
|
928
|
-
* The sort order
|
928
|
+
* The sort order for returned values, either ascending or descending.
|
929
929
|
*/
|
930
930
|
SortOrder?: SortOrder;
|
931
931
|
}
|