@aws-sdk/client-rds 3.935.0 → 3.937.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/dist-cjs/index.js +27 -0
- package/dist-es/models/errors.js +12 -0
- package/dist-es/schemas/schemas_0.js +15 -1
- package/dist-types/commands/CreateDBClusterCommand.d.ts +5 -0
- package/dist-types/commands/CreateDBInstanceCommand.d.ts +5 -0
- package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +5 -0
- package/dist-types/commands/ModifyDBClusterCommand.d.ts +5 -0
- package/dist-types/commands/ModifyDBInstanceCommand.d.ts +5 -0
- package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +5 -0
- package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +5 -0
- package/dist-types/commands/RestoreDBInstanceFromDBSnapshotCommand.d.ts +5 -0
- package/dist-types/commands/RestoreDBInstanceFromS3Command.d.ts +5 -0
- package/dist-types/commands/RestoreDBInstanceToPointInTimeCommand.d.ts +5 -0
- package/dist-types/commands/StartDBClusterCommand.d.ts +5 -0
- package/dist-types/commands/StartDBInstanceCommand.d.ts +5 -0
- package/dist-types/models/errors.d.ts +14 -0
- package/dist-types/models/models_0.d.ts +11 -47
- package/dist-types/models/models_1.d.ts +0 -3
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/models/errors.d.ts +10 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -935,6 +935,18 @@ let StorageTypeNotSupportedFault$1 = class StorageTypeNotSupportedFault extends
|
|
|
935
935
|
Object.setPrototypeOf(this, StorageTypeNotSupportedFault.prototype);
|
|
936
936
|
}
|
|
937
937
|
};
|
|
938
|
+
let VpcEncryptionControlViolationException$1 = class VpcEncryptionControlViolationException extends RDSServiceException$1 {
|
|
939
|
+
name = "VpcEncryptionControlViolationException";
|
|
940
|
+
$fault = "client";
|
|
941
|
+
constructor(opts) {
|
|
942
|
+
super({
|
|
943
|
+
name: "VpcEncryptionControlViolationException",
|
|
944
|
+
$fault: "client",
|
|
945
|
+
...opts,
|
|
946
|
+
});
|
|
947
|
+
Object.setPrototypeOf(this, VpcEncryptionControlViolationException.prototype);
|
|
948
|
+
}
|
|
949
|
+
};
|
|
938
950
|
let DBClusterEndpointAlreadyExistsFault$1 = class DBClusterEndpointAlreadyExistsFault extends RDSServiceException$1 {
|
|
939
951
|
name = "DBClusterEndpointAlreadyExistsFault";
|
|
940
952
|
$fault = "client";
|
|
@@ -3332,6 +3344,7 @@ const _UTp = "UpgradeTarget";
|
|
|
3332
3344
|
const _Ur = "Url";
|
|
3333
3345
|
const _V = "Value";
|
|
3334
3346
|
const _VDBIMM = "ValidDBInstanceModificationsMessage";
|
|
3347
|
+
const _VECVE = "VpcEncryptionControlViolationException";
|
|
3335
3348
|
const _VF = "ValidFrom";
|
|
3336
3349
|
const _VI = "VpcId";
|
|
3337
3350
|
const _VO = "VpcOnly";
|
|
@@ -9425,6 +9438,19 @@ var ValidStorageOptions = [
|
|
|
9425
9438
|
2,
|
|
9426
9439
|
],
|
|
9427
9440
|
];
|
|
9441
|
+
var VpcEncryptionControlViolationException = [
|
|
9442
|
+
-3,
|
|
9443
|
+
n0,
|
|
9444
|
+
_VECVE,
|
|
9445
|
+
{
|
|
9446
|
+
[_e]: _c,
|
|
9447
|
+
[_hE]: 400,
|
|
9448
|
+
[_aQE]: [`VpcEncryptionControlViolationException`, 400],
|
|
9449
|
+
},
|
|
9450
|
+
[_m],
|
|
9451
|
+
[0],
|
|
9452
|
+
];
|
|
9453
|
+
schema.TypeRegistry.for(n0).registerError(VpcEncryptionControlViolationException, VpcEncryptionControlViolationException$1);
|
|
9428
9454
|
var VpcSecurityGroupMembership = [3, n0, _VSGMp, 0, [_VSGIp, _St], [0, 0]];
|
|
9429
9455
|
var __Unit = "unit";
|
|
9430
9456
|
var RDSServiceException = [-3, _s, "RDSServiceException", 0, [], []];
|
|
@@ -15465,6 +15491,7 @@ exports.TenantDatabaseAlreadyExistsFault = TenantDatabaseAlreadyExistsFault$1;
|
|
|
15465
15491
|
exports.TenantDatabaseNotFoundFault = TenantDatabaseNotFoundFault$1;
|
|
15466
15492
|
exports.TenantDatabaseQuotaExceededFault = TenantDatabaseQuotaExceededFault$1;
|
|
15467
15493
|
exports.UnsupportedDBEngineVersionFault = UnsupportedDBEngineVersionFault$1;
|
|
15494
|
+
exports.VpcEncryptionControlViolationException = VpcEncryptionControlViolationException$1;
|
|
15468
15495
|
exports.WriteForwardingStatus = WriteForwardingStatus;
|
|
15469
15496
|
exports.paginateDescribeBlueGreenDeployments = paginateDescribeBlueGreenDeployments;
|
|
15470
15497
|
exports.paginateDescribeCertificates = paginateDescribeCertificates;
|
package/dist-es/models/errors.js
CHANGED
|
@@ -815,6 +815,18 @@ export class StorageTypeNotSupportedFault extends __BaseException {
|
|
|
815
815
|
Object.setPrototypeOf(this, StorageTypeNotSupportedFault.prototype);
|
|
816
816
|
}
|
|
817
817
|
}
|
|
818
|
+
export class VpcEncryptionControlViolationException extends __BaseException {
|
|
819
|
+
name = "VpcEncryptionControlViolationException";
|
|
820
|
+
$fault = "client";
|
|
821
|
+
constructor(opts) {
|
|
822
|
+
super({
|
|
823
|
+
name: "VpcEncryptionControlViolationException",
|
|
824
|
+
$fault: "client",
|
|
825
|
+
...opts,
|
|
826
|
+
});
|
|
827
|
+
Object.setPrototypeOf(this, VpcEncryptionControlViolationException.prototype);
|
|
828
|
+
}
|
|
829
|
+
}
|
|
818
830
|
export class DBClusterEndpointAlreadyExistsFault extends __BaseException {
|
|
819
831
|
name = "DBClusterEndpointAlreadyExistsFault";
|
|
820
832
|
$fault = "client";
|
|
@@ -1470,6 +1470,7 @@ const _UTp = "UpgradeTarget";
|
|
|
1470
1470
|
const _Ur = "Url";
|
|
1471
1471
|
const _V = "Value";
|
|
1472
1472
|
const _VDBIMM = "ValidDBInstanceModificationsMessage";
|
|
1473
|
+
const _VECVE = "VpcEncryptionControlViolationException";
|
|
1473
1474
|
const _VF = "ValidFrom";
|
|
1474
1475
|
const _VI = "VpcId";
|
|
1475
1476
|
const _VO = "VpcOnly";
|
|
@@ -1502,7 +1503,7 @@ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.rds";
|
|
|
1502
1503
|
const _xN = "xmlName";
|
|
1503
1504
|
const n0 = "com.amazonaws.rds";
|
|
1504
1505
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
1505
|
-
import { AuthorizationAlreadyExistsFault as __AuthorizationAlreadyExistsFault, AuthorizationNotFoundFault as __AuthorizationNotFoundFault, AuthorizationQuotaExceededFault as __AuthorizationQuotaExceededFault, BackupPolicyNotFoundFault as __BackupPolicyNotFoundFault, BlueGreenDeploymentAlreadyExistsFault as __BlueGreenDeploymentAlreadyExistsFault, BlueGreenDeploymentNotFoundFault as __BlueGreenDeploymentNotFoundFault, CertificateNotFoundFault as __CertificateNotFoundFault, CreateCustomDBEngineVersionFault as __CreateCustomDBEngineVersionFault, CustomAvailabilityZoneNotFoundFault as __CustomAvailabilityZoneNotFoundFault, CustomDBEngineVersionAlreadyExistsFault as __CustomDBEngineVersionAlreadyExistsFault, CustomDBEngineVersionNotFoundFault as __CustomDBEngineVersionNotFoundFault, CustomDBEngineVersionQuotaExceededFault as __CustomDBEngineVersionQuotaExceededFault, DBClusterAlreadyExistsFault as __DBClusterAlreadyExistsFault, DBClusterAutomatedBackupNotFoundFault as __DBClusterAutomatedBackupNotFoundFault, DBClusterAutomatedBackupQuotaExceededFault as __DBClusterAutomatedBackupQuotaExceededFault, DBClusterBacktrackNotFoundFault as __DBClusterBacktrackNotFoundFault, DBClusterEndpointAlreadyExistsFault as __DBClusterEndpointAlreadyExistsFault, DBClusterEndpointNotFoundFault as __DBClusterEndpointNotFoundFault, DBClusterEndpointQuotaExceededFault as __DBClusterEndpointQuotaExceededFault, DBClusterNotFoundFault as __DBClusterNotFoundFault, DBClusterParameterGroupNotFoundFault as __DBClusterParameterGroupNotFoundFault, DBClusterQuotaExceededFault as __DBClusterQuotaExceededFault, DBClusterRoleAlreadyExistsFault as __DBClusterRoleAlreadyExistsFault, DBClusterRoleNotFoundFault as __DBClusterRoleNotFoundFault, DBClusterRoleQuotaExceededFault as __DBClusterRoleQuotaExceededFault, DBClusterSnapshotAlreadyExistsFault as __DBClusterSnapshotAlreadyExistsFault, DBClusterSnapshotNotFoundFault as __DBClusterSnapshotNotFoundFault, DBInstanceAlreadyExistsFault as __DBInstanceAlreadyExistsFault, DBInstanceAutomatedBackupNotFoundFault as __DBInstanceAutomatedBackupNotFoundFault, DBInstanceAutomatedBackupQuotaExceededFault as __DBInstanceAutomatedBackupQuotaExceededFault, DBInstanceNotFoundFault as __DBInstanceNotFoundFault, DBInstanceNotReadyFault as __DBInstanceNotReadyFault, DBInstanceRoleAlreadyExistsFault as __DBInstanceRoleAlreadyExistsFault, DBInstanceRoleNotFoundFault as __DBInstanceRoleNotFoundFault, DBInstanceRoleQuotaExceededFault as __DBInstanceRoleQuotaExceededFault, DBLogFileNotFoundFault as __DBLogFileNotFoundFault, DBParameterGroupAlreadyExistsFault as __DBParameterGroupAlreadyExistsFault, DBParameterGroupNotFoundFault as __DBParameterGroupNotFoundFault, DBParameterGroupQuotaExceededFault as __DBParameterGroupQuotaExceededFault, DBProxyAlreadyExistsFault as __DBProxyAlreadyExistsFault, DBProxyEndpointAlreadyExistsFault as __DBProxyEndpointAlreadyExistsFault, DBProxyEndpointNotFoundFault as __DBProxyEndpointNotFoundFault, DBProxyEndpointQuotaExceededFault as __DBProxyEndpointQuotaExceededFault, DBProxyNotFoundFault as __DBProxyNotFoundFault, DBProxyQuotaExceededFault as __DBProxyQuotaExceededFault, DBProxyTargetAlreadyRegisteredFault as __DBProxyTargetAlreadyRegisteredFault, DBProxyTargetGroupNotFoundFault as __DBProxyTargetGroupNotFoundFault, DBProxyTargetNotFoundFault as __DBProxyTargetNotFoundFault, DBSecurityGroupAlreadyExistsFault as __DBSecurityGroupAlreadyExistsFault, DBSecurityGroupNotFoundFault as __DBSecurityGroupNotFoundFault, DBSecurityGroupNotSupportedFault as __DBSecurityGroupNotSupportedFault, DBSecurityGroupQuotaExceededFault as __DBSecurityGroupQuotaExceededFault, DBShardGroupAlreadyExistsFault as __DBShardGroupAlreadyExistsFault, DBShardGroupNotFoundFault as __DBShardGroupNotFoundFault, DBSnapshotAlreadyExistsFault as __DBSnapshotAlreadyExistsFault, DBSnapshotNotFoundFault as __DBSnapshotNotFoundFault, DBSnapshotTenantDatabaseNotFoundFault as __DBSnapshotTenantDatabaseNotFoundFault, DBSubnetGroupAlreadyExistsFault as __DBSubnetGroupAlreadyExistsFault, DBSubnetGroupDoesNotCoverEnoughAZs as __DBSubnetGroupDoesNotCoverEnoughAZs, DBSubnetGroupNotAllowedFault as __DBSubnetGroupNotAllowedFault, DBSubnetGroupNotFoundFault as __DBSubnetGroupNotFoundFault, DBSubnetGroupQuotaExceededFault as __DBSubnetGroupQuotaExceededFault, DBSubnetQuotaExceededFault as __DBSubnetQuotaExceededFault, DBUpgradeDependencyFailureFault as __DBUpgradeDependencyFailureFault, DomainNotFoundFault as __DomainNotFoundFault, Ec2ImagePropertiesNotSupportedFault as __Ec2ImagePropertiesNotSupportedFault, EventSubscriptionQuotaExceededFault as __EventSubscriptionQuotaExceededFault, ExportTaskAlreadyExistsFault as __ExportTaskAlreadyExistsFault, ExportTaskNotFoundFault as __ExportTaskNotFoundFault, GlobalClusterAlreadyExistsFault as __GlobalClusterAlreadyExistsFault, GlobalClusterNotFoundFault as __GlobalClusterNotFoundFault, GlobalClusterQuotaExceededFault as __GlobalClusterQuotaExceededFault, IamRoleMissingPermissionsFault as __IamRoleMissingPermissionsFault, IamRoleNotFoundFault as __IamRoleNotFoundFault, InstanceQuotaExceededFault as __InstanceQuotaExceededFault, InsufficientAvailableIPsInSubnetFault as __InsufficientAvailableIPsInSubnetFault, InsufficientDBClusterCapacityFault as __InsufficientDBClusterCapacityFault, InsufficientDBInstanceCapacityFault as __InsufficientDBInstanceCapacityFault, InsufficientStorageClusterCapacityFault as __InsufficientStorageClusterCapacityFault, IntegrationAlreadyExistsFault as __IntegrationAlreadyExistsFault, IntegrationConflictOperationFault as __IntegrationConflictOperationFault, IntegrationNotFoundFault as __IntegrationNotFoundFault, IntegrationQuotaExceededFault as __IntegrationQuotaExceededFault, InvalidBlueGreenDeploymentStateFault as __InvalidBlueGreenDeploymentStateFault, InvalidCustomDBEngineVersionStateFault as __InvalidCustomDBEngineVersionStateFault, InvalidDBClusterAutomatedBackupStateFault as __InvalidDBClusterAutomatedBackupStateFault, InvalidDBClusterCapacityFault as __InvalidDBClusterCapacityFault, InvalidDBClusterEndpointStateFault as __InvalidDBClusterEndpointStateFault, InvalidDBClusterSnapshotStateFault as __InvalidDBClusterSnapshotStateFault, InvalidDBClusterStateFault as __InvalidDBClusterStateFault, InvalidDBInstanceAutomatedBackupStateFault as __InvalidDBInstanceAutomatedBackupStateFault, InvalidDBInstanceStateFault as __InvalidDBInstanceStateFault, InvalidDBParameterGroupStateFault as __InvalidDBParameterGroupStateFault, InvalidDBProxyEndpointStateFault as __InvalidDBProxyEndpointStateFault, InvalidDBProxyStateFault as __InvalidDBProxyStateFault, InvalidDBSecurityGroupStateFault as __InvalidDBSecurityGroupStateFault, InvalidDBShardGroupStateFault as __InvalidDBShardGroupStateFault, InvalidDBSnapshotStateFault as __InvalidDBSnapshotStateFault, InvalidDBSubnetGroupFault as __InvalidDBSubnetGroupFault, InvalidDBSubnetGroupStateFault as __InvalidDBSubnetGroupStateFault, InvalidDBSubnetStateFault as __InvalidDBSubnetStateFault, InvalidEventSubscriptionStateFault as __InvalidEventSubscriptionStateFault, InvalidExportOnlyFault as __InvalidExportOnlyFault, InvalidExportSourceStateFault as __InvalidExportSourceStateFault, InvalidExportTaskStateFault as __InvalidExportTaskStateFault, InvalidGlobalClusterStateFault as __InvalidGlobalClusterStateFault, InvalidIntegrationStateFault as __InvalidIntegrationStateFault, InvalidOptionGroupStateFault as __InvalidOptionGroupStateFault, InvalidResourceStateFault as __InvalidResourceStateFault, InvalidRestoreFault as __InvalidRestoreFault, InvalidS3BucketFault as __InvalidS3BucketFault, InvalidSubnet as __InvalidSubnet, InvalidVPCNetworkStateFault as __InvalidVPCNetworkStateFault, KMSKeyNotAccessibleFault as __KMSKeyNotAccessibleFault, MaxDBShardGroupLimitReached as __MaxDBShardGroupLimitReached, NetworkTypeNotSupported as __NetworkTypeNotSupported, OptionGroupAlreadyExistsFault as __OptionGroupAlreadyExistsFault, OptionGroupNotFoundFault as __OptionGroupNotFoundFault, OptionGroupQuotaExceededFault as __OptionGroupQuotaExceededFault, PointInTimeRestoreNotEnabledFault as __PointInTimeRestoreNotEnabledFault, ProvisionedIopsNotAvailableInAZFault as __ProvisionedIopsNotAvailableInAZFault, ReservedDBInstanceAlreadyExistsFault as __ReservedDBInstanceAlreadyExistsFault, ReservedDBInstanceNotFoundFault as __ReservedDBInstanceNotFoundFault, ReservedDBInstanceQuotaExceededFault as __ReservedDBInstanceQuotaExceededFault, ReservedDBInstancesOfferingNotFoundFault as __ReservedDBInstancesOfferingNotFoundFault, ResourceNotFoundFault as __ResourceNotFoundFault, SharedSnapshotQuotaExceededFault as __SharedSnapshotQuotaExceededFault, SnapshotQuotaExceededFault as __SnapshotQuotaExceededFault, SNSInvalidTopicFault as __SNSInvalidTopicFault, SNSNoAuthorizationFault as __SNSNoAuthorizationFault, SNSTopicArnNotFoundFault as __SNSTopicArnNotFoundFault, SourceClusterNotSupportedFault as __SourceClusterNotSupportedFault, SourceDatabaseNotSupportedFault as __SourceDatabaseNotSupportedFault, SourceNotFoundFault as __SourceNotFoundFault, StorageQuotaExceededFault as __StorageQuotaExceededFault, StorageTypeNotAvailableFault as __StorageTypeNotAvailableFault, StorageTypeNotSupportedFault as __StorageTypeNotSupportedFault, SubnetAlreadyInUse as __SubnetAlreadyInUse, SubscriptionAlreadyExistFault as __SubscriptionAlreadyExistFault, SubscriptionCategoryNotFoundFault as __SubscriptionCategoryNotFoundFault, SubscriptionNotFoundFault as __SubscriptionNotFoundFault, TenantDatabaseAlreadyExistsFault as __TenantDatabaseAlreadyExistsFault, TenantDatabaseNotFoundFault as __TenantDatabaseNotFoundFault, TenantDatabaseQuotaExceededFault as __TenantDatabaseQuotaExceededFault, UnsupportedDBEngineVersionFault as __UnsupportedDBEngineVersionFault, } from "../models/errors";
|
|
1506
|
+
import { AuthorizationAlreadyExistsFault as __AuthorizationAlreadyExistsFault, AuthorizationNotFoundFault as __AuthorizationNotFoundFault, AuthorizationQuotaExceededFault as __AuthorizationQuotaExceededFault, BackupPolicyNotFoundFault as __BackupPolicyNotFoundFault, BlueGreenDeploymentAlreadyExistsFault as __BlueGreenDeploymentAlreadyExistsFault, BlueGreenDeploymentNotFoundFault as __BlueGreenDeploymentNotFoundFault, CertificateNotFoundFault as __CertificateNotFoundFault, CreateCustomDBEngineVersionFault as __CreateCustomDBEngineVersionFault, CustomAvailabilityZoneNotFoundFault as __CustomAvailabilityZoneNotFoundFault, CustomDBEngineVersionAlreadyExistsFault as __CustomDBEngineVersionAlreadyExistsFault, CustomDBEngineVersionNotFoundFault as __CustomDBEngineVersionNotFoundFault, CustomDBEngineVersionQuotaExceededFault as __CustomDBEngineVersionQuotaExceededFault, DBClusterAlreadyExistsFault as __DBClusterAlreadyExistsFault, DBClusterAutomatedBackupNotFoundFault as __DBClusterAutomatedBackupNotFoundFault, DBClusterAutomatedBackupQuotaExceededFault as __DBClusterAutomatedBackupQuotaExceededFault, DBClusterBacktrackNotFoundFault as __DBClusterBacktrackNotFoundFault, DBClusterEndpointAlreadyExistsFault as __DBClusterEndpointAlreadyExistsFault, DBClusterEndpointNotFoundFault as __DBClusterEndpointNotFoundFault, DBClusterEndpointQuotaExceededFault as __DBClusterEndpointQuotaExceededFault, DBClusterNotFoundFault as __DBClusterNotFoundFault, DBClusterParameterGroupNotFoundFault as __DBClusterParameterGroupNotFoundFault, DBClusterQuotaExceededFault as __DBClusterQuotaExceededFault, DBClusterRoleAlreadyExistsFault as __DBClusterRoleAlreadyExistsFault, DBClusterRoleNotFoundFault as __DBClusterRoleNotFoundFault, DBClusterRoleQuotaExceededFault as __DBClusterRoleQuotaExceededFault, DBClusterSnapshotAlreadyExistsFault as __DBClusterSnapshotAlreadyExistsFault, DBClusterSnapshotNotFoundFault as __DBClusterSnapshotNotFoundFault, DBInstanceAlreadyExistsFault as __DBInstanceAlreadyExistsFault, DBInstanceAutomatedBackupNotFoundFault as __DBInstanceAutomatedBackupNotFoundFault, DBInstanceAutomatedBackupQuotaExceededFault as __DBInstanceAutomatedBackupQuotaExceededFault, DBInstanceNotFoundFault as __DBInstanceNotFoundFault, DBInstanceNotReadyFault as __DBInstanceNotReadyFault, DBInstanceRoleAlreadyExistsFault as __DBInstanceRoleAlreadyExistsFault, DBInstanceRoleNotFoundFault as __DBInstanceRoleNotFoundFault, DBInstanceRoleQuotaExceededFault as __DBInstanceRoleQuotaExceededFault, DBLogFileNotFoundFault as __DBLogFileNotFoundFault, DBParameterGroupAlreadyExistsFault as __DBParameterGroupAlreadyExistsFault, DBParameterGroupNotFoundFault as __DBParameterGroupNotFoundFault, DBParameterGroupQuotaExceededFault as __DBParameterGroupQuotaExceededFault, DBProxyAlreadyExistsFault as __DBProxyAlreadyExistsFault, DBProxyEndpointAlreadyExistsFault as __DBProxyEndpointAlreadyExistsFault, DBProxyEndpointNotFoundFault as __DBProxyEndpointNotFoundFault, DBProxyEndpointQuotaExceededFault as __DBProxyEndpointQuotaExceededFault, DBProxyNotFoundFault as __DBProxyNotFoundFault, DBProxyQuotaExceededFault as __DBProxyQuotaExceededFault, DBProxyTargetAlreadyRegisteredFault as __DBProxyTargetAlreadyRegisteredFault, DBProxyTargetGroupNotFoundFault as __DBProxyTargetGroupNotFoundFault, DBProxyTargetNotFoundFault as __DBProxyTargetNotFoundFault, DBSecurityGroupAlreadyExistsFault as __DBSecurityGroupAlreadyExistsFault, DBSecurityGroupNotFoundFault as __DBSecurityGroupNotFoundFault, DBSecurityGroupNotSupportedFault as __DBSecurityGroupNotSupportedFault, DBSecurityGroupQuotaExceededFault as __DBSecurityGroupQuotaExceededFault, DBShardGroupAlreadyExistsFault as __DBShardGroupAlreadyExistsFault, DBShardGroupNotFoundFault as __DBShardGroupNotFoundFault, DBSnapshotAlreadyExistsFault as __DBSnapshotAlreadyExistsFault, DBSnapshotNotFoundFault as __DBSnapshotNotFoundFault, DBSnapshotTenantDatabaseNotFoundFault as __DBSnapshotTenantDatabaseNotFoundFault, DBSubnetGroupAlreadyExistsFault as __DBSubnetGroupAlreadyExistsFault, DBSubnetGroupDoesNotCoverEnoughAZs as __DBSubnetGroupDoesNotCoverEnoughAZs, DBSubnetGroupNotAllowedFault as __DBSubnetGroupNotAllowedFault, DBSubnetGroupNotFoundFault as __DBSubnetGroupNotFoundFault, DBSubnetGroupQuotaExceededFault as __DBSubnetGroupQuotaExceededFault, DBSubnetQuotaExceededFault as __DBSubnetQuotaExceededFault, DBUpgradeDependencyFailureFault as __DBUpgradeDependencyFailureFault, DomainNotFoundFault as __DomainNotFoundFault, Ec2ImagePropertiesNotSupportedFault as __Ec2ImagePropertiesNotSupportedFault, EventSubscriptionQuotaExceededFault as __EventSubscriptionQuotaExceededFault, ExportTaskAlreadyExistsFault as __ExportTaskAlreadyExistsFault, ExportTaskNotFoundFault as __ExportTaskNotFoundFault, GlobalClusterAlreadyExistsFault as __GlobalClusterAlreadyExistsFault, GlobalClusterNotFoundFault as __GlobalClusterNotFoundFault, GlobalClusterQuotaExceededFault as __GlobalClusterQuotaExceededFault, IamRoleMissingPermissionsFault as __IamRoleMissingPermissionsFault, IamRoleNotFoundFault as __IamRoleNotFoundFault, InstanceQuotaExceededFault as __InstanceQuotaExceededFault, InsufficientAvailableIPsInSubnetFault as __InsufficientAvailableIPsInSubnetFault, InsufficientDBClusterCapacityFault as __InsufficientDBClusterCapacityFault, InsufficientDBInstanceCapacityFault as __InsufficientDBInstanceCapacityFault, InsufficientStorageClusterCapacityFault as __InsufficientStorageClusterCapacityFault, IntegrationAlreadyExistsFault as __IntegrationAlreadyExistsFault, IntegrationConflictOperationFault as __IntegrationConflictOperationFault, IntegrationNotFoundFault as __IntegrationNotFoundFault, IntegrationQuotaExceededFault as __IntegrationQuotaExceededFault, InvalidBlueGreenDeploymentStateFault as __InvalidBlueGreenDeploymentStateFault, InvalidCustomDBEngineVersionStateFault as __InvalidCustomDBEngineVersionStateFault, InvalidDBClusterAutomatedBackupStateFault as __InvalidDBClusterAutomatedBackupStateFault, InvalidDBClusterCapacityFault as __InvalidDBClusterCapacityFault, InvalidDBClusterEndpointStateFault as __InvalidDBClusterEndpointStateFault, InvalidDBClusterSnapshotStateFault as __InvalidDBClusterSnapshotStateFault, InvalidDBClusterStateFault as __InvalidDBClusterStateFault, InvalidDBInstanceAutomatedBackupStateFault as __InvalidDBInstanceAutomatedBackupStateFault, InvalidDBInstanceStateFault as __InvalidDBInstanceStateFault, InvalidDBParameterGroupStateFault as __InvalidDBParameterGroupStateFault, InvalidDBProxyEndpointStateFault as __InvalidDBProxyEndpointStateFault, InvalidDBProxyStateFault as __InvalidDBProxyStateFault, InvalidDBSecurityGroupStateFault as __InvalidDBSecurityGroupStateFault, InvalidDBShardGroupStateFault as __InvalidDBShardGroupStateFault, InvalidDBSnapshotStateFault as __InvalidDBSnapshotStateFault, InvalidDBSubnetGroupFault as __InvalidDBSubnetGroupFault, InvalidDBSubnetGroupStateFault as __InvalidDBSubnetGroupStateFault, InvalidDBSubnetStateFault as __InvalidDBSubnetStateFault, InvalidEventSubscriptionStateFault as __InvalidEventSubscriptionStateFault, InvalidExportOnlyFault as __InvalidExportOnlyFault, InvalidExportSourceStateFault as __InvalidExportSourceStateFault, InvalidExportTaskStateFault as __InvalidExportTaskStateFault, InvalidGlobalClusterStateFault as __InvalidGlobalClusterStateFault, InvalidIntegrationStateFault as __InvalidIntegrationStateFault, InvalidOptionGroupStateFault as __InvalidOptionGroupStateFault, InvalidResourceStateFault as __InvalidResourceStateFault, InvalidRestoreFault as __InvalidRestoreFault, InvalidS3BucketFault as __InvalidS3BucketFault, InvalidSubnet as __InvalidSubnet, InvalidVPCNetworkStateFault as __InvalidVPCNetworkStateFault, KMSKeyNotAccessibleFault as __KMSKeyNotAccessibleFault, MaxDBShardGroupLimitReached as __MaxDBShardGroupLimitReached, NetworkTypeNotSupported as __NetworkTypeNotSupported, OptionGroupAlreadyExistsFault as __OptionGroupAlreadyExistsFault, OptionGroupNotFoundFault as __OptionGroupNotFoundFault, OptionGroupQuotaExceededFault as __OptionGroupQuotaExceededFault, PointInTimeRestoreNotEnabledFault as __PointInTimeRestoreNotEnabledFault, ProvisionedIopsNotAvailableInAZFault as __ProvisionedIopsNotAvailableInAZFault, ReservedDBInstanceAlreadyExistsFault as __ReservedDBInstanceAlreadyExistsFault, ReservedDBInstanceNotFoundFault as __ReservedDBInstanceNotFoundFault, ReservedDBInstanceQuotaExceededFault as __ReservedDBInstanceQuotaExceededFault, ReservedDBInstancesOfferingNotFoundFault as __ReservedDBInstancesOfferingNotFoundFault, ResourceNotFoundFault as __ResourceNotFoundFault, SharedSnapshotQuotaExceededFault as __SharedSnapshotQuotaExceededFault, SnapshotQuotaExceededFault as __SnapshotQuotaExceededFault, SNSInvalidTopicFault as __SNSInvalidTopicFault, SNSNoAuthorizationFault as __SNSNoAuthorizationFault, SNSTopicArnNotFoundFault as __SNSTopicArnNotFoundFault, SourceClusterNotSupportedFault as __SourceClusterNotSupportedFault, SourceDatabaseNotSupportedFault as __SourceDatabaseNotSupportedFault, SourceNotFoundFault as __SourceNotFoundFault, StorageQuotaExceededFault as __StorageQuotaExceededFault, StorageTypeNotAvailableFault as __StorageTypeNotAvailableFault, StorageTypeNotSupportedFault as __StorageTypeNotSupportedFault, SubnetAlreadyInUse as __SubnetAlreadyInUse, SubscriptionAlreadyExistFault as __SubscriptionAlreadyExistFault, SubscriptionCategoryNotFoundFault as __SubscriptionCategoryNotFoundFault, SubscriptionNotFoundFault as __SubscriptionNotFoundFault, TenantDatabaseAlreadyExistsFault as __TenantDatabaseAlreadyExistsFault, TenantDatabaseNotFoundFault as __TenantDatabaseNotFoundFault, TenantDatabaseQuotaExceededFault as __TenantDatabaseQuotaExceededFault, UnsupportedDBEngineVersionFault as __UnsupportedDBEngineVersionFault, VpcEncryptionControlViolationException as __VpcEncryptionControlViolationException, } from "../models/errors";
|
|
1506
1507
|
import { RDSServiceException as __RDSServiceException } from "../models/RDSServiceException";
|
|
1507
1508
|
export var PotentiallySensitiveOptionSettingValue = [0, n0, _PSOSV, 8, 0];
|
|
1508
1509
|
export var SensitiveString = [0, n0, _SS, 8, 0];
|
|
@@ -7566,6 +7567,19 @@ export var ValidStorageOptions = [
|
|
|
7566
7567
|
2,
|
|
7567
7568
|
],
|
|
7568
7569
|
];
|
|
7570
|
+
export var VpcEncryptionControlViolationException = [
|
|
7571
|
+
-3,
|
|
7572
|
+
n0,
|
|
7573
|
+
_VECVE,
|
|
7574
|
+
{
|
|
7575
|
+
[_e]: _c,
|
|
7576
|
+
[_hE]: 400,
|
|
7577
|
+
[_aQE]: [`VpcEncryptionControlViolationException`, 400],
|
|
7578
|
+
},
|
|
7579
|
+
[_m],
|
|
7580
|
+
[0],
|
|
7581
|
+
];
|
|
7582
|
+
TypeRegistry.for(n0).registerError(VpcEncryptionControlViolationException, __VpcEncryptionControlViolationException);
|
|
7569
7583
|
export var VpcSecurityGroupMembership = [3, n0, _VSGMp, 0, [_VSGIp, _St], [0, 0]];
|
|
7570
7584
|
export var __Unit = "unit";
|
|
7571
7585
|
export var RDSServiceException = [-3, _s, "RDSServiceException", 0, [], []];
|
|
@@ -421,6 +421,11 @@ declare const CreateDBClusterCommand_base: {
|
|
|
421
421
|
* @throws {@link StorageTypeNotSupportedFault} (client fault)
|
|
422
422
|
* <p>The specified <code>StorageType</code> can't be associated with the DB instance.</p>
|
|
423
423
|
*
|
|
424
|
+
* @throws {@link VpcEncryptionControlViolationException} (client fault)
|
|
425
|
+
* <p>The operation violates VPC encryption control settings. Make sure that your DB instance
|
|
426
|
+
* type supports the Nitro encryption-in-transit capability,
|
|
427
|
+
* or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
|
|
428
|
+
*
|
|
424
429
|
* @throws {@link RDSServiceException}
|
|
425
430
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
426
431
|
*
|
|
@@ -448,6 +448,11 @@ declare const CreateDBInstanceCommand_base: {
|
|
|
448
448
|
* <p>You attempted to create more tenant databases than are permitted in your Amazon Web Services
|
|
449
449
|
* account.</p>
|
|
450
450
|
*
|
|
451
|
+
* @throws {@link VpcEncryptionControlViolationException} (client fault)
|
|
452
|
+
* <p>The operation violates VPC encryption control settings. Make sure that your DB instance
|
|
453
|
+
* type supports the Nitro encryption-in-transit capability,
|
|
454
|
+
* or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
|
|
455
|
+
*
|
|
451
456
|
* @throws {@link RDSServiceException}
|
|
452
457
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
453
458
|
*
|
|
@@ -440,6 +440,11 @@ declare const CreateDBInstanceReadReplicaCommand_base: {
|
|
|
440
440
|
* <p>You attempted to create more tenant databases than are permitted in your Amazon Web Services
|
|
441
441
|
* account.</p>
|
|
442
442
|
*
|
|
443
|
+
* @throws {@link VpcEncryptionControlViolationException} (client fault)
|
|
444
|
+
* <p>The operation violates VPC encryption control settings. Make sure that your DB instance
|
|
445
|
+
* type supports the Nitro encryption-in-transit capability,
|
|
446
|
+
* or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
|
|
447
|
+
*
|
|
443
448
|
* @throws {@link RDSServiceException}
|
|
444
449
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
445
450
|
*
|
|
@@ -388,6 +388,11 @@ declare const ModifyDBClusterCommand_base: {
|
|
|
388
388
|
* @throws {@link StorageTypeNotSupportedFault} (client fault)
|
|
389
389
|
* <p>The specified <code>StorageType</code> can't be associated with the DB instance.</p>
|
|
390
390
|
*
|
|
391
|
+
* @throws {@link VpcEncryptionControlViolationException} (client fault)
|
|
392
|
+
* <p>The operation violates VPC encryption control settings. Make sure that your DB instance
|
|
393
|
+
* type supports the Nitro encryption-in-transit capability,
|
|
394
|
+
* or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
|
|
395
|
+
*
|
|
391
396
|
* @throws {@link RDSServiceException}
|
|
392
397
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
393
398
|
*
|
|
@@ -437,6 +437,11 @@ declare const ModifyDBInstanceCommand_base: {
|
|
|
437
437
|
* <p>You attempted to create more tenant databases than are permitted in your Amazon Web Services
|
|
438
438
|
* account.</p>
|
|
439
439
|
*
|
|
440
|
+
* @throws {@link VpcEncryptionControlViolationException} (client fault)
|
|
441
|
+
* <p>The operation violates VPC encryption control settings. Make sure that your DB instance
|
|
442
|
+
* type supports the Nitro encryption-in-transit capability,
|
|
443
|
+
* or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
|
|
444
|
+
*
|
|
440
445
|
* @throws {@link RDSServiceException}
|
|
441
446
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
442
447
|
*
|
|
@@ -400,6 +400,11 @@ declare const RestoreDBClusterFromSnapshotCommand_base: {
|
|
|
400
400
|
* @throws {@link StorageTypeNotSupportedFault} (client fault)
|
|
401
401
|
* <p>The specified <code>StorageType</code> can't be associated with the DB instance.</p>
|
|
402
402
|
*
|
|
403
|
+
* @throws {@link VpcEncryptionControlViolationException} (client fault)
|
|
404
|
+
* <p>The operation violates VPC encryption control settings. Make sure that your DB instance
|
|
405
|
+
* type supports the Nitro encryption-in-transit capability,
|
|
406
|
+
* or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
|
|
407
|
+
*
|
|
403
408
|
* @throws {@link RDSServiceException}
|
|
404
409
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
405
410
|
*
|
|
@@ -402,6 +402,11 @@ declare const RestoreDBClusterToPointInTimeCommand_base: {
|
|
|
402
402
|
* @throws {@link StorageTypeNotSupportedFault} (client fault)
|
|
403
403
|
* <p>The specified <code>StorageType</code> can't be associated with the DB instance.</p>
|
|
404
404
|
*
|
|
405
|
+
* @throws {@link VpcEncryptionControlViolationException} (client fault)
|
|
406
|
+
* <p>The operation violates VPC encryption control settings. Make sure that your DB instance
|
|
407
|
+
* type supports the Nitro encryption-in-transit capability,
|
|
408
|
+
* or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
|
|
409
|
+
*
|
|
405
410
|
* @throws {@link RDSServiceException}
|
|
406
411
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
407
412
|
*
|
|
@@ -440,6 +440,11 @@ declare const RestoreDBInstanceFromDBSnapshotCommand_base: {
|
|
|
440
440
|
* <p>You attempted to create more tenant databases than are permitted in your Amazon Web Services
|
|
441
441
|
* account.</p>
|
|
442
442
|
*
|
|
443
|
+
* @throws {@link VpcEncryptionControlViolationException} (client fault)
|
|
444
|
+
* <p>The operation violates VPC encryption control settings. Make sure that your DB instance
|
|
445
|
+
* type supports the Nitro encryption-in-transit capability,
|
|
446
|
+
* or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
|
|
447
|
+
*
|
|
443
448
|
* @throws {@link RDSServiceException}
|
|
444
449
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
445
450
|
*
|
|
@@ -422,6 +422,11 @@ declare const RestoreDBInstanceFromS3Command_base: {
|
|
|
422
422
|
* @throws {@link StorageTypeNotSupportedFault} (client fault)
|
|
423
423
|
* <p>The specified <code>StorageType</code> can't be associated with the DB instance.</p>
|
|
424
424
|
*
|
|
425
|
+
* @throws {@link VpcEncryptionControlViolationException} (client fault)
|
|
426
|
+
* <p>The operation violates VPC encryption control settings. Make sure that your DB instance
|
|
427
|
+
* type supports the Nitro encryption-in-transit capability,
|
|
428
|
+
* or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
|
|
429
|
+
*
|
|
425
430
|
* @throws {@link RDSServiceException}
|
|
426
431
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
427
432
|
*
|
|
@@ -442,6 +442,11 @@ declare const RestoreDBInstanceToPointInTimeCommand_base: {
|
|
|
442
442
|
* <p>You attempted to create more tenant databases than are permitted in your Amazon Web Services
|
|
443
443
|
* account.</p>
|
|
444
444
|
*
|
|
445
|
+
* @throws {@link VpcEncryptionControlViolationException} (client fault)
|
|
446
|
+
* <p>The operation violates VPC encryption control settings. Make sure that your DB instance
|
|
447
|
+
* type supports the Nitro encryption-in-transit capability,
|
|
448
|
+
* or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
|
|
449
|
+
*
|
|
445
450
|
* @throws {@link RDSServiceException}
|
|
446
451
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
447
452
|
*
|
|
@@ -267,6 +267,11 @@ declare const StartDBClusterCommand_base: {
|
|
|
267
267
|
* @throws {@link KMSKeyNotAccessibleFault} (client fault)
|
|
268
268
|
* <p>An error occurred accessing an Amazon Web Services KMS key.</p>
|
|
269
269
|
*
|
|
270
|
+
* @throws {@link VpcEncryptionControlViolationException} (client fault)
|
|
271
|
+
* <p>The operation violates VPC encryption control settings. Make sure that your DB instance
|
|
272
|
+
* type supports the Nitro encryption-in-transit capability,
|
|
273
|
+
* or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
|
|
274
|
+
*
|
|
270
275
|
* @throws {@link RDSServiceException}
|
|
271
276
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
272
277
|
*
|
|
@@ -327,6 +327,11 @@ declare const StartDBInstanceCommand_base: {
|
|
|
327
327
|
* @throws {@link KMSKeyNotAccessibleFault} (client fault)
|
|
328
328
|
* <p>An error occurred accessing an Amazon Web Services KMS key.</p>
|
|
329
329
|
*
|
|
330
|
+
* @throws {@link VpcEncryptionControlViolationException} (client fault)
|
|
331
|
+
* <p>The operation violates VPC encryption control settings. Make sure that your DB instance
|
|
332
|
+
* type supports the Nitro encryption-in-transit capability,
|
|
333
|
+
* or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
|
|
334
|
+
*
|
|
330
335
|
* @throws {@link RDSServiceException}
|
|
331
336
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
332
337
|
*
|
|
@@ -842,6 +842,20 @@ export declare class StorageTypeNotSupportedFault extends __BaseException {
|
|
|
842
842
|
*/
|
|
843
843
|
constructor(opts: __ExceptionOptionType<StorageTypeNotSupportedFault, __BaseException>);
|
|
844
844
|
}
|
|
845
|
+
/**
|
|
846
|
+
* <p>The operation violates VPC encryption control settings. Make sure that your DB instance
|
|
847
|
+
* type supports the Nitro encryption-in-transit capability,
|
|
848
|
+
* or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
|
|
849
|
+
* @public
|
|
850
|
+
*/
|
|
851
|
+
export declare class VpcEncryptionControlViolationException extends __BaseException {
|
|
852
|
+
readonly name: "VpcEncryptionControlViolationException";
|
|
853
|
+
readonly $fault: "client";
|
|
854
|
+
/**
|
|
855
|
+
* @internal
|
|
856
|
+
*/
|
|
857
|
+
constructor(opts: __ExceptionOptionType<VpcEncryptionControlViolationException, __BaseException>);
|
|
858
|
+
}
|
|
845
859
|
/**
|
|
846
860
|
* <p>The specified custom endpoint can't be created because it already exists.</p>
|
|
847
861
|
* @public
|
|
@@ -3709,31 +3709,13 @@ export interface CreateDBClusterMessage {
|
|
|
3709
3709
|
Iops?: number | undefined;
|
|
3710
3710
|
/**
|
|
3711
3711
|
* <p>Specifies whether the DB cluster is publicly accessible.</p>
|
|
3712
|
-
* <p>When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC),
|
|
3713
|
-
* its Domain Name System (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster,
|
|
3714
|
-
* the endpoint resolves to the private IP address. Access to the DB cluster is ultimately controlled by the security group it uses. That public
|
|
3715
|
-
* access isn't permitted if the security group assigned to the DB cluster doesn't permit it.</p>
|
|
3716
|
-
* <p>When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.</p>
|
|
3717
3712
|
* <p>Valid for Cluster Type: Multi-AZ DB clusters only</p>
|
|
3718
|
-
* <p>
|
|
3719
|
-
* <p>
|
|
3720
|
-
* <
|
|
3721
|
-
*
|
|
3722
|
-
*
|
|
3723
|
-
*
|
|
3724
|
-
* <li>
|
|
3725
|
-
* <p>If the default VPC in the target Region has an internet gateway attached to it, the DB cluster is public.</p>
|
|
3726
|
-
* </li>
|
|
3727
|
-
* </ul>
|
|
3728
|
-
* <p>If <code>DBSubnetGroupName</code> is specified, and <code>PubliclyAccessible</code> isn't specified, the following applies:</p>
|
|
3729
|
-
* <ul>
|
|
3730
|
-
* <li>
|
|
3731
|
-
* <p>If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.</p>
|
|
3732
|
-
* </li>
|
|
3733
|
-
* <li>
|
|
3734
|
-
* <p>If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.</p>
|
|
3735
|
-
* </li>
|
|
3736
|
-
* </ul>
|
|
3713
|
+
* <p>When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its domain name system (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is controlled by its security group settings.</p>
|
|
3714
|
+
* <p>When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.</p>
|
|
3715
|
+
* <p>The default behavior when <code>PubliclyAccessible</code> is not specified depends on whether a <code>DBSubnetGroup</code> is specified.</p>
|
|
3716
|
+
* <p>If <code>DBSubnetGroup</code> isn't specified, <code>PubliclyAccessible</code> defaults to <code>true</code>.</p>
|
|
3717
|
+
* <p>If <code>DBSubnetGroup</code> is specified, <code>PubliclyAccessible</code> defaults to <code>false</code> unless the value of <code>DBSubnetGroup</code> is <code>default</code>, in which case <code>PubliclyAccessible</code> defaults to <code>true</code>.</p>
|
|
3718
|
+
* <p>If <code>PubliclyAccessible</code> is true and the VPC that the <code>DBSubnetGroup</code> is in doesn't have an internet gateway attached to it, Amazon RDS returns an error.</p>
|
|
3737
3719
|
* @public
|
|
3738
3720
|
*/
|
|
3739
3721
|
PubliclyAccessible?: boolean | undefined;
|
|
@@ -6151,30 +6133,12 @@ export interface CreateDBInstanceMessage {
|
|
|
6151
6133
|
NcharCharacterSetName?: string | undefined;
|
|
6152
6134
|
/**
|
|
6153
6135
|
* <p>Specifies whether the DB instance is publicly accessible.</p>
|
|
6154
|
-
* <p>When the DB instance is publicly accessible and you connect from outside of the DB instance's virtual private cloud (VPC),
|
|
6155
|
-
* its Domain Name System (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB instance,
|
|
6156
|
-
* the endpoint resolves to the private IP address. Access to the DB instance is ultimately controlled by the security group it uses.
|
|
6157
|
-
* That public access is not permitted if the security group assigned to the DB instance doesn't permit it.</p>
|
|
6136
|
+
* <p>When the DB instance is publicly accessible and you connect from outside of the DB instance's virtual private cloud (VPC), its domain name system (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB instance, the endpoint resolves to the private IP address. Access to the DB instance is controlled by its security group settings.</p>
|
|
6158
6137
|
* <p>When the DB instance isn't publicly accessible, it is an internal DB instance with a DNS name that resolves to a private IP address.</p>
|
|
6159
|
-
* <p>
|
|
6160
|
-
* <p>If <code>
|
|
6161
|
-
* <
|
|
6162
|
-
*
|
|
6163
|
-
* <p>If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB instance is private.</p>
|
|
6164
|
-
* </li>
|
|
6165
|
-
* <li>
|
|
6166
|
-
* <p>If the default VPC in the target Region has an internet gateway attached to it, the DB instance is public.</p>
|
|
6167
|
-
* </li>
|
|
6168
|
-
* </ul>
|
|
6169
|
-
* <p>If <code>DBSubnetGroupName</code> is specified, and <code>PubliclyAccessible</code> isn't specified, the following applies:</p>
|
|
6170
|
-
* <ul>
|
|
6171
|
-
* <li>
|
|
6172
|
-
* <p>If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB instance is private.</p>
|
|
6173
|
-
* </li>
|
|
6174
|
-
* <li>
|
|
6175
|
-
* <p>If the subnets are part of a VPC that has an internet gateway attached to it, the DB instance is public.</p>
|
|
6176
|
-
* </li>
|
|
6177
|
-
* </ul>
|
|
6138
|
+
* <p>The default behavior when <code>PubliclyAccessible</code> is not specified depends on whether a <code>DBSubnetGroup</code> is specified.</p>
|
|
6139
|
+
* <p>If <code>DBSubnetGroup</code> isn't specified, <code>PubliclyAccessible</code> defaults to <code>false</code> for Aurora instances and <code>true</code> for non-Aurora instances.</p>
|
|
6140
|
+
* <p>If <code>DBSubnetGroup</code> is specified, <code>PubliclyAccessible</code> defaults to <code>false</code> unless the value of <code>DBSubnetGroup</code> is <code>default</code>, in which case <code>PubliclyAccessible</code> defaults to <code>true</code>.</p>
|
|
6141
|
+
* <p>If <code>PubliclyAccessible</code> is true and the VPC that the <code>DBSubnetGroup</code> is in doesn't have an internet gateway attached to it, Amazon RDS returns an error.</p>
|
|
6178
6142
|
* @public
|
|
6179
6143
|
*/
|
|
6180
6144
|
PubliclyAccessible?: boolean | undefined;
|
|
@@ -2016,9 +2016,6 @@ export interface ModifyDBInstanceMessage {
|
|
|
2016
2016
|
* <li>
|
|
2017
2017
|
* <p>Must be in the distinguished name format.</p>
|
|
2018
2018
|
* </li>
|
|
2019
|
-
* <li>
|
|
2020
|
-
* <p>Can't be longer than 64 characters.</p>
|
|
2021
|
-
* </li>
|
|
2022
2019
|
* </ul>
|
|
2023
2020
|
* <p>Example: <code>OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain</code>
|
|
2024
2021
|
* </p>
|
|
@@ -565,6 +565,7 @@ export declare var UserAuthConfig: StaticStructureSchema;
|
|
|
565
565
|
export declare var UserAuthConfigInfo: StaticStructureSchema;
|
|
566
566
|
export declare var ValidDBInstanceModificationsMessage: StaticStructureSchema;
|
|
567
567
|
export declare var ValidStorageOptions: StaticStructureSchema;
|
|
568
|
+
export declare var VpcEncryptionControlViolationException: StaticErrorSchema;
|
|
568
569
|
export declare var VpcSecurityGroupMembership: StaticStructureSchema;
|
|
569
570
|
export declare var __Unit: "unit";
|
|
570
571
|
export declare var RDSServiceException: StaticErrorSchema;
|
|
@@ -558,6 +558,16 @@ export declare class StorageTypeNotSupportedFault extends __BaseException {
|
|
|
558
558
|
opts: __ExceptionOptionType<StorageTypeNotSupportedFault, __BaseException>
|
|
559
559
|
);
|
|
560
560
|
}
|
|
561
|
+
export declare class VpcEncryptionControlViolationException extends __BaseException {
|
|
562
|
+
readonly name: "VpcEncryptionControlViolationException";
|
|
563
|
+
readonly $fault: "client";
|
|
564
|
+
constructor(
|
|
565
|
+
opts: __ExceptionOptionType<
|
|
566
|
+
VpcEncryptionControlViolationException,
|
|
567
|
+
__BaseException
|
|
568
|
+
>
|
|
569
|
+
);
|
|
570
|
+
}
|
|
561
571
|
export declare class DBClusterEndpointAlreadyExistsFault extends __BaseException {
|
|
562
572
|
readonly name: "DBClusterEndpointAlreadyExistsFault";
|
|
563
573
|
readonly $fault: "client";
|
|
@@ -571,6 +571,7 @@ export declare var UserAuthConfig: StaticStructureSchema;
|
|
|
571
571
|
export declare var UserAuthConfigInfo: StaticStructureSchema;
|
|
572
572
|
export declare var ValidDBInstanceModificationsMessage: StaticStructureSchema;
|
|
573
573
|
export declare var ValidStorageOptions: StaticStructureSchema;
|
|
574
|
+
export declare var VpcEncryptionControlViolationException: StaticErrorSchema;
|
|
574
575
|
export declare var VpcSecurityGroupMembership: StaticStructureSchema;
|
|
575
576
|
export declare var __Unit: "unit";
|
|
576
577
|
export declare var RDSServiceException: StaticErrorSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rds",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.937.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-rds",
|
|
@@ -20,18 +20,18 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-sdk-rds": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-sdk-rds": "3.936.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
31
|
+
"@aws-sdk/types": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.3",
|
|
36
36
|
"@smithy/core": "^3.18.5",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.6",
|