diff --git a/features/s3Transfer/s3TransferManager.feature b/features/s3Transfer/s3TransferManager.feature index c46897fd93..eb48a820e5 100644 --- a/features/s3Transfer/s3TransferManager.feature +++ b/features/s3Transfer/s3TransferManager.feature @@ -57,6 +57,7 @@ Feature: S3 Transfer Manager Examples: | filename | content | checksum_algorithm | | myfile-test-5-1.txt | This is a test file content #1 | crc32 | + | myfile-test-5-2.txt | This is a test file content #2 | crc32c | | myfile-test-5-3.txt | This is a test file content #3 | sha256 | | myfile-test-5-4.txt | This is a test file content #4 | sha1 | @@ -139,4 +140,29 @@ Feature: S3 Transfer Manager | file | size | algorithm | checksum | | myfile-9-4 | 10485760 | crc32 | vMU7HA== | | myfile-9-5 | 15728640 | crc32 | gjLQ1Q== | - | myfile-9-6 | 7340032 | crc32 | CKbfZQ== | \ No newline at end of file + | myfile-9-6 | 7340032 | crc32 | CKbfZQ== | + + Scenario Outline: Resume multipart download + Given I have a file in S3 that requires multipart download + When I try the download for file , with resume enabled, it fails + Then A resumable file for file must exists + Then We resume the download for file and it should succeed + Examples: + | file | + | resume-download-file-1.txt | + | resume-download-file-2.txt | + | resume-download-file-3.txt | + | resume-download-file-4.txt | + + Scenario Outline: Resume multipart upload + Given I have a file on disk that requires multipart upload + When I try to upload the file , with resume enabled, it fails + Then A resumable file for file must exists + Then We resume the upload for file and it should succeed + Then The file in s3 should match the local file + Examples: + | file | + | resume-upload-file-1.txt | + | resume-upload-file-2.txt | + | resume-upload-file-3.txt | + | resume-upload-file-4.txt | \ No newline at end of file diff --git a/src/S3/CalculatesChecksumTrait.php b/src/S3/CalculatesChecksumTrait.php index 6b2b19413c..62f4c75912 100644 --- a/src/S3/CalculatesChecksumTrait.php +++ b/src/S3/CalculatesChecksumTrait.php @@ -8,7 +8,7 @@ trait CalculatesChecksumTrait { - private static $supportedAlgorithms = [ + public static $supportedAlgorithms = [ 'crc32c' => true, 'crc32' => true, 'sha256' => true, @@ -56,4 +56,23 @@ public static function getEncodedValue($requestedAlgorithm, $value) { . " Valid algorithms supported by the runtime are {$validAlgorithms}." ); } + + /** + * Returns the first checksum available in, if available. + * + * @param array $parameters + * + * @return string|null + */ + public static function filterChecksum(array $parameters):? string + { + foreach (self::$supportedAlgorithms as $algorithm => $_) { + $checksumAlgorithm = "Checksum" . strtoupper($algorithm); + if (isset($parameters[$checksumAlgorithm])) { + return $checksumAlgorithm; + } + } + + return null; + } } diff --git a/src/S3/S3Transfer/AbstractMultipartDownloader.php b/src/S3/S3Transfer/AbstractMultipartDownloader.php index 4e961e2fd6..e06b2cb94f 100644 --- a/src/S3/S3Transfer/AbstractMultipartDownloader.php +++ b/src/S3/S3Transfer/AbstractMultipartDownloader.php @@ -6,16 +6,20 @@ use Aws\S3\S3ClientInterface; use Aws\S3\S3Transfer\Exception\S3TransferException; use Aws\S3\S3Transfer\Models\DownloadResult; +use Aws\S3\S3Transfer\Models\ResumableDownload; use Aws\S3\S3Transfer\Models\S3TransferManagerConfig; use Aws\S3\S3Transfer\Progress\AbstractTransferListener; use Aws\S3\S3Transfer\Progress\TransferListenerNotifier; use Aws\S3\S3Transfer\Progress\TransferProgressSnapshot; +use Aws\S3\S3Transfer\Utils\ResumableDownloadHandler; use Aws\S3\S3Transfer\Utils\AbstractDownloadHandler; use Aws\S3\S3Transfer\Utils\StreamDownloadHandler; use GuzzleHttp\Promise\Coroutine; use GuzzleHttp\Promise\Create; +use GuzzleHttp\Promise\Each; use GuzzleHttp\Promise\PromiseInterface; use GuzzleHttp\Promise\PromisorInterface; +use Throwable; abstract class AbstractMultipartDownloader implements PromisorInterface { @@ -23,7 +27,8 @@ abstract class AbstractMultipartDownloader implements PromisorInterface public const PART_GET_MULTIPART_DOWNLOADER = "part"; public const RANGED_GET_MULTIPART_DOWNLOADER = "ranged"; private const OBJECT_SIZE_REGEX = "/\/(\d+)$/"; - + private const RANGE_TO_REGEX = "/(\d+)\//"; + /** @var array */ protected readonly array $downloadRequestArgs; @@ -51,30 +56,69 @@ abstract class AbstractMultipartDownloader implements PromisorInterface /** Tracking Members */ private ?TransferProgressSnapshot $currentSnapshot; + /** @var array */ + private array $partsCompleted; + + /** @var ResumableDownload|null */ + private ?ResumableDownload $resumableDownload; + + /** @var bool Whether this is a resumed download */ + private readonly bool $isResuming; + + /** @var array|null Initial request response for resume state */ + private ?array $initialRequestResult = null; + /** * @param S3ClientInterface $s3Client * @param array $downloadRequestArgs * @param array $config * @param ?AbstractDownloadHandler $downloadHandler - * @param int $currentPartNo + * @param array $partsCompleted * @param int $objectPartsCount * @param int $objectSizeInBytes * @param string|null $eTag * @param TransferProgressSnapshot|null $currentSnapshot * @param TransferListenerNotifier|null $listenerNotifier + * @param ResumableDownload|null $resumableDownload */ public function __construct( protected readonly S3ClientInterface $s3Client, array $downloadRequestArgs, array $config = [], + ?AbstractDownloadHandler $downloadHandler = null, - int $currentPartNo = 0, + array $partsCompleted = [], int $objectPartsCount = 0, int $objectSizeInBytes = 0, ?string $eTag = null, ?TransferProgressSnapshot $currentSnapshot = null, - ?TransferListenerNotifier $listenerNotifier = null + ?TransferListenerNotifier $listenerNotifier = null, + ?ResumableDownload $resumableDownload = null ) { + $this->resumableDownload = $resumableDownload; + $this->isResuming = $resumableDownload !== null; + // Initialize from resume state if available + if ($this->isResuming) { + $this->objectPartsCount = $resumableDownload->getTotalNumberOfParts(); + $this->objectSizeInBytes = $resumableDownload->getObjectSizeInBytes(); + $this->eTag = $resumableDownload->getETag(); + $this->partsCompleted = $resumableDownload->getPartsCompleted(); + $this->initialRequestResult = $this->resumableDownload->getInitialRequestResult(); + // Restore current snapshot + $snapshotData = $resumableDownload->getCurrentSnapshot(); + if (!empty($snapshotData)) { + $this->currentSnapshot = TransferProgressSnapshot::fromArray( + $snapshotData + ); + } + } else { + $this->partsCompleted = $partsCompleted; + $this->objectPartsCount = $objectPartsCount; + $this->objectSizeInBytes = $objectSizeInBytes; + $this->eTag = $eTag; + $this->currentSnapshot = $currentSnapshot; + } + $this->downloadRequestArgs = $downloadRequestArgs; $this->validateConfig($config); $this->config = $config; @@ -82,25 +126,17 @@ public function __construct( $downloadHandler = new StreamDownloadHandler(); } $this->downloadHandler = $downloadHandler; - $this->currentPartNo = $currentPartNo; - $this->objectPartsCount = $objectPartsCount; - $this->objectSizeInBytes = $objectSizeInBytes; - $this->eTag = $eTag; - $this->currentSnapshot = $currentSnapshot; - if ($listenerNotifier === null) { - $listenerNotifier = new TransferListenerNotifier(); - } - // Add download handler to the listener notifier - $listenerNotifier->addListener($downloadHandler); $this->listenerNotifier = $listenerNotifier; + // Always starts in 1 + $this->currentPartNo = 1; } /** - * Returns the next command for fetching the next object part. + * Returns the next command args for fetching the next object part. * - * @return CommandInterface + * @return array */ - abstract protected function nextCommand(): CommandInterface; + abstract protected function getFetchCommandArgs(): array; /** * Compute the object dimensions, such as size and parts count. @@ -117,9 +153,17 @@ private function validateConfig(array &$config): void $config['target_part_size_bytes'] = S3TransferManagerConfig::DEFAULT_TARGET_PART_SIZE_BYTES; } + if (!isset($config['concurrency'])) { + $config['concurrency'] = S3TransferManagerConfig::DEFAULT_CONCURRENCY; + } + if (!isset($config['response_checksum_validation'])) { $config['response_checksum_validation'] = S3TransferManagerConfig::DEFAULT_RESPONSE_CHECKSUM_VALIDATION; } + + if (!isset($config['resume_enabled'])) { + $config['resume_enabled'] = false; + } } /** @@ -179,57 +223,37 @@ public function download(): DownloadResult public function promise(): PromiseInterface { return Coroutine::of(function () { - try { - $initialRequestResult = yield $this->initialRequest(); - $prevPartNo = $this->currentPartNo - 1; - while ($this->currentPartNo < $this->objectPartsCount) { - // To prevent infinite loops - if ($prevPartNo !== $this->currentPartNo - 1) { - throw new S3TransferException( - "Current part `$this->currentPartNo` MUST increment." - ); - } - - $prevPartNo = $this->currentPartNo; - - $command = $this->nextCommand(); - yield $this->s3Client->executeAsync($command) - ->then(function ($result) use ($command) { - $this->partDownloadCompleted( - $result, - $command->toArray() - ); - - return $result; - })->otherwise(function ($reason) { - $this->partDownloadFailed($reason); - - throw $reason; - }); - } + // Skip initial request if resuming (we already have object dimensions) + if ($this->isResuming) { + $this->downloadInitiated($this->downloadRequestArgs); + } else { + yield $this->initialRequest(); + } - if ($this->currentPartNo !== $this->objectPartsCount) { - throw new S3TransferException( - "Expected number of parts `$this->objectPartsCount`" - . " to have been transferred but got `$this->currentPartNo`." - ); - } + $partsDownloadPromises = $this->partDownloadRequests(); + // When concurrency is not supported by the download handler + // Then the number of concurrency will be just one. + $concurrency = $this->downloadHandler->isConcurrencySupported() + ? $this->config['concurrency'] + : 1; + + yield Each::ofLimitAll( + $partsDownloadPromises, + $concurrency, + )->then(function () { // Transfer completed $this->downloadComplete(); - // Return response - $result = $initialRequestResult->toArray(); - unset($result['Body']); - - yield Create::promiseFor(new DownloadResult( + return Create::promiseFor(new DownloadResult( $this->downloadHandler->getHandlerResult(), - $result, + $this->initialRequestResult, )); - } catch (\Throwable $e) { + })->otherwise(function (Throwable $e) { $this->downloadFailed($e); - yield Create::rejectionFor($e); - } + + throw $e; + }); }); } @@ -240,7 +264,7 @@ public function promise(): PromiseInterface */ protected function initialRequest(): PromiseInterface { - $command = $this->nextCommand(); + $command = $this->getNextGetObjectCommand(); // Notify download initiated $this->downloadInitiated($command->toArray()); @@ -254,16 +278,28 @@ protected function initialRequest(): PromiseInterface $this->eTag = $result['ETag']; } - // Notify listeners + $initialRequestResult = $result->toArray(); + // Set full object size + $initialRequestResult['ContentLength'] = $this->objectSizeInBytes; + // Set full object content range + $initialRequestResult['ContentRange'] = "0-" + . ($this->objectSizeInBytes - 1) + . "/" + . $this->objectSizeInBytes; + + // Remove unnecessary fields + unset($initialRequestResult['Body']); + unset($initialRequestResult['@metadata']); + + // Store initial response for resume state + $this->initialRequestResult = $initialRequestResult; + + // Notify listeners but we pass the actual request result $this->partDownloadCompleted( - $result, + 1, + $result->toArray(), $command->toArray() ); - - // Assign custom fields in the result - $result['ContentLength'] = $this->objectSizeInBytes; - - return $result; })->otherwise(function ($reason) { $this->partDownloadFailed($reason); @@ -272,26 +308,60 @@ protected function initialRequest(): PromiseInterface } /** - * Calculates the object size from content range. - * - * @param string $contentRange - * @return int + * @return \Generator */ - protected function computeObjectSizeFromContentRange( - string $contentRange - ): int + private function partDownloadRequests(): \Generator { - if (empty($contentRange)) { - return 0; + while ($this->currentPartNo < $this->objectPartsCount) { + $this->currentPartNo++; + if ($this->partsCompleted[$this->currentPartNo] ?? false) { + continue; + } + + $partNumber = $this->currentPartNo; + $command = $this->getNextGetObjectCommand(); + + yield $this->s3Client->executeAsync($command) + ->then(function (ResultInterface $result) + use ($command, $partNumber) { + $requestArgs = $command->toArray(); + + // Remove metadata + unset($result['@metadata']); + + $this->partDownloadCompleted( + $partNumber, + $result->toArray(), + $requestArgs + ); + }); } - // For extracting the object size from the ContentRange header value. - if (preg_match(self::OBJECT_SIZE_REGEX, $contentRange, $matches)) { - return $matches[1]; + if ($this->currentPartNo !== $this->objectPartsCount) { + throw new S3TransferException( + "Expected number of parts `$this->objectPartsCount`" + . " to have been transferred but got `$this->currentPartNo`." + ); } + } - throw new S3TransferException( - "Invalid content range \"$contentRange\"" + /** + * @return CommandInterface + */ + private function getNextGetObjectCommand(): CommandInterface + { + $nextCommandArgs = $this->getFetchCommandArgs(); + if ($this->config['response_checksum_validation'] === 'when_supported') { + $nextCommandArgs['ChecksumMode'] = 'ENABLED'; + } + + if (!empty($this->eTag)) { + $nextCommandArgs['IfMatch'] = $this->eTag; + } + + return $this->s3Client->getCommand( + self::GET_OBJECT_COMMAND, + $nextCommandArgs ); } @@ -307,25 +377,32 @@ protected function computeObjectSizeFromContentRange( */ private function downloadInitiated(array $commandArgs): void { - if ($this->currentSnapshot === null) { - $this->currentSnapshot = new TransferProgressSnapshot( - $commandArgs['Key'], - 0, - $this->objectSizeInBytes - ); - } else { - $this->currentSnapshot = new TransferProgressSnapshot( - $this->currentSnapshot->getIdentifier(), - $this->currentSnapshot->getTransferredBytes(), - $this->currentSnapshot->getTotalBytes(), - $this->currentSnapshot->getResponse() - ); - } - - $this->listenerNotifier?->transferInitiated([ + if ($this->currentSnapshot === null) { + $this->currentSnapshot = new TransferProgressSnapshot( + $commandArgs['Key'], + 0, + $this->objectSizeInBytes + ); + } else { + $this->currentSnapshot = new TransferProgressSnapshot( + $this->currentSnapshot->getIdentifier(), + $this->currentSnapshot->getTransferredBytes(), + $this->currentSnapshot->getTotalBytes(), + $this->currentSnapshot->getResponse() + ); + } + + // Prepare context + $context = [ AbstractTransferListener::REQUEST_ARGS_KEY => $commandArgs, AbstractTransferListener::PROGRESS_SNAPSHOT_KEY => $this->currentSnapshot, - ]); + ]; + + // Notify download handler + $this->downloadHandler->transferInitiated($context); + + // Notify listeners + $this->listenerNotifier?->transferInitiated($context); } /** @@ -350,40 +427,74 @@ private function downloadFailed(\Throwable $reason): void $reason ); - $this->listenerNotifier?->transferFail([ + // Prepare context + $context = [ AbstractTransferListener::REQUEST_ARGS_KEY => $this->downloadRequestArgs, AbstractTransferListener::PROGRESS_SNAPSHOT_KEY => $this->currentSnapshot, - 'reason' => $reason, - ]); + AbstractTransferListener::REASON_KEY => $reason, + ]; + + // Notify download handler + $this->downloadHandler->transferFail($context); + + // Notify listeners + $this->listenerNotifier?->transferFail($context); } /** * Propagates part-download-completed to listeners. * It also does some computation in order to maintain internal states. * - * @param ResultInterface $result + * @param int $partNumber + * @param array $result + * @param array $requestArgs * * @return void */ private function partDownloadCompleted( - ResultInterface $result, + int $partNumber, + array $result, array $requestArgs ): void { - $partDownloadBytes = $result['ContentLength']; - if (isset($result['ETag'])) { - $this->eTag = $result['ETag']; - } - + $partTransferredBytes = $result['ContentLength']; + // Snapshot and context for listeners $newSnapshot = new TransferProgressSnapshot( $this->currentSnapshot->getIdentifier(), - $this->currentSnapshot->getTransferredBytes() + $partDownloadBytes, + $this->currentSnapshot->getTransferredBytes() + $partTransferredBytes, $this->objectSizeInBytes, - $result->toArray() + $this->initialRequestResult ); $this->currentSnapshot = $newSnapshot; - $this->listenerNotifier?->bytesTransferred([ + + // Notify download handler and evaluate if part was written + $downloadHandlerSnapshot = $this->currentSnapshot->withResponse( + $result + ); + $wasPartWritten = $this->downloadHandler->bytesTransferred([ AbstractTransferListener::REQUEST_ARGS_KEY => $requestArgs, + AbstractTransferListener::PROGRESS_SNAPSHOT_KEY => $downloadHandlerSnapshot, + ]); + // If part was written to destination then we mark it as completed + if ($wasPartWritten) { + $this->partsCompleted[$partNumber] = true; + + // Persist resume state just if resume is enabled + if ($this->config['resume_enabled'] ?? false) { + // Update the resume state holder + $this->resumableDownload?->updateCurrentSnapshot( + $this->currentSnapshot->toArray() + ); + $this->resumableDownload?->markPartCompleted($partNumber); + + // Persist the resume state + $this->persistResumeState(); + } + } + + // Notify listeners + $this->listenerNotifier?->bytesTransferred([ + AbstractTransferListener::REQUEST_ARGS_KEY => $this->downloadRequestArgs, AbstractTransferListener::PROGRESS_SNAPSHOT_KEY => $this->currentSnapshot, ]); } @@ -416,10 +527,108 @@ private function downloadComplete(): void $this->currentSnapshot->getResponse() ); $this->currentSnapshot = $newSnapshot; - $this->listenerNotifier?->transferComplete([ + // Prepare context + $context = [ AbstractTransferListener::REQUEST_ARGS_KEY => $this->downloadRequestArgs, AbstractTransferListener::PROGRESS_SNAPSHOT_KEY => $this->currentSnapshot, - ]); + ]; + + // Notify download handler + $this->downloadHandler->transferComplete($context); + + // Notify listeners + $this->listenerNotifier?->transferComplete($context); + + // Delete resume file on successful completion + if ($this->config['resume_enabled'] ?? false) { + $this->resumableDownload?->deleteResumeFile(); + } + } + + /** + * Persist the current download state to the resume file. + * This method is called after each part is downloaded. + * + * @return void + */ + private function persistResumeState(): void + { + // Only persist if we have a download handler that supports resume + if (!($this->downloadHandler instanceof ResumableDownloadHandler)) { + return; + } + + // Create ResumableDownload object + if ($this->resumableDownload === null) { + // Resume file destination + $resumeFilePath = $this->config['resume_file_path'] ?? + $this->downloadHandler->getResumeFilePath(); + // Create snapshot data + $snapshotData = $this->currentSnapshot->toArray(); + // Determine multipart download type + $config = $this->config; + $this->resumableDownload = new ResumableDownload( + $resumeFilePath, + $this->downloadRequestArgs, + $config, + $this->initialRequestResult, + $snapshotData, + $this->partsCompleted, + $this->objectPartsCount, + $this->downloadHandler->getTemporaryFilePath(), + $this->eTag ?? '', + $this->objectSizeInBytes, + $this->downloadHandler->getFixedPartSize(), + $this->downloadHandler->getDestination() + ); + } + + try { + $this->resumableDownload->toFile(); + } catch (\Exception $e) { + throw new S3TransferException( + "Unable to persists resumable download state due to: " . $e->getMessage(), + ); + } + } + + /** + * Calculates the object size from content range. + * + * @param string $contentRange + * @return int + */ + public static function computeObjectSizeFromContentRange( + string $contentRange + ): int + { + if (empty($contentRange)) { + return 0; + } + + // For extracting the object size from the ContentRange header value. + if (preg_match(self::OBJECT_SIZE_REGEX, $contentRange, $matches)) { + return $matches[1]; + } + + throw new S3TransferException( + "Invalid content range \"$contentRange\"" + ); + } + + /** + * @param string $range + * + * @return int + */ + public static function getRangeTo(string $range): int + { + preg_match(self::RANGE_TO_REGEX, $range, $match); + if (empty($match)) { + return 0; + } + + return $match[1]; } /** diff --git a/src/S3/S3Transfer/AbstractMultipartUploader.php b/src/S3/S3Transfer/AbstractMultipartUploader.php index 886eb85e3f..4493d2265b 100644 --- a/src/S3/S3Transfer/AbstractMultipartUploader.php +++ b/src/S3/S3Transfer/AbstractMultipartUploader.php @@ -6,13 +6,11 @@ use Aws\CommandPool; use Aws\ResultInterface; use Aws\S3\S3ClientInterface; -use Aws\S3\S3Transfer\Exception\S3TransferException; use Aws\S3\S3Transfer\Models\S3TransferManagerConfig; use Aws\S3\S3Transfer\Progress\AbstractTransferListener; use Aws\S3\S3Transfer\Progress\TransferListenerNotifier; use Aws\S3\S3Transfer\Progress\TransferProgressSnapshot; use GuzzleHttp\Promise\Coroutine; -use GuzzleHttp\Promise\Create; use GuzzleHttp\Promise\PromiseInterface; use GuzzleHttp\Promise\PromisorInterface; use Throwable; @@ -39,7 +37,7 @@ abstract class AbstractMultipartUploader implements PromisorInterface protected string|null $uploadId; /** @var array */ - protected array $parts; + protected array $partsCompleted; /** @var array */ protected array $onCompletionCallbacks = []; @@ -58,7 +56,7 @@ abstract class AbstractMultipartUploader implements PromisorInterface * - target_part_size_bytes: (int, optional) * - concurrency: (int, optional) * @param string|null $uploadId - * @param array $parts + * @param array $partsCompleted * @param TransferProgressSnapshot|null $currentSnapshot * @param TransferListenerNotifier|null $listenerNotifier */ @@ -67,7 +65,7 @@ public function __construct( array $requestArgs, array $config = [], ?string $uploadId = null, - array $parts = [], + array $partsCompleted = [], ?TransferProgressSnapshot $currentSnapshot = null, ?TransferListenerNotifier $listenerNotifier = null, ) { @@ -76,7 +74,7 @@ public function __construct( $this->validateConfig($config); $this->config = $config; $this->uploadId = $uploadId; - $this->parts = $parts; + $this->partsCompleted = $partsCompleted; $this->currentSnapshot = $currentSnapshot; $this->listenerNotifier = $listenerNotifier; } @@ -96,6 +94,24 @@ abstract protected function completeMultipartOperation(): PromiseInterface; */ abstract protected function processMultipartOperation(): PromiseInterface; + /** + * @param int $partSize + * @param array $requestArgs + * @param array $partData + * + * @return void + */ + abstract protected function partCompleted( + int $partSize, + array $requestArgs, + array $partData + ): void; + + /** + * @return PromiseInterface + */ + abstract protected function abortMultipartOperation(): PromiseInterface; + /** * @return int */ @@ -144,9 +160,9 @@ public function getUploadId(): ?string /** * @return array */ - public function getParts(): array + public function getPartsCompleted(): array { - return $this->parts; + return $this->partsCompleted; } /** @@ -180,40 +196,27 @@ public function promise(): PromiseInterface }); } - /** - * @return PromiseInterface - */ - protected function abortMultipartOperation(): PromiseInterface - { - $abortMultipartUploadArgs = $this->requestArgs; - $abortMultipartUploadArgs['UploadId'] = $this->uploadId; - $command = $this->s3Client->getCommand( - 'AbortMultipartUpload', - $abortMultipartUploadArgs - ); - - return $this->s3Client->executeAsync($command); - } - /** * @return void */ protected function sortParts(): void { - usort($this->parts, function ($partOne, $partTwo) { - return $partOne['PartNumber'] <=> $partTwo['PartNumber']; + usort($this->partsCompleted, function ($partOne, $partTwo) { + return $partOne['PartNumber'] + <=> $partTwo['PartNumber']; }); } /** * @param ResultInterface $result * @param CommandInterface $command - * @return void + * + * @return array */ protected function collectPart( ResultInterface $result, CommandInterface $command - ): void + ): array { $checksumResult = match($command->getName()) { 'UploadPart' => $result, @@ -221,8 +224,9 @@ protected function collectPart( default => $result[$command->getName() . 'Result'] }; + $partNumber = $command['PartNumber']; $partData = [ - 'PartNumber' => $command['PartNumber'], + 'PartNumber' => $partNumber, 'ETag' => $checksumResult['ETag'], ]; @@ -231,7 +235,9 @@ protected function collectPart( $partData[$checksumMemberName] = $checksumResult[$checksumMemberName] ?? null; } - $this->parts[] = $partData; + $this->partsCompleted[$partNumber] = $partData; + + return $partData; } /** @@ -343,32 +349,6 @@ protected function operationFailed(Throwable $reason): void ]); } - /** - * @param int $partSize - * @param array $requestArgs - * @return void - */ - protected function partCompleted( - int $partSize, - array $requestArgs - ): void - { - $newSnapshot = new TransferProgressSnapshot( - $this->currentSnapshot->getIdentifier(), - $this->currentSnapshot->getTransferredBytes() + $partSize, - $this->currentSnapshot->getTotalBytes(), - $this->currentSnapshot->getResponse(), - $this->currentSnapshot->getReason(), - ); - - $this->currentSnapshot = $newSnapshot; - - $this->listenerNotifier?->bytesTransferred([ - AbstractTransferListener::REQUEST_ARGS_KEY => $requestArgs, - AbstractTransferListener::PROGRESS_SNAPSHOT_KEY => $this->currentSnapshot - ]); - } - /** * @return void */ @@ -402,4 +382,4 @@ protected function calculatePartSize(): int $this->config['target_part_size_bytes'] ); } -} +} \ No newline at end of file diff --git a/src/S3/S3Transfer/Models/AbstractTransferRequest.php b/src/S3/S3Transfer/Models/AbstractTransferRequest.php index 0ff5f09f0b..f50984403d 100644 --- a/src/S3/S3Transfer/Models/AbstractTransferRequest.php +++ b/src/S3/S3Transfer/Models/AbstractTransferRequest.php @@ -2,7 +2,6 @@ namespace Aws\S3\S3Transfer\Models; -use Aws\S3\S3ClientInterface; use Aws\S3\S3Transfer\Progress\AbstractTransferListener; use InvalidArgumentException; @@ -21,25 +20,19 @@ abstract class AbstractTransferRequest /** @var array */ protected array $config; - /** @var S3ClientInterface|null */ - private ?S3ClientInterface $s3Client; - /** * @param array $listeners * @param AbstractTransferListener|null $progressTracker * @param array $config - * @param S3ClientInterface|null $s3Client */ public function __construct( - array $listeners, + array $listeners, ?AbstractTransferListener $progressTracker, - array $config, - ?S3ClientInterface $s3Client = null, + array $config ) { $this->listeners = $listeners; $this->progressTracker = $progressTracker; $this->config = $config; - $this->s3Client = $s3Client; } /** @@ -70,14 +63,6 @@ public function getConfig(): array return $this->config; } - /** - * @return S3ClientInterface|null - */ - public function getS3Client(): ?S3ClientInterface - { - return $this->s3Client; - } - /** * @param array $defaultConfig * @@ -107,4 +92,4 @@ public function validateConfig(): void { } } } -} +} \ No newline at end of file diff --git a/src/S3/S3Transfer/Models/DownloadDirectoryResult.php b/src/S3/S3Transfer/Models/DownloadDirectoryResult.php index 8449093a64..7e97e3a9fc 100644 --- a/src/S3/S3Transfer/Models/DownloadDirectoryResult.php +++ b/src/S3/S3Transfer/Models/DownloadDirectoryResult.php @@ -2,8 +2,6 @@ namespace Aws\S3\S3Transfer\Models; -use Throwable; - final class DownloadDirectoryResult { /** @var int */ @@ -12,23 +10,22 @@ final class DownloadDirectoryResult /** @var int */ private int $objectsFailed; - /** @var Throwable|null */ - private ?Throwable $reason; + /** @var array */ + private array $reasons; /** * @param int $objectsDownloaded * @param int $objectsFailed - * @param Throwable|null $reason + * @param array $reasons */ public function __construct( int $objectsDownloaded, int $objectsFailed, - ?Throwable $reason = null - ) - { + array $reasons = [] + ) { $this->objectsDownloaded = $objectsDownloaded; $this->objectsFailed = $objectsFailed; - $this->reason = $reason; + $this->reasons = $reasons; } /** @@ -47,9 +44,12 @@ public function getObjectsFailed(): int return $this->objectsFailed; } - public function getReason(): ?Throwable + /** + * @return array + */ + public function getReasons(): array { - return $this->reason; + return $this->reasons; } /** @@ -63,4 +63,4 @@ public function __toString(): string $this->objectsFailed ); } -} +} \ No newline at end of file diff --git a/src/S3/S3Transfer/Models/DownloadFileRequest.php b/src/S3/S3Transfer/Models/DownloadFileRequest.php index d71e2ead5b..6c6ecd8e6d 100644 --- a/src/S3/S3Transfer/Models/DownloadFileRequest.php +++ b/src/S3/S3Transfer/Models/DownloadFileRequest.php @@ -36,7 +36,8 @@ public function __construct( $downloadRequest, new FileDownloadHandler( $destination, - $failsWhenDestinationExists + $failsWhenDestinationExists, + $downloadRequest->getConfig()['resume_enabled'] ?? false ) ); } @@ -64,4 +65,4 @@ public function getDownloadRequest(): DownloadRequest { return $this->downloadRequest; } -} +} \ No newline at end of file diff --git a/src/S3/S3Transfer/Models/DownloadRequest.php b/src/S3/S3Transfer/Models/DownloadRequest.php index f35551a7fd..1a75592da5 100644 --- a/src/S3/S3Transfer/Models/DownloadRequest.php +++ b/src/S3/S3Transfer/Models/DownloadRequest.php @@ -2,7 +2,6 @@ namespace Aws\S3\S3Transfer\Models; -use Aws\S3\S3ClientInterface; use Aws\S3\S3Transfer\Exception\S3TransferException; use Aws\S3\S3Transfer\Progress\AbstractTransferListener; use Aws\S3\S3Transfer\S3TransferManager; @@ -16,6 +15,9 @@ final class DownloadRequest extends AbstractTransferRequest 'response_checksum_validation' => 'string', 'multipart_download_type' => 'string', 'track_progress' => 'bool', + 'concurrency' => 'int', + 'resume_enabled' => 'bool', + 'resume_file_path' => 'string', 'target_part_size_bytes' => 'int', ]; @@ -47,21 +49,24 @@ final class DownloadRequest extends AbstractTransferRequest * in a range multipart download. If this parameter is not provided * then it fallbacks to the transfer manager `target_part_size_bytes` * config value. + * - resume_enabled: (bool): To enable resuming a multipart download when a + * failure occurs. + * - resume_file_path (string, optional): To override the default resume file + * location to be generated. If specified the file name must end in `.resume` + * otherwise it will be added automatically. * @param AbstractDownloadHandler|null $downloadHandler * @param AbstractTransferListener[]|null $listeners * @param AbstractTransferListener|null $progressTracker - * @param S3ClientInterface|null $s3Client */ public function __construct( - string|array|null $source, - array $downloadRequestArgs = [], - array $config = [], + string|array|null $source, + array $downloadRequestArgs = [], + array $config = [], ?AbstractDownloadHandler $downloadHandler = null, - array $listeners = [], - ?AbstractTransferListener $progressTracker = null, - ?S3ClientInterface $s3Client = null + array $listeners = [], + ?AbstractTransferListener $progressTracker = null ) { - parent::__construct($listeners, $progressTracker, $config, $s3Client); + parent::__construct($listeners, $progressTracker, $config); $this->source = $source; $this->downloadRequestArgs = $downloadRequestArgs; $this->config = $config; diff --git a/src/S3/S3Transfer/Models/ResumableDownload.php b/src/S3/S3Transfer/Models/ResumableDownload.php new file mode 100644 index 0000000000..0e2203ba9a --- /dev/null +++ b/src/S3/S3Transfer/Models/ResumableDownload.php @@ -0,0 +1,343 @@ + true) + * @param int $totalNumberOfParts Total number of parts in the download + * @param string|null $temporaryFile Path to the temporary file being downloaded to + * @param string $eTag ETag of the S3 object for consistency verification + * @param int $objectSizeInBytes Total size of the object in bytes + * @param int $fixedPartSize Size of each part in bytes + * @param string $destination Final destination path for the downloaded file + */ + public function __construct( + string $resumeFilePath, + array $requestArgs, + array $config, + array $currentSnapshot, + array $initialRequestResult, + array $partsCompleted, + int $totalNumberOfParts, + ?string $temporaryFile, + string $eTag, + int $objectSizeInBytes, + int $fixedPartSize, + string $destination + ) { + parent::__construct( + $resumeFilePath, + $requestArgs, + $config, + $currentSnapshot, + ); + $this->initialRequestResult = $initialRequestResult; + $this->partsCompleted = $partsCompleted; + $this->totalNumberOfParts = $totalNumberOfParts; + $this->temporaryFile = $temporaryFile; + $this->eTag = $eTag; + $this->objectSizeInBytes = $objectSizeInBytes; + $this->fixedPartSize = $fixedPartSize; + $this->destination = $destination; + } + + /** + * Serialize the resumable download state to JSON format. + * + * @return string JSON-encoded state + */ + public function toJson(): string + { + $data = [ + 'version' => self::VERSION, + 'resumeFilePath' => $this->resumeFilePath, + 'requestArgs' => $this->requestArgs, + 'config' => $this->config, + 'initialRequestResult' => $this->initialRequestResult, + 'currentSnapshot' => $this->currentSnapshot, + 'partsCompleted' => $this->partsCompleted, + 'totalNumberOfParts' => $this->totalNumberOfParts, + 'temporaryFile' => $this->temporaryFile, + 'eTag' => $this->eTag, + 'objectSizeInBytes' => $this->objectSizeInBytes, + 'fixedPartSize' => $this->fixedPartSize, + 'destination' => $this->destination, + ]; + + return json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); + } + + /** + * Deserialize a resumable download state from JSON format. + * + * @param string $json JSON-encoded state + * @return self + * @throws S3TransferException If the JSON is invalid or missing required fields + */ + public static function fromJson(string $json): self + { + $data = json_decode($json, true); + + if (json_last_error() !== JSON_ERROR_NONE) { + throw new S3TransferException( + 'Failed to parse resume file: ' . json_last_error_msg() + ); + } + + if (!is_array($data)) { + throw new S3TransferException( + 'Invalid resume file format: expected JSON object' + ); + } + + // Validate version + if (!isset($data['version']) || $data['version'] !== self::VERSION) { + throw new S3TransferException( + 'Invalid or unsupported resume file version' + ); + } + + // Validate required fields + $requiredFields = [ + 'resumeFilePath', + 'requestArgs', + 'config', + 'initialRequestResult', + 'currentSnapshot', + 'partsCompleted', + 'totalNumberOfParts', + 'temporaryFile', + 'eTag', + 'objectSizeInBytes', + 'fixedPartSize', + 'destination', + ]; + + foreach ($requiredFields as $field) { + if (!array_key_exists($field, $data)) { + throw new S3TransferException( + "Invalid resume file: missing required field '$field'" + ); + } + } + + return new self( + $data['resumeFilePath'], + $data['requestArgs'], + $data['config'], + $data['currentSnapshot'], + $data['initialRequestResult'], + $data['partsCompleted'], + $data['totalNumberOfParts'], + $data['temporaryFile'], + $data['eTag'], + $data['objectSizeInBytes'], + $data['fixedPartSize'], + $data['destination'] + ); + } + + /** + * @param string $filePath + * + * @return self + */ + public static function fromFile(string $filePath): self + { + if (!file_exists($filePath)) { + throw new S3TransferException( + "Resume file does not exist: $filePath" + ); + } + $content = file_get_contents($filePath); + if ($content === false) { + throw new S3TransferException( + "Failed to read resume file: $filePath" + ); + } + + $fileData = json_decode($content, true); + if (json_last_error() !== JSON_ERROR_NONE) { + throw new S3TransferException( + 'Failed to parse resume file: ' . json_last_error_msg() + ); + } + + // Validate signature if present + if (isset($fileData['signature'], $fileData['data'])) { + $expectedSignature = hash( + self::SIGNATURE_CHECKSUM_ALGORITHM, + json_encode( + $fileData['data'], + JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES + ) + ); + + if (!hash_equals($fileData['signature'], $expectedSignature)) { + throw new S3TransferException( + 'Resume file integrity check failed: signature mismatch' + ); + } + + $json = json_encode($fileData['data']); + } else { + // Legacy format without signature + $json = $content; + } + + return self::fromJson($json); + } + + /** + * @return string + */ + public function getResumeFilePath(): string + { + return $this->resumeFilePath; + } + + + /** + * @return array + */ + public function getRequestArgs(): array + { + return $this->requestArgs; + } + + /** + * @return array + */ + public function getConfig(): array + { + return $this->config; + } + + /** + * @return array + */ + public function getInitialRequestResult(): array + { + return $this->initialRequestResult; + } + + /** + * @return array + */ + public function getCurrentSnapshot(): array + { + return $this->currentSnapshot; + } + + /** + * @return array + */ + public function getPartsCompleted(): array + { + return $this->partsCompleted; + } + + /** + * @return int + */ + public function getTotalNumberOfParts(): int + { + return $this->totalNumberOfParts; + } + + /** + * @return string|null + */ + public function getTemporaryFile(): ?string + { + return $this->temporaryFile; + } + + /** + * @return string + */ + public function getETag(): string + { + return $this->eTag; + } + + /** + * @return int + */ + public function getObjectSizeInBytes(): int + { + return $this->objectSizeInBytes; + } + + /** + * @return int + */ + public function getFixedPartSize(): int + { + return $this->fixedPartSize; + } + + /** + * @return string + */ + public function getDestination(): string + { + return $this->destination; + } + + /** + * Update the current snapshot. + * + * @param array $snapshot The new snapshot data + */ + public function updateCurrentSnapshot(array $snapshot): void + { + $this->currentSnapshot = $snapshot; + } + + /** + * Mark a part as completed. + * + * @param int $partNumber The part number to mark as completed + */ + public function markPartCompleted(int $partNumber): void + { + $this->partsCompleted[$partNumber] = true; + } +} diff --git a/src/S3/S3Transfer/Models/ResumableTransfer.php b/src/S3/S3Transfer/Models/ResumableTransfer.php new file mode 100644 index 0000000000..b85db1bab2 --- /dev/null +++ b/src/S3/S3Transfer/Models/ResumableTransfer.php @@ -0,0 +1,215 @@ +resumeFilePath = $resumeFilePath; + $this->requestArgs = $requestArgs; + $this->config = $config; + $this->currentSnapshot = $currentSnapshot; + } + + /** + * Serialize the resumable state to JSON format. + * + * @return string JSON-encoded state + */ + public abstract function toJson(): string; + + /** + * Deserialize a resumable state from JSON format. + * + * @param string $json JSON-encoded state + * @return self + * @throws S3TransferException If the JSON is invalid or missing required fields + */ + public static abstract function fromJson(string $json): self; + + /** + * Load a resumable state from a file. + * + * @param string $filePath Path to the resume file + * @return self + * @throws S3TransferException If the file cannot be read or is invalid + */ + public static abstract function fromFile(string $filePath): self; + + /** + * Save the resumable state to a file. + * When a file path is not provided by default it will use + * the `resumeFilePath` property. + * + * @param string|null $filePath Path where the resume file should be saved + */ + public function toFile(?string $filePath = null): void + { + $saveFileToPath = $filePath ?? $this->resumeFilePath; + + // Ensure directory exists + $resumeDir = dirname($saveFileToPath); + if (!is_dir($resumeDir) + && !mkdir($resumeDir, 0755, true)) { + throw new S3TransferException( + "Failed to create resume directory: $resumeDir" + ); + } + + $json = $this->toJson(); + $signature = hash(self::SIGNATURE_CHECKSUM_ALGORITHM, $json); + $dataWithSignature = json_encode([ + 'signature' => $signature, + 'data' => json_decode($json, true) + ], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); + + $result = file_put_contents($saveFileToPath, $dataWithSignature, LOCK_EX); + if ($result === false) { + throw new S3TransferException( + "Failed to write resume file: $saveFileToPath" + ); + } + } + + /** + * @param string|null $filePath + * + * @return void + */ + public function deleteResumeFile(?string $filePath = null): void + { + $resumeFilePath = $filePath ?? $this->resumeFilePath; + if (file_exists($resumeFilePath)) { + unlink($resumeFilePath); + } + } + + /** + * @return string + */ + public function getResumeFilePath(): string + { + return $this->resumeFilePath; + } + + + /** + * @return array + */ + public function getRequestArgs(): array + { + return $this->requestArgs; + } + + /** + * @return array + */ + public function getConfig(): array + { + return $this->config; + } + + /** + * @return string + */ + public function getBucket(): string + { + return $this->requestArgs['Bucket']; + } + + /** + * @return string + */ + public function getKey(): string + { + return $this->requestArgs['Key']; + } + + /** + * @return array + */ + public function getCurrentSnapshot(): array + { + return $this->currentSnapshot; + } + + /** + * Update the current snapshot. + * + * @param array $snapshot The new snapshot data + */ + public function updateCurrentSnapshot(array $snapshot): void + { + $this->currentSnapshot = $snapshot; + } + + /** + * Check if a file path is a valid resume file. + * + * @param string $filePath + * @return bool + */ + public static function isResumeFile(string $filePath): bool + { + // Check file extension + if (!str_ends_with($filePath, '.resume')) { + return false; + } + + // Check if file exists and is readable + if (!file_exists($filePath) || !is_readable($filePath)) { + return false; + } + + // Validate file content by attempting to parse it + try { + $json = file_get_contents($filePath); + if ($json === false) { + return false; + } + + $data = json_decode($json, true); + if (json_last_error() !== JSON_ERROR_NONE) { + return false; + } + + // Check for required version field + return isset($data['data']) && isset($data['signature']); + } catch (\Exception $e) { + return false; + } + } +} \ No newline at end of file diff --git a/src/S3/S3Transfer/Models/ResumableUpload.php b/src/S3/S3Transfer/Models/ResumableUpload.php new file mode 100644 index 0000000000..317252dae4 --- /dev/null +++ b/src/S3/S3Transfer/Models/ResumableUpload.php @@ -0,0 +1,281 @@ +uploadId = $uploadId; + $this->partsCompleted = $partsCompleted; + $this->source = $source; + $this->objectSize = $objectSize; + $this->partSize = $partSize; + $this->isFullObjectChecksum = $isFullObjectChecksum; + } + + /** + * @return string + */ + public function toJson(): string + { + return json_encode([ + 'version' => self::VERSION, + 'resumeFilePath' => $this->resumeFilePath, + 'requestArgs' => $this->requestArgs, + 'config' => $this->config, + 'uploadId' => $this->uploadId, + 'partsCompleted' => $this->partsCompleted, + 'currentSnapshot' => $this->currentSnapshot, + 'source' => $this->source, + 'objectSize' => $this->objectSize, + 'partSize' => $this->partSize, + 'isFullObjectChecksum' => $this->isFullObjectChecksum, + ], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); + } + + /** + * @param string $json + * + * @return self + */ + public static function fromJson(string $json): self + { + $data = json_decode($json, true); + if (json_last_error() !== JSON_ERROR_NONE) { + throw new S3TransferException('Failed to parse resume file: ' . json_last_error_msg()); + } + + $requiredFields = [ + 'version', + 'resumeFilePath', + 'requestArgs', + 'config', + 'currentSnapshot', + 'uploadId', + 'partsCompleted', + 'source', + 'objectSize', + 'partSize', + 'isFullObjectChecksum', + ]; + foreach ($requiredFields as $field) { + if (!array_key_exists($field, $data)) { + throw new S3TransferException( + "Invalid resume file: missing required field '$field'" + ); + } + } + + return new self( + $data['resumeFilePath'], + $data['requestArgs'], + $data['config'], + $data['currentSnapshot'], + $data['uploadId'], + $data['partsCompleted'], + $data['source'], + $data['objectSize'], + $data['partSize'], + $data['isFullObjectChecksum'], + ); + } + + /** + * @param string $filePath + * + * @return self + */ + public static function fromFile(string $filePath): self + { + if (!file_exists($filePath)) { + throw new S3TransferException( + "Resume file does not exist: $filePath" + ); + } + $content = file_get_contents($filePath); + if ($content === false) { + throw new S3TransferException( + "Failed to read resume file: $filePath" + ); + } + + $fileData = json_decode($content, true); + if (json_last_error() !== JSON_ERROR_NONE) { + throw new S3TransferException( + 'Failed to parse resume file: ' . json_last_error_msg() + ); + } + + // Validate signature if present + if (isset($fileData['signature'], $fileData['data'])) { + $expectedSignature = hash( + self::SIGNATURE_CHECKSUM_ALGORITHM, + json_encode( + $fileData['data'], + JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES + ) + ); + + if (!hash_equals($fileData['signature'], $expectedSignature)) { + throw new S3TransferException( + 'Resume file integrity check failed: signature mismatch' + ); + } + + $json = json_encode($fileData['data']); + } else { + // Legacy format without signature + $json = $content; + } + + return self::fromJson($json); + } + + /** + * @return string + */ + public function getResumeFilePath(): string + { + return $this->resumeFilePath; + } + + /** + * @return array + */ + public function getRequestArgs(): array + { + return $this->requestArgs; + } + + /** + * @return array + */ + public function getConfig(): array + { + return $this->config; + } + + /** + * @return string + */ + public function getUploadId(): string + { + return $this->uploadId; + } + + /** + * @return array + */ + public function getPartsCompleted(): array + { + return $this->partsCompleted; + } + + /** + * @return array + */ + public function getCurrentSnapshot(): array + { + return $this->currentSnapshot; + } + + /** + * @return string + */ + public function getSource(): string + { + return $this->source; + } + + /** + * @return int + */ + public function getObjectSize(): int + { + return $this->objectSize; + } + + /** + * @return int + */ + public function getPartSize(): int + { + return $this->partSize; + } + + /** + * @return bool + */ + public function isFullObjectChecksum(): bool + { + return $this->isFullObjectChecksum; + } + + /** + * Update the current snapshot. + * + * @param array $snapshot The new snapshot data + */ + public function updateCurrentSnapshot(array $snapshot): void + { + $this->currentSnapshot = $snapshot; + } + + /** + * Mark a part as completed. + * + * @param int $partNumber The part number to mark as completed + */ + public function markPartCompleted(int $partNumber, array $part): void + { + $this->partsCompleted[$partNumber] = $part; + } +} \ No newline at end of file diff --git a/src/S3/S3Transfer/Models/ResumeDownloadRequest.php b/src/S3/S3Transfer/Models/ResumeDownloadRequest.php new file mode 100644 index 0000000000..c5aa1ebc42 --- /dev/null +++ b/src/S3/S3Transfer/Models/ResumeDownloadRequest.php @@ -0,0 +1,71 @@ +resumableDownload = $resumableDownload; + $this->downloadHandlerClass = $downloadHandlerClass; + $this->listeners = $listeners; + $this->progressTracker = $progressTracker; + } + + /** + * @return string|ResumableDownload + */ + public function getResumableDownload(): string|ResumableDownload + { + return $this->resumableDownload; + } + + /** + * @return string + */ + public function getDownloadHandlerClass(): string + { + return $this->downloadHandlerClass; + } + + /** + * @return array + */ + public function getListeners(): array + { + return $this->listeners; + } + + /** + * @return AbstractTransferListener|null + */ + public function getProgressTracker(): ?AbstractTransferListener + { + return $this->progressTracker; + } +} \ No newline at end of file diff --git a/src/S3/S3Transfer/Models/ResumeUploadRequest.php b/src/S3/S3Transfer/Models/ResumeUploadRequest.php new file mode 100644 index 0000000000..a941aa9d54 --- /dev/null +++ b/src/S3/S3Transfer/Models/ResumeUploadRequest.php @@ -0,0 +1,56 @@ +resumableUpload = $resumableUpload; + $this->listeners = $listeners; + $this->progressTracker = $progressTracker; + } + + /** + * @return string|ResumableUpload + */ + public function getResumableUpload(): string|ResumableUpload + { + return $this->resumableUpload; + } + + /** + * @return array + */ + public function getListeners(): array + { + return $this->listeners; + } + + /** + * @return AbstractTransferListener|null + */ + public function getProgressTracker(): ?AbstractTransferListener + { + return $this->progressTracker; + } +} \ No newline at end of file diff --git a/src/S3/S3Transfer/Models/UploadRequest.php b/src/S3/S3Transfer/Models/UploadRequest.php index c16a32f203..a9d3792379 100644 --- a/src/S3/S3Transfer/Models/UploadRequest.php +++ b/src/S3/S3Transfer/Models/UploadRequest.php @@ -2,7 +2,6 @@ namespace Aws\S3\S3Transfer\Models; -use Aws\S3\S3ClientInterface; use Aws\S3\S3Transfer\Progress\AbstractTransferListener; use InvalidArgumentException; use Psr\Http\Message\StreamInterface; @@ -15,6 +14,8 @@ final class UploadRequest extends AbstractTransferRequest 'track_progress' => 'bool', 'concurrency' => 'int', 'request_checksum_calculation' => 'string', + 'resume_enabled' => 'bool', + 'resume_file_path' => 'string', ]; /** @var StreamInterface|string */ @@ -41,19 +42,23 @@ final class UploadRequest extends AbstractTransferRequest * a default progress tracker implementation when $progressTracker is null. * - concurrency: (int, optional) To override default value for concurrency. * - request_checksum_calculation: (string, optional, defaulted to `when_supported`) + * - resume_enabled: (bool): To enable resuming a multipart download when a + * failure occurs. + * - resume_file_path (string, optional): To override the default resume file + * location to be generated. If specified the file name must end in `.resume` + * otherwise it will be added automatically. * @param AbstractTransferListener[]|null $listeners * @param AbstractTransferListener|null $progressTracker - * @param S3ClientInterface|null $s3Client + * */ public function __construct( StreamInterface|string $source, array $uploadRequestArgs, array $config = [], array $listeners = [], - ?AbstractTransferListener $progressTracker = null, - ?S3ClientInterface $s3Client = null + ?AbstractTransferListener $progressTracker = null ) { - parent::__construct($listeners, $progressTracker, $config, $s3Client); + parent::__construct($listeners, $progressTracker, $config); $this->source = $source; $this->uploadRequestArgs = $uploadRequestArgs; } @@ -87,8 +92,7 @@ public function validateSource(): void { if (is_string($this->getSource()) && !is_readable($this->getSource())) { throw new InvalidArgumentException( - "Invalid source `". $this->getSource() . "` provided. ". - "\nPlease provide a valid readable file path or a valid stream as source." + "Please provide a valid readable file path or a valid stream as source." ); } } @@ -120,4 +124,4 @@ public function validateRequiredParameters( } } } -} +} \ No newline at end of file diff --git a/src/S3/S3Transfer/MultipartUploader.php b/src/S3/S3Transfer/MultipartUploader.php index 34babb31e1..213ce18699 100644 --- a/src/S3/S3Transfer/MultipartUploader.php +++ b/src/S3/S3Transfer/MultipartUploader.php @@ -4,14 +4,18 @@ use Aws\HashingStream; use Aws\PhpHash; use Aws\ResultInterface; +use Aws\S3\ApplyChecksumMiddleware; use Aws\S3\S3ClientInterface; use Aws\S3\S3Transfer\Exception\S3TransferException; +use Aws\S3\S3Transfer\Models\ResumableUpload; use Aws\S3\S3Transfer\Models\S3TransferManagerConfig; use Aws\S3\S3Transfer\Models\UploadResult; +use Aws\S3\S3Transfer\Progress\AbstractTransferListener; use Aws\S3\S3Transfer\Progress\TransferListenerNotifier; use Aws\S3\S3Transfer\Progress\TransferProgressSnapshot; use GuzzleHttp\Promise\Create; use GuzzleHttp\Promise\Each; +use GuzzleHttp\Promise\Promise; use GuzzleHttp\Promise\PromiseInterface; use GuzzleHttp\Psr7\LazyOpenStream; use GuzzleHttp\Psr7\LimitStream; @@ -24,14 +28,6 @@ */ final class MultipartUploader extends AbstractMultipartUploader { - static array $supportedAlgorithms = [ - 'ChecksumCRC32', - 'ChecksumCRC32C', - 'ChecksumCRC64NVME', - 'ChecksumSHA1', - 'ChecksumSHA256', - ]; - private const STREAM_WRAPPER_TYPE_PLAIN_FILE = 'plainfile'; public const DEFAULT_CHECKSUM_CALCULATION_ALGORITHM = 'crc32'; private const CHECKSUM_TYPE_FULL_OBJECT = 'FULL_OBJECT'; @@ -42,6 +38,9 @@ final class MultipartUploader extends AbstractMultipartUploader /** @var StreamInterface */ private StreamInterface $body; + /** @var StreamInterface|string */ + private StreamInterface|string $source; + /** * For custom or default checksum. * @@ -59,6 +58,12 @@ final class MultipartUploader extends AbstractMultipartUploader /** @var bool */ private bool $isFullObjectChecksum; + /** @var bool */ + private bool $isResuming; + + /** @var ResumableUpload|null */ + private ?ResumableUpload $resumableUpload; + /** * @param S3ClientInterface $s3Client * @param array $requestArgs @@ -67,36 +72,55 @@ final class MultipartUploader extends AbstractMultipartUploader * - target_part_size_bytes: (int, optional) * - request_checksum_calculation: (string, optional) * - concurrency: (int, optional) - * @param string|null $uploadId - * @param array $parts - * @param TransferProgressSnapshot|null $currentSnapshot * @param TransferListenerNotifier|null $listenerNotifier + * @param ResumableUpload|null $resumableUpload */ public function __construct( S3ClientInterface $s3Client, array $requestArgs, string|StreamInterface $source, array $config = [], - ?string $uploadId = null, - array $parts = [], - ?TransferProgressSnapshot $currentSnapshot = null, ?TransferListenerNotifier $listenerNotifier = null, + ?ResumableUpload $resumableUpload = null, ) { if (!isset($config['request_checksum_calculation'])) { $config['request_checksum_calculation'] = S3TransferManagerConfig::DEFAULT_REQUEST_CHECKSUM_CALCULATION; } + + $uploadId = null; + $partsCompleted = []; + $currentSnapshot = null; + $calculatedObjectSize = 0; + $isFullObjectChecksum = false; + $this->resumableUpload = $resumableUpload; + $this->isResuming = $resumableUpload !== null; + if ($this->isResuming) { + $config = $resumableUpload->getConfig(); + $uploadId = $resumableUpload->getUploadId(); + $partsCompleted = $resumableUpload->getPartsCompleted(); + $snapshotData = $resumableUpload->getCurrentSnapshot(); + if (!empty($snapshotData)) { + $currentSnapshot = TransferProgressSnapshot::fromArray( + $snapshotData + ); + } + $calculatedObjectSize = $resumableUpload->getObjectSize(); + $isFullObjectChecksum = $resumableUpload->isFullObjectChecksum(); + } + parent::__construct( $s3Client, $requestArgs, $config, $uploadId, - $parts, + $partsCompleted, $currentSnapshot, $listenerNotifier ); + $this->source = $source; $this->body = $this->parseBody($source); - $this->calculatedObjectSize = 0; - $this->isFullObjectChecksum = false; + $this->calculatedObjectSize = $calculatedObjectSize; + $this->isFullObjectChecksum = $isFullObjectChecksum; $this->evaluateCustomChecksum(); } @@ -129,6 +153,11 @@ protected function createMultipartOperation(): PromiseInterface } } + if ($this->isResuming && $this->uploadId !== null) { + // Not need to initialize multipart + return Create::promiseFor(""); + } + $this->operationInitiated($createMultipartUploadArgs); $command = $this->s3Client->getCommand( 'CreateMultipartUpload', @@ -138,10 +167,39 @@ protected function createMultipartOperation(): PromiseInterface return $this->s3Client->executeAsync($command) ->then(function (ResultInterface $result) { $this->uploadId = $result['UploadId']; - return $result; }); } + /** + * Process a multipart upload operation. + * + * @return PromiseInterface + */ + protected function processMultipartOperation(): PromiseInterface + { + $uploadPartCommandArgs = $this->requestArgs; + $this->calculatedObjectSize = 0; + $partSize = $this->calculatePartSize(); + $partsCount = ceil($this->getTotalSize() / $partSize); + $uploadPartCommandArgs['UploadId'] = $this->uploadId; + // Customer provided checksum + if ($this->requestChecksum !== null) { + // To avoid default calculation for individual parts + $uploadPartCommandArgs['@context']['request_checksum_calculation'] = 'when_required'; + unset($uploadPartCommandArgs['Checksum'. strtoupper($this->requestChecksumAlgorithm)]); + } elseif ($this->requestChecksumAlgorithm !== null) { + $uploadPartCommandArgs['ChecksumAlgorithm'] = $this->requestChecksumAlgorithm; + } + + $promises = $this->createUploadPartPromises( + $uploadPartCommandArgs, + $partSize, + $partsCount, + ); + + return Each::ofLimitAll($promises, $this->config['concurrency']); + } + /** * @inheritDoc * @@ -153,7 +211,7 @@ protected function completeMultipartOperation(): PromiseInterface $completeMultipartUploadArgs = $this->requestArgs; $completeMultipartUploadArgs['UploadId'] = $this->uploadId; $completeMultipartUploadArgs['MultipartUpload'] = [ - 'Parts' => $this->parts + 'Parts' => array_values($this->partsCompleted) ]; $completeMultipartUploadArgs['MpuObjectSize'] = $this->getTotalSize(); @@ -172,10 +230,36 @@ protected function completeMultipartOperation(): PromiseInterface return $this->s3Client->executeAsync($command) ->then(function (ResultInterface $result) { $this->operationCompleted($result); + + // Clean resume file on completion + if ($this->allowResume()) { + $this->resumableUpload?->deleteResumeFile(); + } + return $result; }); } + /** + * @return PromiseInterface + */ + protected function abortMultipartOperation(): PromiseInterface + { + // When resume is enabled then we skip aborting. + if ($this->allowResume()) { + return Create::promiseFor(""); + } + + $abortMultipartUploadArgs = $this->requestArgs; + $abortMultipartUploadArgs['UploadId'] = $this->uploadId; + $command = $this->s3Client->getCommand( + 'AbortMultipartUpload', + $abortMultipartUploadArgs + ); + + return $this->s3Client->executeAsync($command); + } + /** * Sync upload method. * @@ -232,7 +316,9 @@ private function parseBody( private function evaluateCustomChecksum(): void { // Evaluation for custom provided checksums - $checksumName = self::filterChecksum($this->requestArgs); + $checksumName = ApplyChecksumMiddleware::filterChecksum( + $this->requestArgs + ); if ($checksumName !== null) { $this->requestChecksum = $this->requestArgs[$checksumName]; $this->requestChecksumAlgorithm = str_replace( @@ -249,36 +335,6 @@ private function evaluateCustomChecksum(): void } } - /** - * Process a multipart upload operation. - * - * @return PromiseInterface - */ - protected function processMultipartOperation(): PromiseInterface - { - $uploadPartCommandArgs = $this->requestArgs; - $this->calculatedObjectSize = 0; - $partSize = $this->calculatePartSize(); - $partsCount = ceil($this->getTotalSize() / $partSize); - $uploadPartCommandArgs['UploadId'] = $this->uploadId; - // Customer provided checksum - if ($this->requestChecksum !== null) { - // To avoid default calculation for individual parts - $uploadPartCommandArgs['@context']['request_checksum_calculation'] = 'when_required'; - unset($uploadPartCommandArgs['Checksum'. strtoupper($this->requestChecksumAlgorithm)]); - } elseif ($this->requestChecksumAlgorithm !== null) { - $uploadPartCommandArgs['ChecksumAlgorithm'] = $this->requestChecksumAlgorithm; - } - - $promises = $this->createUploadPartPromises( - $uploadPartCommandArgs, - $partSize, - $partsCount, - ); - - return Each::ofLimitAll($promises, $this->config['concurrency']); - } - /** * @param array $uploadPartCommandArgs * @param int $partSize @@ -292,11 +348,16 @@ private function createUploadPartPromises( int $partsCount ): \Generator { - $partNo = count($this->parts); $bytesRead = 0; $isSeekable = $this->body->isSeekable() && $this->body->getMetadata('wrapper_type') === self::STREAM_WRAPPER_TYPE_PLAIN_FILE; + + if ($isSeekable) { + $this->body->rewind(); + } + + $partNo = 0; while (!$this->body->eof()) { if ($isSeekable) { $partBody = new LimitStream( @@ -360,23 +421,30 @@ private function createUploadPartPromises( $this->body->seek($bytesRead); } + if (isset($this->partsCompleted[$partNo])) { + // Part already uploaded + continue; + } + yield $this->s3Client->executeAsync($command) ->then(function (ResultInterface $result) - use ($command, $partBody) { + use ($command, $partBody) { $partBody->close(); // To make sure we don't continue when a failure occurred if ($this->currentSnapshot->getReason() !== null) { throw $this->currentSnapshot->getReason(); } - $this->collectPart( + $partData = $this->collectPart( $result, $command ); + // Part Upload Completed Event $this->partCompleted( $command['ContentLength'], - $command->toArray() + $command->toArray(), + $partData, ); })->otherwise(function (Throwable $e) use ($partBody) { $partBody->close(); @@ -387,6 +455,92 @@ private function createUploadPartPromises( } } + /** + * @param int $partSize + * @param array $requestArgs + * @param array $partData + * + * @return void + */ + protected function partCompleted( + int $partSize, + array $requestArgs, + array $partData + ): void + { + $newSnapshot = new TransferProgressSnapshot( + $this->currentSnapshot->getIdentifier(), + $this->currentSnapshot->getTransferredBytes() + $partSize, + $this->currentSnapshot->getTotalBytes(), + $this->currentSnapshot->getResponse(), + $this->currentSnapshot->getReason(), + ); + + $this->currentSnapshot = $newSnapshot; + + // Persist resume state if allowed + if ($this->allowResume()) { + $this->persistResumeState($partData); + } + + $this->listenerNotifier?->bytesTransferred([ + AbstractTransferListener::REQUEST_ARGS_KEY => $requestArgs, + AbstractTransferListener::PROGRESS_SNAPSHOT_KEY => $this->currentSnapshot + ]); + } + + /** + * Resume works just when the source is a file path and is enabled. + * + * @return bool + */ + private function allowResume(): bool + { + return ($this->config['resume_enabled'] ?? false) + && is_string($this->source); + } + + /** + * Persist the current upload state to a resume file. + * + * @param array $partData + */ + private function persistResumeState(array $partData): void + { + if ($this->resumableUpload === null) { + if ($this->config['resume_file_path'] ?? false) { + $resumeFilePath = $this->config['resume_file_path']; + } else { + $resumeFilePath = $this->source . '.resume'; + } + + $this->resumableUpload = new ResumableUpload( + $resumeFilePath, + $this->requestArgs, + $this->config, + $this->currentSnapshot->toArray(), + $this->uploadId, + $this->partsCompleted, + $this->source, + $this->getTotalSize(), + $this->calculatePartSize(), + $this->isFullObjectChecksum + ); + } + + // Update the completed parts and current snapshot + $this->resumableUpload->markPartCompleted( + $partData['PartNumber'], + $partData + ); + $this->resumableUpload->updateCurrentSnapshot( + $this->currentSnapshot->toArray() + ); + + // Save to file + $this->resumableUpload->toFile(); + } + /** * @return int */ @@ -428,22 +582,4 @@ private function decorateWithHashes( $data['ContentSHA256'] = bin2hex($result); }); } - - /** - * Filters a provided checksum if one was provided. - * - * @param array $requestArgs - * - * @return string|null - */ - private static function filterChecksum(array $requestArgs):? string - { - foreach (self::$supportedAlgorithms as $algorithm) { - if (isset($requestArgs[$algorithm])) { - return $algorithm; - } - } - - return null; - } } diff --git a/src/S3/S3Transfer/PartGetMultipartDownloader.php b/src/S3/S3Transfer/PartGetMultipartDownloader.php index 668b565089..e8ebf65c7c 100644 --- a/src/S3/S3Transfer/PartGetMultipartDownloader.php +++ b/src/S3/S3Transfer/PartGetMultipartDownloader.php @@ -13,31 +13,13 @@ final class PartGetMultipartDownloader extends AbstractMultipartDownloader { /** * @inheritDoc - * - * @return CommandInterface */ - protected function nextCommand(): CommandInterface + protected function getFetchCommandArgs(): array { - if ($this->currentPartNo === 0) { - $this->currentPartNo = 1; - } else { - $this->currentPartNo++; - } - - $nextRequestArgs = $this->downloadRequestArgs; - $nextRequestArgs['PartNumber'] = $this->currentPartNo; - if ($this->config['response_checksum_validation'] === 'when_supported') { - $nextRequestArgs['ChecksumMode'] = 'ENABLED'; - } - - if (!empty($this->eTag)) { - $nextRequestArgs['IfMatch'] = $this->eTag; - } + $nextCommandArgs = $this->downloadRequestArgs; + $nextCommandArgs['PartNumber'] = $this->currentPartNo; - return $this->s3Client->getCommand( - self::GET_OBJECT_COMMAND, - $nextRequestArgs - ); + return $nextCommandArgs; } /** @@ -55,8 +37,8 @@ protected function computeObjectDimensions(ResultInterface $result): void $this->objectPartsCount = 1; } - $this->objectSizeInBytes = $this->computeObjectSizeFromContentRange( + $this->objectSizeInBytes = self::computeObjectSizeFromContentRange( $result['ContentRange'] ?? "" ); } -} +} \ No newline at end of file diff --git a/src/S3/S3Transfer/Progress/AbstractTransferListener.php b/src/S3/S3Transfer/Progress/AbstractTransferListener.php index 02ada8eeda..95403d1b21 100644 --- a/src/S3/S3Transfer/Progress/AbstractTransferListener.php +++ b/src/S3/S3Transfer/Progress/AbstractTransferListener.php @@ -24,7 +24,7 @@ public function transferInitiated(array $context): void {} * as part of the operation that originated the bytes transferred event. * - progress_snapshot: (TransferProgressSnapshot) The transfer snapshot holder. * - * @return bool + * @return bool true to notify successful handling otherwise false. */ public function bytesTransferred(array $context): bool { return true; @@ -50,4 +50,15 @@ public function transferComplete(array $context): void {} * @return void */ public function transferFail(array $context): void {} + + /** + * To provide an order on which listener is notified first. + * By default, it will provide a neutral value. + * + * @return int + */ + public function priority(): int + { + return 0; + } } diff --git a/src/S3/S3Transfer/Progress/SingleProgressTracker.php b/src/S3/S3Transfer/Progress/SingleProgressTracker.php index 0e5f2fa771..8e4574b4e0 100644 --- a/src/S3/S3Transfer/Progress/SingleProgressTracker.php +++ b/src/S3/S3Transfer/Progress/SingleProgressTracker.php @@ -194,7 +194,10 @@ private function updateProgressBar( } $this->progressBar->getProgressBarFormat()->setArgs([ - 'transferred' => $this->currentSnapshot->getTransferredBytes(), + 'transferred' => min( + $this->currentSnapshot->getTransferredBytes(), + $this->currentSnapshot->getTotalBytes() + ), 'to_be_transferred' => $this->currentSnapshot->getTotalBytes(), 'unit' => 'B', ]); diff --git a/src/S3/S3Transfer/Progress/TransferListenerNotifier.php b/src/S3/S3Transfer/Progress/TransferListenerNotifier.php index e74a7aadae..6fc7f6f20f 100644 --- a/src/S3/S3Transfer/Progress/TransferListenerNotifier.php +++ b/src/S3/S3Transfer/Progress/TransferListenerNotifier.php @@ -12,6 +12,7 @@ final class TransferListenerNotifier extends AbstractTransferListener */ public function __construct(array $listeners = []) { + usort($listeners, fn($a, $b) => $a->priority() <=> $b->priority()); foreach ($listeners as $listener) { if (!$listener instanceof AbstractTransferListener) { throw new \InvalidArgumentException( @@ -19,6 +20,7 @@ public function __construct(array $listeners = []) ); } } + $this->listeners = $listeners; } diff --git a/src/S3/S3Transfer/Progress/TransferProgressSnapshot.php b/src/S3/S3Transfer/Progress/TransferProgressSnapshot.php index 3db9eb2544..ae0baaaa00 100644 --- a/src/S3/S3Transfer/Progress/TransferProgressSnapshot.php +++ b/src/S3/S3Transfer/Progress/TransferProgressSnapshot.php @@ -8,7 +8,7 @@ final class TransferProgressSnapshot { /** @var string */ private string $identifier; - + /** @var int */ private int $transferredBytes; @@ -29,12 +29,13 @@ final class TransferProgressSnapshot * @param Throwable|string|null $reason */ public function __construct( - string $identifier, - int $transferredBytes, - int $totalBytes, - ?array $response = null, + string $identifier, + int $transferredBytes, + int $totalBytes, + ?array $response = null, Throwable|string|null $reason = null, - ) { + ) + { $this->identifier = $identifier; $this->transferredBytes = $transferredBytes; $this->totalBytes = $totalBytes; @@ -91,4 +92,49 @@ public function getReason(): Throwable|string|null { return $this->reason; } + + /** + * @return array + */ + public function toArray(): array + { + return [ + 'identifier' => $this->identifier, + 'transferredBytes' => $this->transferredBytes, + 'totalBytes' => $this->totalBytes, + 'reason' => $this->reason, + 'response' => $this->response, + ]; + } + + /** + * @param array $response + * + * @return TransferProgressSnapshot + */ + public function withResponse(array $response): TransferProgressSnapshot + { + return new self( + $this->identifier, + $this->transferredBytes, + $this->totalBytes, + $response, + ); + } + + /** + * @param array $data + * + * @return TransferProgressSnapshot + */ + public static function fromArray(array $data): TransferProgressSnapshot + { + return new self( + $data['identifier'] ?? null, + $data['transferredBytes'] ?? 0, + $data['totalBytes'] ?? 0, + $data['response'] ?? null, + $data['reason'] ?? null + ); + } } diff --git a/src/S3/S3Transfer/RangeGetMultipartDownloader.php b/src/S3/S3Transfer/RangeGetMultipartDownloader.php index d89cca22c0..561141e43a 100644 --- a/src/S3/S3Transfer/RangeGetMultipartDownloader.php +++ b/src/S3/S3Transfer/RangeGetMultipartDownloader.php @@ -10,18 +10,10 @@ final class RangeGetMultipartDownloader extends AbstractMultipartDownloader { /** * @inheritDoc - * - * @return CommandInterface */ - protected function nextCommand(): CommandInterface + protected function getFetchCommandArgs(): array { - if ($this->currentPartNo === 0) { - $this->currentPartNo = 1; - } else { - $this->currentPartNo++; - } - - $nextRequestArgs = $this->downloadRequestArgs; + $nextCommandArgs = $this->downloadRequestArgs; $partSize = $this->config['target_part_size_bytes']; $from = ($this->currentPartNo - 1) * $partSize; $to = ($this->currentPartNo * $partSize) - 1; @@ -30,20 +22,9 @@ protected function nextCommand(): CommandInterface $to = min($this->objectSizeInBytes, $to); } - $nextRequestArgs['Range'] = "bytes=$from-$to"; - - if ($this->config['response_checksum_validation'] === 'when_supported') { - $nextRequestArgs['ChecksumMode'] = 'ENABLED'; - } - - if (!empty($this->eTag)) { - $nextRequestArgs['IfMatch'] = $this->eTag; - } + $nextCommandArgs['Range'] = "bytes=$from-$to"; - return $this->s3Client->getCommand( - self::GET_OBJECT_COMMAND, - $nextRequestArgs - ); + return $nextCommandArgs; } /** @@ -57,7 +38,7 @@ protected function computeObjectDimensions(ResultInterface $result): void { // Assign object size just if needed. if ($this->objectSizeInBytes === 0) { - $this->objectSizeInBytes = $this->computeObjectSizeFromContentRange( + $this->objectSizeInBytes = self::computeObjectSizeFromContentRange( $result['ContentRange'] ?? "" ); } diff --git a/src/S3/S3Transfer/S3TransferManager.php b/src/S3/S3Transfer/S3TransferManager.php index 273f1c4ed6..820a8d0da3 100644 --- a/src/S3/S3Transfer/S3TransferManager.php +++ b/src/S3/S3Transfer/S3TransferManager.php @@ -2,7 +2,6 @@ namespace Aws\S3\S3Transfer; -use Aws\MetricsBuilder; use Aws\ResultInterface; use Aws\S3\S3Client; use Aws\S3\S3ClientInterface; @@ -11,6 +10,11 @@ use Aws\S3\S3Transfer\Models\DownloadDirectoryResult; use Aws\S3\S3Transfer\Models\DownloadFileRequest; use Aws\S3\S3Transfer\Models\DownloadRequest; +use Aws\S3\S3Transfer\Models\ResumableDownload; +use Aws\S3\S3Transfer\Models\ResumableTransfer; +use Aws\S3\S3Transfer\Models\ResumableUpload; +use Aws\S3\S3Transfer\Models\ResumeDownloadRequest; +use Aws\S3\S3Transfer\Models\ResumeUploadRequest; use Aws\S3\S3Transfer\Models\S3TransferManagerConfig; use Aws\S3\S3Transfer\Models\UploadDirectoryRequest; use Aws\S3\S3Transfer\Models\UploadDirectoryResult; @@ -22,6 +26,7 @@ use Aws\S3\S3Transfer\Progress\TransferListenerNotifier; use Aws\S3\S3Transfer\Progress\TransferProgressSnapshot; use Aws\S3\S3Transfer\Utils\AbstractDownloadHandler; +use Aws\S3\S3Transfer\Utils\FileDownloadHandler; use FilesystemIterator; use GuzzleHttp\Promise\Each; use GuzzleHttp\Promise\PromiseInterface; @@ -62,11 +67,6 @@ public function __construct( } else { $this->s3Client = $s3Client; } - - MetricsBuilder::appendMetricsCaptureMiddleware( - $this->s3Client->getHandlerList(), - MetricsBuilder::S3_TRANSFER - ); } /** @@ -132,15 +132,9 @@ public function upload(UploadRequest $uploadRequest): PromiseInterface ); } - $s3Client = $uploadRequest->getS3Client(); - if ($s3Client === null) { - $s3Client = $this->s3Client; - } - if ($this->requiresMultipartUpload($uploadRequest->getSource(), $mupThreshold)) { return $this->tryMultipartUpload( $uploadRequest, - $s3Client, $listenerNotifier ); } @@ -148,7 +142,6 @@ public function upload(UploadRequest $uploadRequest): PromiseInterface return $this->trySingleUpload( $uploadRequest->getSource(), $uploadRequest->getUploadRequestArgs(), - $s3Client, $listenerNotifier ); } @@ -162,33 +155,6 @@ public function uploadDirectory( UploadDirectoryRequest $uploadDirectoryRequest, ): PromiseInterface { - return $this->doUploadDirectory( - $uploadDirectoryRequest, - $this->s3Client, - ); - } - - /** - * This method is created in order to easily add the - * `S3_TRANSFER_UPLOAD_DIRECTORY` metric to the s3Client instance - * to be used for the upload directory operation without letting - * this metric be appended in another operations that are not - * part of the upload directory. - * - * @param UploadDirectoryRequest $uploadDirectoryRequest - * @param S3ClientInterface $s3Client - * - * @return PromiseInterface - */ - private function doUploadDirectory( - UploadDirectoryRequest $uploadDirectoryRequest, - S3ClientInterface $s3Client, - ): PromiseInterface - { - MetricsBuilder::appendMetricsCaptureMiddleware( - $s3Client->getHandlerList(), - MetricsBuilder::S3_TRANSFER_UPLOAD_DIRECTORY - ); $uploadDirectoryRequest->validateSourceDirectory(); $uploadDirectoryRequest->updateConfigWithDefaults( @@ -244,7 +210,6 @@ function ($file) use ($filter, &$dirVisited) { } } - // If filter is not null if ($filter !== null) { return !is_dir($file) && $filter($file); } @@ -256,9 +221,8 @@ function ($file) use ($filter, &$dirVisited) { $objectsUploaded = 0; $objectsFailed = 0; $promises = []; - // Making sure base dir ends with directory separator - $baseDir = rtrim($sourceDirectory, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR; - $s3Delimiter = $config['s3_delimiter'] ?? '/'; + $baseDir = rtrim($sourceDirectory, '/') . DIRECTORY_SEPARATOR; + $delimiter = $config['s3_delimiter'] ?? '/'; $s3Prefix = $config['s3_prefix'] ?? ''; if ($s3Prefix !== '' && !str_ends_with($s3Prefix, '/')) { $s3Prefix .= '/'; @@ -269,18 +233,17 @@ function ($file) use ($filter, &$dirVisited) { && ($config['track_progress'] ?? $this->config->isTrackProgress())) { $progressTracker = new MultiProgressTracker(); } - foreach ($files as $file) { $relativePath = substr($file, strlen($baseDir)); - if (str_contains($relativePath, $s3Delimiter) && $s3Delimiter !== '/') { + if (str_contains($relativePath, $delimiter) && $delimiter !== '/') { throw new S3TransferException( - "The filename `$relativePath` must not contain the provided delimiter `$s3Delimiter`" + "The filename `$relativePath` must not contain the provided delimiter `$delimiter`" ); } $objectKey = $s3Prefix.$relativePath; $objectKey = str_replace( DIRECTORY_SEPARATOR, - $s3Delimiter, + $delimiter, $objectKey ); $uploadRequestArgs = $uploadDirectoryRequest->getUploadRequestArgs(); @@ -300,8 +263,7 @@ function ($file) use ($filter, &$dirVisited) { fn($listener) => clone $listener, $uploadDirectoryRequest->getListeners() ), - $progressTracker, - $s3Client + $progressTracker ) )->then(function (UploadResult $response) use (&$objectsUploaded) { $objectsUploaded++; @@ -388,68 +350,204 @@ public function download(DownloadRequest $downloadRequest): PromiseInterface $getObjectRequestArgs[$key] = $value; } - $s3Client = $downloadRequest->getS3Client(); - if ($s3Client === null) { - $s3Client = $this->s3Client; - } - return $this->tryMultipartDownload( $getObjectRequestArgs, $config, $downloadRequest->getDownloadHandler(), - $s3Client, - $listenerNotifier + $listenerNotifier, ); } /** - * @param DownloadFileRequest $downloadFileRequest + * @param ResumeDownloadRequest $resumeDownloadRequest * * @return PromiseInterface */ - public function downloadFile( - DownloadFileRequest $downloadFileRequest + public function resumeDownload( + ResumeDownloadRequest $resumeDownloadRequest ): PromiseInterface { - return $this->download($downloadFileRequest->getDownloadRequest()); + $resumableDownload = $resumeDownloadRequest->getResumableDownload(); + if (is_string($resumableDownload)) { + if (!ResumableTransfer::isResumeFile($resumableDownload)) { + throw new S3TransferException( + "Resume file `$resumableDownload` is not a valid resumable file." + ); + } + + $resumableDownload = ResumableDownload::fromFile($resumableDownload); + } + + // Verify that temporary file still exists + if (!file_exists($resumableDownload->getTemporaryFile())) { + throw new S3TransferException( + "Cannot resume download: temporary file does not exist: " + . $resumableDownload->getTemporaryFile() + ); + } + + // Verify object ETag hasn't changed + $headResult = $this->s3Client->headObject([ + 'Bucket' => $resumableDownload->getBucket(), + 'Key' => $resumableDownload->getKey(), + ]); + + $currentETag = $headResult['ETag'] ?? null; + $resumeETag = $resumableDownload->getETag(); + if (empty($currentETag) || empty($resumeETag)) { + throw new S3TransferException( + "Cannot resume download: missing eTag in resumable download" + ); + } + + if ($currentETag !== $resumableDownload->getETag()) { + throw new S3TransferException( + "Cannot resume download: S3 object has changed (ETag mismatch). " + . "Expected: {$resumableDownload->getETag()}, " + . "Current: {$currentETag}" + ); + } + + // Make sure it uses a supported file download handler + $downloadHandlerClass = $resumeDownloadRequest->getDownloadHandlerClass(); + if (!class_exists($downloadHandlerClass)) { + throw new S3TransferException( + "Download handler class `$downloadHandlerClass` does not exist" + ); + } + + if ($downloadHandlerClass !== FileDownloadHandler::class + && !is_subclass_of($downloadHandlerClass, FileDownloadHandler::class)) { + throw new S3TransferException( + "Download handler class `$downloadHandlerClass` must extend `FileDownloadHandler`" + ); + } + + $config = $resumableDownload->getConfig(); + $downloadHandler = new $downloadHandlerClass( + $resumableDownload->getDestination(), + $config['fails_when_destination_exists'] ?? false, + $config['resume_enabled'] ?? false, + $resumableDownload->getTemporaryFile(), + $resumableDownload->getFixedPartSize() + ); + + $progressTracker = $resumeDownloadRequest->getProgressTracker(); + $listeners = $resumeDownloadRequest->getListeners(); + + if ($progressTracker === null + && ($resumableDownload->getConfig()['track_progress'] + ?? $this->config->isTrackProgress())) { + $progressTracker = new SingleProgressTracker(); + $listeners[] = $progressTracker; + } + + $listenerNotifier = new TransferListenerNotifier( + $listeners, + ); + + return $this->tryMultipartDownload( + $resumableDownload->getRequestArgs(), + $resumableDownload->getConfig(), + $downloadHandler, + $listenerNotifier, + $resumableDownload, + ); } /** - * @param DownloadDirectoryRequest $downloadDirectoryRequest + * @param ResumeUploadRequest $resumeUploadRequest * * @return PromiseInterface */ - public function downloadDirectory( - DownloadDirectoryRequest $downloadDirectoryRequest + public function resumeUpload( + ResumeUploadRequest $resumeUploadRequest ): PromiseInterface { - return $this->doDownloadDirectory( - $downloadDirectoryRequest, + $resumableUpload = $resumeUploadRequest->getResumableUpload(); + if (is_string($resumableUpload)) { + if (!ResumableTransfer::isResumeFile($resumableUpload)) { + throw new S3TransferException( + "Resume file `$resumableUpload` is not a valid resumable file." + ); + } + + $resumableUpload = ResumableUpload::fromFile($resumableUpload); + } + + // Verify that source file still exists + if (!file_exists($resumableUpload->getSource())) { + throw new S3TransferException( + "Cannot resume upload: source file does not exist: " + . $resumableUpload->getSource() + ); + } + + // Verify upload still exists in S3 by checking uploadId + $uploads = $this->s3Client->listMultipartUploads([ + 'Bucket' => $resumableUpload->getBucket(), + 'Prefix' => $resumableUpload->getKey(), + ]); + + $uploadExists = false; + foreach ($uploads['Uploads'] ?? [] as $upload) { + if ($upload['UploadId'] === $resumableUpload->getUploadId() + && $upload['Key'] === $resumableUpload->getKey()) { + $uploadExists = true; + break; + } + } + + if (!$uploadExists) { + throw new S3TransferException( + "Cannot resume upload: multipart upload no longer exists (UploadId: " + . $resumableUpload->getUploadId() . ")" + ); + } + + $config = $resumableUpload->getConfig(); + $progressTracker = $resumeUploadRequest->getProgressTracker(); + $listeners = $resumeUploadRequest->getListeners(); + + if ($progressTracker === null + && ($config['track_progress'] ?? $this->config->isTrackProgress())) { + $progressTracker = new SingleProgressTracker(); + $listeners[] = $progressTracker; + } + + $listenerNotifier = new TransferListenerNotifier($listeners); + + return (new MultipartUploader( $this->s3Client, - ); + $resumableUpload->getRequestArgs(), + $resumableUpload->getSource(), + $config, + listenerNotifier: $listenerNotifier, + resumableUpload: $resumableUpload, + ))->promise(); } /** - * This method is created in order to easily add the - * `S3_TRANSFER_DOWNLOAD_DIRECTORY` metric to the s3Client instance - * to be used for the download directory operation without letting - * this metric be appended in another operations that are not - * part of the download directory. + * @param DownloadFileRequest $downloadFileRequest * + * @return PromiseInterface + */ + public function downloadFile( + DownloadFileRequest $downloadFileRequest + ): PromiseInterface + { + return $this->download($downloadFileRequest->getDownloadRequest()); + } + + /** * @param DownloadDirectoryRequest $downloadDirectoryRequest - * @param S3ClientInterface $s3Client * * @return PromiseInterface */ - private function doDownloadDirectory( - DownloadDirectoryRequest $downloadDirectoryRequest, - S3ClientInterface $s3Client, + public function downloadDirectory( + DownloadDirectoryRequest $downloadDirectoryRequest ): PromiseInterface { - MetricsBuilder::appendMetricsCaptureMiddleware( - $s3Client->getHandlerList(), - MetricsBuilder::S3_TRANSFER_DOWNLOAD_DIRECTORY - ); $downloadDirectoryRequest->validateDestinationDirectory(); $destinationDirectory = $downloadDirectoryRequest->getDestinationDirectory(); $sourceBucket = $downloadDirectoryRequest->getSourceBucket(); @@ -485,11 +583,9 @@ private function doDownloadDirectory( $filter = $config['filter'] ?? null; $objects = filter($objects, function (string $key) use ($filter) { if ($filter !== null) { - // Avoid returning objects meant for directories in s3 return call_user_func($filter, $key) && !str_ends_with($key, "/"); } - // Avoid returning objects meant for directories in s3 return !str_ends_with($key, "/"); }); $objects = map($objects, function (string $key) use ($sourceBucket) { @@ -556,7 +652,6 @@ private function doDownloadDirectory( $downloadDirectoryRequest->getListeners() ), progressTracker: $progressTracker, - s3Client: $s3Client, ) ), )->then(function () use ( @@ -608,7 +703,6 @@ private function doDownloadDirectory( return new DownloadDirectoryResult( $objectsDownloaded, $objectsFailed, - $reason ); }); } @@ -620,27 +714,27 @@ private function doDownloadDirectory( * @param array $config * @param AbstractDownloadHandler $downloadHandler * @param TransferListenerNotifier|null $listenerNotifier - * @param S3ClientInterface|null $s3Client - * + * @param ResumableDownload|null $resumableDownload * @return PromiseInterface */ private function tryMultipartDownload( - array $getObjectRequestArgs, - array $config, - AbstractDownloadHandler $downloadHandler, - S3ClientInterface $s3Client, + array $getObjectRequestArgs, + array $config, + AbstractDownloadHandler $downloadHandler, ?TransferListenerNotifier $listenerNotifier = null, + ?ResumableDownload $resumableDownload = null, ): PromiseInterface { $downloaderClassName = AbstractMultipartDownloader::chooseDownloaderClass( strtolower($config['multipart_download_type']) ); $multipartDownloader = new $downloaderClassName( - $s3Client, + $this->s3Client, $getObjectRequestArgs, $config, $downloadHandler, listenerNotifier: $listenerNotifier, + resumableDownload: $resumableDownload, ); return $multipartDownloader->promise(); @@ -649,7 +743,6 @@ private function tryMultipartDownload( /** * @param string|StreamInterface $source * @param array $requestArgs - * @param S3ClientInterface $s3Client * @param TransferListenerNotifier|null $listenerNotifier * * @return PromiseInterface @@ -657,8 +750,7 @@ private function tryMultipartDownload( private function trySingleUpload( string|StreamInterface $source, array $requestArgs, - S3ClientInterface $s3Client, - ?TransferListenerNotifier $listenerNotifier = null, + ?TransferListenerNotifier $listenerNotifier = null ): PromiseInterface { if (is_string($source) && is_readable($source)) { @@ -685,8 +777,8 @@ private function trySingleUpload( ] ); - $command = $s3Client->getCommand('PutObject', $requestArgs); - return $s3Client->executeAsync($command)->then( + $command = $this->s3Client->getCommand('PutObject', $requestArgs); + return $this->s3Client->executeAsync($command)->then( function (ResultInterface $result) use ($objectSize, $listenerNotifier, $requestArgs) { $listenerNotifier->bytesTransferred( @@ -734,9 +826,9 @@ function (ResultInterface $result) }); } - $command = $s3Client->getCommand('PutObject', $requestArgs); + $command = $this->s3Client->getCommand('PutObject', $requestArgs); - return $s3Client->executeAsync($command) + return $this->s3Client->executeAsync($command) ->then(function (ResultInterface $result) { return new UploadResult($result->toArray()); }); @@ -744,19 +836,17 @@ function (ResultInterface $result) /** * @param UploadRequest $uploadRequest - * @param S3ClientInterface $s3Client * @param TransferListenerNotifier|null $listenerNotifier * * @return PromiseInterface */ private function tryMultipartUpload( UploadRequest $uploadRequest, - S3ClientInterface $s3Client, - ?TransferListenerNotifier $listenerNotifier = null + ?TransferListenerNotifier $listenerNotifier = null, ): PromiseInterface { return (new MultipartUploader( - $s3Client, + $this->s3Client, $uploadRequest->getUploadRequestArgs(), $uploadRequest->getSource(), $uploadRequest->getConfig(), @@ -798,21 +888,17 @@ private function requiresMultipartUpload( */ private function defaultS3Client(): S3ClientInterface { - try { - return new S3Client([ - 'region' => $this->config->getDefaultRegion(), - ]); - } catch (InvalidArgumentException $e) { - if (str_contains($e->getMessage(), "A \"region\" configuration value is required for the \"s3\" service")) { - throw new S3TransferException( - $e->getMessage() - . "\n You could opt for setting a default region as part of" - ." the TM config options by using the parameter `default_region`" - ); - } - - throw $e; + $defaultRegion = $this->config->getDefaultRegion(); + if (empty($defaultRegion)) { + throw new S3TransferException( + "When using the default S3 Client you must define a default region." + . "\nThe config parameter is `default_region`.`" + ); } + + return new S3Client([ + 'region' => $defaultRegion, + ]); } /** @@ -881,8 +967,8 @@ private function resolvesOutsideTargetDirectory( ): bool { $resolved = []; - $sections = explode(DIRECTORY_SEPARATOR, $sink); - $targetSectionsLength = count(explode(DIRECTORY_SEPARATOR, $objectKey)); + $sections = explode('/', $sink); + $targetSectionsLength = count(explode('/', $objectKey)); $targetSections = array_slice($sections, -($targetSectionsLength + 1)); $targetDirectory = $targetSections[0]; diff --git a/src/S3/S3Transfer/Utils/AbstractDownloadHandler.php b/src/S3/S3Transfer/Utils/AbstractDownloadHandler.php index d0995ec147..a68dae3088 100644 --- a/src/S3/S3Transfer/Utils/AbstractDownloadHandler.php +++ b/src/S3/S3Transfer/Utils/AbstractDownloadHandler.php @@ -6,6 +6,8 @@ abstract class AbstractDownloadHandler extends AbstractTransferListener { + protected const READ_BUFFER_SIZE = 8192; + /** * Returns the handler result. * - For FileDownloadHandler it may return the file destination. @@ -15,4 +17,12 @@ abstract class AbstractDownloadHandler extends AbstractTransferListener * @return mixed */ public abstract function getHandlerResult(): mixed; + + /** + * To control whether the download handler supports + * concurrency. + * + * @return bool + */ + public abstract function isConcurrencySupported(): bool; } diff --git a/src/S3/S3Transfer/Utils/FileDownloadHandler.php b/src/S3/S3Transfer/Utils/FileDownloadHandler.php index 87590893fa..645759e0f8 100644 --- a/src/S3/S3Transfer/Utils/FileDownloadHandler.php +++ b/src/S3/S3Transfer/Utils/FileDownloadHandler.php @@ -2,36 +2,60 @@ namespace Aws\S3\S3Transfer\Utils; +use Aws\S3\ApplyChecksumMiddleware; +use Aws\S3\S3Transfer\AbstractMultipartDownloader; use Aws\S3\S3Transfer\Exception\FileDownloadException; use Aws\S3\S3Transfer\Progress\AbstractTransferListener; -final class FileDownloadHandler extends AbstractDownloadHandler +final class FileDownloadHandler extends AbstractDownloadHandler implements ResumableDownloadHandler { private const IDENTIFIER_LENGTH = 8; private const TEMP_INFIX = '.s3tmp.'; + private const RESUME_SUFFIX = '.resume'; + private const MAX_UNIQUE_ID_ATTEMPTS = 100; /** @var string */ private string $destination; - /** - * @var bool - */ + /** @var bool */ private bool $failsWhenDestinationExists; - /** @var string */ - private string $temporaryDestination; + /** @var string|null */ + private ?string $temporaryFilePath; + + /** @var int|null */ + private ?int $fixedPartSize; + + /** @var bool */ + private bool $resumeEnabled; + + /** @var mixed|null */ + private mixed $handle; + + /** @var bool */ + private bool $transferFailed; /** * @param string $destination * @param bool $failsWhenDestinationExists + * @param bool $resumeEnabled + * @param string|null $temporaryFilePath + * @param int|null $fixedPartSize */ public function __construct( string $destination, - bool $failsWhenDestinationExists + bool $failsWhenDestinationExists, + bool $resumeEnabled = false, + ?string $temporaryFilePath = null, + ?int $fixedPartSize = null, ) { $this->destination = $destination; $this->failsWhenDestinationExists = $failsWhenDestinationExists; - $this->temporaryDestination = ""; + $this->resumeEnabled = $resumeEnabled; + $this->temporaryFilePath = $temporaryFilePath; + $this->fixedPartSize = $fixedPartSize; + $this->handle = null; + $this->transferFailed = false; } /** @@ -57,55 +81,65 @@ public function isFailsWhenDestinationExists(): bool */ public function transferInitiated(array $context): void { - if ($this->failsWhenDestinationExists && file_exists($this->destination)) { - throw new FileDownloadException( - "The destination '$this->destination' already exists." - ); - } elseif (is_dir($this->destination)) { - throw new FileDownloadException( - "The destination '$this->destination' can't be a directory." - ); + $this->validateDestination(); + $this->ensureDirectoryExists(); + // temporary destination may have been set by resume + if (empty($this->temporaryFilePath)) { + $this->temporaryFilePath = $this->generateTemporaryFilePath(); + } else { + $this->openExistingFile(); } + } - // Create directory if necessary - $directory = dirname($this->destination); - if (!is_dir($directory)) { - mkdir($directory, 0777, true); + /** + * Open an existing temporary file for resuming. + * Opens in 'r+' mode which allows reading and writing without truncating. + * + * @return void + */ + private function openExistingFile(): void + { + if ($this->handle !== null) { + return; } - $uniqueId = self::getUniqueIdentifier(); - $temporaryName = $this->destination . self::TEMP_INFIX . $uniqueId; - while (file_exists($temporaryName)) { - $uniqueId = self::getUniqueIdentifier(); - $temporaryName = $this->destination . self::TEMP_INFIX . $uniqueId; + $handle = fopen($this->temporaryFilePath, 'r+'); + + if ($handle === false) { + throw new FileDownloadException( + "Failed to open existing temporary file '{$this->temporaryFilePath}' for resuming." + ); } - // Create the file - file_put_contents($temporaryName, ""); - $this->temporaryDestination = $temporaryName; + $this->handle = $handle; } /** * @param array $context * - * @return void + * @return bool */ public function bytesTransferred(array $context): bool { + if ($this->transferFailed) { + return false; + } + $snapshot = $context[AbstractTransferListener::PROGRESS_SNAPSHOT_KEY]; $response = $snapshot->getResponse(); - $partBody = $response['Body']; - if ($partBody->isSeekable()) { - $partBody->rewind(); + + if ($this->handle === null) { + $this->fixedPartSize = $response['ContentLength']; + $this->initializeDestination($response); } - file_put_contents( - $this->temporaryDestination, - $partBody, - FILE_APPEND - ); + if ($this->handle === null) { + throw new FileDownloadException( + "Failed to initialize destination for downloading." + ); + } - return true; + return $this->writePartToDestinationHandle($response); } /** @@ -115,20 +149,249 @@ public function bytesTransferred(array $context): bool */ public function transferComplete(array $context): void { - // Make sure the file is deleted if exists - if (file_exists($this->destination) && is_file($this->destination)) { + $this->closeDestinationHandle(); + $this->replaceDestinationFile(); + } + + /** + * @param array $context + * + * @return void + */ + public function transferFail(array $context): void + { + $this->transferFailed = true; + $this->closeDestinationHandle(); + $this->cleanupAfterFailure($context); + } + + /** + * @param array $response + * + * @return void + */ + public function initializeDestination(array $response): void + { + $objectSize = AbstractMultipartDownloader::computeObjectSizeFromContentRange( + $response['ContentRange'] ?? "" + ); + + $this->createTruncatedFile($objectSize); + } + + /** + * @param array $response + * + * @return bool + */ + private function writePartToDestinationHandle(array $response): bool + { + $contentRange = $response['ContentRange'] ?? null; + if ($contentRange === null) { + throw new FileDownloadException( + "Unable to get content range from response." + ); + } + + $partNo = (int) ceil( + AbstractMultipartDownloader::getRangeTo($contentRange) / $this->fixedPartSize + ); + $position = ($partNo - 1) * $this->fixedPartSize; + + if (!flock($this->handle, LOCK_EX)) { + throw new FileDownloadException("Failed to acquire file lock."); + } + + try { + fseek($this->handle, $position); + + $body = $response['Body']; + // In case body was already consumed by another process + if ($body->isSeekable()) { + $body->rewind(); + } + + // Try to validate a checksum when writting to disk + $checksumParameter = ApplyChecksumMiddleware::filterChecksum( + $response + ); + $hashContext = null; + if ($checksumParameter !== null) { + $checksumAlgorithm = strtolower( + str_replace( + "Checksum", + "", + $checksumParameter + ) + ); + $checksumAlgorithm = $checksumAlgorithm === 'crc32' + ? 'crc32b' + : $checksumAlgorithm; + $hashContext = hash_init($checksumAlgorithm); + } + + while (!$body->eof()) { + $chunk = $body->read(self::READ_BUFFER_SIZE); + + if (fwrite($this->handle, $chunk) === false) { + throw new FileDownloadException("Failed to write data to temporary file."); + } + + if ($hashContext !== null) { + hash_update($hashContext, $chunk); + } + } + + if ($hashContext !== null) { + $calculatedChecksum = base64_encode( + hash_final($hashContext, true) + ); + if ($calculatedChecksum !== $response[$checksumParameter]) { + throw new FileDownloadException( + "Checksum mismatch when writing part to destination file." + ); + } + } + + fflush($this->handle); + + return true; + } finally { + flock($this->handle, LOCK_UN); + } + } + + /** + * @return void + */ + private function closeDestinationHandle(): void + { + if (is_resource($this->handle)) { + fclose($this->handle); + $this->handle = null; + } + } + + /** + * @return string + */ + public function getHandlerResult(): string + { + return $this->destination; + } + + /** + * @return void + */ + private function validateDestination(): void + { + if ($this->failsWhenDestinationExists && file_exists($this->destination)) { + throw new FileDownloadException( + "The destination '{$this->destination}' already exists." + ); + } + + if (is_dir($this->destination)) { + throw new FileDownloadException( + "The destination '{$this->destination}' can't be a directory." + ); + } + } + + /** + * @return void + */ + private function ensureDirectoryExists(): void + { + $directory = dirname($this->destination); + + if (!is_dir($directory) && !mkdir($directory, 0755, true) + && !is_dir($directory)) { + throw new FileDownloadException( + "Failed to create directory '{$directory}'." + ); + } + } + + /** + * @return string + */ + private function generateTemporaryFilePath(): string + { + for ($attempt = 0; $attempt < self::MAX_UNIQUE_ID_ATTEMPTS; $attempt++) { + $uniqueId = $this->generateUniqueIdentifier(); + $temporaryPath = $this->destination . self::TEMP_INFIX . $uniqueId; + + if (!file_exists($temporaryPath)) { + return $temporaryPath; + } + } + + throw new FileDownloadException( + "Unable to generate a unique temporary file name after " . self::MAX_UNIQUE_ID_ATTEMPTS . " attempts." + ); + } + + /** + * @return string + */ + private function generateUniqueIdentifier(): string + { + $uniqueId = uniqid(); + + if (strlen($uniqueId) > self::IDENTIFIER_LENGTH) { + return substr($uniqueId, 0, self::IDENTIFIER_LENGTH); + } + + return str_pad($uniqueId, self::IDENTIFIER_LENGTH, "0"); + } + + /** + * @param int $size + * + * @return void + */ + private function createTruncatedFile(int $size): void + { + $handle = fopen($this->temporaryFilePath, 'w+'); + + if ($handle === false) { + throw new FileDownloadException( + "Failed to open temporary file '{$this->temporaryFilePath}' for writing." + ); + } + + $this->handle = $handle; + + if (!ftruncate($this->handle, $size)) { + throw new FileDownloadException( + "Failed to allocate {$size} bytes for temporary file." + ); + } + } + + /** + * @return void + */ + private function replaceDestinationFile(): void + { + if (file_exists($this->destination)) { if ($this->failsWhenDestinationExists) { throw new FileDownloadException( - "The destination '$this->destination' already exists." + "The destination '{$this->destination}' already exists." + ); + } + + if (!unlink($this->destination)) { + throw new FileDownloadException( + "Failed to delete existing file '{$this->destination}'." ); - } else { - unlink($this->destination); } } - if (!rename($this->temporaryDestination, $this->destination)) { + if (!rename($this->temporaryFilePath, $this->destination)) { throw new FileDownloadException( - "Unable to rename the file `$this->temporaryDestination` to `$this->destination`." + "Unable to rename the file '{$this->temporaryFilePath}' to '{$this->destination}'." ); } } @@ -138,39 +401,53 @@ public function transferComplete(array $context): void * * @return void */ - public function transferFail(array $context): void + private function cleanupAfterFailure(array $context): void { - if (file_exists($this->temporaryDestination)) { - unlink($this->temporaryDestination); - } elseif (file_exists($this->destination) - && !str_contains( - $context[self::REASON_KEY], - "The destination '$this->destination' already exists.") - ) { + if (!$this->resumeEnabled && file_exists($this->temporaryFilePath)) { + unlink($this->temporaryFilePath); + return; + } + + $reason = $context[self::REASON_KEY] ?? ''; + $isDestinationExistsError = str_contains( + $reason, + "The destination '{$this->destination}' already exists." + ); + + if (file_exists($this->destination) && !$isDestinationExistsError) { unlink($this->destination); } } /** - * @return string + * @inheritDoc */ - private static function getUniqueIdentifier(): string + public function isConcurrencySupported(): bool { - $uniqueId = uniqid(); - if (strlen($uniqueId) > self::IDENTIFIER_LENGTH) { - $uniqueId = substr($uniqueId, 0, self::IDENTIFIER_LENGTH); - } else { - $uniqueId = str_pad($uniqueId, self::IDENTIFIER_LENGTH, "0"); - } + return true; + } - return $uniqueId; + /** + * @return string + */ + public function getResumeFilePath(): string + { + return $this->temporaryFilePath . self::RESUME_SUFFIX; } /** * @return string */ - public function getHandlerResult(): string + public function getTemporaryFilePath(): string { - return $this->destination; + return $this->temporaryFilePath; + } + + /** + * @return int + */ + public function getFixedPartSize(): int + { + return $this->fixedPartSize; } } diff --git a/src/S3/S3Transfer/Utils/ResumableDownloadHandler.php b/src/S3/S3Transfer/Utils/ResumableDownloadHandler.php new file mode 100644 index 0000000000..3c9f22ec6a --- /dev/null +++ b/src/S3/S3Transfer/Utils/ResumableDownloadHandler.php @@ -0,0 +1,27 @@ +seek($stream->getSize()); + } + $this->stream = $stream; } /** - * @param array $context - * - * @return void + * @return int */ - public function transferInitiated(array $context): void + public function priority(): int { - if (is_null($this->stream)) { - $this->stream = Utils::streamFor( - fopen('php://temp', 'w+') - ); - } else { - $this->stream->seek($this->stream->getSize()); - } + return -1; } /** @@ -43,6 +44,7 @@ public function bytesTransferred(array $context): bool $snapshot = $context[AbstractTransferListener::PROGRESS_SNAPSHOT_KEY]; $response = $snapshot->getResponse(); $partBody = $response['Body']; + if ($partBody->isSeekable()) { $partBody->rewind(); } @@ -85,4 +87,12 @@ public function getHandlerResult(): StreamInterface { return $this->stream; } + + /** + * @inheritDoc + */ + public function isConcurrencySupported(): bool + { + return false; + } } diff --git a/src/data/rds_feature/2014-09-01/api-2.json b/src/data/rds_feature/2014-09-01/api-2.json new file mode 100644 index 0000000000..21fffaf078 --- /dev/null +++ b/src/data/rds_feature/2014-09-01/api-2.json @@ -0,0 +1,3234 @@ +{ + "version":"2.0", + "metadata":{ + "apiVersion":"2014-09-01", + "endpointPrefix":"rds", + "protocol":"query", + "protocols":["query"], + "serviceAbbreviation":"Amazon RDS", + "serviceFullName":"Amazon Relational Database Service", + "serviceId":"RDS", + "signatureVersion":"v4", + "uid":"rds-2014-09-01", + "xmlNamespace":"http://rds.amazonaws.com/doc/2014-09-01/", + "auth":["aws.auth#sigv4"] + }, + "operations":{ + "AddSourceIdentifierToSubscription":{ + "name":"AddSourceIdentifierToSubscription", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AddSourceIdentifierToSubscriptionMessage"}, + "output":{ + "shape":"AddSourceIdentifierToSubscriptionResult", + "resultWrapper":"AddSourceIdentifierToSubscriptionResult" + }, + "errors":[ + {"shape":"SubscriptionNotFoundFault"}, + {"shape":"SourceNotFoundFault"} + ] + }, + "AddTagsToResource":{ + "name":"AddTagsToResource", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AddTagsToResourceMessage"}, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBSnapshotNotFoundFault"} + ] + }, + "AuthorizeDBSecurityGroupIngress":{ + "name":"AuthorizeDBSecurityGroupIngress", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AuthorizeDBSecurityGroupIngressMessage"}, + "output":{ + "shape":"AuthorizeDBSecurityGroupIngressResult", + "resultWrapper":"AuthorizeDBSecurityGroupIngressResult" + }, + "errors":[ + {"shape":"DBSecurityGroupNotFoundFault"}, + {"shape":"InvalidDBSecurityGroupStateFault"}, + {"shape":"AuthorizationAlreadyExistsFault"}, + {"shape":"AuthorizationQuotaExceededFault"} + ] + }, + "CopyDBParameterGroup":{ + "name":"CopyDBParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CopyDBParameterGroupMessage"}, + "output":{ + "shape":"CopyDBParameterGroupResult", + "resultWrapper":"CopyDBParameterGroupResult" + }, + "errors":[ + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"DBParameterGroupAlreadyExistsFault"}, + {"shape":"DBParameterGroupQuotaExceededFault"} + ] + }, + "CopyDBSnapshot":{ + "name":"CopyDBSnapshot", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CopyDBSnapshotMessage"}, + "output":{ + "shape":"CopyDBSnapshotResult", + "resultWrapper":"CopyDBSnapshotResult" + }, + "errors":[ + {"shape":"DBSnapshotAlreadyExistsFault"}, + {"shape":"DBSnapshotNotFoundFault"}, + {"shape":"InvalidDBSnapshotStateFault"}, + {"shape":"SnapshotQuotaExceededFault"} + ] + }, + "CopyOptionGroup":{ + "name":"CopyOptionGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CopyOptionGroupMessage"}, + "output":{ + "shape":"CopyOptionGroupResult", + "resultWrapper":"CopyOptionGroupResult" + }, + "errors":[ + {"shape":"OptionGroupAlreadyExistsFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"OptionGroupQuotaExceededFault"} + ] + }, + "CreateDBInstance":{ + "name":"CreateDBInstance", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBInstanceMessage"}, + "output":{ + "shape":"CreateDBInstanceResult", + "resultWrapper":"CreateDBInstanceResult" + }, + "errors":[ + {"shape":"DBInstanceAlreadyExistsFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"}, + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"DBSecurityGroupNotFoundFault"}, + {"shape":"InstanceQuotaExceededFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidSubnet"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"ProvisionedIopsNotAvailableInAZFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"StorageTypeNotSupportedFault"}, + {"shape":"AuthorizationNotFoundFault"} + ] + }, + "CreateDBInstanceReadReplica":{ + "name":"CreateDBInstanceReadReplica", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBInstanceReadReplicaMessage"}, + "output":{ + "shape":"CreateDBInstanceReadReplicaResult", + "resultWrapper":"CreateDBInstanceReadReplicaResult" + }, + "errors":[ + {"shape":"DBInstanceAlreadyExistsFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"}, + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"DBSecurityGroupNotFoundFault"}, + {"shape":"InstanceQuotaExceededFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidSubnet"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"ProvisionedIopsNotAvailableInAZFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"DBSubnetGroupNotAllowedFault"}, + {"shape":"InvalidDBSubnetGroupFault"}, + {"shape":"StorageTypeNotSupportedFault"} + ] + }, + "CreateDBParameterGroup":{ + "name":"CreateDBParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBParameterGroupMessage"}, + "output":{ + "shape":"CreateDBParameterGroupResult", + "resultWrapper":"CreateDBParameterGroupResult" + }, + "errors":[ + {"shape":"DBParameterGroupQuotaExceededFault"}, + {"shape":"DBParameterGroupAlreadyExistsFault"} + ] + }, + "CreateDBSecurityGroup":{ + "name":"CreateDBSecurityGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBSecurityGroupMessage"}, + "output":{ + "shape":"CreateDBSecurityGroupResult", + "resultWrapper":"CreateDBSecurityGroupResult" + }, + "errors":[ + {"shape":"DBSecurityGroupAlreadyExistsFault"}, + {"shape":"DBSecurityGroupQuotaExceededFault"}, + {"shape":"DBSecurityGroupNotSupportedFault"} + ] + }, + "CreateDBSnapshot":{ + "name":"CreateDBSnapshot", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBSnapshotMessage"}, + "output":{ + "shape":"CreateDBSnapshotResult", + "resultWrapper":"CreateDBSnapshotResult" + }, + "errors":[ + {"shape":"DBSnapshotAlreadyExistsFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"SnapshotQuotaExceededFault"} + ] + }, + "CreateDBSubnetGroup":{ + "name":"CreateDBSubnetGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBSubnetGroupMessage"}, + "output":{ + "shape":"CreateDBSubnetGroupResult", + "resultWrapper":"CreateDBSubnetGroupResult" + }, + "errors":[ + {"shape":"DBSubnetGroupAlreadyExistsFault"}, + {"shape":"DBSubnetGroupQuotaExceededFault"}, + {"shape":"DBSubnetQuotaExceededFault"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidSubnet"} + ] + }, + "CreateEventSubscription":{ + "name":"CreateEventSubscription", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateEventSubscriptionMessage"}, + "output":{ + "shape":"CreateEventSubscriptionResult", + "resultWrapper":"CreateEventSubscriptionResult" + }, + "errors":[ + {"shape":"EventSubscriptionQuotaExceededFault"}, + {"shape":"SubscriptionAlreadyExistFault"}, + {"shape":"SNSInvalidTopicFault"}, + {"shape":"SNSNoAuthorizationFault"}, + {"shape":"SNSTopicArnNotFoundFault"}, + {"shape":"SubscriptionCategoryNotFoundFault"}, + {"shape":"SourceNotFoundFault"} + ] + }, + "CreateOptionGroup":{ + "name":"CreateOptionGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateOptionGroupMessage"}, + "output":{ + "shape":"CreateOptionGroupResult", + "resultWrapper":"CreateOptionGroupResult" + }, + "errors":[ + {"shape":"OptionGroupAlreadyExistsFault"}, + {"shape":"OptionGroupQuotaExceededFault"} + ] + }, + "DeleteDBInstance":{ + "name":"DeleteDBInstance", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBInstanceMessage"}, + "output":{ + "shape":"DeleteDBInstanceResult", + "resultWrapper":"DeleteDBInstanceResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"DBSnapshotAlreadyExistsFault"}, + {"shape":"SnapshotQuotaExceededFault"} + ] + }, + "DeleteDBParameterGroup":{ + "name":"DeleteDBParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBParameterGroupMessage"}, + "errors":[ + {"shape":"InvalidDBParameterGroupStateFault"}, + {"shape":"DBParameterGroupNotFoundFault"} + ] + }, + "DeleteDBSecurityGroup":{ + "name":"DeleteDBSecurityGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBSecurityGroupMessage"}, + "errors":[ + {"shape":"InvalidDBSecurityGroupStateFault"}, + {"shape":"DBSecurityGroupNotFoundFault"} + ] + }, + "DeleteDBSnapshot":{ + "name":"DeleteDBSnapshot", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBSnapshotMessage"}, + "output":{ + "shape":"DeleteDBSnapshotResult", + "resultWrapper":"DeleteDBSnapshotResult" + }, + "errors":[ + {"shape":"InvalidDBSnapshotStateFault"}, + {"shape":"DBSnapshotNotFoundFault"} + ] + }, + "DeleteDBSubnetGroup":{ + "name":"DeleteDBSubnetGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBSubnetGroupMessage"}, + "errors":[ + {"shape":"InvalidDBSubnetGroupStateFault"}, + {"shape":"InvalidDBSubnetStateFault"}, + {"shape":"DBSubnetGroupNotFoundFault"} + ] + }, + "DeleteEventSubscription":{ + "name":"DeleteEventSubscription", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteEventSubscriptionMessage"}, + "output":{ + "shape":"DeleteEventSubscriptionResult", + "resultWrapper":"DeleteEventSubscriptionResult" + }, + "errors":[ + {"shape":"SubscriptionNotFoundFault"}, + {"shape":"InvalidEventSubscriptionStateFault"} + ] + }, + "DeleteOptionGroup":{ + "name":"DeleteOptionGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteOptionGroupMessage"}, + "errors":[ + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"InvalidOptionGroupStateFault"} + ] + }, + "DescribeDBEngineVersions":{ + "name":"DescribeDBEngineVersions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBEngineVersionsMessage"}, + "output":{ + "shape":"DBEngineVersionMessage", + "resultWrapper":"DescribeDBEngineVersionsResult" + } + }, + "DescribeDBInstances":{ + "name":"DescribeDBInstances", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBInstancesMessage"}, + "output":{ + "shape":"DBInstanceMessage", + "resultWrapper":"DescribeDBInstancesResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"} + ] + }, + "DescribeDBLogFiles":{ + "name":"DescribeDBLogFiles", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBLogFilesMessage"}, + "output":{ + "shape":"DescribeDBLogFilesResponse", + "resultWrapper":"DescribeDBLogFilesResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBInstanceNotReadyFault"} + ] + }, + "DescribeDBParameterGroups":{ + "name":"DescribeDBParameterGroups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBParameterGroupsMessage"}, + "output":{ + "shape":"DBParameterGroupsMessage", + "resultWrapper":"DescribeDBParameterGroupsResult" + }, + "errors":[ + {"shape":"DBParameterGroupNotFoundFault"} + ] + }, + "DescribeDBParameters":{ + "name":"DescribeDBParameters", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBParametersMessage"}, + "output":{ + "shape":"DBParameterGroupDetails", + "resultWrapper":"DescribeDBParametersResult" + }, + "errors":[ + {"shape":"DBParameterGroupNotFoundFault"} + ] + }, + "DescribeDBSecurityGroups":{ + "name":"DescribeDBSecurityGroups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBSecurityGroupsMessage"}, + "output":{ + "shape":"DBSecurityGroupMessage", + "resultWrapper":"DescribeDBSecurityGroupsResult" + }, + "errors":[ + {"shape":"DBSecurityGroupNotFoundFault"} + ] + }, + "DescribeDBSnapshots":{ + "name":"DescribeDBSnapshots", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBSnapshotsMessage"}, + "output":{ + "shape":"DBSnapshotMessage", + "resultWrapper":"DescribeDBSnapshotsResult" + }, + "errors":[ + {"shape":"DBSnapshotNotFoundFault"} + ] + }, + "DescribeDBSubnetGroups":{ + "name":"DescribeDBSubnetGroups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBSubnetGroupsMessage"}, + "output":{ + "shape":"DBSubnetGroupMessage", + "resultWrapper":"DescribeDBSubnetGroupsResult" + }, + "errors":[ + {"shape":"DBSubnetGroupNotFoundFault"} + ] + }, + "DescribeEngineDefaultParameters":{ + "name":"DescribeEngineDefaultParameters", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeEngineDefaultParametersMessage"}, + "output":{ + "shape":"DescribeEngineDefaultParametersResult", + "resultWrapper":"DescribeEngineDefaultParametersResult" + } + }, + "DescribeEventCategories":{ + "name":"DescribeEventCategories", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeEventCategoriesMessage"}, + "output":{ + "shape":"EventCategoriesMessage", + "resultWrapper":"DescribeEventCategoriesResult" + } + }, + "DescribeEventSubscriptions":{ + "name":"DescribeEventSubscriptions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeEventSubscriptionsMessage"}, + "output":{ + "shape":"EventSubscriptionsMessage", + "resultWrapper":"DescribeEventSubscriptionsResult" + }, + "errors":[ + {"shape":"SubscriptionNotFoundFault"} + ] + }, + "DescribeEvents":{ + "name":"DescribeEvents", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeEventsMessage"}, + "output":{ + "shape":"EventsMessage", + "resultWrapper":"DescribeEventsResult" + } + }, + "DescribeOptionGroupOptions":{ + "name":"DescribeOptionGroupOptions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeOptionGroupOptionsMessage"}, + "output":{ + "shape":"OptionGroupOptionsMessage", + "resultWrapper":"DescribeOptionGroupOptionsResult" + } + }, + "DescribeOptionGroups":{ + "name":"DescribeOptionGroups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeOptionGroupsMessage"}, + "output":{ + "shape":"OptionGroups", + "resultWrapper":"DescribeOptionGroupsResult" + }, + "errors":[ + {"shape":"OptionGroupNotFoundFault"} + ] + }, + "DescribeOrderableDBInstanceOptions":{ + "name":"DescribeOrderableDBInstanceOptions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeOrderableDBInstanceOptionsMessage"}, + "output":{ + "shape":"OrderableDBInstanceOptionsMessage", + "resultWrapper":"DescribeOrderableDBInstanceOptionsResult" + } + }, + "DescribeReservedDBInstances":{ + "name":"DescribeReservedDBInstances", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeReservedDBInstancesMessage"}, + "output":{ + "shape":"ReservedDBInstanceMessage", + "resultWrapper":"DescribeReservedDBInstancesResult" + }, + "errors":[ + {"shape":"ReservedDBInstanceNotFoundFault"} + ] + }, + "DescribeReservedDBInstancesOfferings":{ + "name":"DescribeReservedDBInstancesOfferings", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeReservedDBInstancesOfferingsMessage"}, + "output":{ + "shape":"ReservedDBInstancesOfferingMessage", + "resultWrapper":"DescribeReservedDBInstancesOfferingsResult" + }, + "errors":[ + {"shape":"ReservedDBInstancesOfferingNotFoundFault"} + ] + }, + "DownloadDBLogFilePortion":{ + "name":"DownloadDBLogFilePortion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DownloadDBLogFilePortionMessage"}, + "output":{ + "shape":"DownloadDBLogFilePortionDetails", + "resultWrapper":"DownloadDBLogFilePortionResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBInstanceNotReadyFault"}, + {"shape":"DBLogFileNotFoundFault"} + ] + }, + "ListTagsForResource":{ + "name":"ListTagsForResource", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListTagsForResourceMessage"}, + "output":{ + "shape":"TagListMessage", + "resultWrapper":"ListTagsForResourceResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBSnapshotNotFoundFault"} + ] + }, + "ModifyDBInstance":{ + "name":"ModifyDBInstance", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBInstanceMessage"}, + "output":{ + "shape":"ModifyDBInstanceResult", + "resultWrapper":"ModifyDBInstanceResult" + }, + "errors":[ + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"InvalidDBSecurityGroupStateFault"}, + {"shape":"DBInstanceAlreadyExistsFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBSecurityGroupNotFoundFault"}, + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"ProvisionedIopsNotAvailableInAZFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"DBUpgradeDependencyFailureFault"}, + {"shape":"StorageTypeNotSupportedFault"}, + {"shape":"AuthorizationNotFoundFault"} + ] + }, + "ModifyDBParameterGroup":{ + "name":"ModifyDBParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBParameterGroupMessage"}, + "output":{ + "shape":"DBParameterGroupNameMessage", + "resultWrapper":"ModifyDBParameterGroupResult" + }, + "errors":[ + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"InvalidDBParameterGroupStateFault"} + ] + }, + "ModifyDBSubnetGroup":{ + "name":"ModifyDBSubnetGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBSubnetGroupMessage"}, + "output":{ + "shape":"ModifyDBSubnetGroupResult", + "resultWrapper":"ModifyDBSubnetGroupResult" + }, + "errors":[ + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"DBSubnetQuotaExceededFault"}, + {"shape":"SubnetAlreadyInUse"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidSubnet"} + ] + }, + "ModifyEventSubscription":{ + "name":"ModifyEventSubscription", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyEventSubscriptionMessage"}, + "output":{ + "shape":"ModifyEventSubscriptionResult", + "resultWrapper":"ModifyEventSubscriptionResult" + }, + "errors":[ + {"shape":"EventSubscriptionQuotaExceededFault"}, + {"shape":"SubscriptionNotFoundFault"}, + {"shape":"SNSInvalidTopicFault"}, + {"shape":"SNSNoAuthorizationFault"}, + {"shape":"SNSTopicArnNotFoundFault"}, + {"shape":"SubscriptionCategoryNotFoundFault"} + ] + }, + "ModifyOptionGroup":{ + "name":"ModifyOptionGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyOptionGroupMessage"}, + "output":{ + "shape":"ModifyOptionGroupResult", + "resultWrapper":"ModifyOptionGroupResult" + }, + "errors":[ + {"shape":"InvalidOptionGroupStateFault"}, + {"shape":"OptionGroupNotFoundFault"} + ] + }, + "PromoteReadReplica":{ + "name":"PromoteReadReplica", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"PromoteReadReplicaMessage"}, + "output":{ + "shape":"PromoteReadReplicaResult", + "resultWrapper":"PromoteReadReplicaResult" + }, + "errors":[ + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"DBInstanceNotFoundFault"} + ] + }, + "PurchaseReservedDBInstancesOffering":{ + "name":"PurchaseReservedDBInstancesOffering", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"PurchaseReservedDBInstancesOfferingMessage"}, + "output":{ + "shape":"PurchaseReservedDBInstancesOfferingResult", + "resultWrapper":"PurchaseReservedDBInstancesOfferingResult" + }, + "errors":[ + {"shape":"ReservedDBInstancesOfferingNotFoundFault"}, + {"shape":"ReservedDBInstanceAlreadyExistsFault"}, + {"shape":"ReservedDBInstanceQuotaExceededFault"} + ] + }, + "RebootDBInstance":{ + "name":"RebootDBInstance", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RebootDBInstanceMessage"}, + "output":{ + "shape":"RebootDBInstanceResult", + "resultWrapper":"RebootDBInstanceResult" + }, + "errors":[ + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"DBInstanceNotFoundFault"} + ] + }, + "RemoveSourceIdentifierFromSubscription":{ + "name":"RemoveSourceIdentifierFromSubscription", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RemoveSourceIdentifierFromSubscriptionMessage"}, + "output":{ + "shape":"RemoveSourceIdentifierFromSubscriptionResult", + "resultWrapper":"RemoveSourceIdentifierFromSubscriptionResult" + }, + "errors":[ + {"shape":"SubscriptionNotFoundFault"}, + {"shape":"SourceNotFoundFault"} + ] + }, + "RemoveTagsFromResource":{ + "name":"RemoveTagsFromResource", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RemoveTagsFromResourceMessage"}, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBSnapshotNotFoundFault"} + ] + }, + "ResetDBParameterGroup":{ + "name":"ResetDBParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ResetDBParameterGroupMessage"}, + "output":{ + "shape":"DBParameterGroupNameMessage", + "resultWrapper":"ResetDBParameterGroupResult" + }, + "errors":[ + {"shape":"InvalidDBParameterGroupStateFault"}, + {"shape":"DBParameterGroupNotFoundFault"} + ] + }, + "RestoreDBInstanceFromDBSnapshot":{ + "name":"RestoreDBInstanceFromDBSnapshot", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RestoreDBInstanceFromDBSnapshotMessage"}, + "output":{ + "shape":"RestoreDBInstanceFromDBSnapshotResult", + "resultWrapper":"RestoreDBInstanceFromDBSnapshotResult" + }, + "errors":[ + {"shape":"DBInstanceAlreadyExistsFault"}, + {"shape":"DBSnapshotNotFoundFault"}, + {"shape":"InstanceQuotaExceededFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"}, + {"shape":"InvalidDBSnapshotStateFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"InvalidRestoreFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidSubnet"}, + {"shape":"ProvisionedIopsNotAvailableInAZFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"StorageTypeNotSupportedFault"}, + {"shape":"AuthorizationNotFoundFault"} + ] + }, + "RestoreDBInstanceToPointInTime":{ + "name":"RestoreDBInstanceToPointInTime", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RestoreDBInstanceToPointInTimeMessage"}, + "output":{ + "shape":"RestoreDBInstanceToPointInTimeResult", + "resultWrapper":"RestoreDBInstanceToPointInTimeResult" + }, + "errors":[ + {"shape":"DBInstanceAlreadyExistsFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InstanceQuotaExceededFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"PointInTimeRestoreNotEnabledFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"InvalidRestoreFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidSubnet"}, + {"shape":"ProvisionedIopsNotAvailableInAZFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"StorageTypeNotSupportedFault"}, + {"shape":"AuthorizationNotFoundFault"} + ] + }, + "RevokeDBSecurityGroupIngress":{ + "name":"RevokeDBSecurityGroupIngress", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RevokeDBSecurityGroupIngressMessage"}, + "output":{ + "shape":"RevokeDBSecurityGroupIngressResult", + "resultWrapper":"RevokeDBSecurityGroupIngressResult" + }, + "errors":[ + {"shape":"DBSecurityGroupNotFoundFault"}, + {"shape":"AuthorizationNotFoundFault"}, + {"shape":"InvalidDBSecurityGroupStateFault"} + ] + } + }, + "shapes":{ + "AddSourceIdentifierToSubscriptionMessage":{ + "type":"structure", + "required":[ + "SubscriptionName", + "SourceIdentifier" + ], + "members":{ + "SubscriptionName":{"shape":"String"}, + "SourceIdentifier":{"shape":"String"} + } + }, + "AddSourceIdentifierToSubscriptionResult":{ + "type":"structure", + "members":{ + "EventSubscription":{"shape":"EventSubscription"} + } + }, + "AddTagsToResourceMessage":{ + "type":"structure", + "required":[ + "ResourceName", + "Tags" + ], + "members":{ + "ResourceName":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "ApplyMethod":{ + "type":"string", + "enum":[ + "immediate", + "pending-reboot" + ] + }, + "AuthorizationAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"AuthorizationAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "AuthorizationNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"AuthorizationNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "AuthorizationQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"AuthorizationQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "AuthorizeDBSecurityGroupIngressMessage":{ + "type":"structure", + "required":["DBSecurityGroupName"], + "members":{ + "DBSecurityGroupName":{"shape":"String"}, + "CIDRIP":{"shape":"String"}, + "EC2SecurityGroupName":{"shape":"String"}, + "EC2SecurityGroupId":{"shape":"String"}, + "EC2SecurityGroupOwnerId":{"shape":"String"} + } + }, + "AuthorizeDBSecurityGroupIngressResult":{ + "type":"structure", + "members":{ + "DBSecurityGroup":{"shape":"DBSecurityGroup"} + } + }, + "AvailabilityZone":{ + "type":"structure", + "members":{ + "Name":{"shape":"String"} + }, + "wrapper":true + }, + "AvailabilityZoneList":{ + "type":"list", + "member":{ + "shape":"AvailabilityZone", + "locationName":"AvailabilityZone" + } + }, + "Boolean":{"type":"boolean"}, + "BooleanOptional":{"type":"boolean"}, + "CharacterSet":{ + "type":"structure", + "members":{ + "CharacterSetName":{"shape":"String"}, + "CharacterSetDescription":{"shape":"String"} + } + }, + "CopyDBParameterGroupMessage":{ + "type":"structure", + "required":[ + "SourceDBParameterGroupIdentifier", + "TargetDBParameterGroupIdentifier", + "TargetDBParameterGroupDescription" + ], + "members":{ + "SourceDBParameterGroupIdentifier":{"shape":"String"}, + "TargetDBParameterGroupIdentifier":{"shape":"String"}, + "TargetDBParameterGroupDescription":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CopyDBParameterGroupResult":{ + "type":"structure", + "members":{ + "DBParameterGroup":{"shape":"DBParameterGroup"} + } + }, + "CopyDBSnapshotMessage":{ + "type":"structure", + "required":[ + "SourceDBSnapshotIdentifier", + "TargetDBSnapshotIdentifier" + ], + "members":{ + "SourceDBSnapshotIdentifier":{"shape":"String"}, + "TargetDBSnapshotIdentifier":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CopyDBSnapshotResult":{ + "type":"structure", + "members":{ + "DBSnapshot":{"shape":"DBSnapshot"} + } + }, + "CopyOptionGroupMessage":{ + "type":"structure", + "required":[ + "SourceOptionGroupIdentifier", + "TargetOptionGroupIdentifier", + "TargetOptionGroupDescription" + ], + "members":{ + "SourceOptionGroupIdentifier":{"shape":"String"}, + "TargetOptionGroupIdentifier":{"shape":"String"}, + "TargetOptionGroupDescription":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CopyOptionGroupResult":{ + "type":"structure", + "members":{ + "OptionGroup":{"shape":"OptionGroup"} + } + }, + "CreateDBInstanceMessage":{ + "type":"structure", + "required":[ + "DBInstanceIdentifier", + "AllocatedStorage", + "DBInstanceClass", + "Engine", + "MasterUsername", + "MasterUserPassword" + ], + "members":{ + "DBName":{"shape":"String"}, + "DBInstanceIdentifier":{"shape":"String"}, + "AllocatedStorage":{"shape":"IntegerOptional"}, + "DBInstanceClass":{"shape":"String"}, + "Engine":{"shape":"String"}, + "MasterUsername":{"shape":"String"}, + "MasterUserPassword":{"shape":"SensitiveString"}, + "DBSecurityGroups":{"shape":"DBSecurityGroupNameList"}, + "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"}, + "AvailabilityZone":{"shape":"String"}, + "DBSubnetGroupName":{"shape":"String"}, + "PreferredMaintenanceWindow":{"shape":"String"}, + "DBParameterGroupName":{"shape":"String"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "PreferredBackupWindow":{"shape":"String"}, + "Port":{"shape":"IntegerOptional"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "EngineVersion":{"shape":"String"}, + "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"}, + "LicenseModel":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "OptionGroupName":{"shape":"String"}, + "CharacterSetName":{"shape":"String"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "Tags":{"shape":"TagList"}, + "StorageType":{"shape":"String"}, + "TdeCredentialArn":{"shape":"String"}, + "TdeCredentialPassword":{"shape":"SensitiveString"} + } + }, + "CreateDBInstanceReadReplicaMessage":{ + "type":"structure", + "required":[ + "DBInstanceIdentifier", + "SourceDBInstanceIdentifier" + ], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "SourceDBInstanceIdentifier":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "AvailabilityZone":{"shape":"String"}, + "Port":{"shape":"IntegerOptional"}, + "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"}, + "Iops":{"shape":"IntegerOptional"}, + "OptionGroupName":{"shape":"String"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "Tags":{"shape":"TagList"}, + "DBSubnetGroupName":{"shape":"String"}, + "StorageType":{"shape":"String"} + } + }, + "CreateDBInstanceReadReplicaResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "CreateDBInstanceResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "CreateDBParameterGroupMessage":{ + "type":"structure", + "required":[ + "DBParameterGroupName", + "DBParameterGroupFamily", + "Description" + ], + "members":{ + "DBParameterGroupName":{"shape":"String"}, + "DBParameterGroupFamily":{"shape":"String"}, + "Description":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateDBParameterGroupResult":{ + "type":"structure", + "members":{ + "DBParameterGroup":{"shape":"DBParameterGroup"} + } + }, + "CreateDBSecurityGroupMessage":{ + "type":"structure", + "required":[ + "DBSecurityGroupName", + "DBSecurityGroupDescription" + ], + "members":{ + "DBSecurityGroupName":{"shape":"String"}, + "DBSecurityGroupDescription":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateDBSecurityGroupResult":{ + "type":"structure", + "members":{ + "DBSecurityGroup":{"shape":"DBSecurityGroup"} + } + }, + "CreateDBSnapshotMessage":{ + "type":"structure", + "required":[ + "DBSnapshotIdentifier", + "DBInstanceIdentifier" + ], + "members":{ + "DBSnapshotIdentifier":{"shape":"String"}, + "DBInstanceIdentifier":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateDBSnapshotResult":{ + "type":"structure", + "members":{ + "DBSnapshot":{"shape":"DBSnapshot"} + } + }, + "CreateDBSubnetGroupMessage":{ + "type":"structure", + "required":[ + "DBSubnetGroupName", + "DBSubnetGroupDescription", + "SubnetIds" + ], + "members":{ + "DBSubnetGroupName":{"shape":"String"}, + "DBSubnetGroupDescription":{"shape":"String"}, + "SubnetIds":{"shape":"SubnetIdentifierList"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateDBSubnetGroupResult":{ + "type":"structure", + "members":{ + "DBSubnetGroup":{"shape":"DBSubnetGroup"} + } + }, + "CreateEventSubscriptionMessage":{ + "type":"structure", + "required":[ + "SubscriptionName", + "SnsTopicArn" + ], + "members":{ + "SubscriptionName":{"shape":"String"}, + "SnsTopicArn":{"shape":"String"}, + "SourceType":{"shape":"String"}, + "EventCategories":{"shape":"EventCategoriesList"}, + "SourceIds":{"shape":"SourceIdsList"}, + "Enabled":{"shape":"BooleanOptional"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateEventSubscriptionResult":{ + "type":"structure", + "members":{ + "EventSubscription":{"shape":"EventSubscription"} + } + }, + "CreateOptionGroupMessage":{ + "type":"structure", + "required":[ + "OptionGroupName", + "EngineName", + "MajorEngineVersion", + "OptionGroupDescription" + ], + "members":{ + "OptionGroupName":{"shape":"String"}, + "EngineName":{"shape":"String"}, + "MajorEngineVersion":{"shape":"String"}, + "OptionGroupDescription":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateOptionGroupResult":{ + "type":"structure", + "members":{ + "OptionGroup":{"shape":"OptionGroup"} + } + }, + "DBEngineVersion":{ + "type":"structure", + "members":{ + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "DBParameterGroupFamily":{"shape":"String"}, + "DBEngineDescription":{"shape":"String"}, + "DBEngineVersionDescription":{"shape":"String"}, + "DefaultCharacterSet":{"shape":"CharacterSet"}, + "SupportedCharacterSets":{"shape":"SupportedCharacterSetsList"} + } + }, + "DBEngineVersionList":{ + "type":"list", + "member":{ + "shape":"DBEngineVersion", + "locationName":"DBEngineVersion" + } + }, + "DBEngineVersionMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBEngineVersions":{"shape":"DBEngineVersionList"} + } + }, + "DBInstance":{ + "type":"structure", + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "Engine":{"shape":"String"}, + "DBInstanceStatus":{"shape":"String"}, + "MasterUsername":{"shape":"String"}, + "DBName":{"shape":"String"}, + "Endpoint":{"shape":"Endpoint"}, + "AllocatedStorage":{"shape":"Integer"}, + "InstanceCreateTime":{"shape":"TStamp"}, + "PreferredBackupWindow":{"shape":"String"}, + "BackupRetentionPeriod":{"shape":"Integer"}, + "DBSecurityGroups":{"shape":"DBSecurityGroupMembershipList"}, + "VpcSecurityGroups":{"shape":"VpcSecurityGroupMembershipList"}, + "DBParameterGroups":{"shape":"DBParameterGroupStatusList"}, + "AvailabilityZone":{"shape":"String"}, + "DBSubnetGroup":{"shape":"DBSubnetGroup"}, + "PreferredMaintenanceWindow":{"shape":"String"}, + "PendingModifiedValues":{"shape":"PendingModifiedValues"}, + "LatestRestorableTime":{"shape":"TStamp"}, + "MultiAZ":{"shape":"Boolean"}, + "EngineVersion":{"shape":"String"}, + "AutoMinorVersionUpgrade":{"shape":"Boolean"}, + "ReadReplicaSourceDBInstanceIdentifier":{"shape":"String"}, + "ReadReplicaDBInstanceIdentifiers":{"shape":"ReadReplicaDBInstanceIdentifierList"}, + "LicenseModel":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "OptionGroupMemberships":{"shape":"OptionGroupMembershipList"}, + "CharacterSetName":{"shape":"String"}, + "SecondaryAvailabilityZone":{"shape":"String"}, + "PubliclyAccessible":{"shape":"Boolean"}, + "StatusInfos":{"shape":"DBInstanceStatusInfoList"}, + "StorageType":{"shape":"String"}, + "TdeCredentialArn":{"shape":"String"} + }, + "wrapper":true + }, + "DBInstanceAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBInstanceAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBInstanceList":{ + "type":"list", + "member":{ + "shape":"DBInstance", + "locationName":"DBInstance" + } + }, + "DBInstanceMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBInstances":{"shape":"DBInstanceList"} + } + }, + "DBInstanceNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBInstanceNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBInstanceNotReadyFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBInstanceNotReady", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBInstanceStatusInfo":{ + "type":"structure", + "members":{ + "StatusType":{"shape":"String"}, + "Normal":{"shape":"Boolean"}, + "Status":{"shape":"String"}, + "Message":{"shape":"String"} + } + }, + "DBInstanceStatusInfoList":{ + "type":"list", + "member":{ + "shape":"DBInstanceStatusInfo", + "locationName":"DBInstanceStatusInfo" + } + }, + "DBLogFileNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBLogFileNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBParameterGroup":{ + "type":"structure", + "members":{ + "DBParameterGroupName":{"shape":"String"}, + "DBParameterGroupFamily":{"shape":"String"}, + "Description":{"shape":"String"} + }, + "wrapper":true + }, + "DBParameterGroupAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBParameterGroupAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBParameterGroupDetails":{ + "type":"structure", + "members":{ + "Parameters":{"shape":"ParametersList"}, + "Marker":{"shape":"String"} + } + }, + "DBParameterGroupList":{ + "type":"list", + "member":{ + "shape":"DBParameterGroup", + "locationName":"DBParameterGroup" + } + }, + "DBParameterGroupNameMessage":{ + "type":"structure", + "members":{ + "DBParameterGroupName":{"shape":"String"} + } + }, + "DBParameterGroupNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBParameterGroupNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBParameterGroupQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBParameterGroupQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBParameterGroupStatus":{ + "type":"structure", + "members":{ + "DBParameterGroupName":{"shape":"String"}, + "ParameterApplyStatus":{"shape":"String"} + } + }, + "DBParameterGroupStatusList":{ + "type":"list", + "member":{ + "shape":"DBParameterGroupStatus", + "locationName":"DBParameterGroup" + } + }, + "DBParameterGroupsMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBParameterGroups":{"shape":"DBParameterGroupList"} + } + }, + "DBSecurityGroup":{ + "type":"structure", + "members":{ + "OwnerId":{"shape":"String"}, + "DBSecurityGroupName":{"shape":"String"}, + "DBSecurityGroupDescription":{"shape":"String"}, + "VpcId":{"shape":"String"}, + "EC2SecurityGroups":{"shape":"EC2SecurityGroupList"}, + "IPRanges":{"shape":"IPRangeList"} + }, + "wrapper":true + }, + "DBSecurityGroupAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSecurityGroupAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSecurityGroupMembership":{ + "type":"structure", + "members":{ + "DBSecurityGroupName":{"shape":"String"}, + "Status":{"shape":"String"} + } + }, + "DBSecurityGroupMembershipList":{ + "type":"list", + "member":{ + "shape":"DBSecurityGroupMembership", + "locationName":"DBSecurityGroup" + } + }, + "DBSecurityGroupMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBSecurityGroups":{"shape":"DBSecurityGroups"} + } + }, + "DBSecurityGroupNameList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"DBSecurityGroupName" + } + }, + "DBSecurityGroupNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSecurityGroupNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBSecurityGroupNotSupportedFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSecurityGroupNotSupported", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSecurityGroupQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"QuotaExceeded.DBSecurityGroup", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSecurityGroups":{ + "type":"list", + "member":{ + "shape":"DBSecurityGroup", + "locationName":"DBSecurityGroup" + } + }, + "DBSnapshot":{ + "type":"structure", + "members":{ + "DBSnapshotIdentifier":{"shape":"String"}, + "DBInstanceIdentifier":{"shape":"String"}, + "SnapshotCreateTime":{"shape":"TStamp"}, + "Engine":{"shape":"String"}, + "AllocatedStorage":{"shape":"Integer"}, + "Status":{"shape":"String"}, + "Port":{"shape":"Integer"}, + "AvailabilityZone":{"shape":"String"}, + "VpcId":{"shape":"String"}, + "InstanceCreateTime":{"shape":"TStamp"}, + "MasterUsername":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "LicenseModel":{"shape":"String"}, + "SnapshotType":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "OptionGroupName":{"shape":"String"}, + "PercentProgress":{"shape":"Integer"}, + "SourceRegion":{"shape":"String"}, + "StorageType":{"shape":"String"}, + "TdeCredentialArn":{"shape":"String"} + }, + "wrapper":true + }, + "DBSnapshotAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSnapshotAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSnapshotList":{ + "type":"list", + "member":{ + "shape":"DBSnapshot", + "locationName":"DBSnapshot" + } + }, + "DBSnapshotMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBSnapshots":{"shape":"DBSnapshotList"} + } + }, + "DBSnapshotNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSnapshotNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBSubnetGroup":{ + "type":"structure", + "members":{ + "DBSubnetGroupName":{"shape":"String"}, + "DBSubnetGroupDescription":{"shape":"String"}, + "VpcId":{"shape":"String"}, + "SubnetGroupStatus":{"shape":"String"}, + "Subnets":{"shape":"SubnetList"} + }, + "wrapper":true + }, + "DBSubnetGroupAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSubnetGroupAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSubnetGroupDoesNotCoverEnoughAZs":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSubnetGroupDoesNotCoverEnoughAZs", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSubnetGroupMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBSubnetGroups":{"shape":"DBSubnetGroups"} + } + }, + "DBSubnetGroupNotAllowedFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSubnetGroupNotAllowedFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSubnetGroupNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSubnetGroupNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBSubnetGroupQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSubnetGroupQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSubnetGroups":{ + "type":"list", + "member":{ + "shape":"DBSubnetGroup", + "locationName":"DBSubnetGroup" + } + }, + "DBSubnetQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSubnetQuotaExceededFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBUpgradeDependencyFailureFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBUpgradeDependencyFailure", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DeleteDBInstanceMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "SkipFinalSnapshot":{"shape":"Boolean"}, + "FinalDBSnapshotIdentifier":{"shape":"String"} + } + }, + "DeleteDBInstanceResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "DeleteDBParameterGroupMessage":{ + "type":"structure", + "required":["DBParameterGroupName"], + "members":{ + "DBParameterGroupName":{"shape":"String"} + } + }, + "DeleteDBSecurityGroupMessage":{ + "type":"structure", + "required":["DBSecurityGroupName"], + "members":{ + "DBSecurityGroupName":{"shape":"String"} + } + }, + "DeleteDBSnapshotMessage":{ + "type":"structure", + "required":["DBSnapshotIdentifier"], + "members":{ + "DBSnapshotIdentifier":{"shape":"String"} + } + }, + "DeleteDBSnapshotResult":{ + "type":"structure", + "members":{ + "DBSnapshot":{"shape":"DBSnapshot"} + } + }, + "DeleteDBSubnetGroupMessage":{ + "type":"structure", + "required":["DBSubnetGroupName"], + "members":{ + "DBSubnetGroupName":{"shape":"String"} + } + }, + "DeleteEventSubscriptionMessage":{ + "type":"structure", + "required":["SubscriptionName"], + "members":{ + "SubscriptionName":{"shape":"String"} + } + }, + "DeleteEventSubscriptionResult":{ + "type":"structure", + "members":{ + "EventSubscription":{"shape":"EventSubscription"} + } + }, + "DeleteOptionGroupMessage":{ + "type":"structure", + "required":["OptionGroupName"], + "members":{ + "OptionGroupName":{"shape":"String"} + } + }, + "DescribeDBEngineVersionsMessage":{ + "type":"structure", + "members":{ + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "DBParameterGroupFamily":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"}, + "DefaultOnly":{"shape":"Boolean"}, + "ListSupportedCharacterSets":{"shape":"BooleanOptional"} + } + }, + "DescribeDBInstancesMessage":{ + "type":"structure", + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBLogFilesDetails":{ + "type":"structure", + "members":{ + "LogFileName":{"shape":"String"}, + "LastWritten":{"shape":"Long"}, + "Size":{"shape":"Long"} + } + }, + "DescribeDBLogFilesList":{ + "type":"list", + "member":{ + "shape":"DescribeDBLogFilesDetails", + "locationName":"DescribeDBLogFilesDetails" + } + }, + "DescribeDBLogFilesMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "FilenameContains":{"shape":"String"}, + "FileLastWritten":{"shape":"Long"}, + "FileSize":{"shape":"Long"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBLogFilesResponse":{ + "type":"structure", + "members":{ + "DescribeDBLogFiles":{"shape":"DescribeDBLogFilesList"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBParameterGroupsMessage":{ + "type":"structure", + "members":{ + "DBParameterGroupName":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBParametersMessage":{ + "type":"structure", + "required":["DBParameterGroupName"], + "members":{ + "DBParameterGroupName":{"shape":"String"}, + "Source":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBSecurityGroupsMessage":{ + "type":"structure", + "members":{ + "DBSecurityGroupName":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBSnapshotsMessage":{ + "type":"structure", + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "DBSnapshotIdentifier":{"shape":"String"}, + "SnapshotType":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBSubnetGroupsMessage":{ + "type":"structure", + "members":{ + "DBSubnetGroupName":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeEngineDefaultParametersMessage":{ + "type":"structure", + "required":["DBParameterGroupFamily"], + "members":{ + "DBParameterGroupFamily":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeEngineDefaultParametersResult":{ + "type":"structure", + "members":{ + "EngineDefaults":{"shape":"EngineDefaults"} + } + }, + "DescribeEventCategoriesMessage":{ + "type":"structure", + "members":{ + "SourceType":{"shape":"String"}, + "Filters":{"shape":"FilterList"} + } + }, + "DescribeEventSubscriptionsMessage":{ + "type":"structure", + "members":{ + "SubscriptionName":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeEventsMessage":{ + "type":"structure", + "members":{ + "SourceIdentifier":{"shape":"String"}, + "SourceType":{"shape":"SourceType"}, + "StartTime":{"shape":"TStamp"}, + "EndTime":{"shape":"TStamp"}, + "Duration":{"shape":"IntegerOptional"}, + "EventCategories":{"shape":"EventCategoriesList"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeOptionGroupOptionsMessage":{ + "type":"structure", + "required":["EngineName"], + "members":{ + "EngineName":{"shape":"String"}, + "MajorEngineVersion":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeOptionGroupsMessage":{ + "type":"structure", + "members":{ + "OptionGroupName":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "Marker":{"shape":"String"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "EngineName":{"shape":"String"}, + "MajorEngineVersion":{"shape":"String"} + } + }, + "DescribeOrderableDBInstanceOptionsMessage":{ + "type":"structure", + "required":["Engine"], + "members":{ + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "LicenseModel":{"shape":"String"}, + "Vpc":{"shape":"BooleanOptional"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeReservedDBInstancesMessage":{ + "type":"structure", + "members":{ + "ReservedDBInstanceId":{"shape":"String"}, + "ReservedDBInstancesOfferingId":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "Duration":{"shape":"String"}, + "ProductDescription":{"shape":"String"}, + "OfferingType":{"shape":"String"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeReservedDBInstancesOfferingsMessage":{ + "type":"structure", + "members":{ + "ReservedDBInstancesOfferingId":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "Duration":{"shape":"String"}, + "ProductDescription":{"shape":"String"}, + "OfferingType":{"shape":"String"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "Double":{"type":"double"}, + "DownloadDBLogFilePortionDetails":{ + "type":"structure", + "members":{ + "LogFileData":{"shape":"SensitiveString"}, + "Marker":{"shape":"String"}, + "AdditionalDataPending":{"shape":"Boolean"} + } + }, + "DownloadDBLogFilePortionMessage":{ + "type":"structure", + "required":[ + "DBInstanceIdentifier", + "LogFileName" + ], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "LogFileName":{"shape":"String"}, + "Marker":{"shape":"String"}, + "NumberOfLines":{"shape":"Integer"} + } + }, + "EC2SecurityGroup":{ + "type":"structure", + "members":{ + "Status":{"shape":"String"}, + "EC2SecurityGroupName":{"shape":"String"}, + "EC2SecurityGroupId":{"shape":"String"}, + "EC2SecurityGroupOwnerId":{"shape":"String"} + } + }, + "EC2SecurityGroupList":{ + "type":"list", + "member":{ + "shape":"EC2SecurityGroup", + "locationName":"EC2SecurityGroup" + } + }, + "Endpoint":{ + "type":"structure", + "members":{ + "Address":{"shape":"String"}, + "Port":{"shape":"Integer"} + } + }, + "EngineDefaults":{ + "type":"structure", + "members":{ + "DBParameterGroupFamily":{"shape":"String"}, + "Marker":{"shape":"String"}, + "Parameters":{"shape":"ParametersList"} + }, + "wrapper":true + }, + "Event":{ + "type":"structure", + "members":{ + "SourceIdentifier":{"shape":"String"}, + "SourceType":{"shape":"SourceType"}, + "Message":{"shape":"String"}, + "EventCategories":{"shape":"EventCategoriesList"}, + "Date":{"shape":"TStamp"} + } + }, + "EventCategoriesList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"EventCategory" + } + }, + "EventCategoriesMap":{ + "type":"structure", + "members":{ + "SourceType":{"shape":"String"}, + "EventCategories":{"shape":"EventCategoriesList"} + }, + "wrapper":true + }, + "EventCategoriesMapList":{ + "type":"list", + "member":{ + "shape":"EventCategoriesMap", + "locationName":"EventCategoriesMap" + } + }, + "EventCategoriesMessage":{ + "type":"structure", + "members":{ + "EventCategoriesMapList":{"shape":"EventCategoriesMapList"} + } + }, + "EventList":{ + "type":"list", + "member":{ + "shape":"Event", + "locationName":"Event" + } + }, + "EventSubscription":{ + "type":"structure", + "members":{ + "CustomerAwsId":{"shape":"String"}, + "CustSubscriptionId":{"shape":"String"}, + "SnsTopicArn":{"shape":"String"}, + "Status":{"shape":"String"}, + "SubscriptionCreationTime":{"shape":"String"}, + "SourceType":{"shape":"String"}, + "SourceIdsList":{"shape":"SourceIdsList"}, + "EventCategoriesList":{"shape":"EventCategoriesList"}, + "Enabled":{"shape":"Boolean"} + }, + "wrapper":true + }, + "EventSubscriptionQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"EventSubscriptionQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "EventSubscriptionsList":{ + "type":"list", + "member":{ + "shape":"EventSubscription", + "locationName":"EventSubscription" + } + }, + "EventSubscriptionsMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "EventSubscriptionsList":{"shape":"EventSubscriptionsList"} + } + }, + "EventsMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "Events":{"shape":"EventList"} + } + }, + "Filter":{ + "type":"structure", + "required":[ + "Name", + "Values" + ], + "members":{ + "Name":{"shape":"String"}, + "Values":{"shape":"FilterValueList"} + } + }, + "FilterList":{ + "type":"list", + "member":{ + "shape":"Filter", + "locationName":"Filter" + } + }, + "FilterValueList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"Value" + } + }, + "IPRange":{ + "type":"structure", + "members":{ + "Status":{"shape":"String"}, + "CIDRIP":{"shape":"String"} + } + }, + "IPRangeList":{ + "type":"list", + "member":{ + "shape":"IPRange", + "locationName":"IPRange" + } + }, + "InstanceQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InstanceQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InsufficientDBInstanceCapacityFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InsufficientDBInstanceCapacity", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "Integer":{"type":"integer"}, + "IntegerOptional":{"type":"integer"}, + "InvalidDBInstanceStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBInstanceState", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBParameterGroupStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBParameterGroupState", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBSecurityGroupStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBSecurityGroupState", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBSnapshotStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBSnapshotState", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBSubnetGroupFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBSubnetGroupFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBSubnetGroupStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBSubnetGroupStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBSubnetStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBSubnetStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidEventSubscriptionStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidEventSubscriptionState", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidOptionGroupStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidOptionGroupStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidRestoreFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidRestoreFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidSubnet":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidSubnet", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidVPCNetworkStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidVPCNetworkStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "KeyList":{ + "type":"list", + "member":{"shape":"String"} + }, + "ListTagsForResourceMessage":{ + "type":"structure", + "required":["ResourceName"], + "members":{ + "ResourceName":{"shape":"String"}, + "Filters":{"shape":"FilterList"} + } + }, + "Long":{"type":"long"}, + "ModifyDBInstanceMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "AllocatedStorage":{"shape":"IntegerOptional"}, + "DBInstanceClass":{"shape":"String"}, + "DBSecurityGroups":{"shape":"DBSecurityGroupNameList"}, + "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"}, + "ApplyImmediately":{"shape":"Boolean"}, + "MasterUserPassword":{"shape":"SensitiveString"}, + "DBParameterGroupName":{"shape":"String"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "PreferredBackupWindow":{"shape":"String"}, + "PreferredMaintenanceWindow":{"shape":"String"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "EngineVersion":{"shape":"String"}, + "AllowMajorVersionUpgrade":{"shape":"Boolean"}, + "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"}, + "Iops":{"shape":"IntegerOptional"}, + "OptionGroupName":{"shape":"String"}, + "NewDBInstanceIdentifier":{"shape":"String"}, + "StorageType":{"shape":"String"}, + "TdeCredentialArn":{"shape":"String"}, + "TdeCredentialPassword":{"shape":"SensitiveString"} + } + }, + "ModifyDBInstanceResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "ModifyDBParameterGroupMessage":{ + "type":"structure", + "required":[ + "DBParameterGroupName", + "Parameters" + ], + "members":{ + "DBParameterGroupName":{"shape":"String"}, + "Parameters":{"shape":"ParametersList"} + } + }, + "ModifyDBSubnetGroupMessage":{ + "type":"structure", + "required":[ + "DBSubnetGroupName", + "SubnetIds" + ], + "members":{ + "DBSubnetGroupName":{"shape":"String"}, + "DBSubnetGroupDescription":{"shape":"String"}, + "SubnetIds":{"shape":"SubnetIdentifierList"} + } + }, + "ModifyDBSubnetGroupResult":{ + "type":"structure", + "members":{ + "DBSubnetGroup":{"shape":"DBSubnetGroup"} + } + }, + "ModifyEventSubscriptionMessage":{ + "type":"structure", + "required":["SubscriptionName"], + "members":{ + "SubscriptionName":{"shape":"String"}, + "SnsTopicArn":{"shape":"String"}, + "SourceType":{"shape":"String"}, + "EventCategories":{"shape":"EventCategoriesList"}, + "Enabled":{"shape":"BooleanOptional"} + } + }, + "ModifyEventSubscriptionResult":{ + "type":"structure", + "members":{ + "EventSubscription":{"shape":"EventSubscription"} + } + }, + "ModifyOptionGroupMessage":{ + "type":"structure", + "required":["OptionGroupName"], + "members":{ + "OptionGroupName":{"shape":"String"}, + "OptionsToInclude":{"shape":"OptionConfigurationList"}, + "OptionsToRemove":{"shape":"OptionNamesList"}, + "ApplyImmediately":{"shape":"Boolean"} + } + }, + "ModifyOptionGroupResult":{ + "type":"structure", + "members":{ + "OptionGroup":{"shape":"OptionGroup"} + } + }, + "Option":{ + "type":"structure", + "members":{ + "OptionName":{"shape":"String"}, + "OptionDescription":{"shape":"String"}, + "Persistent":{"shape":"Boolean"}, + "Permanent":{"shape":"Boolean"}, + "Port":{"shape":"IntegerOptional"}, + "OptionSettings":{"shape":"OptionSettingConfigurationList"}, + "DBSecurityGroupMemberships":{"shape":"DBSecurityGroupMembershipList"}, + "VpcSecurityGroupMemberships":{"shape":"VpcSecurityGroupMembershipList"} + } + }, + "OptionConfiguration":{ + "type":"structure", + "required":["OptionName"], + "members":{ + "OptionName":{"shape":"String"}, + "Port":{"shape":"IntegerOptional"}, + "DBSecurityGroupMemberships":{"shape":"DBSecurityGroupNameList"}, + "VpcSecurityGroupMemberships":{"shape":"VpcSecurityGroupIdList"}, + "OptionSettings":{"shape":"OptionSettingsList"} + } + }, + "OptionConfigurationList":{ + "type":"list", + "member":{ + "shape":"OptionConfiguration", + "locationName":"OptionConfiguration" + } + }, + "OptionGroup":{ + "type":"structure", + "members":{ + "OptionGroupName":{"shape":"String"}, + "OptionGroupDescription":{"shape":"String"}, + "EngineName":{"shape":"String"}, + "MajorEngineVersion":{"shape":"String"}, + "Options":{"shape":"OptionsList"}, + "AllowsVpcAndNonVpcInstanceMemberships":{"shape":"Boolean"}, + "VpcId":{"shape":"String"} + }, + "wrapper":true + }, + "OptionGroupAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"OptionGroupAlreadyExistsFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "OptionGroupMembership":{ + "type":"structure", + "members":{ + "OptionGroupName":{"shape":"String"}, + "Status":{"shape":"String"} + } + }, + "OptionGroupMembershipList":{ + "type":"list", + "member":{ + "shape":"OptionGroupMembership", + "locationName":"OptionGroupMembership" + } + }, + "OptionGroupNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"OptionGroupNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "OptionGroupOption":{ + "type":"structure", + "members":{ + "Name":{"shape":"String"}, + "Description":{"shape":"String"}, + "EngineName":{"shape":"String"}, + "MajorEngineVersion":{"shape":"String"}, + "MinimumRequiredMinorEngineVersion":{"shape":"String"}, + "PortRequired":{"shape":"Boolean"}, + "DefaultPort":{"shape":"IntegerOptional"}, + "OptionsDependedOn":{"shape":"OptionsDependedOn"}, + "Persistent":{"shape":"Boolean"}, + "Permanent":{"shape":"Boolean"}, + "OptionGroupOptionSettings":{"shape":"OptionGroupOptionSettingsList"} + } + }, + "OptionGroupOptionSetting":{ + "type":"structure", + "members":{ + "SettingName":{"shape":"String"}, + "SettingDescription":{"shape":"String"}, + "DefaultValue":{"shape":"String"}, + "ApplyType":{"shape":"String"}, + "AllowedValues":{"shape":"String"}, + "IsModifiable":{"shape":"Boolean"} + } + }, + "OptionGroupOptionSettingsList":{ + "type":"list", + "member":{ + "shape":"OptionGroupOptionSetting", + "locationName":"OptionGroupOptionSetting" + } + }, + "OptionGroupOptionsList":{ + "type":"list", + "member":{ + "shape":"OptionGroupOption", + "locationName":"OptionGroupOption" + } + }, + "OptionGroupOptionsMessage":{ + "type":"structure", + "members":{ + "OptionGroupOptions":{"shape":"OptionGroupOptionsList"}, + "Marker":{"shape":"String"} + } + }, + "OptionGroupQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"OptionGroupQuotaExceededFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "OptionGroups":{ + "type":"structure", + "members":{ + "OptionGroupsList":{"shape":"OptionGroupsList"}, + "Marker":{"shape":"String"} + } + }, + "OptionGroupsList":{ + "type":"list", + "member":{ + "shape":"OptionGroup", + "locationName":"OptionGroup" + } + }, + "OptionNamesList":{ + "type":"list", + "member":{"shape":"String"} + }, + "OptionSetting":{ + "type":"structure", + "members":{ + "Name":{"shape":"String"}, + "Value":{"shape":"SensitiveString"}, + "DefaultValue":{"shape":"String"}, + "Description":{"shape":"String"}, + "ApplyType":{"shape":"String"}, + "DataType":{"shape":"String"}, + "AllowedValues":{"shape":"String"}, + "IsModifiable":{"shape":"Boolean"}, + "IsCollection":{"shape":"Boolean"} + } + }, + "OptionSettingConfigurationList":{ + "type":"list", + "member":{ + "shape":"OptionSetting", + "locationName":"OptionSetting" + } + }, + "OptionSettingsList":{ + "type":"list", + "member":{ + "shape":"OptionSetting", + "locationName":"OptionSetting" + } + }, + "OptionsDependedOn":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"OptionName" + } + }, + "OptionsList":{ + "type":"list", + "member":{ + "shape":"Option", + "locationName":"Option" + } + }, + "OrderableDBInstanceOption":{ + "type":"structure", + "members":{ + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "LicenseModel":{"shape":"String"}, + "AvailabilityZones":{"shape":"AvailabilityZoneList"}, + "MultiAZCapable":{"shape":"Boolean"}, + "ReadReplicaCapable":{"shape":"Boolean"}, + "Vpc":{"shape":"Boolean"}, + "StorageType":{"shape":"String"}, + "SupportsIops":{"shape":"Boolean"} + }, + "wrapper":true + }, + "OrderableDBInstanceOptionsList":{ + "type":"list", + "member":{ + "shape":"OrderableDBInstanceOption", + "locationName":"OrderableDBInstanceOption" + } + }, + "OrderableDBInstanceOptionsMessage":{ + "type":"structure", + "members":{ + "OrderableDBInstanceOptions":{"shape":"OrderableDBInstanceOptionsList"}, + "Marker":{"shape":"String"} + } + }, + "Parameter":{ + "type":"structure", + "members":{ + "ParameterName":{"shape":"String"}, + "ParameterValue":{"shape":"String"}, + "Description":{"shape":"String"}, + "Source":{"shape":"String"}, + "ApplyType":{"shape":"String"}, + "DataType":{"shape":"String"}, + "AllowedValues":{"shape":"String"}, + "IsModifiable":{"shape":"Boolean"}, + "MinimumEngineVersion":{"shape":"String"}, + "ApplyMethod":{"shape":"ApplyMethod"} + } + }, + "ParametersList":{ + "type":"list", + "member":{ + "shape":"Parameter", + "locationName":"Parameter" + } + }, + "PendingModifiedValues":{ + "type":"structure", + "members":{ + "DBInstanceClass":{"shape":"String"}, + "AllocatedStorage":{"shape":"IntegerOptional"}, + "MasterUserPassword":{"shape":"SensitiveString"}, + "Port":{"shape":"IntegerOptional"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "EngineVersion":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "DBInstanceIdentifier":{"shape":"String"}, + "StorageType":{"shape":"String"} + } + }, + "PointInTimeRestoreNotEnabledFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"PointInTimeRestoreNotEnabled", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "PromoteReadReplicaMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "PreferredBackupWindow":{"shape":"String"} + } + }, + "PromoteReadReplicaResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "ProvisionedIopsNotAvailableInAZFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"ProvisionedIopsNotAvailableInAZFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "PurchaseReservedDBInstancesOfferingMessage":{ + "type":"structure", + "required":["ReservedDBInstancesOfferingId"], + "members":{ + "ReservedDBInstancesOfferingId":{"shape":"String"}, + "ReservedDBInstanceId":{"shape":"String"}, + "DBInstanceCount":{"shape":"IntegerOptional"}, + "Tags":{"shape":"TagList"} + } + }, + "PurchaseReservedDBInstancesOfferingResult":{ + "type":"structure", + "members":{ + "ReservedDBInstance":{"shape":"ReservedDBInstance"} + } + }, + "ReadReplicaDBInstanceIdentifierList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"ReadReplicaDBInstanceIdentifier" + } + }, + "RebootDBInstanceMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "ForceFailover":{"shape":"BooleanOptional"} + } + }, + "RebootDBInstanceResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "RecurringCharge":{ + "type":"structure", + "members":{ + "RecurringChargeAmount":{"shape":"Double"}, + "RecurringChargeFrequency":{"shape":"String"} + }, + "wrapper":true + }, + "RecurringChargeList":{ + "type":"list", + "member":{ + "shape":"RecurringCharge", + "locationName":"RecurringCharge" + } + }, + "RemoveSourceIdentifierFromSubscriptionMessage":{ + "type":"structure", + "required":[ + "SubscriptionName", + "SourceIdentifier" + ], + "members":{ + "SubscriptionName":{"shape":"String"}, + "SourceIdentifier":{"shape":"String"} + } + }, + "RemoveSourceIdentifierFromSubscriptionResult":{ + "type":"structure", + "members":{ + "EventSubscription":{"shape":"EventSubscription"} + } + }, + "RemoveTagsFromResourceMessage":{ + "type":"structure", + "required":[ + "ResourceName", + "TagKeys" + ], + "members":{ + "ResourceName":{"shape":"String"}, + "TagKeys":{"shape":"KeyList"} + } + }, + "ReservedDBInstance":{ + "type":"structure", + "members":{ + "ReservedDBInstanceId":{"shape":"String"}, + "ReservedDBInstancesOfferingId":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "StartTime":{"shape":"TStamp"}, + "Duration":{"shape":"Integer"}, + "FixedPrice":{"shape":"Double"}, + "UsagePrice":{"shape":"Double"}, + "CurrencyCode":{"shape":"String"}, + "DBInstanceCount":{"shape":"Integer"}, + "ProductDescription":{"shape":"String"}, + "OfferingType":{"shape":"String"}, + "MultiAZ":{"shape":"Boolean"}, + "State":{"shape":"String"}, + "RecurringCharges":{"shape":"RecurringChargeList"} + }, + "wrapper":true + }, + "ReservedDBInstanceAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"ReservedDBInstanceAlreadyExists", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "ReservedDBInstanceList":{ + "type":"list", + "member":{ + "shape":"ReservedDBInstance", + "locationName":"ReservedDBInstance" + } + }, + "ReservedDBInstanceMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "ReservedDBInstances":{"shape":"ReservedDBInstanceList"} + } + }, + "ReservedDBInstanceNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"ReservedDBInstanceNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "ReservedDBInstanceQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"ReservedDBInstanceQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "ReservedDBInstancesOffering":{ + "type":"structure", + "members":{ + "ReservedDBInstancesOfferingId":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "Duration":{"shape":"Integer"}, + "FixedPrice":{"shape":"Double"}, + "UsagePrice":{"shape":"Double"}, + "CurrencyCode":{"shape":"String"}, + "ProductDescription":{"shape":"String"}, + "OfferingType":{"shape":"String"}, + "MultiAZ":{"shape":"Boolean"}, + "RecurringCharges":{"shape":"RecurringChargeList"} + }, + "wrapper":true + }, + "ReservedDBInstancesOfferingList":{ + "type":"list", + "member":{ + "shape":"ReservedDBInstancesOffering", + "locationName":"ReservedDBInstancesOffering" + } + }, + "ReservedDBInstancesOfferingMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "ReservedDBInstancesOfferings":{"shape":"ReservedDBInstancesOfferingList"} + } + }, + "ReservedDBInstancesOfferingNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"ReservedDBInstancesOfferingNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "ResetDBParameterGroupMessage":{ + "type":"structure", + "required":["DBParameterGroupName"], + "members":{ + "DBParameterGroupName":{"shape":"String"}, + "ResetAllParameters":{"shape":"Boolean"}, + "Parameters":{"shape":"ParametersList"} + } + }, + "RestoreDBInstanceFromDBSnapshotMessage":{ + "type":"structure", + "required":[ + "DBInstanceIdentifier", + "DBSnapshotIdentifier" + ], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "DBSnapshotIdentifier":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "Port":{"shape":"IntegerOptional"}, + "AvailabilityZone":{"shape":"String"}, + "DBSubnetGroupName":{"shape":"String"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"}, + "LicenseModel":{"shape":"String"}, + "DBName":{"shape":"String"}, + "Engine":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "OptionGroupName":{"shape":"String"}, + "Tags":{"shape":"TagList"}, + "StorageType":{"shape":"String"}, + "TdeCredentialArn":{"shape":"String"}, + "TdeCredentialPassword":{"shape":"SensitiveString"} + } + }, + "RestoreDBInstanceFromDBSnapshotResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "RestoreDBInstanceToPointInTimeMessage":{ + "type":"structure", + "required":[ + "SourceDBInstanceIdentifier", + "TargetDBInstanceIdentifier" + ], + "members":{ + "SourceDBInstanceIdentifier":{"shape":"String"}, + "TargetDBInstanceIdentifier":{"shape":"String"}, + "RestoreTime":{"shape":"TStamp"}, + "UseLatestRestorableTime":{"shape":"Boolean"}, + "DBInstanceClass":{"shape":"String"}, + "Port":{"shape":"IntegerOptional"}, + "AvailabilityZone":{"shape":"String"}, + "DBSubnetGroupName":{"shape":"String"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"}, + "LicenseModel":{"shape":"String"}, + "DBName":{"shape":"String"}, + "Engine":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "OptionGroupName":{"shape":"String"}, + "Tags":{"shape":"TagList"}, + "StorageType":{"shape":"String"}, + "TdeCredentialArn":{"shape":"String"}, + "TdeCredentialPassword":{"shape":"SensitiveString"} + } + }, + "RestoreDBInstanceToPointInTimeResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "RevokeDBSecurityGroupIngressMessage":{ + "type":"structure", + "required":["DBSecurityGroupName"], + "members":{ + "DBSecurityGroupName":{"shape":"String"}, + "CIDRIP":{"shape":"String"}, + "EC2SecurityGroupName":{"shape":"String"}, + "EC2SecurityGroupId":{"shape":"String"}, + "EC2SecurityGroupOwnerId":{"shape":"String"} + } + }, + "RevokeDBSecurityGroupIngressResult":{ + "type":"structure", + "members":{ + "DBSecurityGroup":{"shape":"DBSecurityGroup"} + } + }, + "SNSInvalidTopicFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SNSInvalidTopic", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "SNSNoAuthorizationFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SNSNoAuthorization", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "SNSTopicArnNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SNSTopicArnNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "SensitiveString":{ + "type":"string", + "sensitive":true + }, + "SnapshotQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SnapshotQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "SourceIdsList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"SourceId" + } + }, + "SourceNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SourceNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "SourceType":{ + "type":"string", + "enum":[ + "db-instance", + "db-parameter-group", + "db-security-group", + "db-snapshot" + ] + }, + "StorageQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"StorageQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "StorageTypeNotSupportedFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"StorageTypeNotSupported", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "String":{"type":"string"}, + "Subnet":{ + "type":"structure", + "members":{ + "SubnetIdentifier":{"shape":"String"}, + "SubnetAvailabilityZone":{"shape":"AvailabilityZone"}, + "SubnetStatus":{"shape":"String"} + } + }, + "SubnetAlreadyInUse":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SubnetAlreadyInUse", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "SubnetIdentifierList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"SubnetIdentifier" + } + }, + "SubnetList":{ + "type":"list", + "member":{ + "shape":"Subnet", + "locationName":"Subnet" + } + }, + "SubscriptionAlreadyExistFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SubscriptionAlreadyExist", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "SubscriptionCategoryNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SubscriptionCategoryNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "SubscriptionNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SubscriptionNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "SupportedCharacterSetsList":{ + "type":"list", + "member":{ + "shape":"CharacterSet", + "locationName":"CharacterSet" + } + }, + "TStamp":{"type":"timestamp"}, + "Tag":{ + "type":"structure", + "members":{ + "Key":{"shape":"String"}, + "Value":{"shape":"String"} + } + }, + "TagList":{ + "type":"list", + "member":{ + "shape":"Tag", + "locationName":"Tag" + } + }, + "TagListMessage":{ + "type":"structure", + "members":{ + "TagList":{"shape":"TagList"} + } + }, + "VpcSecurityGroupIdList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"VpcSecurityGroupId" + } + }, + "VpcSecurityGroupMembership":{ + "type":"structure", + "members":{ + "VpcSecurityGroupId":{"shape":"String"}, + "Status":{"shape":"String"} + } + }, + "VpcSecurityGroupMembershipList":{ + "type":"list", + "member":{ + "shape":"VpcSecurityGroupMembership", + "locationName":"VpcSecurityGroupMembership" + } + } + } +} diff --git a/src/data/rds_feature/2014-09-01/api-2.json.php b/src/data/rds_feature/2014-09-01/api-2.json.php new file mode 100644 index 0000000000..e96f099582 --- /dev/null +++ b/src/data/rds_feature/2014-09-01/api-2.json.php @@ -0,0 +1,3 @@ + '2.0', 'metadata' => [ 'apiVersion' => '2014-09-01', 'endpointPrefix' => 'rds', 'protocol' => 'query', 'protocols' => [ 'query', ], 'serviceAbbreviation' => 'Amazon RDS', 'serviceFullName' => 'Amazon Relational Database Service', 'serviceId' => 'RDS', 'signatureVersion' => 'v4', 'uid' => 'rds-2014-09-01', 'xmlNamespace' => 'http://rds.amazonaws.com/doc/2014-09-01/', 'auth' => [ 'aws.auth#sigv4', ], ], 'operations' => [ 'AddSourceIdentifierToSubscription' => [ 'name' => 'AddSourceIdentifierToSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddSourceIdentifierToSubscriptionMessage', ], 'output' => [ 'shape' => 'AddSourceIdentifierToSubscriptionResult', 'resultWrapper' => 'AddSourceIdentifierToSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], ], ], 'AddTagsToResource' => [ 'name' => 'AddTagsToResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddTagsToResourceMessage', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'AuthorizeDBSecurityGroupIngress' => [ 'name' => 'AuthorizeDBSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeDBSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'AuthorizeDBSecurityGroupIngressResult', 'resultWrapper' => 'AuthorizeDBSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'AuthorizationAlreadyExistsFault', ], [ 'shape' => 'AuthorizationQuotaExceededFault', ], ], ], 'CopyDBParameterGroup' => [ 'name' => 'CopyDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyDBParameterGroupMessage', ], 'output' => [ 'shape' => 'CopyDBParameterGroupResult', 'resultWrapper' => 'CopyDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBParameterGroupAlreadyExistsFault', ], [ 'shape' => 'DBParameterGroupQuotaExceededFault', ], ], ], 'CopyDBSnapshot' => [ 'name' => 'CopyDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyDBSnapshotMessage', ], 'output' => [ 'shape' => 'CopyDBSnapshotResult', 'resultWrapper' => 'CopyDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotAlreadyExistsFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], ], ], 'CopyOptionGroup' => [ 'name' => 'CopyOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyOptionGroupMessage', ], 'output' => [ 'shape' => 'CopyOptionGroupResult', 'resultWrapper' => 'CopyOptionGroupResult', ], 'errors' => [ [ 'shape' => 'OptionGroupAlreadyExistsFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'OptionGroupQuotaExceededFault', ], ], ], 'CreateDBInstance' => [ 'name' => 'CreateDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBInstanceMessage', ], 'output' => [ 'shape' => 'CreateDBInstanceResult', 'resultWrapper' => 'CreateDBInstanceResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], ], ], 'CreateDBInstanceReadReplica' => [ 'name' => 'CreateDBInstanceReadReplica', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBInstanceReadReplicaMessage', ], 'output' => [ 'shape' => 'CreateDBInstanceReadReplicaResult', 'resultWrapper' => 'CreateDBInstanceReadReplicaResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupNotAllowedFault', ], [ 'shape' => 'InvalidDBSubnetGroupFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], ], ], 'CreateDBParameterGroup' => [ 'name' => 'CreateDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBParameterGroupMessage', ], 'output' => [ 'shape' => 'CreateDBParameterGroupResult', 'resultWrapper' => 'CreateDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupQuotaExceededFault', ], [ 'shape' => 'DBParameterGroupAlreadyExistsFault', ], ], ], 'CreateDBSecurityGroup' => [ 'name' => 'CreateDBSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBSecurityGroupMessage', ], 'output' => [ 'shape' => 'CreateDBSecurityGroupResult', 'resultWrapper' => 'CreateDBSecurityGroupResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupAlreadyExistsFault', ], [ 'shape' => 'DBSecurityGroupQuotaExceededFault', ], [ 'shape' => 'DBSecurityGroupNotSupportedFault', ], ], ], 'CreateDBSnapshot' => [ 'name' => 'CreateDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBSnapshotMessage', ], 'output' => [ 'shape' => 'CreateDBSnapshotResult', 'resultWrapper' => 'CreateDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotAlreadyExistsFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], ], ], 'CreateDBSubnetGroup' => [ 'name' => 'CreateDBSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBSubnetGroupMessage', ], 'output' => [ 'shape' => 'CreateDBSubnetGroupResult', 'resultWrapper' => 'CreateDBSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'DBSubnetGroupAlreadyExistsFault', ], [ 'shape' => 'DBSubnetGroupQuotaExceededFault', ], [ 'shape' => 'DBSubnetQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], ], ], 'CreateEventSubscription' => [ 'name' => 'CreateEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateEventSubscriptionMessage', ], 'output' => [ 'shape' => 'CreateEventSubscriptionResult', 'resultWrapper' => 'CreateEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'EventSubscriptionQuotaExceededFault', ], [ 'shape' => 'SubscriptionAlreadyExistFault', ], [ 'shape' => 'SNSInvalidTopicFault', ], [ 'shape' => 'SNSNoAuthorizationFault', ], [ 'shape' => 'SNSTopicArnNotFoundFault', ], [ 'shape' => 'SubscriptionCategoryNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], ], ], 'CreateOptionGroup' => [ 'name' => 'CreateOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateOptionGroupMessage', ], 'output' => [ 'shape' => 'CreateOptionGroupResult', 'resultWrapper' => 'CreateOptionGroupResult', ], 'errors' => [ [ 'shape' => 'OptionGroupAlreadyExistsFault', ], [ 'shape' => 'OptionGroupQuotaExceededFault', ], ], ], 'DeleteDBInstance' => [ 'name' => 'DeleteDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBInstanceMessage', ], 'output' => [ 'shape' => 'DeleteDBInstanceResult', 'resultWrapper' => 'DeleteDBInstanceResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBSnapshotAlreadyExistsFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], ], ], 'DeleteDBParameterGroup' => [ 'name' => 'DeleteDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBParameterGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBParameterGroupStateFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DeleteDBSecurityGroup' => [ 'name' => 'DeleteDBSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBSecurityGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], ], ], 'DeleteDBSnapshot' => [ 'name' => 'DeleteDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBSnapshotMessage', ], 'output' => [ 'shape' => 'DeleteDBSnapshotResult', 'resultWrapper' => 'DeleteDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'DeleteDBSubnetGroup' => [ 'name' => 'DeleteDBSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBSubnetGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBSubnetGroupStateFault', ], [ 'shape' => 'InvalidDBSubnetStateFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], ], ], 'DeleteEventSubscription' => [ 'name' => 'DeleteEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteEventSubscriptionMessage', ], 'output' => [ 'shape' => 'DeleteEventSubscriptionResult', 'resultWrapper' => 'DeleteEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'InvalidEventSubscriptionStateFault', ], ], ], 'DeleteOptionGroup' => [ 'name' => 'DeleteOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteOptionGroupMessage', ], 'errors' => [ [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'InvalidOptionGroupStateFault', ], ], ], 'DescribeDBEngineVersions' => [ 'name' => 'DescribeDBEngineVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBEngineVersionsMessage', ], 'output' => [ 'shape' => 'DBEngineVersionMessage', 'resultWrapper' => 'DescribeDBEngineVersionsResult', ], ], 'DescribeDBInstances' => [ 'name' => 'DescribeDBInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBInstancesMessage', ], 'output' => [ 'shape' => 'DBInstanceMessage', 'resultWrapper' => 'DescribeDBInstancesResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'DescribeDBLogFiles' => [ 'name' => 'DescribeDBLogFiles', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBLogFilesMessage', ], 'output' => [ 'shape' => 'DescribeDBLogFilesResponse', 'resultWrapper' => 'DescribeDBLogFilesResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBInstanceNotReadyFault', ], ], ], 'DescribeDBParameterGroups' => [ 'name' => 'DescribeDBParameterGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBParameterGroupsMessage', ], 'output' => [ 'shape' => 'DBParameterGroupsMessage', 'resultWrapper' => 'DescribeDBParameterGroupsResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DescribeDBParameters' => [ 'name' => 'DescribeDBParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBParametersMessage', ], 'output' => [ 'shape' => 'DBParameterGroupDetails', 'resultWrapper' => 'DescribeDBParametersResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DescribeDBSecurityGroups' => [ 'name' => 'DescribeDBSecurityGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSecurityGroupsMessage', ], 'output' => [ 'shape' => 'DBSecurityGroupMessage', 'resultWrapper' => 'DescribeDBSecurityGroupsResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupNotFoundFault', ], ], ], 'DescribeDBSnapshots' => [ 'name' => 'DescribeDBSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSnapshotsMessage', ], 'output' => [ 'shape' => 'DBSnapshotMessage', 'resultWrapper' => 'DescribeDBSnapshotsResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'DescribeDBSubnetGroups' => [ 'name' => 'DescribeDBSubnetGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSubnetGroupsMessage', ], 'output' => [ 'shape' => 'DBSubnetGroupMessage', 'resultWrapper' => 'DescribeDBSubnetGroupsResult', ], 'errors' => [ [ 'shape' => 'DBSubnetGroupNotFoundFault', ], ], ], 'DescribeEngineDefaultParameters' => [ 'name' => 'DescribeEngineDefaultParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEngineDefaultParametersMessage', ], 'output' => [ 'shape' => 'DescribeEngineDefaultParametersResult', 'resultWrapper' => 'DescribeEngineDefaultParametersResult', ], ], 'DescribeEventCategories' => [ 'name' => 'DescribeEventCategories', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventCategoriesMessage', ], 'output' => [ 'shape' => 'EventCategoriesMessage', 'resultWrapper' => 'DescribeEventCategoriesResult', ], ], 'DescribeEventSubscriptions' => [ 'name' => 'DescribeEventSubscriptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventSubscriptionsMessage', ], 'output' => [ 'shape' => 'EventSubscriptionsMessage', 'resultWrapper' => 'DescribeEventSubscriptionsResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], ], ], 'DescribeEvents' => [ 'name' => 'DescribeEvents', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventsMessage', ], 'output' => [ 'shape' => 'EventsMessage', 'resultWrapper' => 'DescribeEventsResult', ], ], 'DescribeOptionGroupOptions' => [ 'name' => 'DescribeOptionGroupOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeOptionGroupOptionsMessage', ], 'output' => [ 'shape' => 'OptionGroupOptionsMessage', 'resultWrapper' => 'DescribeOptionGroupOptionsResult', ], ], 'DescribeOptionGroups' => [ 'name' => 'DescribeOptionGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeOptionGroupsMessage', ], 'output' => [ 'shape' => 'OptionGroups', 'resultWrapper' => 'DescribeOptionGroupsResult', ], 'errors' => [ [ 'shape' => 'OptionGroupNotFoundFault', ], ], ], 'DescribeOrderableDBInstanceOptions' => [ 'name' => 'DescribeOrderableDBInstanceOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeOrderableDBInstanceOptionsMessage', ], 'output' => [ 'shape' => 'OrderableDBInstanceOptionsMessage', 'resultWrapper' => 'DescribeOrderableDBInstanceOptionsResult', ], ], 'DescribeReservedDBInstances' => [ 'name' => 'DescribeReservedDBInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedDBInstancesMessage', ], 'output' => [ 'shape' => 'ReservedDBInstanceMessage', 'resultWrapper' => 'DescribeReservedDBInstancesResult', ], 'errors' => [ [ 'shape' => 'ReservedDBInstanceNotFoundFault', ], ], ], 'DescribeReservedDBInstancesOfferings' => [ 'name' => 'DescribeReservedDBInstancesOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedDBInstancesOfferingsMessage', ], 'output' => [ 'shape' => 'ReservedDBInstancesOfferingMessage', 'resultWrapper' => 'DescribeReservedDBInstancesOfferingsResult', ], 'errors' => [ [ 'shape' => 'ReservedDBInstancesOfferingNotFoundFault', ], ], ], 'DownloadDBLogFilePortion' => [ 'name' => 'DownloadDBLogFilePortion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DownloadDBLogFilePortionMessage', ], 'output' => [ 'shape' => 'DownloadDBLogFilePortionDetails', 'resultWrapper' => 'DownloadDBLogFilePortionResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBInstanceNotReadyFault', ], [ 'shape' => 'DBLogFileNotFoundFault', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListTagsForResourceMessage', ], 'output' => [ 'shape' => 'TagListMessage', 'resultWrapper' => 'ListTagsForResourceResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'ModifyDBInstance' => [ 'name' => 'ModifyDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBInstanceMessage', ], 'output' => [ 'shape' => 'ModifyDBInstanceResult', 'resultWrapper' => 'ModifyDBInstanceResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'DBUpgradeDependencyFailureFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], ], ], 'ModifyDBParameterGroup' => [ 'name' => 'ModifyDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBParameterGroupMessage', ], 'output' => [ 'shape' => 'DBParameterGroupNameMessage', 'resultWrapper' => 'ModifyDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidDBParameterGroupStateFault', ], ], ], 'ModifyDBSubnetGroup' => [ 'name' => 'ModifyDBSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBSubnetGroupMessage', ], 'output' => [ 'shape' => 'ModifyDBSubnetGroupResult', 'resultWrapper' => 'ModifyDBSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetQuotaExceededFault', ], [ 'shape' => 'SubnetAlreadyInUse', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], ], ], 'ModifyEventSubscription' => [ 'name' => 'ModifyEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyEventSubscriptionMessage', ], 'output' => [ 'shape' => 'ModifyEventSubscriptionResult', 'resultWrapper' => 'ModifyEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'EventSubscriptionQuotaExceededFault', ], [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'SNSInvalidTopicFault', ], [ 'shape' => 'SNSNoAuthorizationFault', ], [ 'shape' => 'SNSTopicArnNotFoundFault', ], [ 'shape' => 'SubscriptionCategoryNotFoundFault', ], ], ], 'ModifyOptionGroup' => [ 'name' => 'ModifyOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyOptionGroupMessage', ], 'output' => [ 'shape' => 'ModifyOptionGroupResult', 'resultWrapper' => 'ModifyOptionGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidOptionGroupStateFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], ], ], 'PromoteReadReplica' => [ 'name' => 'PromoteReadReplica', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PromoteReadReplicaMessage', ], 'output' => [ 'shape' => 'PromoteReadReplicaResult', 'resultWrapper' => 'PromoteReadReplicaResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'PurchaseReservedDBInstancesOffering' => [ 'name' => 'PurchaseReservedDBInstancesOffering', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseReservedDBInstancesOfferingMessage', ], 'output' => [ 'shape' => 'PurchaseReservedDBInstancesOfferingResult', 'resultWrapper' => 'PurchaseReservedDBInstancesOfferingResult', ], 'errors' => [ [ 'shape' => 'ReservedDBInstancesOfferingNotFoundFault', ], [ 'shape' => 'ReservedDBInstanceAlreadyExistsFault', ], [ 'shape' => 'ReservedDBInstanceQuotaExceededFault', ], ], ], 'RebootDBInstance' => [ 'name' => 'RebootDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebootDBInstanceMessage', ], 'output' => [ 'shape' => 'RebootDBInstanceResult', 'resultWrapper' => 'RebootDBInstanceResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'RemoveSourceIdentifierFromSubscription' => [ 'name' => 'RemoveSourceIdentifierFromSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveSourceIdentifierFromSubscriptionMessage', ], 'output' => [ 'shape' => 'RemoveSourceIdentifierFromSubscriptionResult', 'resultWrapper' => 'RemoveSourceIdentifierFromSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], ], ], 'RemoveTagsFromResource' => [ 'name' => 'RemoveTagsFromResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveTagsFromResourceMessage', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'ResetDBParameterGroup' => [ 'name' => 'ResetDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetDBParameterGroupMessage', ], 'output' => [ 'shape' => 'DBParameterGroupNameMessage', 'resultWrapper' => 'ResetDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidDBParameterGroupStateFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'RestoreDBInstanceFromDBSnapshot' => [ 'name' => 'RestoreDBInstanceFromDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBInstanceFromDBSnapshotMessage', ], 'output' => [ 'shape' => 'RestoreDBInstanceFromDBSnapshotResult', 'resultWrapper' => 'RestoreDBInstanceFromDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], ], ], 'RestoreDBInstanceToPointInTime' => [ 'name' => 'RestoreDBInstanceToPointInTime', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBInstanceToPointInTimeMessage', ], 'output' => [ 'shape' => 'RestoreDBInstanceToPointInTimeResult', 'resultWrapper' => 'RestoreDBInstanceToPointInTimeResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'PointInTimeRestoreNotEnabledFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], ], ], 'RevokeDBSecurityGroupIngress' => [ 'name' => 'RevokeDBSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeDBSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'RevokeDBSecurityGroupIngressResult', 'resultWrapper' => 'RevokeDBSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], ], ], ], 'shapes' => [ 'AddSourceIdentifierToSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', 'SourceIdentifier', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SourceIdentifier' => [ 'shape' => 'String', ], ], ], 'AddSourceIdentifierToSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'AddTagsToResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'Tags', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'ApplyMethod' => [ 'type' => 'string', 'enum' => [ 'immediate', 'pending-reboot', ], ], 'AuthorizationAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizationNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizationQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizeDBSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupId' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'AuthorizeDBSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroup' => [ 'shape' => 'DBSecurityGroup', ], ], ], 'AvailabilityZone' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'AvailabilityZoneList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AvailabilityZone', 'locationName' => 'AvailabilityZone', ], ], 'Boolean' => [ 'type' => 'boolean', ], 'BooleanOptional' => [ 'type' => 'boolean', ], 'CharacterSet' => [ 'type' => 'structure', 'members' => [ 'CharacterSetName' => [ 'shape' => 'String', ], 'CharacterSetDescription' => [ 'shape' => 'String', ], ], ], 'CopyDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBParameterGroupIdentifier', 'TargetDBParameterGroupIdentifier', 'TargetDBParameterGroupDescription', ], 'members' => [ 'SourceDBParameterGroupIdentifier' => [ 'shape' => 'String', ], 'TargetDBParameterGroupIdentifier' => [ 'shape' => 'String', ], 'TargetDBParameterGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyDBParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroup' => [ 'shape' => 'DBParameterGroup', ], ], ], 'CopyDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBSnapshotIdentifier', 'TargetDBSnapshotIdentifier', ], 'members' => [ 'SourceDBSnapshotIdentifier' => [ 'shape' => 'String', ], 'TargetDBSnapshotIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshot' => [ 'shape' => 'DBSnapshot', ], ], ], 'CopyOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'SourceOptionGroupIdentifier', 'TargetOptionGroupIdentifier', 'TargetOptionGroupDescription', ], 'members' => [ 'SourceOptionGroupIdentifier' => [ 'shape' => 'String', ], 'TargetOptionGroupIdentifier' => [ 'shape' => 'String', ], 'TargetOptionGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyOptionGroupResult' => [ 'type' => 'structure', 'members' => [ 'OptionGroup' => [ 'shape' => 'OptionGroup', ], ], ], 'CreateDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'AllocatedStorage', 'DBInstanceClass', 'Engine', 'MasterUsername', 'MasterUserPassword', ], 'members' => [ 'DBName' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'SensitiveString', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'DBParameterGroupName' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'SensitiveString', ], ], ], 'CreateDBInstanceReadReplicaMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'SourceDBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'SourceDBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], ], ], 'CreateDBInstanceReadReplicaResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'CreateDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'CreateDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', 'DBParameterGroupFamily', 'Description', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroup' => [ 'shape' => 'DBParameterGroup', ], ], ], 'CreateDBSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', 'DBSecurityGroupDescription', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'DBSecurityGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBSecurityGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroup' => [ 'shape' => 'DBSecurityGroup', ], ], ], 'CreateDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', 'DBInstanceIdentifier', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshot' => [ 'shape' => 'DBSnapshot', ], ], ], 'CreateDBSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSubnetGroupName', 'DBSubnetGroupDescription', 'SubnetIds', ], 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSubnetGroupDescription' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroup' => [ 'shape' => 'DBSubnetGroup', ], ], ], 'CreateEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', 'SnsTopicArn', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'SourceIds' => [ 'shape' => 'SourceIdsList', ], 'Enabled' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'CreateOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'OptionGroupName', 'EngineName', 'MajorEngineVersion', 'OptionGroupDescription', ], 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'OptionGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateOptionGroupResult' => [ 'type' => 'structure', 'members' => [ 'OptionGroup' => [ 'shape' => 'OptionGroup', ], ], ], 'DBEngineVersion' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'DBEngineDescription' => [ 'shape' => 'String', ], 'DBEngineVersionDescription' => [ 'shape' => 'String', ], 'DefaultCharacterSet' => [ 'shape' => 'CharacterSet', ], 'SupportedCharacterSets' => [ 'shape' => 'SupportedCharacterSetsList', ], ], ], 'DBEngineVersionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBEngineVersion', 'locationName' => 'DBEngineVersion', ], ], 'DBEngineVersionMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBEngineVersions' => [ 'shape' => 'DBEngineVersionList', ], ], ], 'DBInstance' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'DBInstanceStatus' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'DBName' => [ 'shape' => 'String', ], 'Endpoint' => [ 'shape' => 'Endpoint', ], 'AllocatedStorage' => [ 'shape' => 'Integer', ], 'InstanceCreateTime' => [ 'shape' => 'TStamp', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'Integer', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroupMembershipList', ], 'VpcSecurityGroups' => [ 'shape' => 'VpcSecurityGroupMembershipList', ], 'DBParameterGroups' => [ 'shape' => 'DBParameterGroupStatusList', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroup' => [ 'shape' => 'DBSubnetGroup', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'PendingModifiedValues' => [ 'shape' => 'PendingModifiedValues', ], 'LatestRestorableTime' => [ 'shape' => 'TStamp', ], 'MultiAZ' => [ 'shape' => 'Boolean', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'ReadReplicaSourceDBInstanceIdentifier' => [ 'shape' => 'String', ], 'ReadReplicaDBInstanceIdentifiers' => [ 'shape' => 'ReadReplicaDBInstanceIdentifierList', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupMemberships' => [ 'shape' => 'OptionGroupMembershipList', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'SecondaryAvailabilityZone' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'Boolean', ], 'StatusInfos' => [ 'shape' => 'DBInstanceStatusInfoList', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBInstanceAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBInstance', 'locationName' => 'DBInstance', ], ], 'DBInstanceMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBInstances' => [ 'shape' => 'DBInstanceList', ], ], ], 'DBInstanceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceNotReadyFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceNotReady', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceStatusInfo' => [ 'type' => 'structure', 'members' => [ 'StatusType' => [ 'shape' => 'String', ], 'Normal' => [ 'shape' => 'Boolean', ], 'Status' => [ 'shape' => 'String', ], 'Message' => [ 'shape' => 'String', ], ], ], 'DBInstanceStatusInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBInstanceStatusInfo', 'locationName' => 'DBInstanceStatusInfo', ], ], 'DBLogFileNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBLogFileNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroup' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBParameterGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBParameterGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroupDetails' => [ 'type' => 'structure', 'members' => [ 'Parameters' => [ 'shape' => 'ParametersList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DBParameterGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBParameterGroup', 'locationName' => 'DBParameterGroup', ], ], 'DBParameterGroupNameMessage' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DBParameterGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBParameterGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBParameterGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroupStatus' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'ParameterApplyStatus' => [ 'shape' => 'String', ], ], ], 'DBParameterGroupStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBParameterGroupStatus', 'locationName' => 'DBParameterGroup', ], ], 'DBParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBParameterGroups' => [ 'shape' => 'DBParameterGroupList', ], ], ], 'DBSecurityGroup' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', ], 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'DBSecurityGroupDescription' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'EC2SecurityGroups' => [ 'shape' => 'EC2SecurityGroupList', ], 'IPRanges' => [ 'shape' => 'IPRangeList', ], ], 'wrapper' => true, ], 'DBSecurityGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSecurityGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'DBSecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSecurityGroupMembership', 'locationName' => 'DBSecurityGroup', ], ], 'DBSecurityGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroups', ], ], ], 'DBSecurityGroupNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'DBSecurityGroupName', ], ], 'DBSecurityGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSecurityGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroupNotSupportedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSecurityGroupNotSupported', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'QuotaExceeded.DBSecurityGroup', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSecurityGroup', 'locationName' => 'DBSecurityGroup', ], ], 'DBSnapshot' => [ 'type' => 'structure', 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'SnapshotCreateTime' => [ 'shape' => 'TStamp', ], 'Engine' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'Integer', ], 'Status' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'InstanceCreateTime' => [ 'shape' => 'TStamp', ], 'MasterUsername' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PercentProgress' => [ 'shape' => 'Integer', ], 'SourceRegion' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBSnapshotAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSnapshotAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSnapshot', 'locationName' => 'DBSnapshot', ], ], 'DBSnapshotMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBSnapshots' => [ 'shape' => 'DBSnapshotList', ], ], ], 'DBSnapshotNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSnapshotNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroup' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSubnetGroupDescription' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'SubnetGroupStatus' => [ 'shape' => 'String', ], 'Subnets' => [ 'shape' => 'SubnetList', ], ], 'wrapper' => true, ], 'DBSubnetGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupDoesNotCoverEnoughAZs' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupDoesNotCoverEnoughAZs', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBSubnetGroups' => [ 'shape' => 'DBSubnetGroups', ], ], ], 'DBSubnetGroupNotAllowedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupNotAllowedFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSubnetGroup', 'locationName' => 'DBSubnetGroup', ], ], 'DBSubnetQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBUpgradeDependencyFailureFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBUpgradeDependencyFailure', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DeleteDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'SkipFinalSnapshot' => [ 'shape' => 'Boolean', ], 'FinalDBSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'DeleteDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteDBSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshot' => [ 'shape' => 'DBSnapshot', ], ], ], 'DeleteDBSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSubnetGroupName', ], 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], ], ], 'DeleteEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'DeleteOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'OptionGroupName', ], 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], ], ], 'DescribeDBEngineVersionsMessage' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'DefaultOnly' => [ 'shape' => 'Boolean', ], 'ListSupportedCharacterSets' => [ 'shape' => 'BooleanOptional', ], ], ], 'DescribeDBInstancesMessage' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBLogFilesDetails' => [ 'type' => 'structure', 'members' => [ 'LogFileName' => [ 'shape' => 'String', ], 'LastWritten' => [ 'shape' => 'Long', ], 'Size' => [ 'shape' => 'Long', ], ], ], 'DescribeDBLogFilesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DescribeDBLogFilesDetails', 'locationName' => 'DescribeDBLogFilesDetails', ], ], 'DescribeDBLogFilesMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'FilenameContains' => [ 'shape' => 'String', ], 'FileLastWritten' => [ 'shape' => 'Long', ], 'FileSize' => [ 'shape' => 'Long', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBLogFilesResponse' => [ 'type' => 'structure', 'members' => [ 'DescribeDBLogFiles' => [ 'shape' => 'DescribeDBLogFilesList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBParametersMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBSecurityGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBSnapshotsMessage' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBSubnetGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultParametersMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupFamily', ], 'members' => [ 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultParametersResult' => [ 'type' => 'structure', 'members' => [ 'EngineDefaults' => [ 'shape' => 'EngineDefaults', ], ], ], 'DescribeEventCategoriesMessage' => [ 'type' => 'structure', 'members' => [ 'SourceType' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], ], ], 'DescribeEventSubscriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEventsMessage' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'EndTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'IntegerOptional', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeOptionGroupOptionsMessage' => [ 'type' => 'structure', 'required' => [ 'EngineName', ], 'members' => [ 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeOptionGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], ], ], 'DescribeOrderableDBInstanceOptionsMessage' => [ 'type' => 'structure', 'required' => [ 'Engine', ], 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Vpc' => [ 'shape' => 'BooleanOptional', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReservedDBInstancesMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstanceId' => [ 'shape' => 'String', ], 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReservedDBInstancesOfferingsMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'Double' => [ 'type' => 'double', ], 'DownloadDBLogFilePortionDetails' => [ 'type' => 'structure', 'members' => [ 'LogFileData' => [ 'shape' => 'SensitiveString', ], 'Marker' => [ 'shape' => 'String', ], 'AdditionalDataPending' => [ 'shape' => 'Boolean', ], ], ], 'DownloadDBLogFilePortionMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'LogFileName', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'LogFileName' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'NumberOfLines' => [ 'shape' => 'Integer', ], ], ], 'EC2SecurityGroup' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupId' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'EC2SecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EC2SecurityGroup', 'locationName' => 'EC2SecurityGroup', ], ], 'Endpoint' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], ], ], 'EngineDefaults' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], 'wrapper' => true, ], 'Event' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'Message' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Date' => [ 'shape' => 'TStamp', ], ], ], 'EventCategoriesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'EventCategory', ], ], 'EventCategoriesMap' => [ 'type' => 'structure', 'members' => [ 'SourceType' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], ], 'wrapper' => true, ], 'EventCategoriesMapList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventCategoriesMap', 'locationName' => 'EventCategoriesMap', ], ], 'EventCategoriesMessage' => [ 'type' => 'structure', 'members' => [ 'EventCategoriesMapList' => [ 'shape' => 'EventCategoriesMapList', ], ], ], 'EventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Event', 'locationName' => 'Event', ], ], 'EventSubscription' => [ 'type' => 'structure', 'members' => [ 'CustomerAwsId' => [ 'shape' => 'String', ], 'CustSubscriptionId' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'SubscriptionCreationTime' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'SourceIdsList' => [ 'shape' => 'SourceIdsList', ], 'EventCategoriesList' => [ 'shape' => 'EventCategoriesList', ], 'Enabled' => [ 'shape' => 'Boolean', ], ], 'wrapper' => true, ], 'EventSubscriptionQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'EventSubscriptionQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'EventSubscriptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventSubscription', 'locationName' => 'EventSubscription', ], ], 'EventSubscriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'EventSubscriptionsList' => [ 'shape' => 'EventSubscriptionsList', ], ], ], 'EventsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Events' => [ 'shape' => 'EventList', ], ], ], 'Filter' => [ 'type' => 'structure', 'required' => [ 'Name', 'Values', ], 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Values' => [ 'shape' => 'FilterValueList', ], ], ], 'FilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Filter', 'locationName' => 'Filter', ], ], 'FilterValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'Value', ], ], 'IPRange' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], ], ], 'IPRangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPRange', 'locationName' => 'IPRange', ], ], 'InstanceQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InstanceQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientDBInstanceCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientDBInstanceCapacity', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Integer' => [ 'type' => 'integer', ], 'IntegerOptional' => [ 'type' => 'integer', ], 'InvalidDBInstanceStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBInstanceState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBParameterGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBParameterGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSecurityGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSecurityGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSnapshotStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSnapshotState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSubnetGroupFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSubnetGroupFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSubnetGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSubnetGroupStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSubnetStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSubnetStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidEventSubscriptionStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidEventSubscriptionState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidOptionGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidOptionGroupStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidRestoreFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidRestoreFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSubnet' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidSubnet', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidVPCNetworkStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidVPCNetworkStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'KeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'ListTagsForResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], ], ], 'Long' => [ 'type' => 'long', ], 'ModifyDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], 'MasterUserPassword' => [ 'shape' => 'SensitiveString', ], 'DBParameterGroupName' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AllowMajorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'NewDBInstanceIdentifier' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'SensitiveString', ], ], ], 'ModifyDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'ModifyDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', 'Parameters', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ModifyDBSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSubnetGroupName', 'SubnetIds', ], 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSubnetGroupDescription' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], ], ], 'ModifyDBSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroup' => [ 'shape' => 'DBSubnetGroup', ], ], ], 'ModifyEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Enabled' => [ 'shape' => 'BooleanOptional', ], ], ], 'ModifyEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'ModifyOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'OptionGroupName', ], 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'OptionsToInclude' => [ 'shape' => 'OptionConfigurationList', ], 'OptionsToRemove' => [ 'shape' => 'OptionNamesList', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], ], ], 'ModifyOptionGroupResult' => [ 'type' => 'structure', 'members' => [ 'OptionGroup' => [ 'shape' => 'OptionGroup', ], ], ], 'Option' => [ 'type' => 'structure', 'members' => [ 'OptionName' => [ 'shape' => 'String', ], 'OptionDescription' => [ 'shape' => 'String', ], 'Persistent' => [ 'shape' => 'Boolean', ], 'Permanent' => [ 'shape' => 'Boolean', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'OptionSettings' => [ 'shape' => 'OptionSettingConfigurationList', ], 'DBSecurityGroupMemberships' => [ 'shape' => 'DBSecurityGroupMembershipList', ], 'VpcSecurityGroupMemberships' => [ 'shape' => 'VpcSecurityGroupMembershipList', ], ], ], 'OptionConfiguration' => [ 'type' => 'structure', 'required' => [ 'OptionName', ], 'members' => [ 'OptionName' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'DBSecurityGroupMemberships' => [ 'shape' => 'DBSecurityGroupNameList', ], 'VpcSecurityGroupMemberships' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'OptionSettings' => [ 'shape' => 'OptionSettingsList', ], ], ], 'OptionConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionConfiguration', 'locationName' => 'OptionConfiguration', ], ], 'OptionGroup' => [ 'type' => 'structure', 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'OptionGroupDescription' => [ 'shape' => 'String', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'Options' => [ 'shape' => 'OptionsList', ], 'AllowsVpcAndNonVpcInstanceMemberships' => [ 'shape' => 'Boolean', ], 'VpcId' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'OptionGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'OptionGroupAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'OptionGroupMembership' => [ 'type' => 'structure', 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'OptionGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroupMembership', 'locationName' => 'OptionGroupMembership', ], ], 'OptionGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'OptionGroupNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'OptionGroupOption' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'MinimumRequiredMinorEngineVersion' => [ 'shape' => 'String', ], 'PortRequired' => [ 'shape' => 'Boolean', ], 'DefaultPort' => [ 'shape' => 'IntegerOptional', ], 'OptionsDependedOn' => [ 'shape' => 'OptionsDependedOn', ], 'Persistent' => [ 'shape' => 'Boolean', ], 'Permanent' => [ 'shape' => 'Boolean', ], 'OptionGroupOptionSettings' => [ 'shape' => 'OptionGroupOptionSettingsList', ], ], ], 'OptionGroupOptionSetting' => [ 'type' => 'structure', 'members' => [ 'SettingName' => [ 'shape' => 'String', ], 'SettingDescription' => [ 'shape' => 'String', ], 'DefaultValue' => [ 'shape' => 'String', ], 'ApplyType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], ], ], 'OptionGroupOptionSettingsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroupOptionSetting', 'locationName' => 'OptionGroupOptionSetting', ], ], 'OptionGroupOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroupOption', 'locationName' => 'OptionGroupOption', ], ], 'OptionGroupOptionsMessage' => [ 'type' => 'structure', 'members' => [ 'OptionGroupOptions' => [ 'shape' => 'OptionGroupOptionsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'OptionGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'OptionGroupQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'OptionGroups' => [ 'type' => 'structure', 'members' => [ 'OptionGroupsList' => [ 'shape' => 'OptionGroupsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'OptionGroupsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroup', 'locationName' => 'OptionGroup', ], ], 'OptionNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'OptionSetting' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'SensitiveString', ], 'DefaultValue' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'ApplyType' => [ 'shape' => 'String', ], 'DataType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'IsCollection' => [ 'shape' => 'Boolean', ], ], ], 'OptionSettingConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionSetting', 'locationName' => 'OptionSetting', ], ], 'OptionSettingsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionSetting', 'locationName' => 'OptionSetting', ], ], 'OptionsDependedOn' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'OptionName', ], ], 'OptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Option', 'locationName' => 'Option', ], ], 'OrderableDBInstanceOption' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'AvailabilityZones' => [ 'shape' => 'AvailabilityZoneList', ], 'MultiAZCapable' => [ 'shape' => 'Boolean', ], 'ReadReplicaCapable' => [ 'shape' => 'Boolean', ], 'Vpc' => [ 'shape' => 'Boolean', ], 'StorageType' => [ 'shape' => 'String', ], 'SupportsIops' => [ 'shape' => 'Boolean', ], ], 'wrapper' => true, ], 'OrderableDBInstanceOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OrderableDBInstanceOption', 'locationName' => 'OrderableDBInstanceOption', ], ], 'OrderableDBInstanceOptionsMessage' => [ 'type' => 'structure', 'members' => [ 'OrderableDBInstanceOptions' => [ 'shape' => 'OrderableDBInstanceOptionsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'Parameter' => [ 'type' => 'structure', 'members' => [ 'ParameterName' => [ 'shape' => 'String', ], 'ParameterValue' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'ApplyType' => [ 'shape' => 'String', ], 'DataType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'MinimumEngineVersion' => [ 'shape' => 'String', ], 'ApplyMethod' => [ 'shape' => 'ApplyMethod', ], ], ], 'ParametersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Parameter', 'locationName' => 'Parameter', ], ], 'PendingModifiedValues' => [ 'type' => 'structure', 'members' => [ 'DBInstanceClass' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'MasterUserPassword' => [ 'shape' => 'SensitiveString', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], ], ], 'PointInTimeRestoreNotEnabledFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'PointInTimeRestoreNotEnabled', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'PromoteReadReplicaMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], ], ], 'PromoteReadReplicaResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'ProvisionedIopsNotAvailableInAZFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ProvisionedIopsNotAvailableInAZFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'PurchaseReservedDBInstancesOfferingMessage' => [ 'type' => 'structure', 'required' => [ 'ReservedDBInstancesOfferingId', ], 'members' => [ 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'ReservedDBInstanceId' => [ 'shape' => 'String', ], 'DBInstanceCount' => [ 'shape' => 'IntegerOptional', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'PurchaseReservedDBInstancesOfferingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstance' => [ 'shape' => 'ReservedDBInstance', ], ], ], 'ReadReplicaDBInstanceIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ReadReplicaDBInstanceIdentifier', ], ], 'RebootDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'ForceFailover' => [ 'shape' => 'BooleanOptional', ], ], ], 'RebootDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'RecurringCharge' => [ 'type' => 'structure', 'members' => [ 'RecurringChargeAmount' => [ 'shape' => 'Double', ], 'RecurringChargeFrequency' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'RecurringChargeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecurringCharge', 'locationName' => 'RecurringCharge', ], ], 'RemoveSourceIdentifierFromSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', 'SourceIdentifier', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SourceIdentifier' => [ 'shape' => 'String', ], ], ], 'RemoveSourceIdentifierFromSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'RemoveTagsFromResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'TagKeys', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'KeyList', ], ], ], 'ReservedDBInstance' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstanceId' => [ 'shape' => 'String', ], 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'CurrencyCode' => [ 'shape' => 'String', ], 'DBInstanceCount' => [ 'shape' => 'Integer', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'Boolean', ], 'State' => [ 'shape' => 'String', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], ], 'wrapper' => true, ], 'ReservedDBInstanceAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstanceAlreadyExists', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedDBInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedDBInstance', 'locationName' => 'ReservedDBInstance', ], ], 'ReservedDBInstanceMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedDBInstances' => [ 'shape' => 'ReservedDBInstanceList', ], ], ], 'ReservedDBInstanceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstanceNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedDBInstanceQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstanceQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ReservedDBInstancesOffering' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'CurrencyCode' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'Boolean', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], ], 'wrapper' => true, ], 'ReservedDBInstancesOfferingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedDBInstancesOffering', 'locationName' => 'ReservedDBInstancesOffering', ], ], 'ReservedDBInstancesOfferingMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedDBInstancesOfferings' => [ 'shape' => 'ReservedDBInstancesOfferingList', ], ], ], 'ReservedDBInstancesOfferingNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstancesOfferingNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ResetDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'ResetAllParameters' => [ 'shape' => 'Boolean', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'RestoreDBInstanceFromDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'DBSnapshotIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'DBName' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'SensitiveString', ], ], ], 'RestoreDBInstanceFromDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'RestoreDBInstanceToPointInTimeMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBInstanceIdentifier', 'TargetDBInstanceIdentifier', ], 'members' => [ 'SourceDBInstanceIdentifier' => [ 'shape' => 'String', ], 'TargetDBInstanceIdentifier' => [ 'shape' => 'String', ], 'RestoreTime' => [ 'shape' => 'TStamp', ], 'UseLatestRestorableTime' => [ 'shape' => 'Boolean', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'DBName' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'SensitiveString', ], ], ], 'RestoreDBInstanceToPointInTimeResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'RevokeDBSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupId' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'RevokeDBSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroup' => [ 'shape' => 'DBSecurityGroup', ], ], ], 'SNSInvalidTopicFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSInvalidTopic', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SNSNoAuthorizationFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSNoAuthorization', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SNSTopicArnNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSTopicArnNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SensitiveString' => [ 'type' => 'string', 'sensitive' => true, ], 'SnapshotQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SourceIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SourceId', ], ], 'SourceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SourceNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SourceType' => [ 'type' => 'string', 'enum' => [ 'db-instance', 'db-parameter-group', 'db-security-group', 'db-snapshot', ], ], 'StorageQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'StorageQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'StorageTypeNotSupportedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'StorageTypeNotSupported', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'String' => [ 'type' => 'string', ], 'Subnet' => [ 'type' => 'structure', 'members' => [ 'SubnetIdentifier' => [ 'shape' => 'String', ], 'SubnetAvailabilityZone' => [ 'shape' => 'AvailabilityZone', ], 'SubnetStatus' => [ 'shape' => 'String', ], ], ], 'SubnetAlreadyInUse' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubnetAlreadyInUse', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SubnetIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SubnetIdentifier', ], ], 'SubnetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subnet', 'locationName' => 'Subnet', ], ], 'SubscriptionAlreadyExistFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionAlreadyExist', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionCategoryNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionCategoryNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SupportedCharacterSetsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CharacterSet', 'locationName' => 'CharacterSet', ], ], 'TStamp' => [ 'type' => 'timestamp', ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'Tag', ], ], 'TagListMessage' => [ 'type' => 'structure', 'members' => [ 'TagList' => [ 'shape' => 'TagList', ], ], ], 'VpcSecurityGroupIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'VpcSecurityGroupId', ], ], 'VpcSecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'VpcSecurityGroupId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'VpcSecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcSecurityGroupMembership', 'locationName' => 'VpcSecurityGroupMembership', ], ], ],]; diff --git a/src/data/rds_feature/2014-09-01/docs-2.json b/src/data/rds_feature/2014-09-01/docs-2.json new file mode 100644 index 0000000000..2d9664d321 --- /dev/null +++ b/src/data/rds_feature/2014-09-01/docs-2.json @@ -0,0 +1,1783 @@ +{ + "version": "2.0", + "service": null, + "operations": { + "AddSourceIdentifierToSubscription": null, + "AddTagsToResource": null, + "AuthorizeDBSecurityGroupIngress": null, + "CopyDBParameterGroup": null, + "CopyDBSnapshot": null, + "CopyOptionGroup": null, + "CreateDBInstance": null, + "CreateDBInstanceReadReplica": null, + "CreateDBParameterGroup": null, + "CreateDBSecurityGroup": null, + "CreateDBSnapshot": null, + "CreateDBSubnetGroup": null, + "CreateEventSubscription": null, + "CreateOptionGroup": null, + "DeleteDBInstance": null, + "DeleteDBParameterGroup": null, + "DeleteDBSecurityGroup": null, + "DeleteDBSnapshot": null, + "DeleteDBSubnetGroup": null, + "DeleteEventSubscription": null, + "DeleteOptionGroup": null, + "DescribeDBEngineVersions": null, + "DescribeDBInstances": null, + "DescribeDBLogFiles": null, + "DescribeDBParameterGroups": null, + "DescribeDBParameters": null, + "DescribeDBSecurityGroups": null, + "DescribeDBSnapshots": null, + "DescribeDBSubnetGroups": null, + "DescribeEngineDefaultParameters": null, + "DescribeEventCategories": null, + "DescribeEventSubscriptions": null, + "DescribeEvents": null, + "DescribeOptionGroupOptions": null, + "DescribeOptionGroups": null, + "DescribeOrderableDBInstanceOptions": null, + "DescribeReservedDBInstances": null, + "DescribeReservedDBInstancesOfferings": null, + "DownloadDBLogFilePortion": null, + "ListTagsForResource": null, + "ModifyDBInstance": null, + "ModifyDBParameterGroup": null, + "ModifyDBSubnetGroup": null, + "ModifyEventSubscription": null, + "ModifyOptionGroup": null, + "PromoteReadReplica": null, + "PurchaseReservedDBInstancesOffering": null, + "RebootDBInstance": null, + "RemoveSourceIdentifierFromSubscription": null, + "RemoveTagsFromResource": null, + "ResetDBParameterGroup": null, + "RestoreDBInstanceFromDBSnapshot": null, + "RestoreDBInstanceToPointInTime": null, + "RevokeDBSecurityGroupIngress": null + }, + "shapes": { + "AddSourceIdentifierToSubscriptionMessage": { + "base": null, + "refs": {} + }, + "AddSourceIdentifierToSubscriptionResult": { + "base": null, + "refs": {} + }, + "AddTagsToResourceMessage": { + "base": null, + "refs": {} + }, + "ApplyMethod": { + "base": null, + "refs": { + "Parameter$ApplyMethod": null + } + }, + "AuthorizationAlreadyExistsFault": { + "base": "

The specified CIDR IP range or Amazon EC2 security group is already authorized for the specified DB security group.

", + "refs": {} + }, + "AuthorizationNotFoundFault": { + "base": "

The specified CIDR IP range or Amazon EC2 security group might not be authorized for the specified DB security group.

Or, RDS might not be authorized to perform necessary actions using IAM on your behalf.

", + "refs": {} + }, + "AuthorizationQuotaExceededFault": { + "base": "

The DB security group authorization quota has been reached.

", + "refs": {} + }, + "AuthorizeDBSecurityGroupIngressMessage": { + "base": null, + "refs": {} + }, + "AuthorizeDBSecurityGroupIngressResult": { + "base": null, + "refs": {} + }, + "AvailabilityZone": { + "base": null, + "refs": { + "AvailabilityZoneList$member": null, + "Subnet$SubnetAvailabilityZone": null + } + }, + "AvailabilityZoneList": { + "base": null, + "refs": { + "OrderableDBInstanceOption$AvailabilityZones": null + } + }, + "Boolean": { + "base": null, + "refs": { + "DBInstance$MultiAZ": null, + "DBInstance$AutoMinorVersionUpgrade": null, + "DBInstance$PubliclyAccessible": null, + "DBInstanceStatusInfo$Normal": null, + "DeleteDBInstanceMessage$SkipFinalSnapshot": null, + "DescribeDBEngineVersionsMessage$DefaultOnly": null, + "DownloadDBLogFilePortionDetails$AdditionalDataPending": null, + "EventSubscription$Enabled": null, + "ModifyDBInstanceMessage$ApplyImmediately": null, + "ModifyDBInstanceMessage$AllowMajorVersionUpgrade": null, + "ModifyOptionGroupMessage$ApplyImmediately": null, + "Option$Persistent": null, + "Option$Permanent": null, + "OptionGroup$AllowsVpcAndNonVpcInstanceMemberships": null, + "OptionGroupOption$PortRequired": null, + "OptionGroupOption$Persistent": null, + "OptionGroupOption$Permanent": null, + "OptionGroupOptionSetting$IsModifiable": null, + "OptionSetting$IsModifiable": null, + "OptionSetting$IsCollection": null, + "OrderableDBInstanceOption$MultiAZCapable": null, + "OrderableDBInstanceOption$ReadReplicaCapable": null, + "OrderableDBInstanceOption$Vpc": null, + "OrderableDBInstanceOption$SupportsIops": null, + "Parameter$IsModifiable": null, + "ReservedDBInstance$MultiAZ": null, + "ReservedDBInstancesOffering$MultiAZ": null, + "ResetDBParameterGroupMessage$ResetAllParameters": null, + "RestoreDBInstanceToPointInTimeMessage$UseLatestRestorableTime": null + } + }, + "BooleanOptional": { + "base": null, + "refs": { + "CreateDBInstanceMessage$MultiAZ": null, + "CreateDBInstanceMessage$AutoMinorVersionUpgrade": null, + "CreateDBInstanceMessage$PubliclyAccessible": null, + "CreateDBInstanceReadReplicaMessage$AutoMinorVersionUpgrade": null, + "CreateDBInstanceReadReplicaMessage$PubliclyAccessible": null, + "CreateEventSubscriptionMessage$Enabled": null, + "DescribeDBEngineVersionsMessage$ListSupportedCharacterSets": null, + "DescribeOrderableDBInstanceOptionsMessage$Vpc": null, + "DescribeReservedDBInstancesMessage$MultiAZ": null, + "DescribeReservedDBInstancesOfferingsMessage$MultiAZ": null, + "ModifyDBInstanceMessage$MultiAZ": null, + "ModifyDBInstanceMessage$AutoMinorVersionUpgrade": null, + "ModifyEventSubscriptionMessage$Enabled": null, + "PendingModifiedValues$MultiAZ": null, + "RebootDBInstanceMessage$ForceFailover": null, + "RestoreDBInstanceFromDBSnapshotMessage$MultiAZ": null, + "RestoreDBInstanceFromDBSnapshotMessage$PubliclyAccessible": null, + "RestoreDBInstanceFromDBSnapshotMessage$AutoMinorVersionUpgrade": null, + "RestoreDBInstanceToPointInTimeMessage$MultiAZ": null, + "RestoreDBInstanceToPointInTimeMessage$PubliclyAccessible": null, + "RestoreDBInstanceToPointInTimeMessage$AutoMinorVersionUpgrade": null + } + }, + "CharacterSet": { + "base": null, + "refs": { + "DBEngineVersion$DefaultCharacterSet": null, + "SupportedCharacterSetsList$member": null + } + }, + "CopyDBParameterGroupMessage": { + "base": null, + "refs": {} + }, + "CopyDBParameterGroupResult": { + "base": null, + "refs": {} + }, + "CopyDBSnapshotMessage": { + "base": null, + "refs": {} + }, + "CopyDBSnapshotResult": { + "base": null, + "refs": {} + }, + "CopyOptionGroupMessage": { + "base": null, + "refs": {} + }, + "CopyOptionGroupResult": { + "base": null, + "refs": {} + }, + "CreateDBInstanceMessage": { + "base": null, + "refs": {} + }, + "CreateDBInstanceReadReplicaMessage": { + "base": null, + "refs": {} + }, + "CreateDBInstanceReadReplicaResult": { + "base": null, + "refs": {} + }, + "CreateDBInstanceResult": { + "base": null, + "refs": {} + }, + "CreateDBParameterGroupMessage": { + "base": null, + "refs": {} + }, + "CreateDBParameterGroupResult": { + "base": null, + "refs": {} + }, + "CreateDBSecurityGroupMessage": { + "base": null, + "refs": {} + }, + "CreateDBSecurityGroupResult": { + "base": null, + "refs": {} + }, + "CreateDBSnapshotMessage": { + "base": null, + "refs": {} + }, + "CreateDBSnapshotResult": { + "base": null, + "refs": {} + }, + "CreateDBSubnetGroupMessage": { + "base": null, + "refs": {} + }, + "CreateDBSubnetGroupResult": { + "base": null, + "refs": {} + }, + "CreateEventSubscriptionMessage": { + "base": null, + "refs": {} + }, + "CreateEventSubscriptionResult": { + "base": null, + "refs": {} + }, + "CreateOptionGroupMessage": { + "base": null, + "refs": {} + }, + "CreateOptionGroupResult": { + "base": null, + "refs": {} + }, + "DBEngineVersion": { + "base": null, + "refs": { + "DBEngineVersionList$member": null + } + }, + "DBEngineVersionList": { + "base": null, + "refs": { + "DBEngineVersionMessage$DBEngineVersions": null + } + }, + "DBEngineVersionMessage": { + "base": null, + "refs": {} + }, + "DBInstance": { + "base": null, + "refs": { + "CreateDBInstanceReadReplicaResult$DBInstance": null, + "CreateDBInstanceResult$DBInstance": null, + "DBInstanceList$member": null, + "DeleteDBInstanceResult$DBInstance": null, + "ModifyDBInstanceResult$DBInstance": null, + "PromoteReadReplicaResult$DBInstance": null, + "RebootDBInstanceResult$DBInstance": null, + "RestoreDBInstanceFromDBSnapshotResult$DBInstance": null, + "RestoreDBInstanceToPointInTimeResult$DBInstance": null + } + }, + "DBInstanceAlreadyExistsFault": { + "base": "

The user already has a DB instance with the given identifier.

", + "refs": {} + }, + "DBInstanceList": { + "base": null, + "refs": { + "DBInstanceMessage$DBInstances": null + } + }, + "DBInstanceMessage": { + "base": null, + "refs": {} + }, + "DBInstanceNotFoundFault": { + "base": "

DBInstanceIdentifier doesn't refer to an existing DB instance.

", + "refs": {} + }, + "DBInstanceNotReadyFault": { + "base": "

An attempt to download or examine log files didn't succeed because an Aurora Serverless v2 instance was paused.

", + "refs": {} + }, + "DBInstanceStatusInfo": { + "base": null, + "refs": { + "DBInstanceStatusInfoList$member": null + } + }, + "DBInstanceStatusInfoList": { + "base": null, + "refs": { + "DBInstance$StatusInfos": null + } + }, + "DBLogFileNotFoundFault": { + "base": "

LogFileName doesn't refer to an existing DB log file.

", + "refs": {} + }, + "DBParameterGroup": { + "base": null, + "refs": { + "CopyDBParameterGroupResult$DBParameterGroup": null, + "CreateDBParameterGroupResult$DBParameterGroup": null, + "DBParameterGroupList$member": null + } + }, + "DBParameterGroupAlreadyExistsFault": { + "base": "

A DB parameter group with the same name exists.

", + "refs": {} + }, + "DBParameterGroupDetails": { + "base": null, + "refs": {} + }, + "DBParameterGroupList": { + "base": null, + "refs": { + "DBParameterGroupsMessage$DBParameterGroups": null + } + }, + "DBParameterGroupNameMessage": { + "base": null, + "refs": {} + }, + "DBParameterGroupNotFoundFault": { + "base": "

DBParameterGroupName doesn't refer to an existing DB parameter group.

", + "refs": {} + }, + "DBParameterGroupQuotaExceededFault": { + "base": "

The request would result in the user exceeding the allowed number of DB parameter groups.

", + "refs": {} + }, + "DBParameterGroupStatus": { + "base": null, + "refs": { + "DBParameterGroupStatusList$member": null + } + }, + "DBParameterGroupStatusList": { + "base": null, + "refs": { + "DBInstance$DBParameterGroups": null + } + }, + "DBParameterGroupsMessage": { + "base": null, + "refs": {} + }, + "DBSecurityGroup": { + "base": null, + "refs": { + "AuthorizeDBSecurityGroupIngressResult$DBSecurityGroup": null, + "CreateDBSecurityGroupResult$DBSecurityGroup": null, + "DBSecurityGroups$member": null, + "RevokeDBSecurityGroupIngressResult$DBSecurityGroup": null + } + }, + "DBSecurityGroupAlreadyExistsFault": { + "base": "

A DB security group with the name specified in DBSecurityGroupName already exists.

", + "refs": {} + }, + "DBSecurityGroupMembership": { + "base": null, + "refs": { + "DBSecurityGroupMembershipList$member": null + } + }, + "DBSecurityGroupMembershipList": { + "base": null, + "refs": { + "DBInstance$DBSecurityGroups": null, + "Option$DBSecurityGroupMemberships": null + } + }, + "DBSecurityGroupMessage": { + "base": null, + "refs": {} + }, + "DBSecurityGroupNameList": { + "base": null, + "refs": { + "CreateDBInstanceMessage$DBSecurityGroups": null, + "ModifyDBInstanceMessage$DBSecurityGroups": null, + "OptionConfiguration$DBSecurityGroupMemberships": null + } + }, + "DBSecurityGroupNotFoundFault": { + "base": "

DBSecurityGroupName doesn't refer to an existing DB security group.

", + "refs": {} + }, + "DBSecurityGroupNotSupportedFault": { + "base": "

A DB security group isn't allowed for this action.

", + "refs": {} + }, + "DBSecurityGroupQuotaExceededFault": { + "base": "

The request would result in the user exceeding the allowed number of DB security groups.

", + "refs": {} + }, + "DBSecurityGroups": { + "base": null, + "refs": { + "DBSecurityGroupMessage$DBSecurityGroups": null + } + }, + "DBSnapshot": { + "base": null, + "refs": { + "CopyDBSnapshotResult$DBSnapshot": null, + "CreateDBSnapshotResult$DBSnapshot": null, + "DBSnapshotList$member": null, + "DeleteDBSnapshotResult$DBSnapshot": null + } + }, + "DBSnapshotAlreadyExistsFault": { + "base": "

DBSnapshotIdentifier is already used by an existing snapshot.

", + "refs": {} + }, + "DBSnapshotList": { + "base": null, + "refs": { + "DBSnapshotMessage$DBSnapshots": null + } + }, + "DBSnapshotMessage": { + "base": null, + "refs": {} + }, + "DBSnapshotNotFoundFault": { + "base": "

DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

", + "refs": {} + }, + "DBSubnetGroup": { + "base": null, + "refs": { + "CreateDBSubnetGroupResult$DBSubnetGroup": null, + "DBInstance$DBSubnetGroup": null, + "DBSubnetGroups$member": null, + "ModifyDBSubnetGroupResult$DBSubnetGroup": null + } + }, + "DBSubnetGroupAlreadyExistsFault": { + "base": "

DBSubnetGroupName is already used by an existing DB subnet group.

", + "refs": {} + }, + "DBSubnetGroupDoesNotCoverEnoughAZs": { + "base": "

Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

", + "refs": {} + }, + "DBSubnetGroupMessage": { + "base": null, + "refs": {} + }, + "DBSubnetGroupNotAllowedFault": { + "base": "

The DBSubnetGroup shouldn't be specified while creating read replicas that lie in the same region as the source instance.

", + "refs": {} + }, + "DBSubnetGroupNotFoundFault": { + "base": "

DBSubnetGroupName doesn't refer to an existing DB subnet group.

", + "refs": {} + }, + "DBSubnetGroupQuotaExceededFault": { + "base": "

The request would result in the user exceeding the allowed number of DB subnet groups.

", + "refs": {} + }, + "DBSubnetGroups": { + "base": null, + "refs": { + "DBSubnetGroupMessage$DBSubnetGroups": null + } + }, + "DBSubnetQuotaExceededFault": { + "base": "

The request would result in the user exceeding the allowed number of subnets in a DB subnet groups.

", + "refs": {} + }, + "DBUpgradeDependencyFailureFault": { + "base": "

The DB upgrade failed because a resource the DB depends on can't be modified.

", + "refs": {} + }, + "DeleteDBInstanceMessage": { + "base": null, + "refs": {} + }, + "DeleteDBInstanceResult": { + "base": null, + "refs": {} + }, + "DeleteDBParameterGroupMessage": { + "base": null, + "refs": {} + }, + "DeleteDBSecurityGroupMessage": { + "base": null, + "refs": {} + }, + "DeleteDBSnapshotMessage": { + "base": null, + "refs": {} + }, + "DeleteDBSnapshotResult": { + "base": null, + "refs": {} + }, + "DeleteDBSubnetGroupMessage": { + "base": null, + "refs": {} + }, + "DeleteEventSubscriptionMessage": { + "base": null, + "refs": {} + }, + "DeleteEventSubscriptionResult": { + "base": null, + "refs": {} + }, + "DeleteOptionGroupMessage": { + "base": null, + "refs": {} + }, + "DescribeDBEngineVersionsMessage": { + "base": null, + "refs": {} + }, + "DescribeDBInstancesMessage": { + "base": null, + "refs": {} + }, + "DescribeDBLogFilesDetails": { + "base": null, + "refs": { + "DescribeDBLogFilesList$member": null + } + }, + "DescribeDBLogFilesList": { + "base": null, + "refs": { + "DescribeDBLogFilesResponse$DescribeDBLogFiles": null + } + }, + "DescribeDBLogFilesMessage": { + "base": null, + "refs": {} + }, + "DescribeDBLogFilesResponse": { + "base": null, + "refs": {} + }, + "DescribeDBParameterGroupsMessage": { + "base": null, + "refs": {} + }, + "DescribeDBParametersMessage": { + "base": null, + "refs": {} + }, + "DescribeDBSecurityGroupsMessage": { + "base": null, + "refs": {} + }, + "DescribeDBSnapshotsMessage": { + "base": null, + "refs": {} + }, + "DescribeDBSubnetGroupsMessage": { + "base": null, + "refs": {} + }, + "DescribeEngineDefaultParametersMessage": { + "base": null, + "refs": {} + }, + "DescribeEngineDefaultParametersResult": { + "base": null, + "refs": {} + }, + "DescribeEventCategoriesMessage": { + "base": null, + "refs": {} + }, + "DescribeEventSubscriptionsMessage": { + "base": null, + "refs": {} + }, + "DescribeEventsMessage": { + "base": null, + "refs": {} + }, + "DescribeOptionGroupOptionsMessage": { + "base": null, + "refs": {} + }, + "DescribeOptionGroupsMessage": { + "base": null, + "refs": {} + }, + "DescribeOrderableDBInstanceOptionsMessage": { + "base": null, + "refs": {} + }, + "DescribeReservedDBInstancesMessage": { + "base": null, + "refs": {} + }, + "DescribeReservedDBInstancesOfferingsMessage": { + "base": null, + "refs": {} + }, + "Double": { + "base": null, + "refs": { + "RecurringCharge$RecurringChargeAmount": null, + "ReservedDBInstance$FixedPrice": null, + "ReservedDBInstance$UsagePrice": null, + "ReservedDBInstancesOffering$FixedPrice": null, + "ReservedDBInstancesOffering$UsagePrice": null + } + }, + "DownloadDBLogFilePortionDetails": { + "base": null, + "refs": {} + }, + "DownloadDBLogFilePortionMessage": { + "base": null, + "refs": {} + }, + "EC2SecurityGroup": { + "base": null, + "refs": { + "EC2SecurityGroupList$member": null + } + }, + "EC2SecurityGroupList": { + "base": null, + "refs": { + "DBSecurityGroup$EC2SecurityGroups": null + } + }, + "Endpoint": { + "base": null, + "refs": { + "DBInstance$Endpoint": null + } + }, + "EngineDefaults": { + "base": null, + "refs": { + "DescribeEngineDefaultParametersResult$EngineDefaults": null + } + }, + "Event": { + "base": null, + "refs": { + "EventList$member": null + } + }, + "EventCategoriesList": { + "base": null, + "refs": { + "CreateEventSubscriptionMessage$EventCategories": null, + "DescribeEventsMessage$EventCategories": null, + "Event$EventCategories": null, + "EventCategoriesMap$EventCategories": null, + "EventSubscription$EventCategoriesList": null, + "ModifyEventSubscriptionMessage$EventCategories": null + } + }, + "EventCategoriesMap": { + "base": null, + "refs": { + "EventCategoriesMapList$member": null + } + }, + "EventCategoriesMapList": { + "base": null, + "refs": { + "EventCategoriesMessage$EventCategoriesMapList": null + } + }, + "EventCategoriesMessage": { + "base": null, + "refs": {} + }, + "EventList": { + "base": null, + "refs": { + "EventsMessage$Events": null + } + }, + "EventSubscription": { + "base": null, + "refs": { + "AddSourceIdentifierToSubscriptionResult$EventSubscription": null, + "CreateEventSubscriptionResult$EventSubscription": null, + "DeleteEventSubscriptionResult$EventSubscription": null, + "EventSubscriptionsList$member": null, + "ModifyEventSubscriptionResult$EventSubscription": null, + "RemoveSourceIdentifierFromSubscriptionResult$EventSubscription": null + } + }, + "EventSubscriptionQuotaExceededFault": { + "base": "

You have reached the maximum number of event subscriptions.

", + "refs": {} + }, + "EventSubscriptionsList": { + "base": null, + "refs": { + "EventSubscriptionsMessage$EventSubscriptionsList": null + } + }, + "EventSubscriptionsMessage": { + "base": null, + "refs": {} + }, + "EventsMessage": { + "base": null, + "refs": {} + }, + "Filter": { + "base": null, + "refs": { + "FilterList$member": null + } + }, + "FilterList": { + "base": null, + "refs": { + "DescribeDBEngineVersionsMessage$Filters": null, + "DescribeDBInstancesMessage$Filters": null, + "DescribeDBLogFilesMessage$Filters": null, + "DescribeDBParameterGroupsMessage$Filters": null, + "DescribeDBParametersMessage$Filters": null, + "DescribeDBSecurityGroupsMessage$Filters": null, + "DescribeDBSnapshotsMessage$Filters": null, + "DescribeDBSubnetGroupsMessage$Filters": null, + "DescribeEngineDefaultParametersMessage$Filters": null, + "DescribeEventCategoriesMessage$Filters": null, + "DescribeEventSubscriptionsMessage$Filters": null, + "DescribeEventsMessage$Filters": null, + "DescribeOptionGroupOptionsMessage$Filters": null, + "DescribeOptionGroupsMessage$Filters": null, + "DescribeOrderableDBInstanceOptionsMessage$Filters": null, + "DescribeReservedDBInstancesMessage$Filters": null, + "DescribeReservedDBInstancesOfferingsMessage$Filters": null, + "ListTagsForResourceMessage$Filters": null + } + }, + "FilterValueList": { + "base": null, + "refs": { + "Filter$Values": null + } + }, + "IPRange": { + "base": null, + "refs": { + "IPRangeList$member": null + } + }, + "IPRangeList": { + "base": null, + "refs": { + "DBSecurityGroup$IPRanges": null + } + }, + "InstanceQuotaExceededFault": { + "base": "

The request would result in the user exceeding the allowed number of DB instances.

", + "refs": {} + }, + "InsufficientDBInstanceCapacityFault": { + "base": "

The specified DB instance class isn't available in the specified Availability Zone.

", + "refs": {} + }, + "Integer": { + "base": null, + "refs": { + "DBInstance$AllocatedStorage": null, + "DBInstance$BackupRetentionPeriod": null, + "DBSnapshot$AllocatedStorage": null, + "DBSnapshot$Port": null, + "DBSnapshot$PercentProgress": null, + "DownloadDBLogFilePortionMessage$NumberOfLines": null, + "Endpoint$Port": null, + "ReservedDBInstance$Duration": null, + "ReservedDBInstance$DBInstanceCount": null, + "ReservedDBInstancesOffering$Duration": null + } + }, + "IntegerOptional": { + "base": null, + "refs": { + "CreateDBInstanceMessage$AllocatedStorage": null, + "CreateDBInstanceMessage$BackupRetentionPeriod": null, + "CreateDBInstanceMessage$Port": null, + "CreateDBInstanceMessage$Iops": null, + "CreateDBInstanceReadReplicaMessage$Port": null, + "CreateDBInstanceReadReplicaMessage$Iops": null, + "DBInstance$Iops": null, + "DBSnapshot$Iops": null, + "DescribeDBEngineVersionsMessage$MaxRecords": null, + "DescribeDBInstancesMessage$MaxRecords": null, + "DescribeDBLogFilesMessage$MaxRecords": null, + "DescribeDBParameterGroupsMessage$MaxRecords": null, + "DescribeDBParametersMessage$MaxRecords": null, + "DescribeDBSecurityGroupsMessage$MaxRecords": null, + "DescribeDBSnapshotsMessage$MaxRecords": null, + "DescribeDBSubnetGroupsMessage$MaxRecords": null, + "DescribeEngineDefaultParametersMessage$MaxRecords": null, + "DescribeEventSubscriptionsMessage$MaxRecords": null, + "DescribeEventsMessage$Duration": null, + "DescribeEventsMessage$MaxRecords": null, + "DescribeOptionGroupOptionsMessage$MaxRecords": null, + "DescribeOptionGroupsMessage$MaxRecords": null, + "DescribeOrderableDBInstanceOptionsMessage$MaxRecords": null, + "DescribeReservedDBInstancesMessage$MaxRecords": null, + "DescribeReservedDBInstancesOfferingsMessage$MaxRecords": null, + "ModifyDBInstanceMessage$AllocatedStorage": null, + "ModifyDBInstanceMessage$BackupRetentionPeriod": null, + "ModifyDBInstanceMessage$Iops": null, + "Option$Port": null, + "OptionConfiguration$Port": null, + "OptionGroupOption$DefaultPort": null, + "PendingModifiedValues$AllocatedStorage": null, + "PendingModifiedValues$Port": null, + "PendingModifiedValues$BackupRetentionPeriod": null, + "PendingModifiedValues$Iops": null, + "PromoteReadReplicaMessage$BackupRetentionPeriod": null, + "PurchaseReservedDBInstancesOfferingMessage$DBInstanceCount": null, + "RestoreDBInstanceFromDBSnapshotMessage$Port": null, + "RestoreDBInstanceFromDBSnapshotMessage$Iops": null, + "RestoreDBInstanceToPointInTimeMessage$Port": null, + "RestoreDBInstanceToPointInTimeMessage$Iops": null + } + }, + "InvalidDBInstanceStateFault": { + "base": "

The DB instance isn't in a valid state.

", + "refs": {} + }, + "InvalidDBParameterGroupStateFault": { + "base": "

The DB parameter group is in use or is in an invalid state. If you are attempting to delete the parameter group, you can't delete it when the parameter group is in this state.

", + "refs": {} + }, + "InvalidDBSecurityGroupStateFault": { + "base": "

The state of the DB security group doesn't allow deletion.

", + "refs": {} + }, + "InvalidDBSnapshotStateFault": { + "base": "

The state of the DB snapshot doesn't allow deletion.

", + "refs": {} + }, + "InvalidDBSubnetGroupFault": { + "base": "

The DBSubnetGroup doesn't belong to the same VPC as that of an existing cross-region read replica of the same source instance.

", + "refs": {} + }, + "InvalidDBSubnetGroupStateFault": { + "base": "

The DB subnet group cannot be deleted because it's in use.

", + "refs": {} + }, + "InvalidDBSubnetStateFault": { + "base": "

The DB subnet isn't in the available state.

", + "refs": {} + }, + "InvalidEventSubscriptionStateFault": { + "base": "

This error can occur if someone else is modifying a subscription. You should retry the action.

", + "refs": {} + }, + "InvalidOptionGroupStateFault": { + "base": "

The option group isn't in the available state.

", + "refs": {} + }, + "InvalidRestoreFault": { + "base": "

Cannot restore from VPC backup to non-VPC DB instance.

", + "refs": {} + }, + "InvalidSubnet": { + "base": "

The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

", + "refs": {} + }, + "InvalidVPCNetworkStateFault": { + "base": "

The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

", + "refs": {} + }, + "KeyList": { + "base": null, + "refs": { + "RemoveTagsFromResourceMessage$TagKeys": null + } + }, + "ListTagsForResourceMessage": { + "base": null, + "refs": {} + }, + "Long": { + "base": null, + "refs": { + "DescribeDBLogFilesDetails$LastWritten": null, + "DescribeDBLogFilesDetails$Size": null, + "DescribeDBLogFilesMessage$FileLastWritten": null, + "DescribeDBLogFilesMessage$FileSize": null + } + }, + "ModifyDBInstanceMessage": { + "base": null, + "refs": {} + }, + "ModifyDBInstanceResult": { + "base": null, + "refs": {} + }, + "ModifyDBParameterGroupMessage": { + "base": null, + "refs": {} + }, + "ModifyDBSubnetGroupMessage": { + "base": null, + "refs": {} + }, + "ModifyDBSubnetGroupResult": { + "base": null, + "refs": {} + }, + "ModifyEventSubscriptionMessage": { + "base": null, + "refs": {} + }, + "ModifyEventSubscriptionResult": { + "base": null, + "refs": {} + }, + "ModifyOptionGroupMessage": { + "base": null, + "refs": {} + }, + "ModifyOptionGroupResult": { + "base": null, + "refs": {} + }, + "Option": { + "base": null, + "refs": { + "OptionsList$member": null + } + }, + "OptionConfiguration": { + "base": null, + "refs": { + "OptionConfigurationList$member": null + } + }, + "OptionConfigurationList": { + "base": null, + "refs": { + "ModifyOptionGroupMessage$OptionsToInclude": null + } + }, + "OptionGroup": { + "base": null, + "refs": { + "CopyOptionGroupResult$OptionGroup": null, + "CreateOptionGroupResult$OptionGroup": null, + "ModifyOptionGroupResult$OptionGroup": null, + "OptionGroupsList$member": null + } + }, + "OptionGroupAlreadyExistsFault": { + "base": "

The option group you are trying to create already exists.

", + "refs": {} + }, + "OptionGroupMembership": { + "base": null, + "refs": { + "OptionGroupMembershipList$member": null + } + }, + "OptionGroupMembershipList": { + "base": null, + "refs": { + "DBInstance$OptionGroupMemberships": null + } + }, + "OptionGroupNotFoundFault": { + "base": "

The specified option group could not be found.

", + "refs": {} + }, + "OptionGroupOption": { + "base": null, + "refs": { + "OptionGroupOptionsList$member": null + } + }, + "OptionGroupOptionSetting": { + "base": null, + "refs": { + "OptionGroupOptionSettingsList$member": null + } + }, + "OptionGroupOptionSettingsList": { + "base": null, + "refs": { + "OptionGroupOption$OptionGroupOptionSettings": null + } + }, + "OptionGroupOptionsList": { + "base": null, + "refs": { + "OptionGroupOptionsMessage$OptionGroupOptions": null + } + }, + "OptionGroupOptionsMessage": { + "base": null, + "refs": {} + }, + "OptionGroupQuotaExceededFault": { + "base": "

The quota of 20 option groups was exceeded for this Amazon Web Services account.

", + "refs": {} + }, + "OptionGroups": { + "base": null, + "refs": {} + }, + "OptionGroupsList": { + "base": null, + "refs": { + "OptionGroups$OptionGroupsList": null + } + }, + "OptionNamesList": { + "base": null, + "refs": { + "ModifyOptionGroupMessage$OptionsToRemove": null + } + }, + "OptionSetting": { + "base": null, + "refs": { + "OptionSettingConfigurationList$member": null, + "OptionSettingsList$member": null + } + }, + "OptionSettingConfigurationList": { + "base": null, + "refs": { + "Option$OptionSettings": null + } + }, + "OptionSettingsList": { + "base": null, + "refs": { + "OptionConfiguration$OptionSettings": null + } + }, + "OptionsDependedOn": { + "base": null, + "refs": { + "OptionGroupOption$OptionsDependedOn": null + } + }, + "OptionsList": { + "base": null, + "refs": { + "OptionGroup$Options": null + } + }, + "OrderableDBInstanceOption": { + "base": null, + "refs": { + "OrderableDBInstanceOptionsList$member": null + } + }, + "OrderableDBInstanceOptionsList": { + "base": null, + "refs": { + "OrderableDBInstanceOptionsMessage$OrderableDBInstanceOptions": null + } + }, + "OrderableDBInstanceOptionsMessage": { + "base": null, + "refs": {} + }, + "Parameter": { + "base": null, + "refs": { + "ParametersList$member": null + } + }, + "ParametersList": { + "base": null, + "refs": { + "DBParameterGroupDetails$Parameters": null, + "EngineDefaults$Parameters": null, + "ModifyDBParameterGroupMessage$Parameters": null, + "ResetDBParameterGroupMessage$Parameters": null + } + }, + "PendingModifiedValues": { + "base": null, + "refs": { + "DBInstance$PendingModifiedValues": null + } + }, + "PointInTimeRestoreNotEnabledFault": { + "base": "

SourceDBInstanceIdentifier refers to a DB instance with BackupRetentionPeriod equal to 0.

", + "refs": {} + }, + "PromoteReadReplicaMessage": { + "base": null, + "refs": {} + }, + "PromoteReadReplicaResult": { + "base": null, + "refs": {} + }, + "ProvisionedIopsNotAvailableInAZFault": { + "base": "

Provisioned IOPS not available in the specified Availability Zone.

", + "refs": {} + }, + "PurchaseReservedDBInstancesOfferingMessage": { + "base": null, + "refs": {} + }, + "PurchaseReservedDBInstancesOfferingResult": { + "base": null, + "refs": {} + }, + "ReadReplicaDBInstanceIdentifierList": { + "base": null, + "refs": { + "DBInstance$ReadReplicaDBInstanceIdentifiers": null + } + }, + "RebootDBInstanceMessage": { + "base": null, + "refs": {} + }, + "RebootDBInstanceResult": { + "base": null, + "refs": {} + }, + "RecurringCharge": { + "base": null, + "refs": { + "RecurringChargeList$member": null + } + }, + "RecurringChargeList": { + "base": null, + "refs": { + "ReservedDBInstance$RecurringCharges": null, + "ReservedDBInstancesOffering$RecurringCharges": null + } + }, + "RemoveSourceIdentifierFromSubscriptionMessage": { + "base": null, + "refs": {} + }, + "RemoveSourceIdentifierFromSubscriptionResult": { + "base": null, + "refs": {} + }, + "RemoveTagsFromResourceMessage": { + "base": null, + "refs": {} + }, + "ReservedDBInstance": { + "base": null, + "refs": { + "PurchaseReservedDBInstancesOfferingResult$ReservedDBInstance": null, + "ReservedDBInstanceList$member": null + } + }, + "ReservedDBInstanceAlreadyExistsFault": { + "base": "

User already has a reservation with the given identifier.

", + "refs": {} + }, + "ReservedDBInstanceList": { + "base": null, + "refs": { + "ReservedDBInstanceMessage$ReservedDBInstances": null + } + }, + "ReservedDBInstanceMessage": { + "base": null, + "refs": {} + }, + "ReservedDBInstanceNotFoundFault": { + "base": "

The specified reserved DB Instance not found.

", + "refs": {} + }, + "ReservedDBInstanceQuotaExceededFault": { + "base": "

Request would exceed the user's DB Instance quota.

", + "refs": {} + }, + "ReservedDBInstancesOffering": { + "base": null, + "refs": { + "ReservedDBInstancesOfferingList$member": null + } + }, + "ReservedDBInstancesOfferingList": { + "base": null, + "refs": { + "ReservedDBInstancesOfferingMessage$ReservedDBInstancesOfferings": null + } + }, + "ReservedDBInstancesOfferingMessage": { + "base": null, + "refs": {} + }, + "ReservedDBInstancesOfferingNotFoundFault": { + "base": "

Specified offering does not exist.

", + "refs": {} + }, + "ResetDBParameterGroupMessage": { + "base": null, + "refs": {} + }, + "RestoreDBInstanceFromDBSnapshotMessage": { + "base": null, + "refs": {} + }, + "RestoreDBInstanceFromDBSnapshotResult": { + "base": null, + "refs": {} + }, + "RestoreDBInstanceToPointInTimeMessage": { + "base": null, + "refs": {} + }, + "RestoreDBInstanceToPointInTimeResult": { + "base": null, + "refs": {} + }, + "RevokeDBSecurityGroupIngressMessage": { + "base": null, + "refs": {} + }, + "RevokeDBSecurityGroupIngressResult": { + "base": null, + "refs": {} + }, + "SNSInvalidTopicFault": { + "base": "

SNS has responded that there is a problem with the SNS topic specified.

", + "refs": {} + }, + "SNSNoAuthorizationFault": { + "base": "

You do not have permission to publish to the SNS topic ARN.

", + "refs": {} + }, + "SNSTopicArnNotFoundFault": { + "base": "

The SNS topic ARN does not exist.

", + "refs": {} + }, + "SensitiveString": { + "base": null, + "refs": { + "CreateDBInstanceMessage$MasterUserPassword": null, + "CreateDBInstanceMessage$TdeCredentialPassword": null, + "DownloadDBLogFilePortionDetails$LogFileData": null, + "ModifyDBInstanceMessage$MasterUserPassword": null, + "ModifyDBInstanceMessage$TdeCredentialPassword": null, + "OptionSetting$Value": null, + "PendingModifiedValues$MasterUserPassword": null, + "RestoreDBInstanceFromDBSnapshotMessage$TdeCredentialPassword": null, + "RestoreDBInstanceToPointInTimeMessage$TdeCredentialPassword": null + } + }, + "SnapshotQuotaExceededFault": { + "base": "

The request would result in the user exceeding the allowed number of DB snapshots.

", + "refs": {} + }, + "SourceIdsList": { + "base": null, + "refs": { + "CreateEventSubscriptionMessage$SourceIds": null, + "EventSubscription$SourceIdsList": null + } + }, + "SourceNotFoundFault": { + "base": "

The requested source could not be found.

", + "refs": {} + }, + "SourceType": { + "base": null, + "refs": { + "DescribeEventsMessage$SourceType": null, + "Event$SourceType": null + } + }, + "StorageQuotaExceededFault": { + "base": "

The request would result in the user exceeding the allowed amount of storage available across all DB instances.

", + "refs": {} + }, + "StorageTypeNotSupportedFault": { + "base": "

The specified StorageType can't be associated with the DB instance.

", + "refs": {} + }, + "String": { + "base": null, + "refs": { + "AddSourceIdentifierToSubscriptionMessage$SubscriptionName": null, + "AddSourceIdentifierToSubscriptionMessage$SourceIdentifier": null, + "AddTagsToResourceMessage$ResourceName": null, + "AuthorizeDBSecurityGroupIngressMessage$DBSecurityGroupName": null, + "AuthorizeDBSecurityGroupIngressMessage$CIDRIP": null, + "AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupName": null, + "AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupId": null, + "AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupOwnerId": null, + "AvailabilityZone$Name": null, + "CharacterSet$CharacterSetName": null, + "CharacterSet$CharacterSetDescription": null, + "CopyDBParameterGroupMessage$SourceDBParameterGroupIdentifier": null, + "CopyDBParameterGroupMessage$TargetDBParameterGroupIdentifier": null, + "CopyDBParameterGroupMessage$TargetDBParameterGroupDescription": null, + "CopyDBSnapshotMessage$SourceDBSnapshotIdentifier": null, + "CopyDBSnapshotMessage$TargetDBSnapshotIdentifier": null, + "CopyOptionGroupMessage$SourceOptionGroupIdentifier": null, + "CopyOptionGroupMessage$TargetOptionGroupIdentifier": null, + "CopyOptionGroupMessage$TargetOptionGroupDescription": null, + "CreateDBInstanceMessage$DBName": null, + "CreateDBInstanceMessage$DBInstanceIdentifier": null, + "CreateDBInstanceMessage$DBInstanceClass": null, + "CreateDBInstanceMessage$Engine": null, + "CreateDBInstanceMessage$MasterUsername": null, + "CreateDBInstanceMessage$AvailabilityZone": null, + "CreateDBInstanceMessage$DBSubnetGroupName": null, + "CreateDBInstanceMessage$PreferredMaintenanceWindow": null, + "CreateDBInstanceMessage$DBParameterGroupName": null, + "CreateDBInstanceMessage$PreferredBackupWindow": null, + "CreateDBInstanceMessage$EngineVersion": null, + "CreateDBInstanceMessage$LicenseModel": null, + "CreateDBInstanceMessage$OptionGroupName": null, + "CreateDBInstanceMessage$CharacterSetName": null, + "CreateDBInstanceMessage$StorageType": null, + "CreateDBInstanceMessage$TdeCredentialArn": null, + "CreateDBInstanceReadReplicaMessage$DBInstanceIdentifier": null, + "CreateDBInstanceReadReplicaMessage$SourceDBInstanceIdentifier": null, + "CreateDBInstanceReadReplicaMessage$DBInstanceClass": null, + "CreateDBInstanceReadReplicaMessage$AvailabilityZone": null, + "CreateDBInstanceReadReplicaMessage$OptionGroupName": null, + "CreateDBInstanceReadReplicaMessage$DBSubnetGroupName": null, + "CreateDBInstanceReadReplicaMessage$StorageType": null, + "CreateDBParameterGroupMessage$DBParameterGroupName": null, + "CreateDBParameterGroupMessage$DBParameterGroupFamily": null, + "CreateDBParameterGroupMessage$Description": null, + "CreateDBSecurityGroupMessage$DBSecurityGroupName": null, + "CreateDBSecurityGroupMessage$DBSecurityGroupDescription": null, + "CreateDBSnapshotMessage$DBSnapshotIdentifier": null, + "CreateDBSnapshotMessage$DBInstanceIdentifier": null, + "CreateDBSubnetGroupMessage$DBSubnetGroupName": null, + "CreateDBSubnetGroupMessage$DBSubnetGroupDescription": null, + "CreateEventSubscriptionMessage$SubscriptionName": null, + "CreateEventSubscriptionMessage$SnsTopicArn": null, + "CreateEventSubscriptionMessage$SourceType": null, + "CreateOptionGroupMessage$OptionGroupName": null, + "CreateOptionGroupMessage$EngineName": null, + "CreateOptionGroupMessage$MajorEngineVersion": null, + "CreateOptionGroupMessage$OptionGroupDescription": null, + "DBEngineVersion$Engine": null, + "DBEngineVersion$EngineVersion": null, + "DBEngineVersion$DBParameterGroupFamily": null, + "DBEngineVersion$DBEngineDescription": null, + "DBEngineVersion$DBEngineVersionDescription": null, + "DBEngineVersionMessage$Marker": null, + "DBInstance$DBInstanceIdentifier": null, + "DBInstance$DBInstanceClass": null, + "DBInstance$Engine": null, + "DBInstance$DBInstanceStatus": null, + "DBInstance$MasterUsername": null, + "DBInstance$DBName": null, + "DBInstance$PreferredBackupWindow": null, + "DBInstance$AvailabilityZone": null, + "DBInstance$PreferredMaintenanceWindow": null, + "DBInstance$EngineVersion": null, + "DBInstance$ReadReplicaSourceDBInstanceIdentifier": null, + "DBInstance$LicenseModel": null, + "DBInstance$CharacterSetName": null, + "DBInstance$SecondaryAvailabilityZone": null, + "DBInstance$StorageType": null, + "DBInstance$TdeCredentialArn": null, + "DBInstanceMessage$Marker": null, + "DBInstanceStatusInfo$StatusType": null, + "DBInstanceStatusInfo$Status": null, + "DBInstanceStatusInfo$Message": null, + "DBParameterGroup$DBParameterGroupName": null, + "DBParameterGroup$DBParameterGroupFamily": null, + "DBParameterGroup$Description": null, + "DBParameterGroupDetails$Marker": null, + "DBParameterGroupNameMessage$DBParameterGroupName": null, + "DBParameterGroupStatus$DBParameterGroupName": null, + "DBParameterGroupStatus$ParameterApplyStatus": null, + "DBParameterGroupsMessage$Marker": null, + "DBSecurityGroup$OwnerId": null, + "DBSecurityGroup$DBSecurityGroupName": null, + "DBSecurityGroup$DBSecurityGroupDescription": null, + "DBSecurityGroup$VpcId": null, + "DBSecurityGroupMembership$DBSecurityGroupName": null, + "DBSecurityGroupMembership$Status": null, + "DBSecurityGroupMessage$Marker": null, + "DBSecurityGroupNameList$member": null, + "DBSnapshot$DBSnapshotIdentifier": null, + "DBSnapshot$DBInstanceIdentifier": null, + "DBSnapshot$Engine": null, + "DBSnapshot$Status": null, + "DBSnapshot$AvailabilityZone": null, + "DBSnapshot$VpcId": null, + "DBSnapshot$MasterUsername": null, + "DBSnapshot$EngineVersion": null, + "DBSnapshot$LicenseModel": null, + "DBSnapshot$SnapshotType": null, + "DBSnapshot$OptionGroupName": null, + "DBSnapshot$SourceRegion": null, + "DBSnapshot$StorageType": null, + "DBSnapshot$TdeCredentialArn": null, + "DBSnapshotMessage$Marker": null, + "DBSubnetGroup$DBSubnetGroupName": null, + "DBSubnetGroup$DBSubnetGroupDescription": null, + "DBSubnetGroup$VpcId": null, + "DBSubnetGroup$SubnetGroupStatus": null, + "DBSubnetGroupMessage$Marker": null, + "DeleteDBInstanceMessage$DBInstanceIdentifier": null, + "DeleteDBInstanceMessage$FinalDBSnapshotIdentifier": null, + "DeleteDBParameterGroupMessage$DBParameterGroupName": null, + "DeleteDBSecurityGroupMessage$DBSecurityGroupName": null, + "DeleteDBSnapshotMessage$DBSnapshotIdentifier": null, + "DeleteDBSubnetGroupMessage$DBSubnetGroupName": null, + "DeleteEventSubscriptionMessage$SubscriptionName": null, + "DeleteOptionGroupMessage$OptionGroupName": null, + "DescribeDBEngineVersionsMessage$Engine": null, + "DescribeDBEngineVersionsMessage$EngineVersion": null, + "DescribeDBEngineVersionsMessage$DBParameterGroupFamily": null, + "DescribeDBEngineVersionsMessage$Marker": null, + "DescribeDBInstancesMessage$DBInstanceIdentifier": null, + "DescribeDBInstancesMessage$Marker": null, + "DescribeDBLogFilesDetails$LogFileName": null, + "DescribeDBLogFilesMessage$DBInstanceIdentifier": null, + "DescribeDBLogFilesMessage$FilenameContains": null, + "DescribeDBLogFilesMessage$Marker": null, + "DescribeDBLogFilesResponse$Marker": null, + "DescribeDBParameterGroupsMessage$DBParameterGroupName": null, + "DescribeDBParameterGroupsMessage$Marker": null, + "DescribeDBParametersMessage$DBParameterGroupName": null, + "DescribeDBParametersMessage$Source": null, + "DescribeDBParametersMessage$Marker": null, + "DescribeDBSecurityGroupsMessage$DBSecurityGroupName": null, + "DescribeDBSecurityGroupsMessage$Marker": null, + "DescribeDBSnapshotsMessage$DBInstanceIdentifier": null, + "DescribeDBSnapshotsMessage$DBSnapshotIdentifier": null, + "DescribeDBSnapshotsMessage$SnapshotType": null, + "DescribeDBSnapshotsMessage$Marker": null, + "DescribeDBSubnetGroupsMessage$DBSubnetGroupName": null, + "DescribeDBSubnetGroupsMessage$Marker": null, + "DescribeEngineDefaultParametersMessage$DBParameterGroupFamily": null, + "DescribeEngineDefaultParametersMessage$Marker": null, + "DescribeEventCategoriesMessage$SourceType": null, + "DescribeEventSubscriptionsMessage$SubscriptionName": null, + "DescribeEventSubscriptionsMessage$Marker": null, + "DescribeEventsMessage$SourceIdentifier": null, + "DescribeEventsMessage$Marker": null, + "DescribeOptionGroupOptionsMessage$EngineName": null, + "DescribeOptionGroupOptionsMessage$MajorEngineVersion": null, + "DescribeOptionGroupOptionsMessage$Marker": null, + "DescribeOptionGroupsMessage$OptionGroupName": null, + "DescribeOptionGroupsMessage$Marker": null, + "DescribeOptionGroupsMessage$EngineName": null, + "DescribeOptionGroupsMessage$MajorEngineVersion": null, + "DescribeOrderableDBInstanceOptionsMessage$Engine": null, + "DescribeOrderableDBInstanceOptionsMessage$EngineVersion": null, + "DescribeOrderableDBInstanceOptionsMessage$DBInstanceClass": null, + "DescribeOrderableDBInstanceOptionsMessage$LicenseModel": null, + "DescribeOrderableDBInstanceOptionsMessage$Marker": null, + "DescribeReservedDBInstancesMessage$ReservedDBInstanceId": null, + "DescribeReservedDBInstancesMessage$ReservedDBInstancesOfferingId": null, + "DescribeReservedDBInstancesMessage$DBInstanceClass": null, + "DescribeReservedDBInstancesMessage$Duration": null, + "DescribeReservedDBInstancesMessage$ProductDescription": null, + "DescribeReservedDBInstancesMessage$OfferingType": null, + "DescribeReservedDBInstancesMessage$Marker": null, + "DescribeReservedDBInstancesOfferingsMessage$ReservedDBInstancesOfferingId": null, + "DescribeReservedDBInstancesOfferingsMessage$DBInstanceClass": null, + "DescribeReservedDBInstancesOfferingsMessage$Duration": null, + "DescribeReservedDBInstancesOfferingsMessage$ProductDescription": null, + "DescribeReservedDBInstancesOfferingsMessage$OfferingType": null, + "DescribeReservedDBInstancesOfferingsMessage$Marker": null, + "DownloadDBLogFilePortionDetails$Marker": null, + "DownloadDBLogFilePortionMessage$DBInstanceIdentifier": null, + "DownloadDBLogFilePortionMessage$LogFileName": null, + "DownloadDBLogFilePortionMessage$Marker": null, + "EC2SecurityGroup$Status": null, + "EC2SecurityGroup$EC2SecurityGroupName": null, + "EC2SecurityGroup$EC2SecurityGroupId": null, + "EC2SecurityGroup$EC2SecurityGroupOwnerId": null, + "Endpoint$Address": null, + "EngineDefaults$DBParameterGroupFamily": null, + "EngineDefaults$Marker": null, + "Event$SourceIdentifier": null, + "Event$Message": null, + "EventCategoriesList$member": null, + "EventCategoriesMap$SourceType": null, + "EventSubscription$CustomerAwsId": null, + "EventSubscription$CustSubscriptionId": null, + "EventSubscription$SnsTopicArn": null, + "EventSubscription$Status": null, + "EventSubscription$SubscriptionCreationTime": null, + "EventSubscription$SourceType": null, + "EventSubscriptionsMessage$Marker": null, + "EventsMessage$Marker": null, + "Filter$Name": null, + "FilterValueList$member": null, + "IPRange$Status": null, + "IPRange$CIDRIP": null, + "KeyList$member": null, + "ListTagsForResourceMessage$ResourceName": null, + "ModifyDBInstanceMessage$DBInstanceIdentifier": null, + "ModifyDBInstanceMessage$DBInstanceClass": null, + "ModifyDBInstanceMessage$DBParameterGroupName": null, + "ModifyDBInstanceMessage$PreferredBackupWindow": null, + "ModifyDBInstanceMessage$PreferredMaintenanceWindow": null, + "ModifyDBInstanceMessage$EngineVersion": null, + "ModifyDBInstanceMessage$OptionGroupName": null, + "ModifyDBInstanceMessage$NewDBInstanceIdentifier": null, + "ModifyDBInstanceMessage$StorageType": null, + "ModifyDBInstanceMessage$TdeCredentialArn": null, + "ModifyDBParameterGroupMessage$DBParameterGroupName": null, + "ModifyDBSubnetGroupMessage$DBSubnetGroupName": null, + "ModifyDBSubnetGroupMessage$DBSubnetGroupDescription": null, + "ModifyEventSubscriptionMessage$SubscriptionName": null, + "ModifyEventSubscriptionMessage$SnsTopicArn": null, + "ModifyEventSubscriptionMessage$SourceType": null, + "ModifyOptionGroupMessage$OptionGroupName": null, + "Option$OptionName": null, + "Option$OptionDescription": null, + "OptionConfiguration$OptionName": null, + "OptionGroup$OptionGroupName": null, + "OptionGroup$OptionGroupDescription": null, + "OptionGroup$EngineName": null, + "OptionGroup$MajorEngineVersion": null, + "OptionGroup$VpcId": null, + "OptionGroupMembership$OptionGroupName": null, + "OptionGroupMembership$Status": null, + "OptionGroupOption$Name": null, + "OptionGroupOption$Description": null, + "OptionGroupOption$EngineName": null, + "OptionGroupOption$MajorEngineVersion": null, + "OptionGroupOption$MinimumRequiredMinorEngineVersion": null, + "OptionGroupOptionSetting$SettingName": null, + "OptionGroupOptionSetting$SettingDescription": null, + "OptionGroupOptionSetting$DefaultValue": null, + "OptionGroupOptionSetting$ApplyType": null, + "OptionGroupOptionSetting$AllowedValues": null, + "OptionGroupOptionsMessage$Marker": null, + "OptionGroups$Marker": null, + "OptionNamesList$member": null, + "OptionSetting$Name": null, + "OptionSetting$DefaultValue": null, + "OptionSetting$Description": null, + "OptionSetting$ApplyType": null, + "OptionSetting$DataType": null, + "OptionSetting$AllowedValues": null, + "OptionsDependedOn$member": null, + "OrderableDBInstanceOption$Engine": null, + "OrderableDBInstanceOption$EngineVersion": null, + "OrderableDBInstanceOption$DBInstanceClass": null, + "OrderableDBInstanceOption$LicenseModel": null, + "OrderableDBInstanceOption$StorageType": null, + "OrderableDBInstanceOptionsMessage$Marker": null, + "Parameter$ParameterName": null, + "Parameter$ParameterValue": null, + "Parameter$Description": null, + "Parameter$Source": null, + "Parameter$ApplyType": null, + "Parameter$DataType": null, + "Parameter$AllowedValues": null, + "Parameter$MinimumEngineVersion": null, + "PendingModifiedValues$DBInstanceClass": null, + "PendingModifiedValues$EngineVersion": null, + "PendingModifiedValues$DBInstanceIdentifier": null, + "PendingModifiedValues$StorageType": null, + "PromoteReadReplicaMessage$DBInstanceIdentifier": null, + "PromoteReadReplicaMessage$PreferredBackupWindow": null, + "PurchaseReservedDBInstancesOfferingMessage$ReservedDBInstancesOfferingId": null, + "PurchaseReservedDBInstancesOfferingMessage$ReservedDBInstanceId": null, + "ReadReplicaDBInstanceIdentifierList$member": null, + "RebootDBInstanceMessage$DBInstanceIdentifier": null, + "RecurringCharge$RecurringChargeFrequency": null, + "RemoveSourceIdentifierFromSubscriptionMessage$SubscriptionName": null, + "RemoveSourceIdentifierFromSubscriptionMessage$SourceIdentifier": null, + "RemoveTagsFromResourceMessage$ResourceName": null, + "ReservedDBInstance$ReservedDBInstanceId": null, + "ReservedDBInstance$ReservedDBInstancesOfferingId": null, + "ReservedDBInstance$DBInstanceClass": null, + "ReservedDBInstance$CurrencyCode": null, + "ReservedDBInstance$ProductDescription": null, + "ReservedDBInstance$OfferingType": null, + "ReservedDBInstance$State": null, + "ReservedDBInstanceMessage$Marker": null, + "ReservedDBInstancesOffering$ReservedDBInstancesOfferingId": null, + "ReservedDBInstancesOffering$DBInstanceClass": null, + "ReservedDBInstancesOffering$CurrencyCode": null, + "ReservedDBInstancesOffering$ProductDescription": null, + "ReservedDBInstancesOffering$OfferingType": null, + "ReservedDBInstancesOfferingMessage$Marker": null, + "ResetDBParameterGroupMessage$DBParameterGroupName": null, + "RestoreDBInstanceFromDBSnapshotMessage$DBInstanceIdentifier": null, + "RestoreDBInstanceFromDBSnapshotMessage$DBSnapshotIdentifier": null, + "RestoreDBInstanceFromDBSnapshotMessage$DBInstanceClass": null, + "RestoreDBInstanceFromDBSnapshotMessage$AvailabilityZone": null, + "RestoreDBInstanceFromDBSnapshotMessage$DBSubnetGroupName": null, + "RestoreDBInstanceFromDBSnapshotMessage$LicenseModel": null, + "RestoreDBInstanceFromDBSnapshotMessage$DBName": null, + "RestoreDBInstanceFromDBSnapshotMessage$Engine": null, + "RestoreDBInstanceFromDBSnapshotMessage$OptionGroupName": null, + "RestoreDBInstanceFromDBSnapshotMessage$StorageType": null, + "RestoreDBInstanceFromDBSnapshotMessage$TdeCredentialArn": null, + "RestoreDBInstanceToPointInTimeMessage$SourceDBInstanceIdentifier": null, + "RestoreDBInstanceToPointInTimeMessage$TargetDBInstanceIdentifier": null, + "RestoreDBInstanceToPointInTimeMessage$DBInstanceClass": null, + "RestoreDBInstanceToPointInTimeMessage$AvailabilityZone": null, + "RestoreDBInstanceToPointInTimeMessage$DBSubnetGroupName": null, + "RestoreDBInstanceToPointInTimeMessage$LicenseModel": null, + "RestoreDBInstanceToPointInTimeMessage$DBName": null, + "RestoreDBInstanceToPointInTimeMessage$Engine": null, + "RestoreDBInstanceToPointInTimeMessage$OptionGroupName": null, + "RestoreDBInstanceToPointInTimeMessage$StorageType": null, + "RestoreDBInstanceToPointInTimeMessage$TdeCredentialArn": null, + "RevokeDBSecurityGroupIngressMessage$DBSecurityGroupName": null, + "RevokeDBSecurityGroupIngressMessage$CIDRIP": null, + "RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupName": null, + "RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupId": null, + "RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupOwnerId": null, + "SourceIdsList$member": null, + "Subnet$SubnetIdentifier": null, + "Subnet$SubnetStatus": null, + "SubnetIdentifierList$member": null, + "Tag$Key": null, + "Tag$Value": null, + "VpcSecurityGroupIdList$member": null, + "VpcSecurityGroupMembership$VpcSecurityGroupId": null, + "VpcSecurityGroupMembership$Status": null + } + }, + "Subnet": { + "base": null, + "refs": { + "SubnetList$member": null + } + }, + "SubnetAlreadyInUse": { + "base": "

The DB subnet is already in use in the Availability Zone.

", + "refs": {} + }, + "SubnetIdentifierList": { + "base": null, + "refs": { + "CreateDBSubnetGroupMessage$SubnetIds": null, + "ModifyDBSubnetGroupMessage$SubnetIds": null + } + }, + "SubnetList": { + "base": null, + "refs": { + "DBSubnetGroup$Subnets": null + } + }, + "SubscriptionAlreadyExistFault": { + "base": "

The supplied subscription name already exists.

", + "refs": {} + }, + "SubscriptionCategoryNotFoundFault": { + "base": "

The supplied category does not exist.

", + "refs": {} + }, + "SubscriptionNotFoundFault": { + "base": "

The subscription name does not exist.

", + "refs": {} + }, + "SupportedCharacterSetsList": { + "base": null, + "refs": { + "DBEngineVersion$SupportedCharacterSets": null + } + }, + "TStamp": { + "base": null, + "refs": { + "DBInstance$InstanceCreateTime": null, + "DBInstance$LatestRestorableTime": null, + "DBSnapshot$SnapshotCreateTime": null, + "DBSnapshot$InstanceCreateTime": null, + "DescribeEventsMessage$StartTime": null, + "DescribeEventsMessage$EndTime": null, + "Event$Date": null, + "ReservedDBInstance$StartTime": null, + "RestoreDBInstanceToPointInTimeMessage$RestoreTime": null + } + }, + "Tag": { + "base": null, + "refs": { + "TagList$member": null + } + }, + "TagList": { + "base": null, + "refs": { + "AddTagsToResourceMessage$Tags": null, + "CopyDBParameterGroupMessage$Tags": null, + "CopyDBSnapshotMessage$Tags": null, + "CopyOptionGroupMessage$Tags": null, + "CreateDBInstanceMessage$Tags": null, + "CreateDBInstanceReadReplicaMessage$Tags": null, + "CreateDBParameterGroupMessage$Tags": null, + "CreateDBSecurityGroupMessage$Tags": null, + "CreateDBSnapshotMessage$Tags": null, + "CreateDBSubnetGroupMessage$Tags": null, + "CreateEventSubscriptionMessage$Tags": null, + "CreateOptionGroupMessage$Tags": null, + "PurchaseReservedDBInstancesOfferingMessage$Tags": null, + "RestoreDBInstanceFromDBSnapshotMessage$Tags": null, + "RestoreDBInstanceToPointInTimeMessage$Tags": null, + "TagListMessage$TagList": null + } + }, + "TagListMessage": { + "base": null, + "refs": {} + }, + "VpcSecurityGroupIdList": { + "base": null, + "refs": { + "CreateDBInstanceMessage$VpcSecurityGroupIds": null, + "ModifyDBInstanceMessage$VpcSecurityGroupIds": null, + "OptionConfiguration$VpcSecurityGroupMemberships": null + } + }, + "VpcSecurityGroupMembership": { + "base": null, + "refs": { + "VpcSecurityGroupMembershipList$member": null + } + }, + "VpcSecurityGroupMembershipList": { + "base": null, + "refs": { + "DBInstance$VpcSecurityGroups": null, + "Option$VpcSecurityGroupMemberships": null + } + } + } +} diff --git a/src/data/rds_feature/2014-09-01/docs-2.json.php b/src/data/rds_feature/2014-09-01/docs-2.json.php new file mode 100644 index 0000000000..f54bcb0b5f --- /dev/null +++ b/src/data/rds_feature/2014-09-01/docs-2.json.php @@ -0,0 +1,3 @@ + '2.0', 'service' => NULL, 'operations' => [ 'AddSourceIdentifierToSubscription' => NULL, 'AddTagsToResource' => NULL, 'AuthorizeDBSecurityGroupIngress' => NULL, 'CopyDBParameterGroup' => NULL, 'CopyDBSnapshot' => NULL, 'CopyOptionGroup' => NULL, 'CreateDBInstance' => NULL, 'CreateDBInstanceReadReplica' => NULL, 'CreateDBParameterGroup' => NULL, 'CreateDBSecurityGroup' => NULL, 'CreateDBSnapshot' => NULL, 'CreateDBSubnetGroup' => NULL, 'CreateEventSubscription' => NULL, 'CreateOptionGroup' => NULL, 'DeleteDBInstance' => NULL, 'DeleteDBParameterGroup' => NULL, 'DeleteDBSecurityGroup' => NULL, 'DeleteDBSnapshot' => NULL, 'DeleteDBSubnetGroup' => NULL, 'DeleteEventSubscription' => NULL, 'DeleteOptionGroup' => NULL, 'DescribeDBEngineVersions' => NULL, 'DescribeDBInstances' => NULL, 'DescribeDBLogFiles' => NULL, 'DescribeDBParameterGroups' => NULL, 'DescribeDBParameters' => NULL, 'DescribeDBSecurityGroups' => NULL, 'DescribeDBSnapshots' => NULL, 'DescribeDBSubnetGroups' => NULL, 'DescribeEngineDefaultParameters' => NULL, 'DescribeEventCategories' => NULL, 'DescribeEventSubscriptions' => NULL, 'DescribeEvents' => NULL, 'DescribeOptionGroupOptions' => NULL, 'DescribeOptionGroups' => NULL, 'DescribeOrderableDBInstanceOptions' => NULL, 'DescribeReservedDBInstances' => NULL, 'DescribeReservedDBInstancesOfferings' => NULL, 'DownloadDBLogFilePortion' => NULL, 'ListTagsForResource' => NULL, 'ModifyDBInstance' => NULL, 'ModifyDBParameterGroup' => NULL, 'ModifyDBSubnetGroup' => NULL, 'ModifyEventSubscription' => NULL, 'ModifyOptionGroup' => NULL, 'PromoteReadReplica' => NULL, 'PurchaseReservedDBInstancesOffering' => NULL, 'RebootDBInstance' => NULL, 'RemoveSourceIdentifierFromSubscription' => NULL, 'RemoveTagsFromResource' => NULL, 'ResetDBParameterGroup' => NULL, 'RestoreDBInstanceFromDBSnapshot' => NULL, 'RestoreDBInstanceToPointInTime' => NULL, 'RevokeDBSecurityGroupIngress' => NULL, ], 'shapes' => [ 'AddSourceIdentifierToSubscriptionMessage' => [ 'base' => NULL, 'refs' => [], ], 'AddSourceIdentifierToSubscriptionResult' => [ 'base' => NULL, 'refs' => [], ], 'AddTagsToResourceMessage' => [ 'base' => NULL, 'refs' => [], ], 'ApplyMethod' => [ 'base' => NULL, 'refs' => [ 'Parameter$ApplyMethod' => NULL, ], ], 'AuthorizationAlreadyExistsFault' => [ 'base' => '

The specified CIDR IP range or Amazon EC2 security group is already authorized for the specified DB security group.

', 'refs' => [], ], 'AuthorizationNotFoundFault' => [ 'base' => '

The specified CIDR IP range or Amazon EC2 security group might not be authorized for the specified DB security group.

Or, RDS might not be authorized to perform necessary actions using IAM on your behalf.

', 'refs' => [], ], 'AuthorizationQuotaExceededFault' => [ 'base' => '

The DB security group authorization quota has been reached.

', 'refs' => [], ], 'AuthorizeDBSecurityGroupIngressMessage' => [ 'base' => NULL, 'refs' => [], ], 'AuthorizeDBSecurityGroupIngressResult' => [ 'base' => NULL, 'refs' => [], ], 'AvailabilityZone' => [ 'base' => NULL, 'refs' => [ 'AvailabilityZoneList$member' => NULL, 'Subnet$SubnetAvailabilityZone' => NULL, ], ], 'AvailabilityZoneList' => [ 'base' => NULL, 'refs' => [ 'OrderableDBInstanceOption$AvailabilityZones' => NULL, ], ], 'Boolean' => [ 'base' => NULL, 'refs' => [ 'DBInstance$MultiAZ' => NULL, 'DBInstance$AutoMinorVersionUpgrade' => NULL, 'DBInstance$PubliclyAccessible' => NULL, 'DBInstanceStatusInfo$Normal' => NULL, 'DeleteDBInstanceMessage$SkipFinalSnapshot' => NULL, 'DescribeDBEngineVersionsMessage$DefaultOnly' => NULL, 'DownloadDBLogFilePortionDetails$AdditionalDataPending' => NULL, 'EventSubscription$Enabled' => NULL, 'ModifyDBInstanceMessage$ApplyImmediately' => NULL, 'ModifyDBInstanceMessage$AllowMajorVersionUpgrade' => NULL, 'ModifyOptionGroupMessage$ApplyImmediately' => NULL, 'Option$Persistent' => NULL, 'Option$Permanent' => NULL, 'OptionGroup$AllowsVpcAndNonVpcInstanceMemberships' => NULL, 'OptionGroupOption$PortRequired' => NULL, 'OptionGroupOption$Persistent' => NULL, 'OptionGroupOption$Permanent' => NULL, 'OptionGroupOptionSetting$IsModifiable' => NULL, 'OptionSetting$IsModifiable' => NULL, 'OptionSetting$IsCollection' => NULL, 'OrderableDBInstanceOption$MultiAZCapable' => NULL, 'OrderableDBInstanceOption$ReadReplicaCapable' => NULL, 'OrderableDBInstanceOption$Vpc' => NULL, 'OrderableDBInstanceOption$SupportsIops' => NULL, 'Parameter$IsModifiable' => NULL, 'ReservedDBInstance$MultiAZ' => NULL, 'ReservedDBInstancesOffering$MultiAZ' => NULL, 'ResetDBParameterGroupMessage$ResetAllParameters' => NULL, 'RestoreDBInstanceToPointInTimeMessage$UseLatestRestorableTime' => NULL, ], ], 'BooleanOptional' => [ 'base' => NULL, 'refs' => [ 'CreateDBInstanceMessage$MultiAZ' => NULL, 'CreateDBInstanceMessage$AutoMinorVersionUpgrade' => NULL, 'CreateDBInstanceMessage$PubliclyAccessible' => NULL, 'CreateDBInstanceReadReplicaMessage$AutoMinorVersionUpgrade' => NULL, 'CreateDBInstanceReadReplicaMessage$PubliclyAccessible' => NULL, 'CreateEventSubscriptionMessage$Enabled' => NULL, 'DescribeDBEngineVersionsMessage$ListSupportedCharacterSets' => NULL, 'DescribeOrderableDBInstanceOptionsMessage$Vpc' => NULL, 'DescribeReservedDBInstancesMessage$MultiAZ' => NULL, 'DescribeReservedDBInstancesOfferingsMessage$MultiAZ' => NULL, 'ModifyDBInstanceMessage$MultiAZ' => NULL, 'ModifyDBInstanceMessage$AutoMinorVersionUpgrade' => NULL, 'ModifyEventSubscriptionMessage$Enabled' => NULL, 'PendingModifiedValues$MultiAZ' => NULL, 'RebootDBInstanceMessage$ForceFailover' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$MultiAZ' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$PubliclyAccessible' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$AutoMinorVersionUpgrade' => NULL, 'RestoreDBInstanceToPointInTimeMessage$MultiAZ' => NULL, 'RestoreDBInstanceToPointInTimeMessage$PubliclyAccessible' => NULL, 'RestoreDBInstanceToPointInTimeMessage$AutoMinorVersionUpgrade' => NULL, ], ], 'CharacterSet' => [ 'base' => NULL, 'refs' => [ 'DBEngineVersion$DefaultCharacterSet' => NULL, 'SupportedCharacterSetsList$member' => NULL, ], ], 'CopyDBParameterGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'CopyDBParameterGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CopyDBSnapshotMessage' => [ 'base' => NULL, 'refs' => [], ], 'CopyDBSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'CopyOptionGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'CopyOptionGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBInstanceMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBInstanceReadReplicaMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBInstanceReadReplicaResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBParameterGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBParameterGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBSecurityGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBSecurityGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBSnapshotMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBSubnetGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBSubnetGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateEventSubscriptionMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateEventSubscriptionResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateOptionGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateOptionGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'DBEngineVersion' => [ 'base' => NULL, 'refs' => [ 'DBEngineVersionList$member' => NULL, ], ], 'DBEngineVersionList' => [ 'base' => NULL, 'refs' => [ 'DBEngineVersionMessage$DBEngineVersions' => NULL, ], ], 'DBEngineVersionMessage' => [ 'base' => NULL, 'refs' => [], ], 'DBInstance' => [ 'base' => NULL, 'refs' => [ 'CreateDBInstanceReadReplicaResult$DBInstance' => NULL, 'CreateDBInstanceResult$DBInstance' => NULL, 'DBInstanceList$member' => NULL, 'DeleteDBInstanceResult$DBInstance' => NULL, 'ModifyDBInstanceResult$DBInstance' => NULL, 'PromoteReadReplicaResult$DBInstance' => NULL, 'RebootDBInstanceResult$DBInstance' => NULL, 'RestoreDBInstanceFromDBSnapshotResult$DBInstance' => NULL, 'RestoreDBInstanceToPointInTimeResult$DBInstance' => NULL, ], ], 'DBInstanceAlreadyExistsFault' => [ 'base' => '

The user already has a DB instance with the given identifier.

', 'refs' => [], ], 'DBInstanceList' => [ 'base' => NULL, 'refs' => [ 'DBInstanceMessage$DBInstances' => NULL, ], ], 'DBInstanceMessage' => [ 'base' => NULL, 'refs' => [], ], 'DBInstanceNotFoundFault' => [ 'base' => '

DBInstanceIdentifier doesn\'t refer to an existing DB instance.

', 'refs' => [], ], 'DBInstanceNotReadyFault' => [ 'base' => '

An attempt to download or examine log files didn\'t succeed because an Aurora Serverless v2 instance was paused.

', 'refs' => [], ], 'DBInstanceStatusInfo' => [ 'base' => NULL, 'refs' => [ 'DBInstanceStatusInfoList$member' => NULL, ], ], 'DBInstanceStatusInfoList' => [ 'base' => NULL, 'refs' => [ 'DBInstance$StatusInfos' => NULL, ], ], 'DBLogFileNotFoundFault' => [ 'base' => '

LogFileName doesn\'t refer to an existing DB log file.

', 'refs' => [], ], 'DBParameterGroup' => [ 'base' => NULL, 'refs' => [ 'CopyDBParameterGroupResult$DBParameterGroup' => NULL, 'CreateDBParameterGroupResult$DBParameterGroup' => NULL, 'DBParameterGroupList$member' => NULL, ], ], 'DBParameterGroupAlreadyExistsFault' => [ 'base' => '

A DB parameter group with the same name exists.

', 'refs' => [], ], 'DBParameterGroupDetails' => [ 'base' => NULL, 'refs' => [], ], 'DBParameterGroupList' => [ 'base' => NULL, 'refs' => [ 'DBParameterGroupsMessage$DBParameterGroups' => NULL, ], ], 'DBParameterGroupNameMessage' => [ 'base' => NULL, 'refs' => [], ], 'DBParameterGroupNotFoundFault' => [ 'base' => '

DBParameterGroupName doesn\'t refer to an existing DB parameter group.

', 'refs' => [], ], 'DBParameterGroupQuotaExceededFault' => [ 'base' => '

The request would result in the user exceeding the allowed number of DB parameter groups.

', 'refs' => [], ], 'DBParameterGroupStatus' => [ 'base' => NULL, 'refs' => [ 'DBParameterGroupStatusList$member' => NULL, ], ], 'DBParameterGroupStatusList' => [ 'base' => NULL, 'refs' => [ 'DBInstance$DBParameterGroups' => NULL, ], ], 'DBParameterGroupsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DBSecurityGroup' => [ 'base' => NULL, 'refs' => [ 'AuthorizeDBSecurityGroupIngressResult$DBSecurityGroup' => NULL, 'CreateDBSecurityGroupResult$DBSecurityGroup' => NULL, 'DBSecurityGroups$member' => NULL, 'RevokeDBSecurityGroupIngressResult$DBSecurityGroup' => NULL, ], ], 'DBSecurityGroupAlreadyExistsFault' => [ 'base' => '

A DB security group with the name specified in DBSecurityGroupName already exists.

', 'refs' => [], ], 'DBSecurityGroupMembership' => [ 'base' => NULL, 'refs' => [ 'DBSecurityGroupMembershipList$member' => NULL, ], ], 'DBSecurityGroupMembershipList' => [ 'base' => NULL, 'refs' => [ 'DBInstance$DBSecurityGroups' => NULL, 'Option$DBSecurityGroupMemberships' => NULL, ], ], 'DBSecurityGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'DBSecurityGroupNameList' => [ 'base' => NULL, 'refs' => [ 'CreateDBInstanceMessage$DBSecurityGroups' => NULL, 'ModifyDBInstanceMessage$DBSecurityGroups' => NULL, 'OptionConfiguration$DBSecurityGroupMemberships' => NULL, ], ], 'DBSecurityGroupNotFoundFault' => [ 'base' => '

DBSecurityGroupName doesn\'t refer to an existing DB security group.

', 'refs' => [], ], 'DBSecurityGroupNotSupportedFault' => [ 'base' => '

A DB security group isn\'t allowed for this action.

', 'refs' => [], ], 'DBSecurityGroupQuotaExceededFault' => [ 'base' => '

The request would result in the user exceeding the allowed number of DB security groups.

', 'refs' => [], ], 'DBSecurityGroups' => [ 'base' => NULL, 'refs' => [ 'DBSecurityGroupMessage$DBSecurityGroups' => NULL, ], ], 'DBSnapshot' => [ 'base' => NULL, 'refs' => [ 'CopyDBSnapshotResult$DBSnapshot' => NULL, 'CreateDBSnapshotResult$DBSnapshot' => NULL, 'DBSnapshotList$member' => NULL, 'DeleteDBSnapshotResult$DBSnapshot' => NULL, ], ], 'DBSnapshotAlreadyExistsFault' => [ 'base' => '

DBSnapshotIdentifier is already used by an existing snapshot.

', 'refs' => [], ], 'DBSnapshotList' => [ 'base' => NULL, 'refs' => [ 'DBSnapshotMessage$DBSnapshots' => NULL, ], ], 'DBSnapshotMessage' => [ 'base' => NULL, 'refs' => [], ], 'DBSnapshotNotFoundFault' => [ 'base' => '

DBSnapshotIdentifier doesn\'t refer to an existing DB snapshot.

', 'refs' => [], ], 'DBSubnetGroup' => [ 'base' => NULL, 'refs' => [ 'CreateDBSubnetGroupResult$DBSubnetGroup' => NULL, 'DBInstance$DBSubnetGroup' => NULL, 'DBSubnetGroups$member' => NULL, 'ModifyDBSubnetGroupResult$DBSubnetGroup' => NULL, ], ], 'DBSubnetGroupAlreadyExistsFault' => [ 'base' => '

DBSubnetGroupName is already used by an existing DB subnet group.

', 'refs' => [], ], 'DBSubnetGroupDoesNotCoverEnoughAZs' => [ 'base' => '

Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

', 'refs' => [], ], 'DBSubnetGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'DBSubnetGroupNotAllowedFault' => [ 'base' => '

The DBSubnetGroup shouldn\'t be specified while creating read replicas that lie in the same region as the source instance.

', 'refs' => [], ], 'DBSubnetGroupNotFoundFault' => [ 'base' => '

DBSubnetGroupName doesn\'t refer to an existing DB subnet group.

', 'refs' => [], ], 'DBSubnetGroupQuotaExceededFault' => [ 'base' => '

The request would result in the user exceeding the allowed number of DB subnet groups.

', 'refs' => [], ], 'DBSubnetGroups' => [ 'base' => NULL, 'refs' => [ 'DBSubnetGroupMessage$DBSubnetGroups' => NULL, ], ], 'DBSubnetQuotaExceededFault' => [ 'base' => '

The request would result in the user exceeding the allowed number of subnets in a DB subnet groups.

', 'refs' => [], ], 'DBUpgradeDependencyFailureFault' => [ 'base' => '

The DB upgrade failed because a resource the DB depends on can\'t be modified.

', 'refs' => [], ], 'DeleteDBInstanceMessage' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBParameterGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBSecurityGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBSnapshotMessage' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBSubnetGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'DeleteEventSubscriptionMessage' => [ 'base' => NULL, 'refs' => [], ], 'DeleteEventSubscriptionResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteOptionGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBEngineVersionsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBInstancesMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBLogFilesDetails' => [ 'base' => NULL, 'refs' => [ 'DescribeDBLogFilesList$member' => NULL, ], ], 'DescribeDBLogFilesList' => [ 'base' => NULL, 'refs' => [ 'DescribeDBLogFilesResponse$DescribeDBLogFiles' => NULL, ], ], 'DescribeDBLogFilesMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBLogFilesResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBParameterGroupsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBParametersMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBSecurityGroupsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBSnapshotsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBSubnetGroupsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEngineDefaultParametersMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEngineDefaultParametersResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEventCategoriesMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEventSubscriptionsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEventsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeOptionGroupOptionsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeOptionGroupsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeOrderableDBInstanceOptionsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeReservedDBInstancesMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeReservedDBInstancesOfferingsMessage' => [ 'base' => NULL, 'refs' => [], ], 'Double' => [ 'base' => NULL, 'refs' => [ 'RecurringCharge$RecurringChargeAmount' => NULL, 'ReservedDBInstance$FixedPrice' => NULL, 'ReservedDBInstance$UsagePrice' => NULL, 'ReservedDBInstancesOffering$FixedPrice' => NULL, 'ReservedDBInstancesOffering$UsagePrice' => NULL, ], ], 'DownloadDBLogFilePortionDetails' => [ 'base' => NULL, 'refs' => [], ], 'DownloadDBLogFilePortionMessage' => [ 'base' => NULL, 'refs' => [], ], 'EC2SecurityGroup' => [ 'base' => NULL, 'refs' => [ 'EC2SecurityGroupList$member' => NULL, ], ], 'EC2SecurityGroupList' => [ 'base' => NULL, 'refs' => [ 'DBSecurityGroup$EC2SecurityGroups' => NULL, ], ], 'Endpoint' => [ 'base' => NULL, 'refs' => [ 'DBInstance$Endpoint' => NULL, ], ], 'EngineDefaults' => [ 'base' => NULL, 'refs' => [ 'DescribeEngineDefaultParametersResult$EngineDefaults' => NULL, ], ], 'Event' => [ 'base' => NULL, 'refs' => [ 'EventList$member' => NULL, ], ], 'EventCategoriesList' => [ 'base' => NULL, 'refs' => [ 'CreateEventSubscriptionMessage$EventCategories' => NULL, 'DescribeEventsMessage$EventCategories' => NULL, 'Event$EventCategories' => NULL, 'EventCategoriesMap$EventCategories' => NULL, 'EventSubscription$EventCategoriesList' => NULL, 'ModifyEventSubscriptionMessage$EventCategories' => NULL, ], ], 'EventCategoriesMap' => [ 'base' => NULL, 'refs' => [ 'EventCategoriesMapList$member' => NULL, ], ], 'EventCategoriesMapList' => [ 'base' => NULL, 'refs' => [ 'EventCategoriesMessage$EventCategoriesMapList' => NULL, ], ], 'EventCategoriesMessage' => [ 'base' => NULL, 'refs' => [], ], 'EventList' => [ 'base' => NULL, 'refs' => [ 'EventsMessage$Events' => NULL, ], ], 'EventSubscription' => [ 'base' => NULL, 'refs' => [ 'AddSourceIdentifierToSubscriptionResult$EventSubscription' => NULL, 'CreateEventSubscriptionResult$EventSubscription' => NULL, 'DeleteEventSubscriptionResult$EventSubscription' => NULL, 'EventSubscriptionsList$member' => NULL, 'ModifyEventSubscriptionResult$EventSubscription' => NULL, 'RemoveSourceIdentifierFromSubscriptionResult$EventSubscription' => NULL, ], ], 'EventSubscriptionQuotaExceededFault' => [ 'base' => '

You have reached the maximum number of event subscriptions.

', 'refs' => [], ], 'EventSubscriptionsList' => [ 'base' => NULL, 'refs' => [ 'EventSubscriptionsMessage$EventSubscriptionsList' => NULL, ], ], 'EventSubscriptionsMessage' => [ 'base' => NULL, 'refs' => [], ], 'EventsMessage' => [ 'base' => NULL, 'refs' => [], ], 'Filter' => [ 'base' => NULL, 'refs' => [ 'FilterList$member' => NULL, ], ], 'FilterList' => [ 'base' => NULL, 'refs' => [ 'DescribeDBEngineVersionsMessage$Filters' => NULL, 'DescribeDBInstancesMessage$Filters' => NULL, 'DescribeDBLogFilesMessage$Filters' => NULL, 'DescribeDBParameterGroupsMessage$Filters' => NULL, 'DescribeDBParametersMessage$Filters' => NULL, 'DescribeDBSecurityGroupsMessage$Filters' => NULL, 'DescribeDBSnapshotsMessage$Filters' => NULL, 'DescribeDBSubnetGroupsMessage$Filters' => NULL, 'DescribeEngineDefaultParametersMessage$Filters' => NULL, 'DescribeEventCategoriesMessage$Filters' => NULL, 'DescribeEventSubscriptionsMessage$Filters' => NULL, 'DescribeEventsMessage$Filters' => NULL, 'DescribeOptionGroupOptionsMessage$Filters' => NULL, 'DescribeOptionGroupsMessage$Filters' => NULL, 'DescribeOrderableDBInstanceOptionsMessage$Filters' => NULL, 'DescribeReservedDBInstancesMessage$Filters' => NULL, 'DescribeReservedDBInstancesOfferingsMessage$Filters' => NULL, 'ListTagsForResourceMessage$Filters' => NULL, ], ], 'FilterValueList' => [ 'base' => NULL, 'refs' => [ 'Filter$Values' => NULL, ], ], 'IPRange' => [ 'base' => NULL, 'refs' => [ 'IPRangeList$member' => NULL, ], ], 'IPRangeList' => [ 'base' => NULL, 'refs' => [ 'DBSecurityGroup$IPRanges' => NULL, ], ], 'InstanceQuotaExceededFault' => [ 'base' => '

The request would result in the user exceeding the allowed number of DB instances.

', 'refs' => [], ], 'InsufficientDBInstanceCapacityFault' => [ 'base' => '

The specified DB instance class isn\'t available in the specified Availability Zone.

', 'refs' => [], ], 'Integer' => [ 'base' => NULL, 'refs' => [ 'DBInstance$AllocatedStorage' => NULL, 'DBInstance$BackupRetentionPeriod' => NULL, 'DBSnapshot$AllocatedStorage' => NULL, 'DBSnapshot$Port' => NULL, 'DBSnapshot$PercentProgress' => NULL, 'DownloadDBLogFilePortionMessage$NumberOfLines' => NULL, 'Endpoint$Port' => NULL, 'ReservedDBInstance$Duration' => NULL, 'ReservedDBInstance$DBInstanceCount' => NULL, 'ReservedDBInstancesOffering$Duration' => NULL, ], ], 'IntegerOptional' => [ 'base' => NULL, 'refs' => [ 'CreateDBInstanceMessage$AllocatedStorage' => NULL, 'CreateDBInstanceMessage$BackupRetentionPeriod' => NULL, 'CreateDBInstanceMessage$Port' => NULL, 'CreateDBInstanceMessage$Iops' => NULL, 'CreateDBInstanceReadReplicaMessage$Port' => NULL, 'CreateDBInstanceReadReplicaMessage$Iops' => NULL, 'DBInstance$Iops' => NULL, 'DBSnapshot$Iops' => NULL, 'DescribeDBEngineVersionsMessage$MaxRecords' => NULL, 'DescribeDBInstancesMessage$MaxRecords' => NULL, 'DescribeDBLogFilesMessage$MaxRecords' => NULL, 'DescribeDBParameterGroupsMessage$MaxRecords' => NULL, 'DescribeDBParametersMessage$MaxRecords' => NULL, 'DescribeDBSecurityGroupsMessage$MaxRecords' => NULL, 'DescribeDBSnapshotsMessage$MaxRecords' => NULL, 'DescribeDBSubnetGroupsMessage$MaxRecords' => NULL, 'DescribeEngineDefaultParametersMessage$MaxRecords' => NULL, 'DescribeEventSubscriptionsMessage$MaxRecords' => NULL, 'DescribeEventsMessage$Duration' => NULL, 'DescribeEventsMessage$MaxRecords' => NULL, 'DescribeOptionGroupOptionsMessage$MaxRecords' => NULL, 'DescribeOptionGroupsMessage$MaxRecords' => NULL, 'DescribeOrderableDBInstanceOptionsMessage$MaxRecords' => NULL, 'DescribeReservedDBInstancesMessage$MaxRecords' => NULL, 'DescribeReservedDBInstancesOfferingsMessage$MaxRecords' => NULL, 'ModifyDBInstanceMessage$AllocatedStorage' => NULL, 'ModifyDBInstanceMessage$BackupRetentionPeriod' => NULL, 'ModifyDBInstanceMessage$Iops' => NULL, 'Option$Port' => NULL, 'OptionConfiguration$Port' => NULL, 'OptionGroupOption$DefaultPort' => NULL, 'PendingModifiedValues$AllocatedStorage' => NULL, 'PendingModifiedValues$Port' => NULL, 'PendingModifiedValues$BackupRetentionPeriod' => NULL, 'PendingModifiedValues$Iops' => NULL, 'PromoteReadReplicaMessage$BackupRetentionPeriod' => NULL, 'PurchaseReservedDBInstancesOfferingMessage$DBInstanceCount' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$Port' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$Iops' => NULL, 'RestoreDBInstanceToPointInTimeMessage$Port' => NULL, 'RestoreDBInstanceToPointInTimeMessage$Iops' => NULL, ], ], 'InvalidDBInstanceStateFault' => [ 'base' => '

The DB instance isn\'t in a valid state.

', 'refs' => [], ], 'InvalidDBParameterGroupStateFault' => [ 'base' => '

The DB parameter group is in use or is in an invalid state. If you are attempting to delete the parameter group, you can\'t delete it when the parameter group is in this state.

', 'refs' => [], ], 'InvalidDBSecurityGroupStateFault' => [ 'base' => '

The state of the DB security group doesn\'t allow deletion.

', 'refs' => [], ], 'InvalidDBSnapshotStateFault' => [ 'base' => '

The state of the DB snapshot doesn\'t allow deletion.

', 'refs' => [], ], 'InvalidDBSubnetGroupFault' => [ 'base' => '

The DBSubnetGroup doesn\'t belong to the same VPC as that of an existing cross-region read replica of the same source instance.

', 'refs' => [], ], 'InvalidDBSubnetGroupStateFault' => [ 'base' => '

The DB subnet group cannot be deleted because it\'s in use.

', 'refs' => [], ], 'InvalidDBSubnetStateFault' => [ 'base' => '

The DB subnet isn\'t in the available state.

', 'refs' => [], ], 'InvalidEventSubscriptionStateFault' => [ 'base' => '

This error can occur if someone else is modifying a subscription. You should retry the action.

', 'refs' => [], ], 'InvalidOptionGroupStateFault' => [ 'base' => '

The option group isn\'t in the available state.

', 'refs' => [], ], 'InvalidRestoreFault' => [ 'base' => '

Cannot restore from VPC backup to non-VPC DB instance.

', 'refs' => [], ], 'InvalidSubnet' => [ 'base' => '

The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

', 'refs' => [], ], 'InvalidVPCNetworkStateFault' => [ 'base' => '

The DB subnet group doesn\'t cover all Availability Zones after it\'s created because of users\' change.

', 'refs' => [], ], 'KeyList' => [ 'base' => NULL, 'refs' => [ 'RemoveTagsFromResourceMessage$TagKeys' => NULL, ], ], 'ListTagsForResourceMessage' => [ 'base' => NULL, 'refs' => [], ], 'Long' => [ 'base' => NULL, 'refs' => [ 'DescribeDBLogFilesDetails$LastWritten' => NULL, 'DescribeDBLogFilesDetails$Size' => NULL, 'DescribeDBLogFilesMessage$FileLastWritten' => NULL, 'DescribeDBLogFilesMessage$FileSize' => NULL, ], ], 'ModifyDBInstanceMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBParameterGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBSubnetGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBSubnetGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyEventSubscriptionMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyEventSubscriptionResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyOptionGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyOptionGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'Option' => [ 'base' => NULL, 'refs' => [ 'OptionsList$member' => NULL, ], ], 'OptionConfiguration' => [ 'base' => NULL, 'refs' => [ 'OptionConfigurationList$member' => NULL, ], ], 'OptionConfigurationList' => [ 'base' => NULL, 'refs' => [ 'ModifyOptionGroupMessage$OptionsToInclude' => NULL, ], ], 'OptionGroup' => [ 'base' => NULL, 'refs' => [ 'CopyOptionGroupResult$OptionGroup' => NULL, 'CreateOptionGroupResult$OptionGroup' => NULL, 'ModifyOptionGroupResult$OptionGroup' => NULL, 'OptionGroupsList$member' => NULL, ], ], 'OptionGroupAlreadyExistsFault' => [ 'base' => '

The option group you are trying to create already exists.

', 'refs' => [], ], 'OptionGroupMembership' => [ 'base' => NULL, 'refs' => [ 'OptionGroupMembershipList$member' => NULL, ], ], 'OptionGroupMembershipList' => [ 'base' => NULL, 'refs' => [ 'DBInstance$OptionGroupMemberships' => NULL, ], ], 'OptionGroupNotFoundFault' => [ 'base' => '

The specified option group could not be found.

', 'refs' => [], ], 'OptionGroupOption' => [ 'base' => NULL, 'refs' => [ 'OptionGroupOptionsList$member' => NULL, ], ], 'OptionGroupOptionSetting' => [ 'base' => NULL, 'refs' => [ 'OptionGroupOptionSettingsList$member' => NULL, ], ], 'OptionGroupOptionSettingsList' => [ 'base' => NULL, 'refs' => [ 'OptionGroupOption$OptionGroupOptionSettings' => NULL, ], ], 'OptionGroupOptionsList' => [ 'base' => NULL, 'refs' => [ 'OptionGroupOptionsMessage$OptionGroupOptions' => NULL, ], ], 'OptionGroupOptionsMessage' => [ 'base' => NULL, 'refs' => [], ], 'OptionGroupQuotaExceededFault' => [ 'base' => '

The quota of 20 option groups was exceeded for this Amazon Web Services account.

', 'refs' => [], ], 'OptionGroups' => [ 'base' => NULL, 'refs' => [], ], 'OptionGroupsList' => [ 'base' => NULL, 'refs' => [ 'OptionGroups$OptionGroupsList' => NULL, ], ], 'OptionNamesList' => [ 'base' => NULL, 'refs' => [ 'ModifyOptionGroupMessage$OptionsToRemove' => NULL, ], ], 'OptionSetting' => [ 'base' => NULL, 'refs' => [ 'OptionSettingConfigurationList$member' => NULL, 'OptionSettingsList$member' => NULL, ], ], 'OptionSettingConfigurationList' => [ 'base' => NULL, 'refs' => [ 'Option$OptionSettings' => NULL, ], ], 'OptionSettingsList' => [ 'base' => NULL, 'refs' => [ 'OptionConfiguration$OptionSettings' => NULL, ], ], 'OptionsDependedOn' => [ 'base' => NULL, 'refs' => [ 'OptionGroupOption$OptionsDependedOn' => NULL, ], ], 'OptionsList' => [ 'base' => NULL, 'refs' => [ 'OptionGroup$Options' => NULL, ], ], 'OrderableDBInstanceOption' => [ 'base' => NULL, 'refs' => [ 'OrderableDBInstanceOptionsList$member' => NULL, ], ], 'OrderableDBInstanceOptionsList' => [ 'base' => NULL, 'refs' => [ 'OrderableDBInstanceOptionsMessage$OrderableDBInstanceOptions' => NULL, ], ], 'OrderableDBInstanceOptionsMessage' => [ 'base' => NULL, 'refs' => [], ], 'Parameter' => [ 'base' => NULL, 'refs' => [ 'ParametersList$member' => NULL, ], ], 'ParametersList' => [ 'base' => NULL, 'refs' => [ 'DBParameterGroupDetails$Parameters' => NULL, 'EngineDefaults$Parameters' => NULL, 'ModifyDBParameterGroupMessage$Parameters' => NULL, 'ResetDBParameterGroupMessage$Parameters' => NULL, ], ], 'PendingModifiedValues' => [ 'base' => NULL, 'refs' => [ 'DBInstance$PendingModifiedValues' => NULL, ], ], 'PointInTimeRestoreNotEnabledFault' => [ 'base' => '

SourceDBInstanceIdentifier refers to a DB instance with BackupRetentionPeriod equal to 0.

', 'refs' => [], ], 'PromoteReadReplicaMessage' => [ 'base' => NULL, 'refs' => [], ], 'PromoteReadReplicaResult' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionedIopsNotAvailableInAZFault' => [ 'base' => '

Provisioned IOPS not available in the specified Availability Zone.

', 'refs' => [], ], 'PurchaseReservedDBInstancesOfferingMessage' => [ 'base' => NULL, 'refs' => [], ], 'PurchaseReservedDBInstancesOfferingResult' => [ 'base' => NULL, 'refs' => [], ], 'ReadReplicaDBInstanceIdentifierList' => [ 'base' => NULL, 'refs' => [ 'DBInstance$ReadReplicaDBInstanceIdentifiers' => NULL, ], ], 'RebootDBInstanceMessage' => [ 'base' => NULL, 'refs' => [], ], 'RebootDBInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'RecurringCharge' => [ 'base' => NULL, 'refs' => [ 'RecurringChargeList$member' => NULL, ], ], 'RecurringChargeList' => [ 'base' => NULL, 'refs' => [ 'ReservedDBInstance$RecurringCharges' => NULL, 'ReservedDBInstancesOffering$RecurringCharges' => NULL, ], ], 'RemoveSourceIdentifierFromSubscriptionMessage' => [ 'base' => NULL, 'refs' => [], ], 'RemoveSourceIdentifierFromSubscriptionResult' => [ 'base' => NULL, 'refs' => [], ], 'RemoveTagsFromResourceMessage' => [ 'base' => NULL, 'refs' => [], ], 'ReservedDBInstance' => [ 'base' => NULL, 'refs' => [ 'PurchaseReservedDBInstancesOfferingResult$ReservedDBInstance' => NULL, 'ReservedDBInstanceList$member' => NULL, ], ], 'ReservedDBInstanceAlreadyExistsFault' => [ 'base' => '

User already has a reservation with the given identifier.

', 'refs' => [], ], 'ReservedDBInstanceList' => [ 'base' => NULL, 'refs' => [ 'ReservedDBInstanceMessage$ReservedDBInstances' => NULL, ], ], 'ReservedDBInstanceMessage' => [ 'base' => NULL, 'refs' => [], ], 'ReservedDBInstanceNotFoundFault' => [ 'base' => '

The specified reserved DB Instance not found.

', 'refs' => [], ], 'ReservedDBInstanceQuotaExceededFault' => [ 'base' => '

Request would exceed the user\'s DB Instance quota.

', 'refs' => [], ], 'ReservedDBInstancesOffering' => [ 'base' => NULL, 'refs' => [ 'ReservedDBInstancesOfferingList$member' => NULL, ], ], 'ReservedDBInstancesOfferingList' => [ 'base' => NULL, 'refs' => [ 'ReservedDBInstancesOfferingMessage$ReservedDBInstancesOfferings' => NULL, ], ], 'ReservedDBInstancesOfferingMessage' => [ 'base' => NULL, 'refs' => [], ], 'ReservedDBInstancesOfferingNotFoundFault' => [ 'base' => '

Specified offering does not exist.

', 'refs' => [], ], 'ResetDBParameterGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'RestoreDBInstanceFromDBSnapshotMessage' => [ 'base' => NULL, 'refs' => [], ], 'RestoreDBInstanceFromDBSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'RestoreDBInstanceToPointInTimeMessage' => [ 'base' => NULL, 'refs' => [], ], 'RestoreDBInstanceToPointInTimeResult' => [ 'base' => NULL, 'refs' => [], ], 'RevokeDBSecurityGroupIngressMessage' => [ 'base' => NULL, 'refs' => [], ], 'RevokeDBSecurityGroupIngressResult' => [ 'base' => NULL, 'refs' => [], ], 'SNSInvalidTopicFault' => [ 'base' => '

SNS has responded that there is a problem with the SNS topic specified.

', 'refs' => [], ], 'SNSNoAuthorizationFault' => [ 'base' => '

You do not have permission to publish to the SNS topic ARN.

', 'refs' => [], ], 'SNSTopicArnNotFoundFault' => [ 'base' => '

The SNS topic ARN does not exist.

', 'refs' => [], ], 'SensitiveString' => [ 'base' => NULL, 'refs' => [ 'CreateDBInstanceMessage$MasterUserPassword' => NULL, 'CreateDBInstanceMessage$TdeCredentialPassword' => NULL, 'DownloadDBLogFilePortionDetails$LogFileData' => NULL, 'ModifyDBInstanceMessage$MasterUserPassword' => NULL, 'ModifyDBInstanceMessage$TdeCredentialPassword' => NULL, 'OptionSetting$Value' => NULL, 'PendingModifiedValues$MasterUserPassword' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$TdeCredentialPassword' => NULL, 'RestoreDBInstanceToPointInTimeMessage$TdeCredentialPassword' => NULL, ], ], 'SnapshotQuotaExceededFault' => [ 'base' => '

The request would result in the user exceeding the allowed number of DB snapshots.

', 'refs' => [], ], 'SourceIdsList' => [ 'base' => NULL, 'refs' => [ 'CreateEventSubscriptionMessage$SourceIds' => NULL, 'EventSubscription$SourceIdsList' => NULL, ], ], 'SourceNotFoundFault' => [ 'base' => '

The requested source could not be found.

', 'refs' => [], ], 'SourceType' => [ 'base' => NULL, 'refs' => [ 'DescribeEventsMessage$SourceType' => NULL, 'Event$SourceType' => NULL, ], ], 'StorageQuotaExceededFault' => [ 'base' => '

The request would result in the user exceeding the allowed amount of storage available across all DB instances.

', 'refs' => [], ], 'StorageTypeNotSupportedFault' => [ 'base' => '

The specified StorageType can\'t be associated with the DB instance.

', 'refs' => [], ], 'String' => [ 'base' => NULL, 'refs' => [ 'AddSourceIdentifierToSubscriptionMessage$SubscriptionName' => NULL, 'AddSourceIdentifierToSubscriptionMessage$SourceIdentifier' => NULL, 'AddTagsToResourceMessage$ResourceName' => NULL, 'AuthorizeDBSecurityGroupIngressMessage$DBSecurityGroupName' => NULL, 'AuthorizeDBSecurityGroupIngressMessage$CIDRIP' => NULL, 'AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupName' => NULL, 'AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupId' => NULL, 'AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupOwnerId' => NULL, 'AvailabilityZone$Name' => NULL, 'CharacterSet$CharacterSetName' => NULL, 'CharacterSet$CharacterSetDescription' => NULL, 'CopyDBParameterGroupMessage$SourceDBParameterGroupIdentifier' => NULL, 'CopyDBParameterGroupMessage$TargetDBParameterGroupIdentifier' => NULL, 'CopyDBParameterGroupMessage$TargetDBParameterGroupDescription' => NULL, 'CopyDBSnapshotMessage$SourceDBSnapshotIdentifier' => NULL, 'CopyDBSnapshotMessage$TargetDBSnapshotIdentifier' => NULL, 'CopyOptionGroupMessage$SourceOptionGroupIdentifier' => NULL, 'CopyOptionGroupMessage$TargetOptionGroupIdentifier' => NULL, 'CopyOptionGroupMessage$TargetOptionGroupDescription' => NULL, 'CreateDBInstanceMessage$DBName' => NULL, 'CreateDBInstanceMessage$DBInstanceIdentifier' => NULL, 'CreateDBInstanceMessage$DBInstanceClass' => NULL, 'CreateDBInstanceMessage$Engine' => NULL, 'CreateDBInstanceMessage$MasterUsername' => NULL, 'CreateDBInstanceMessage$AvailabilityZone' => NULL, 'CreateDBInstanceMessage$DBSubnetGroupName' => NULL, 'CreateDBInstanceMessage$PreferredMaintenanceWindow' => NULL, 'CreateDBInstanceMessage$DBParameterGroupName' => NULL, 'CreateDBInstanceMessage$PreferredBackupWindow' => NULL, 'CreateDBInstanceMessage$EngineVersion' => NULL, 'CreateDBInstanceMessage$LicenseModel' => NULL, 'CreateDBInstanceMessage$OptionGroupName' => NULL, 'CreateDBInstanceMessage$CharacterSetName' => NULL, 'CreateDBInstanceMessage$StorageType' => NULL, 'CreateDBInstanceMessage$TdeCredentialArn' => NULL, 'CreateDBInstanceReadReplicaMessage$DBInstanceIdentifier' => NULL, 'CreateDBInstanceReadReplicaMessage$SourceDBInstanceIdentifier' => NULL, 'CreateDBInstanceReadReplicaMessage$DBInstanceClass' => NULL, 'CreateDBInstanceReadReplicaMessage$AvailabilityZone' => NULL, 'CreateDBInstanceReadReplicaMessage$OptionGroupName' => NULL, 'CreateDBInstanceReadReplicaMessage$DBSubnetGroupName' => NULL, 'CreateDBInstanceReadReplicaMessage$StorageType' => NULL, 'CreateDBParameterGroupMessage$DBParameterGroupName' => NULL, 'CreateDBParameterGroupMessage$DBParameterGroupFamily' => NULL, 'CreateDBParameterGroupMessage$Description' => NULL, 'CreateDBSecurityGroupMessage$DBSecurityGroupName' => NULL, 'CreateDBSecurityGroupMessage$DBSecurityGroupDescription' => NULL, 'CreateDBSnapshotMessage$DBSnapshotIdentifier' => NULL, 'CreateDBSnapshotMessage$DBInstanceIdentifier' => NULL, 'CreateDBSubnetGroupMessage$DBSubnetGroupName' => NULL, 'CreateDBSubnetGroupMessage$DBSubnetGroupDescription' => NULL, 'CreateEventSubscriptionMessage$SubscriptionName' => NULL, 'CreateEventSubscriptionMessage$SnsTopicArn' => NULL, 'CreateEventSubscriptionMessage$SourceType' => NULL, 'CreateOptionGroupMessage$OptionGroupName' => NULL, 'CreateOptionGroupMessage$EngineName' => NULL, 'CreateOptionGroupMessage$MajorEngineVersion' => NULL, 'CreateOptionGroupMessage$OptionGroupDescription' => NULL, 'DBEngineVersion$Engine' => NULL, 'DBEngineVersion$EngineVersion' => NULL, 'DBEngineVersion$DBParameterGroupFamily' => NULL, 'DBEngineVersion$DBEngineDescription' => NULL, 'DBEngineVersion$DBEngineVersionDescription' => NULL, 'DBEngineVersionMessage$Marker' => NULL, 'DBInstance$DBInstanceIdentifier' => NULL, 'DBInstance$DBInstanceClass' => NULL, 'DBInstance$Engine' => NULL, 'DBInstance$DBInstanceStatus' => NULL, 'DBInstance$MasterUsername' => NULL, 'DBInstance$DBName' => NULL, 'DBInstance$PreferredBackupWindow' => NULL, 'DBInstance$AvailabilityZone' => NULL, 'DBInstance$PreferredMaintenanceWindow' => NULL, 'DBInstance$EngineVersion' => NULL, 'DBInstance$ReadReplicaSourceDBInstanceIdentifier' => NULL, 'DBInstance$LicenseModel' => NULL, 'DBInstance$CharacterSetName' => NULL, 'DBInstance$SecondaryAvailabilityZone' => NULL, 'DBInstance$StorageType' => NULL, 'DBInstance$TdeCredentialArn' => NULL, 'DBInstanceMessage$Marker' => NULL, 'DBInstanceStatusInfo$StatusType' => NULL, 'DBInstanceStatusInfo$Status' => NULL, 'DBInstanceStatusInfo$Message' => NULL, 'DBParameterGroup$DBParameterGroupName' => NULL, 'DBParameterGroup$DBParameterGroupFamily' => NULL, 'DBParameterGroup$Description' => NULL, 'DBParameterGroupDetails$Marker' => NULL, 'DBParameterGroupNameMessage$DBParameterGroupName' => NULL, 'DBParameterGroupStatus$DBParameterGroupName' => NULL, 'DBParameterGroupStatus$ParameterApplyStatus' => NULL, 'DBParameterGroupsMessage$Marker' => NULL, 'DBSecurityGroup$OwnerId' => NULL, 'DBSecurityGroup$DBSecurityGroupName' => NULL, 'DBSecurityGroup$DBSecurityGroupDescription' => NULL, 'DBSecurityGroup$VpcId' => NULL, 'DBSecurityGroupMembership$DBSecurityGroupName' => NULL, 'DBSecurityGroupMembership$Status' => NULL, 'DBSecurityGroupMessage$Marker' => NULL, 'DBSecurityGroupNameList$member' => NULL, 'DBSnapshot$DBSnapshotIdentifier' => NULL, 'DBSnapshot$DBInstanceIdentifier' => NULL, 'DBSnapshot$Engine' => NULL, 'DBSnapshot$Status' => NULL, 'DBSnapshot$AvailabilityZone' => NULL, 'DBSnapshot$VpcId' => NULL, 'DBSnapshot$MasterUsername' => NULL, 'DBSnapshot$EngineVersion' => NULL, 'DBSnapshot$LicenseModel' => NULL, 'DBSnapshot$SnapshotType' => NULL, 'DBSnapshot$OptionGroupName' => NULL, 'DBSnapshot$SourceRegion' => NULL, 'DBSnapshot$StorageType' => NULL, 'DBSnapshot$TdeCredentialArn' => NULL, 'DBSnapshotMessage$Marker' => NULL, 'DBSubnetGroup$DBSubnetGroupName' => NULL, 'DBSubnetGroup$DBSubnetGroupDescription' => NULL, 'DBSubnetGroup$VpcId' => NULL, 'DBSubnetGroup$SubnetGroupStatus' => NULL, 'DBSubnetGroupMessage$Marker' => NULL, 'DeleteDBInstanceMessage$DBInstanceIdentifier' => NULL, 'DeleteDBInstanceMessage$FinalDBSnapshotIdentifier' => NULL, 'DeleteDBParameterGroupMessage$DBParameterGroupName' => NULL, 'DeleteDBSecurityGroupMessage$DBSecurityGroupName' => NULL, 'DeleteDBSnapshotMessage$DBSnapshotIdentifier' => NULL, 'DeleteDBSubnetGroupMessage$DBSubnetGroupName' => NULL, 'DeleteEventSubscriptionMessage$SubscriptionName' => NULL, 'DeleteOptionGroupMessage$OptionGroupName' => NULL, 'DescribeDBEngineVersionsMessage$Engine' => NULL, 'DescribeDBEngineVersionsMessage$EngineVersion' => NULL, 'DescribeDBEngineVersionsMessage$DBParameterGroupFamily' => NULL, 'DescribeDBEngineVersionsMessage$Marker' => NULL, 'DescribeDBInstancesMessage$DBInstanceIdentifier' => NULL, 'DescribeDBInstancesMessage$Marker' => NULL, 'DescribeDBLogFilesDetails$LogFileName' => NULL, 'DescribeDBLogFilesMessage$DBInstanceIdentifier' => NULL, 'DescribeDBLogFilesMessage$FilenameContains' => NULL, 'DescribeDBLogFilesMessage$Marker' => NULL, 'DescribeDBLogFilesResponse$Marker' => NULL, 'DescribeDBParameterGroupsMessage$DBParameterGroupName' => NULL, 'DescribeDBParameterGroupsMessage$Marker' => NULL, 'DescribeDBParametersMessage$DBParameterGroupName' => NULL, 'DescribeDBParametersMessage$Source' => NULL, 'DescribeDBParametersMessage$Marker' => NULL, 'DescribeDBSecurityGroupsMessage$DBSecurityGroupName' => NULL, 'DescribeDBSecurityGroupsMessage$Marker' => NULL, 'DescribeDBSnapshotsMessage$DBInstanceIdentifier' => NULL, 'DescribeDBSnapshotsMessage$DBSnapshotIdentifier' => NULL, 'DescribeDBSnapshotsMessage$SnapshotType' => NULL, 'DescribeDBSnapshotsMessage$Marker' => NULL, 'DescribeDBSubnetGroupsMessage$DBSubnetGroupName' => NULL, 'DescribeDBSubnetGroupsMessage$Marker' => NULL, 'DescribeEngineDefaultParametersMessage$DBParameterGroupFamily' => NULL, 'DescribeEngineDefaultParametersMessage$Marker' => NULL, 'DescribeEventCategoriesMessage$SourceType' => NULL, 'DescribeEventSubscriptionsMessage$SubscriptionName' => NULL, 'DescribeEventSubscriptionsMessage$Marker' => NULL, 'DescribeEventsMessage$SourceIdentifier' => NULL, 'DescribeEventsMessage$Marker' => NULL, 'DescribeOptionGroupOptionsMessage$EngineName' => NULL, 'DescribeOptionGroupOptionsMessage$MajorEngineVersion' => NULL, 'DescribeOptionGroupOptionsMessage$Marker' => NULL, 'DescribeOptionGroupsMessage$OptionGroupName' => NULL, 'DescribeOptionGroupsMessage$Marker' => NULL, 'DescribeOptionGroupsMessage$EngineName' => NULL, 'DescribeOptionGroupsMessage$MajorEngineVersion' => NULL, 'DescribeOrderableDBInstanceOptionsMessage$Engine' => NULL, 'DescribeOrderableDBInstanceOptionsMessage$EngineVersion' => NULL, 'DescribeOrderableDBInstanceOptionsMessage$DBInstanceClass' => NULL, 'DescribeOrderableDBInstanceOptionsMessage$LicenseModel' => NULL, 'DescribeOrderableDBInstanceOptionsMessage$Marker' => NULL, 'DescribeReservedDBInstancesMessage$ReservedDBInstanceId' => NULL, 'DescribeReservedDBInstancesMessage$ReservedDBInstancesOfferingId' => NULL, 'DescribeReservedDBInstancesMessage$DBInstanceClass' => NULL, 'DescribeReservedDBInstancesMessage$Duration' => NULL, 'DescribeReservedDBInstancesMessage$ProductDescription' => NULL, 'DescribeReservedDBInstancesMessage$OfferingType' => NULL, 'DescribeReservedDBInstancesMessage$Marker' => NULL, 'DescribeReservedDBInstancesOfferingsMessage$ReservedDBInstancesOfferingId' => NULL, 'DescribeReservedDBInstancesOfferingsMessage$DBInstanceClass' => NULL, 'DescribeReservedDBInstancesOfferingsMessage$Duration' => NULL, 'DescribeReservedDBInstancesOfferingsMessage$ProductDescription' => NULL, 'DescribeReservedDBInstancesOfferingsMessage$OfferingType' => NULL, 'DescribeReservedDBInstancesOfferingsMessage$Marker' => NULL, 'DownloadDBLogFilePortionDetails$Marker' => NULL, 'DownloadDBLogFilePortionMessage$DBInstanceIdentifier' => NULL, 'DownloadDBLogFilePortionMessage$LogFileName' => NULL, 'DownloadDBLogFilePortionMessage$Marker' => NULL, 'EC2SecurityGroup$Status' => NULL, 'EC2SecurityGroup$EC2SecurityGroupName' => NULL, 'EC2SecurityGroup$EC2SecurityGroupId' => NULL, 'EC2SecurityGroup$EC2SecurityGroupOwnerId' => NULL, 'Endpoint$Address' => NULL, 'EngineDefaults$DBParameterGroupFamily' => NULL, 'EngineDefaults$Marker' => NULL, 'Event$SourceIdentifier' => NULL, 'Event$Message' => NULL, 'EventCategoriesList$member' => NULL, 'EventCategoriesMap$SourceType' => NULL, 'EventSubscription$CustomerAwsId' => NULL, 'EventSubscription$CustSubscriptionId' => NULL, 'EventSubscription$SnsTopicArn' => NULL, 'EventSubscription$Status' => NULL, 'EventSubscription$SubscriptionCreationTime' => NULL, 'EventSubscription$SourceType' => NULL, 'EventSubscriptionsMessage$Marker' => NULL, 'EventsMessage$Marker' => NULL, 'Filter$Name' => NULL, 'FilterValueList$member' => NULL, 'IPRange$Status' => NULL, 'IPRange$CIDRIP' => NULL, 'KeyList$member' => NULL, 'ListTagsForResourceMessage$ResourceName' => NULL, 'ModifyDBInstanceMessage$DBInstanceIdentifier' => NULL, 'ModifyDBInstanceMessage$DBInstanceClass' => NULL, 'ModifyDBInstanceMessage$DBParameterGroupName' => NULL, 'ModifyDBInstanceMessage$PreferredBackupWindow' => NULL, 'ModifyDBInstanceMessage$PreferredMaintenanceWindow' => NULL, 'ModifyDBInstanceMessage$EngineVersion' => NULL, 'ModifyDBInstanceMessage$OptionGroupName' => NULL, 'ModifyDBInstanceMessage$NewDBInstanceIdentifier' => NULL, 'ModifyDBInstanceMessage$StorageType' => NULL, 'ModifyDBInstanceMessage$TdeCredentialArn' => NULL, 'ModifyDBParameterGroupMessage$DBParameterGroupName' => NULL, 'ModifyDBSubnetGroupMessage$DBSubnetGroupName' => NULL, 'ModifyDBSubnetGroupMessage$DBSubnetGroupDescription' => NULL, 'ModifyEventSubscriptionMessage$SubscriptionName' => NULL, 'ModifyEventSubscriptionMessage$SnsTopicArn' => NULL, 'ModifyEventSubscriptionMessage$SourceType' => NULL, 'ModifyOptionGroupMessage$OptionGroupName' => NULL, 'Option$OptionName' => NULL, 'Option$OptionDescription' => NULL, 'OptionConfiguration$OptionName' => NULL, 'OptionGroup$OptionGroupName' => NULL, 'OptionGroup$OptionGroupDescription' => NULL, 'OptionGroup$EngineName' => NULL, 'OptionGroup$MajorEngineVersion' => NULL, 'OptionGroup$VpcId' => NULL, 'OptionGroupMembership$OptionGroupName' => NULL, 'OptionGroupMembership$Status' => NULL, 'OptionGroupOption$Name' => NULL, 'OptionGroupOption$Description' => NULL, 'OptionGroupOption$EngineName' => NULL, 'OptionGroupOption$MajorEngineVersion' => NULL, 'OptionGroupOption$MinimumRequiredMinorEngineVersion' => NULL, 'OptionGroupOptionSetting$SettingName' => NULL, 'OptionGroupOptionSetting$SettingDescription' => NULL, 'OptionGroupOptionSetting$DefaultValue' => NULL, 'OptionGroupOptionSetting$ApplyType' => NULL, 'OptionGroupOptionSetting$AllowedValues' => NULL, 'OptionGroupOptionsMessage$Marker' => NULL, 'OptionGroups$Marker' => NULL, 'OptionNamesList$member' => NULL, 'OptionSetting$Name' => NULL, 'OptionSetting$DefaultValue' => NULL, 'OptionSetting$Description' => NULL, 'OptionSetting$ApplyType' => NULL, 'OptionSetting$DataType' => NULL, 'OptionSetting$AllowedValues' => NULL, 'OptionsDependedOn$member' => NULL, 'OrderableDBInstanceOption$Engine' => NULL, 'OrderableDBInstanceOption$EngineVersion' => NULL, 'OrderableDBInstanceOption$DBInstanceClass' => NULL, 'OrderableDBInstanceOption$LicenseModel' => NULL, 'OrderableDBInstanceOption$StorageType' => NULL, 'OrderableDBInstanceOptionsMessage$Marker' => NULL, 'Parameter$ParameterName' => NULL, 'Parameter$ParameterValue' => NULL, 'Parameter$Description' => NULL, 'Parameter$Source' => NULL, 'Parameter$ApplyType' => NULL, 'Parameter$DataType' => NULL, 'Parameter$AllowedValues' => NULL, 'Parameter$MinimumEngineVersion' => NULL, 'PendingModifiedValues$DBInstanceClass' => NULL, 'PendingModifiedValues$EngineVersion' => NULL, 'PendingModifiedValues$DBInstanceIdentifier' => NULL, 'PendingModifiedValues$StorageType' => NULL, 'PromoteReadReplicaMessage$DBInstanceIdentifier' => NULL, 'PromoteReadReplicaMessage$PreferredBackupWindow' => NULL, 'PurchaseReservedDBInstancesOfferingMessage$ReservedDBInstancesOfferingId' => NULL, 'PurchaseReservedDBInstancesOfferingMessage$ReservedDBInstanceId' => NULL, 'ReadReplicaDBInstanceIdentifierList$member' => NULL, 'RebootDBInstanceMessage$DBInstanceIdentifier' => NULL, 'RecurringCharge$RecurringChargeFrequency' => NULL, 'RemoveSourceIdentifierFromSubscriptionMessage$SubscriptionName' => NULL, 'RemoveSourceIdentifierFromSubscriptionMessage$SourceIdentifier' => NULL, 'RemoveTagsFromResourceMessage$ResourceName' => NULL, 'ReservedDBInstance$ReservedDBInstanceId' => NULL, 'ReservedDBInstance$ReservedDBInstancesOfferingId' => NULL, 'ReservedDBInstance$DBInstanceClass' => NULL, 'ReservedDBInstance$CurrencyCode' => NULL, 'ReservedDBInstance$ProductDescription' => NULL, 'ReservedDBInstance$OfferingType' => NULL, 'ReservedDBInstance$State' => NULL, 'ReservedDBInstanceMessage$Marker' => NULL, 'ReservedDBInstancesOffering$ReservedDBInstancesOfferingId' => NULL, 'ReservedDBInstancesOffering$DBInstanceClass' => NULL, 'ReservedDBInstancesOffering$CurrencyCode' => NULL, 'ReservedDBInstancesOffering$ProductDescription' => NULL, 'ReservedDBInstancesOffering$OfferingType' => NULL, 'ReservedDBInstancesOfferingMessage$Marker' => NULL, 'ResetDBParameterGroupMessage$DBParameterGroupName' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$DBInstanceIdentifier' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$DBSnapshotIdentifier' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$DBInstanceClass' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$AvailabilityZone' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$DBSubnetGroupName' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$LicenseModel' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$DBName' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$Engine' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$OptionGroupName' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$StorageType' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$TdeCredentialArn' => NULL, 'RestoreDBInstanceToPointInTimeMessage$SourceDBInstanceIdentifier' => NULL, 'RestoreDBInstanceToPointInTimeMessage$TargetDBInstanceIdentifier' => NULL, 'RestoreDBInstanceToPointInTimeMessage$DBInstanceClass' => NULL, 'RestoreDBInstanceToPointInTimeMessage$AvailabilityZone' => NULL, 'RestoreDBInstanceToPointInTimeMessage$DBSubnetGroupName' => NULL, 'RestoreDBInstanceToPointInTimeMessage$LicenseModel' => NULL, 'RestoreDBInstanceToPointInTimeMessage$DBName' => NULL, 'RestoreDBInstanceToPointInTimeMessage$Engine' => NULL, 'RestoreDBInstanceToPointInTimeMessage$OptionGroupName' => NULL, 'RestoreDBInstanceToPointInTimeMessage$StorageType' => NULL, 'RestoreDBInstanceToPointInTimeMessage$TdeCredentialArn' => NULL, 'RevokeDBSecurityGroupIngressMessage$DBSecurityGroupName' => NULL, 'RevokeDBSecurityGroupIngressMessage$CIDRIP' => NULL, 'RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupName' => NULL, 'RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupId' => NULL, 'RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupOwnerId' => NULL, 'SourceIdsList$member' => NULL, 'Subnet$SubnetIdentifier' => NULL, 'Subnet$SubnetStatus' => NULL, 'SubnetIdentifierList$member' => NULL, 'Tag$Key' => NULL, 'Tag$Value' => NULL, 'VpcSecurityGroupIdList$member' => NULL, 'VpcSecurityGroupMembership$VpcSecurityGroupId' => NULL, 'VpcSecurityGroupMembership$Status' => NULL, ], ], 'Subnet' => [ 'base' => NULL, 'refs' => [ 'SubnetList$member' => NULL, ], ], 'SubnetAlreadyInUse' => [ 'base' => '

The DB subnet is already in use in the Availability Zone.

', 'refs' => [], ], 'SubnetIdentifierList' => [ 'base' => NULL, 'refs' => [ 'CreateDBSubnetGroupMessage$SubnetIds' => NULL, 'ModifyDBSubnetGroupMessage$SubnetIds' => NULL, ], ], 'SubnetList' => [ 'base' => NULL, 'refs' => [ 'DBSubnetGroup$Subnets' => NULL, ], ], 'SubscriptionAlreadyExistFault' => [ 'base' => '

The supplied subscription name already exists.

', 'refs' => [], ], 'SubscriptionCategoryNotFoundFault' => [ 'base' => '

The supplied category does not exist.

', 'refs' => [], ], 'SubscriptionNotFoundFault' => [ 'base' => '

The subscription name does not exist.

', 'refs' => [], ], 'SupportedCharacterSetsList' => [ 'base' => NULL, 'refs' => [ 'DBEngineVersion$SupportedCharacterSets' => NULL, ], ], 'TStamp' => [ 'base' => NULL, 'refs' => [ 'DBInstance$InstanceCreateTime' => NULL, 'DBInstance$LatestRestorableTime' => NULL, 'DBSnapshot$SnapshotCreateTime' => NULL, 'DBSnapshot$InstanceCreateTime' => NULL, 'DescribeEventsMessage$StartTime' => NULL, 'DescribeEventsMessage$EndTime' => NULL, 'Event$Date' => NULL, 'ReservedDBInstance$StartTime' => NULL, 'RestoreDBInstanceToPointInTimeMessage$RestoreTime' => NULL, ], ], 'Tag' => [ 'base' => NULL, 'refs' => [ 'TagList$member' => NULL, ], ], 'TagList' => [ 'base' => NULL, 'refs' => [ 'AddTagsToResourceMessage$Tags' => NULL, 'CopyDBParameterGroupMessage$Tags' => NULL, 'CopyDBSnapshotMessage$Tags' => NULL, 'CopyOptionGroupMessage$Tags' => NULL, 'CreateDBInstanceMessage$Tags' => NULL, 'CreateDBInstanceReadReplicaMessage$Tags' => NULL, 'CreateDBParameterGroupMessage$Tags' => NULL, 'CreateDBSecurityGroupMessage$Tags' => NULL, 'CreateDBSnapshotMessage$Tags' => NULL, 'CreateDBSubnetGroupMessage$Tags' => NULL, 'CreateEventSubscriptionMessage$Tags' => NULL, 'CreateOptionGroupMessage$Tags' => NULL, 'PurchaseReservedDBInstancesOfferingMessage$Tags' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$Tags' => NULL, 'RestoreDBInstanceToPointInTimeMessage$Tags' => NULL, 'TagListMessage$TagList' => NULL, ], ], 'TagListMessage' => [ 'base' => NULL, 'refs' => [], ], 'VpcSecurityGroupIdList' => [ 'base' => NULL, 'refs' => [ 'CreateDBInstanceMessage$VpcSecurityGroupIds' => NULL, 'ModifyDBInstanceMessage$VpcSecurityGroupIds' => NULL, 'OptionConfiguration$VpcSecurityGroupMemberships' => NULL, ], ], 'VpcSecurityGroupMembership' => [ 'base' => NULL, 'refs' => [ 'VpcSecurityGroupMembershipList$member' => NULL, ], ], 'VpcSecurityGroupMembershipList' => [ 'base' => NULL, 'refs' => [ 'DBInstance$VpcSecurityGroups' => NULL, 'Option$VpcSecurityGroupMemberships' => NULL, ], ], ],]; diff --git a/src/data/rds_feature/2014-09-01/endpoint-rule-set-1.json b/src/data/rds_feature/2014-09-01/endpoint-rule-set-1.json new file mode 100644 index 0000000000..1dfb5f0825 --- /dev/null +++ b/src/data/rds_feature/2014-09-01/endpoint-rule-set-1.json @@ -0,0 +1,339 @@ +{ + "version": "1.0", + "parameters": { + "Region": { + "builtIn": "AWS::Region", + "required": false, + "documentation": "The AWS region used to dispatch the request.", + "type": "String" + }, + "UseDualStack": { + "builtIn": "AWS::UseDualStack", + "required": true, + "default": false, + "documentation": "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.", + "type": "Boolean" + }, + "UseFIPS": { + "builtIn": "AWS::UseFIPS", + "required": true, + "default": false, + "documentation": "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.", + "type": "Boolean" + }, + "Endpoint": { + "builtIn": "SDK::Endpoint", + "required": false, + "documentation": "Override the endpoint used to send this request", + "type": "String" + } + }, + "rules": [ + { + "conditions": [ + { + "fn": "isSet", + "argv": [ + { + "ref": "Endpoint" + } + ] + } + ], + "rules": [ + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + { + "ref": "UseFIPS" + }, + true + ] + } + ], + "error": "Invalid Configuration: FIPS and custom endpoint are not supported", + "type": "error" + }, + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + { + "ref": "UseDualStack" + }, + true + ] + } + ], + "error": "Invalid Configuration: Dualstack and custom endpoint are not supported", + "type": "error" + }, + { + "conditions": [], + "endpoint": { + "url": { + "ref": "Endpoint" + }, + "properties": {}, + "headers": {} + }, + "type": "endpoint" + } + ], + "type": "tree" + }, + { + "conditions": [ + { + "fn": "isSet", + "argv": [ + { + "ref": "Region" + } + ] + } + ], + "rules": [ + { + "conditions": [ + { + "fn": "aws.partition", + "argv": [ + { + "ref": "Region" + } + ], + "assign": "PartitionResult" + } + ], + "rules": [ + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + { + "ref": "UseFIPS" + }, + true + ] + }, + { + "fn": "booleanEquals", + "argv": [ + { + "ref": "UseDualStack" + }, + true + ] + } + ], + "rules": [ + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + true, + { + "fn": "getAttr", + "argv": [ + { + "ref": "PartitionResult" + }, + "supportsFIPS" + ] + } + ] + }, + { + "fn": "booleanEquals", + "argv": [ + true, + { + "fn": "getAttr", + "argv": [ + { + "ref": "PartitionResult" + }, + "supportsDualStack" + ] + } + ] + } + ], + "rules": [ + { + "conditions": [], + "endpoint": { + "url": "https://rds-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", + "properties": {}, + "headers": {} + }, + "type": "endpoint" + } + ], + "type": "tree" + }, + { + "conditions": [], + "error": "FIPS and DualStack are enabled, but this partition does not support one or both", + "type": "error" + } + ], + "type": "tree" + }, + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + { + "ref": "UseFIPS" + }, + true + ] + } + ], + "rules": [ + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + { + "fn": "getAttr", + "argv": [ + { + "ref": "PartitionResult" + }, + "supportsFIPS" + ] + }, + true + ] + } + ], + "rules": [ + { + "conditions": [ + { + "fn": "stringEquals", + "argv": [ + { + "fn": "getAttr", + "argv": [ + { + "ref": "PartitionResult" + }, + "name" + ] + }, + "aws-us-gov" + ] + } + ], + "endpoint": { + "url": "https://rds.{Region}.amazonaws.com", + "properties": {}, + "headers": {} + }, + "type": "endpoint" + }, + { + "conditions": [], + "endpoint": { + "url": "https://rds-fips.{Region}.{PartitionResult#dnsSuffix}", + "properties": {}, + "headers": {} + }, + "type": "endpoint" + } + ], + "type": "tree" + }, + { + "conditions": [], + "error": "FIPS is enabled but this partition does not support FIPS", + "type": "error" + } + ], + "type": "tree" + }, + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + { + "ref": "UseDualStack" + }, + true + ] + } + ], + "rules": [ + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + true, + { + "fn": "getAttr", + "argv": [ + { + "ref": "PartitionResult" + }, + "supportsDualStack" + ] + } + ] + } + ], + "rules": [ + { + "conditions": [], + "endpoint": { + "url": "https://rds.{Region}.{PartitionResult#dualStackDnsSuffix}", + "properties": {}, + "headers": {} + }, + "type": "endpoint" + } + ], + "type": "tree" + }, + { + "conditions": [], + "error": "DualStack is enabled but this partition does not support DualStack", + "type": "error" + } + ], + "type": "tree" + }, + { + "conditions": [], + "endpoint": { + "url": "https://rds.{Region}.{PartitionResult#dnsSuffix}", + "properties": {}, + "headers": {} + }, + "type": "endpoint" + } + ], + "type": "tree" + } + ], + "type": "tree" + }, + { + "conditions": [], + "error": "Invalid Configuration: Missing Region", + "type": "error" + } + ] +} \ No newline at end of file diff --git a/src/data/rds_feature/2014-09-01/endpoint-rule-set-1.json.php b/src/data/rds_feature/2014-09-01/endpoint-rule-set-1.json.php new file mode 100644 index 0000000000..fe84cb1932 --- /dev/null +++ b/src/data/rds_feature/2014-09-01/endpoint-rule-set-1.json.php @@ -0,0 +1,3 @@ + '1.0', 'parameters' => [ 'Region' => [ 'builtIn' => 'AWS::Region', 'required' => false, 'documentation' => 'The AWS region used to dispatch the request.', 'type' => 'String', ], 'UseDualStack' => [ 'builtIn' => 'AWS::UseDualStack', 'required' => true, 'default' => false, 'documentation' => 'When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.', 'type' => 'Boolean', ], 'UseFIPS' => [ 'builtIn' => 'AWS::UseFIPS', 'required' => true, 'default' => false, 'documentation' => 'When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.', 'type' => 'Boolean', ], 'Endpoint' => [ 'builtIn' => 'SDK::Endpoint', 'required' => false, 'documentation' => 'Override the endpoint used to send this request', 'type' => 'String', ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'isSet', 'argv' => [ [ 'ref' => 'Endpoint', ], ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], ], 'error' => 'Invalid Configuration: FIPS and custom endpoint are not supported', 'type' => 'error', ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'error' => 'Invalid Configuration: Dualstack and custom endpoint are not supported', 'type' => 'error', ], [ 'conditions' => [], 'endpoint' => [ 'url' => [ 'ref' => 'Endpoint', ], 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [ [ 'fn' => 'isSet', 'argv' => [ [ 'ref' => 'Region', ], ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'aws.partition', 'argv' => [ [ 'ref' => 'Region', ], ], 'assign' => 'PartitionResult', ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsFIPS', ], ], ], ], [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsDualStack', ], ], ], ], ], 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://rds-fips.{Region}.{PartitionResult#dualStackDnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'FIPS and DualStack are enabled, but this partition does not support one or both', 'type' => 'error', ], ], 'type' => 'tree', ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsFIPS', ], ], true, ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'stringEquals', 'argv' => [ [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'name', ], ], 'aws-us-gov', ], ], ], 'endpoint' => [ 'url' => 'https://rds.{Region}.amazonaws.com', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://rds-fips.{Region}.{PartitionResult#dnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'FIPS is enabled but this partition does not support FIPS', 'type' => 'error', ], ], 'type' => 'tree', ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsDualStack', ], ], ], ], ], 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://rds.{Region}.{PartitionResult#dualStackDnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'DualStack is enabled but this partition does not support DualStack', 'type' => 'error', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://rds.{Region}.{PartitionResult#dnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'Invalid Configuration: Missing Region', 'type' => 'error', ], ],]; diff --git a/src/data/rds_feature/2014-09-01/endpoint-tests-1.json b/src/data/rds_feature/2014-09-01/endpoint-tests-1.json new file mode 100644 index 0000000000..8b0bc663a1 --- /dev/null +++ b/src/data/rds_feature/2014-09-01/endpoint-tests-1.json @@ -0,0 +1,691 @@ +{ + "testCases": [ + { + "documentation": "For region af-south-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.af-south-1.amazonaws.com" + } + }, + "params": { + "Region": "af-south-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-east-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-east-1.amazonaws.com" + } + }, + "params": { + "Region": "ap-east-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-northeast-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-northeast-1.amazonaws.com" + } + }, + "params": { + "Region": "ap-northeast-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-northeast-2 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-northeast-2.amazonaws.com" + } + }, + "params": { + "Region": "ap-northeast-2", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-northeast-3 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-northeast-3.amazonaws.com" + } + }, + "params": { + "Region": "ap-northeast-3", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-south-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-south-1.amazonaws.com" + } + }, + "params": { + "Region": "ap-south-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-southeast-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-southeast-1.amazonaws.com" + } + }, + "params": { + "Region": "ap-southeast-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-southeast-2 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-southeast-2.amazonaws.com" + } + }, + "params": { + "Region": "ap-southeast-2", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-southeast-3 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-southeast-3.amazonaws.com" + } + }, + "params": { + "Region": "ap-southeast-3", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ca-central-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ca-central-1.amazonaws.com" + } + }, + "params": { + "Region": "ca-central-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ca-central-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.ca-central-1.amazonaws.com" + } + }, + "params": { + "Region": "ca-central-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region eu-central-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.eu-central-1.amazonaws.com" + } + }, + "params": { + "Region": "eu-central-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region eu-north-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.eu-north-1.amazonaws.com" + } + }, + "params": { + "Region": "eu-north-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region eu-south-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.eu-south-1.amazonaws.com" + } + }, + "params": { + "Region": "eu-south-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region eu-west-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.eu-west-1.amazonaws.com" + } + }, + "params": { + "Region": "eu-west-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region eu-west-2 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.eu-west-2.amazonaws.com" + } + }, + "params": { + "Region": "eu-west-2", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region eu-west-3 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.eu-west-3.amazonaws.com" + } + }, + "params": { + "Region": "eu-west-3", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region me-south-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.me-south-1.amazonaws.com" + } + }, + "params": { + "Region": "me-south-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region sa-east-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.sa-east-1.amazonaws.com" + } + }, + "params": { + "Region": "sa-east-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-east-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-east-1.amazonaws.com" + } + }, + "params": { + "Region": "us-east-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-east-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-east-1.amazonaws.com" + } + }, + "params": { + "Region": "us-east-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-east-2 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-east-2.amazonaws.com" + } + }, + "params": { + "Region": "us-east-2", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-east-2 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-east-2.amazonaws.com" + } + }, + "params": { + "Region": "us-east-2", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-west-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-west-1.amazonaws.com" + } + }, + "params": { + "Region": "us-west-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-west-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-west-1.amazonaws.com" + } + }, + "params": { + "Region": "us-west-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-west-2 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-west-2.amazonaws.com" + } + }, + "params": { + "Region": "us-west-2", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-west-2 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-west-2.amazonaws.com" + } + }, + "params": { + "Region": "us-west-2", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-east-1 with FIPS enabled and DualStack enabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-east-1.api.aws" + } + }, + "params": { + "Region": "us-east-1", + "UseFIPS": true, + "UseDualStack": true + } + }, + { + "documentation": "For region us-east-1 with FIPS disabled and DualStack enabled", + "expect": { + "endpoint": { + "url": "https://rds.us-east-1.api.aws" + } + }, + "params": { + "Region": "us-east-1", + "UseFIPS": false, + "UseDualStack": true + } + }, + { + "documentation": "For region cn-north-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.cn-north-1.amazonaws.com.cn" + } + }, + "params": { + "Region": "cn-north-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region cn-northwest-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.cn-northwest-1.amazonaws.com.cn" + } + }, + "params": { + "Region": "cn-northwest-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region cn-north-1 with FIPS enabled and DualStack enabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.cn-north-1.api.amazonwebservices.com.cn" + } + }, + "params": { + "Region": "cn-north-1", + "UseFIPS": true, + "UseDualStack": true + } + }, + { + "documentation": "For region cn-north-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.cn-north-1.amazonaws.com.cn" + } + }, + "params": { + "Region": "cn-north-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region cn-north-1 with FIPS disabled and DualStack enabled", + "expect": { + "endpoint": { + "url": "https://rds.cn-north-1.api.amazonwebservices.com.cn" + } + }, + "params": { + "Region": "cn-north-1", + "UseFIPS": false, + "UseDualStack": true + } + }, + { + "documentation": "For region us-gov-east-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-gov-east-1.amazonaws.com" + } + }, + "params": { + "Region": "us-gov-east-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-gov-east-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-gov-east-1.amazonaws.com" + } + }, + "params": { + "Region": "us-gov-east-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-gov-west-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-gov-west-1.amazonaws.com" + } + }, + "params": { + "Region": "us-gov-west-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-gov-west-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-gov-west-1.amazonaws.com" + } + }, + "params": { + "Region": "us-gov-west-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-gov-east-1 with FIPS enabled and DualStack enabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-gov-east-1.api.aws" + } + }, + "params": { + "Region": "us-gov-east-1", + "UseFIPS": true, + "UseDualStack": true + } + }, + { + "documentation": "For region us-gov-east-1 with FIPS disabled and DualStack enabled", + "expect": { + "endpoint": { + "url": "https://rds.us-gov-east-1.api.aws" + } + }, + "params": { + "Region": "us-gov-east-1", + "UseFIPS": false, + "UseDualStack": true + } + }, + { + "documentation": "For region us-iso-east-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-iso-east-1.c2s.ic.gov" + } + }, + "params": { + "Region": "us-iso-east-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-iso-west-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-iso-west-1.c2s.ic.gov" + } + }, + "params": { + "Region": "us-iso-west-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-iso-east-1 with FIPS enabled and DualStack enabled", + "expect": { + "error": "FIPS and DualStack are enabled, but this partition does not support one or both" + }, + "params": { + "Region": "us-iso-east-1", + "UseFIPS": true, + "UseDualStack": true + } + }, + { + "documentation": "For region us-iso-east-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-iso-east-1.c2s.ic.gov" + } + }, + "params": { + "Region": "us-iso-east-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-iso-east-1 with FIPS disabled and DualStack enabled", + "expect": { + "error": "DualStack is enabled but this partition does not support DualStack" + }, + "params": { + "Region": "us-iso-east-1", + "UseFIPS": false, + "UseDualStack": true + } + }, + { + "documentation": "For region us-isob-east-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-isob-east-1.sc2s.sgov.gov" + } + }, + "params": { + "Region": "us-isob-east-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-isob-east-1 with FIPS enabled and DualStack enabled", + "expect": { + "error": "FIPS and DualStack are enabled, but this partition does not support one or both" + }, + "params": { + "Region": "us-isob-east-1", + "UseFIPS": true, + "UseDualStack": true + } + }, + { + "documentation": "For region us-isob-east-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-isob-east-1.sc2s.sgov.gov" + } + }, + "params": { + "Region": "us-isob-east-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-isob-east-1 with FIPS disabled and DualStack enabled", + "expect": { + "error": "DualStack is enabled but this partition does not support DualStack" + }, + "params": { + "Region": "us-isob-east-1", + "UseFIPS": false, + "UseDualStack": true + } + }, + { + "documentation": "For custom endpoint with region set and fips disabled and dualstack disabled", + "expect": { + "endpoint": { + "url": "https://example.com" + } + }, + "params": { + "Region": "us-east-1", + "UseFIPS": false, + "UseDualStack": false, + "Endpoint": "https://example.com" + } + }, + { + "documentation": "For custom endpoint with region not set and fips disabled and dualstack disabled", + "expect": { + "endpoint": { + "url": "https://example.com" + } + }, + "params": { + "UseFIPS": false, + "UseDualStack": false, + "Endpoint": "https://example.com" + } + }, + { + "documentation": "For custom endpoint with fips enabled and dualstack disabled", + "expect": { + "error": "Invalid Configuration: FIPS and custom endpoint are not supported" + }, + "params": { + "Region": "us-east-1", + "UseFIPS": true, + "UseDualStack": false, + "Endpoint": "https://example.com" + } + }, + { + "documentation": "For custom endpoint with fips disabled and dualstack enabled", + "expect": { + "error": "Invalid Configuration: Dualstack and custom endpoint are not supported" + }, + "params": { + "Region": "us-east-1", + "UseFIPS": false, + "UseDualStack": true, + "Endpoint": "https://example.com" + } + }, + { + "documentation": "Missing region", + "expect": { + "error": "Invalid Configuration: Missing Region" + } + } + ], + "version": "1.0" +} \ No newline at end of file diff --git a/src/data/rds_feature/2014-09-01/endpoint-tests-1.json.php b/src/data/rds_feature/2014-09-01/endpoint-tests-1.json.php new file mode 100644 index 0000000000..369bdc7e8d --- /dev/null +++ b/src/data/rds_feature/2014-09-01/endpoint-tests-1.json.php @@ -0,0 +1,3 @@ + [ [ 'documentation' => 'For region af-south-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.af-south-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'af-south-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-east-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-east-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-east-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-northeast-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-northeast-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-northeast-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-northeast-2 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-northeast-2.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-northeast-2', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-northeast-3 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-northeast-3.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-northeast-3', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-south-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-south-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-south-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-southeast-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-southeast-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-southeast-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-southeast-2 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-southeast-2.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-southeast-2', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-southeast-3 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-southeast-3.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-southeast-3', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ca-central-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ca-central-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'ca-central-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ca-central-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.ca-central-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'ca-central-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region eu-central-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.eu-central-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'eu-central-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region eu-north-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.eu-north-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'eu-north-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region eu-south-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.eu-south-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'eu-south-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region eu-west-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.eu-west-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'eu-west-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region eu-west-2 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.eu-west-2.amazonaws.com', ], ], 'params' => [ 'Region' => 'eu-west-2', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region eu-west-3 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.eu-west-3.amazonaws.com', ], ], 'params' => [ 'Region' => 'eu-west-3', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region me-south-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.me-south-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'me-south-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region sa-east-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.sa-east-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'sa-east-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-east-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-east-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-east-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-east-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-east-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-east-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-east-2 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-east-2.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-east-2', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-east-2 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-east-2.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-east-2', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-west-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-west-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-west-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-west-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-west-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-west-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-west-2 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-west-2.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-west-2', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-west-2 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-west-2.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-west-2', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-east-1 with FIPS enabled and DualStack enabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-east-1.api.aws', ], ], 'params' => [ 'Region' => 'us-east-1', 'UseFIPS' => true, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region us-east-1 with FIPS disabled and DualStack enabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-east-1.api.aws', ], ], 'params' => [ 'Region' => 'us-east-1', 'UseFIPS' => false, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region cn-north-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.cn-north-1.amazonaws.com.cn', ], ], 'params' => [ 'Region' => 'cn-north-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region cn-northwest-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.cn-northwest-1.amazonaws.com.cn', ], ], 'params' => [ 'Region' => 'cn-northwest-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region cn-north-1 with FIPS enabled and DualStack enabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.cn-north-1.api.amazonwebservices.com.cn', ], ], 'params' => [ 'Region' => 'cn-north-1', 'UseFIPS' => true, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region cn-north-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.cn-north-1.amazonaws.com.cn', ], ], 'params' => [ 'Region' => 'cn-north-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region cn-north-1 with FIPS disabled and DualStack enabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.cn-north-1.api.amazonwebservices.com.cn', ], ], 'params' => [ 'Region' => 'cn-north-1', 'UseFIPS' => false, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region us-gov-east-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-gov-east-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-gov-east-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-gov-east-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-gov-east-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-gov-east-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-gov-west-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-gov-west-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-gov-west-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-gov-west-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-gov-west-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-gov-west-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-gov-east-1 with FIPS enabled and DualStack enabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-gov-east-1.api.aws', ], ], 'params' => [ 'Region' => 'us-gov-east-1', 'UseFIPS' => true, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region us-gov-east-1 with FIPS disabled and DualStack enabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-gov-east-1.api.aws', ], ], 'params' => [ 'Region' => 'us-gov-east-1', 'UseFIPS' => false, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region us-iso-east-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-iso-east-1.c2s.ic.gov', ], ], 'params' => [ 'Region' => 'us-iso-east-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-iso-west-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-iso-west-1.c2s.ic.gov', ], ], 'params' => [ 'Region' => 'us-iso-west-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-iso-east-1 with FIPS enabled and DualStack enabled', 'expect' => [ 'error' => 'FIPS and DualStack are enabled, but this partition does not support one or both', ], 'params' => [ 'Region' => 'us-iso-east-1', 'UseFIPS' => true, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region us-iso-east-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-iso-east-1.c2s.ic.gov', ], ], 'params' => [ 'Region' => 'us-iso-east-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-iso-east-1 with FIPS disabled and DualStack enabled', 'expect' => [ 'error' => 'DualStack is enabled but this partition does not support DualStack', ], 'params' => [ 'Region' => 'us-iso-east-1', 'UseFIPS' => false, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region us-isob-east-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-isob-east-1.sc2s.sgov.gov', ], ], 'params' => [ 'Region' => 'us-isob-east-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-isob-east-1 with FIPS enabled and DualStack enabled', 'expect' => [ 'error' => 'FIPS and DualStack are enabled, but this partition does not support one or both', ], 'params' => [ 'Region' => 'us-isob-east-1', 'UseFIPS' => true, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region us-isob-east-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-isob-east-1.sc2s.sgov.gov', ], ], 'params' => [ 'Region' => 'us-isob-east-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-isob-east-1 with FIPS disabled and DualStack enabled', 'expect' => [ 'error' => 'DualStack is enabled but this partition does not support DualStack', ], 'params' => [ 'Region' => 'us-isob-east-1', 'UseFIPS' => false, 'UseDualStack' => true, ], ], [ 'documentation' => 'For custom endpoint with region set and fips disabled and dualstack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://example.com', ], ], 'params' => [ 'Region' => 'us-east-1', 'UseFIPS' => false, 'UseDualStack' => false, 'Endpoint' => 'https://example.com', ], ], [ 'documentation' => 'For custom endpoint with region not set and fips disabled and dualstack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://example.com', ], ], 'params' => [ 'UseFIPS' => false, 'UseDualStack' => false, 'Endpoint' => 'https://example.com', ], ], [ 'documentation' => 'For custom endpoint with fips enabled and dualstack disabled', 'expect' => [ 'error' => 'Invalid Configuration: FIPS and custom endpoint are not supported', ], 'params' => [ 'Region' => 'us-east-1', 'UseFIPS' => true, 'UseDualStack' => false, 'Endpoint' => 'https://example.com', ], ], [ 'documentation' => 'For custom endpoint with fips disabled and dualstack enabled', 'expect' => [ 'error' => 'Invalid Configuration: Dualstack and custom endpoint are not supported', ], 'params' => [ 'Region' => 'us-east-1', 'UseFIPS' => false, 'UseDualStack' => true, 'Endpoint' => 'https://example.com', ], ], [ 'documentation' => 'Missing region', 'expect' => [ 'error' => 'Invalid Configuration: Missing Region', ], ], ], 'version' => '1.0',]; diff --git a/src/data/rds_feature/2014-09-01/examples-1.json b/src/data/rds_feature/2014-09-01/examples-1.json new file mode 100644 index 0000000000..2fb77604d1 --- /dev/null +++ b/src/data/rds_feature/2014-09-01/examples-1.json @@ -0,0 +1,4 @@ +{ + "version": "1.0", + "examples": {} +} diff --git a/src/data/rds_feature/2014-09-01/examples-1.json.php b/src/data/rds_feature/2014-09-01/examples-1.json.php new file mode 100644 index 0000000000..06527aaec9 --- /dev/null +++ b/src/data/rds_feature/2014-09-01/examples-1.json.php @@ -0,0 +1,3 @@ + '1.0', 'examples' => [],]; diff --git a/src/data/rds_feature/2014-09-01/paginators-1.json b/src/data/rds_feature/2014-09-01/paginators-1.json new file mode 100644 index 0000000000..ea142457a6 --- /dev/null +++ b/src/data/rds_feature/2014-09-01/paginators-1.json @@ -0,0 +1,3 @@ +{ + "pagination": {} +} diff --git a/src/data/rds_feature/2014-09-01/paginators-1.json.php b/src/data/rds_feature/2014-09-01/paginators-1.json.php new file mode 100644 index 0000000000..15cd5c8df0 --- /dev/null +++ b/src/data/rds_feature/2014-09-01/paginators-1.json.php @@ -0,0 +1,3 @@ + [],]; diff --git a/src/data/rds_feature/2014-09-01/smoke.json b/src/data/rds_feature/2014-09-01/smoke.json new file mode 100644 index 0000000000..068b23492c --- /dev/null +++ b/src/data/rds_feature/2014-09-01/smoke.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "defaultRegion": "us-west-2", + "testCases": [ + { + "operationName": "DescribeDBEngineVersions", + "input": {}, + "errorExpectedFromService": false + }, + { + "operationName": "DescribeDBInstances", + "input": { + "DBInstanceIdentifier": "fake-id" + }, + "errorExpectedFromService": true + } + ] +} diff --git a/src/data/rds_feature/2014-09-01/smoke.json.php b/src/data/rds_feature/2014-09-01/smoke.json.php new file mode 100644 index 0000000000..73754b9881 --- /dev/null +++ b/src/data/rds_feature/2014-09-01/smoke.json.php @@ -0,0 +1,3 @@ + 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeDBEngineVersions', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeDBInstances', 'input' => [ 'DBInstanceIdentifier' => 'fake-id', ], 'errorExpectedFromService' => true, ], ],]; diff --git a/src/data/rds_feature/2014-10-31/api-2.json b/src/data/rds_feature/2014-10-31/api-2.json new file mode 100644 index 0000000000..bf07daf8ba --- /dev/null +++ b/src/data/rds_feature/2014-10-31/api-2.json @@ -0,0 +1,10195 @@ +{ + "version":"2.0", + "metadata":{ + "apiVersion":"2014-10-31", + "endpointPrefix":"rds", + "protocol":"query", + "protocols":["query"], + "serviceAbbreviation":"Amazon RDS", + "serviceFullName":"Amazon Relational Database Service", + "serviceId":"RDS", + "signatureVersion":"v4", + "uid":"rds-2014-10-31", + "xmlNamespace":"http://rds.amazonaws.com/doc/2014-10-31/", + "auth":["aws.auth#sigv4"] + }, + "operations":{ + "AddRoleToDBCluster":{ + "name":"AddRoleToDBCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AddRoleToDBClusterMessage"}, + "errors":[ + {"shape":"DBClusterNotFoundFault"}, + {"shape":"DBClusterRoleAlreadyExistsFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"DBClusterRoleQuotaExceededFault"} + ] + }, + "AddRoleToDBInstance":{ + "name":"AddRoleToDBInstance", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AddRoleToDBInstanceMessage"}, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBInstanceRoleAlreadyExistsFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"DBInstanceRoleQuotaExceededFault"} + ] + }, + "AddSourceIdentifierToSubscription":{ + "name":"AddSourceIdentifierToSubscription", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AddSourceIdentifierToSubscriptionMessage"}, + "output":{ + "shape":"AddSourceIdentifierToSubscriptionResult", + "resultWrapper":"AddSourceIdentifierToSubscriptionResult" + }, + "errors":[ + {"shape":"SubscriptionNotFoundFault"}, + {"shape":"SourceNotFoundFault"} + ] + }, + "AddTagsToResource":{ + "name":"AddTagsToResource", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AddTagsToResourceMessage"}, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"DBSnapshotNotFoundFault"}, + {"shape":"DBProxyNotFoundFault"}, + {"shape":"DBProxyEndpointNotFoundFault"}, + {"shape":"DBProxyTargetGroupNotFoundFault"}, + {"shape":"BlueGreenDeploymentNotFoundFault"}, + {"shape":"TenantDatabaseNotFoundFault"}, + {"shape":"DBSnapshotTenantDatabaseNotFoundFault"}, + {"shape":"IntegrationNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ] + }, + "ApplyPendingMaintenanceAction":{ + "name":"ApplyPendingMaintenanceAction", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ApplyPendingMaintenanceActionMessage"}, + "output":{ + "shape":"ApplyPendingMaintenanceActionResult", + "resultWrapper":"ApplyPendingMaintenanceActionResult" + }, + "errors":[ + {"shape":"ResourceNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ] + }, + "AuthorizeDBSecurityGroupIngress":{ + "name":"AuthorizeDBSecurityGroupIngress", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AuthorizeDBSecurityGroupIngressMessage"}, + "output":{ + "shape":"AuthorizeDBSecurityGroupIngressResult", + "resultWrapper":"AuthorizeDBSecurityGroupIngressResult" + }, + "errors":[ + {"shape":"DBSecurityGroupNotFoundFault"}, + {"shape":"InvalidDBSecurityGroupStateFault"}, + {"shape":"AuthorizationAlreadyExistsFault"}, + {"shape":"AuthorizationQuotaExceededFault"} + ] + }, + "BacktrackDBCluster":{ + "name":"BacktrackDBCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"BacktrackDBClusterMessage"}, + "output":{ + "shape":"DBClusterBacktrack", + "resultWrapper":"BacktrackDBClusterResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"} + ] + }, + "CancelExportTask":{ + "name":"CancelExportTask", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CancelExportTaskMessage"}, + "output":{ + "shape":"ExportTask", + "resultWrapper":"CancelExportTaskResult" + }, + "errors":[ + {"shape":"ExportTaskNotFoundFault"}, + {"shape":"InvalidExportTaskStateFault"} + ] + }, + "CopyDBClusterParameterGroup":{ + "name":"CopyDBClusterParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CopyDBClusterParameterGroupMessage"}, + "output":{ + "shape":"CopyDBClusterParameterGroupResult", + "resultWrapper":"CopyDBClusterParameterGroupResult" + }, + "errors":[ + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"DBParameterGroupQuotaExceededFault"}, + {"shape":"DBParameterGroupAlreadyExistsFault"} + ] + }, + "CopyDBClusterSnapshot":{ + "name":"CopyDBClusterSnapshot", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CopyDBClusterSnapshotMessage"}, + "output":{ + "shape":"CopyDBClusterSnapshotResult", + "resultWrapper":"CopyDBClusterSnapshotResult" + }, + "errors":[ + {"shape":"DBClusterSnapshotAlreadyExistsFault"}, + {"shape":"DBClusterSnapshotNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBClusterSnapshotStateFault"}, + {"shape":"SnapshotQuotaExceededFault"}, + {"shape":"KMSKeyNotAccessibleFault"} + ] + }, + "CopyDBParameterGroup":{ + "name":"CopyDBParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CopyDBParameterGroupMessage"}, + "output":{ + "shape":"CopyDBParameterGroupResult", + "resultWrapper":"CopyDBParameterGroupResult" + }, + "errors":[ + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"DBParameterGroupAlreadyExistsFault"}, + {"shape":"DBParameterGroupQuotaExceededFault"} + ] + }, + "CopyDBSnapshot":{ + "name":"CopyDBSnapshot", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CopyDBSnapshotMessage"}, + "output":{ + "shape":"CopyDBSnapshotResult", + "resultWrapper":"CopyDBSnapshotResult" + }, + "errors":[ + {"shape":"DBSnapshotAlreadyExistsFault"}, + {"shape":"DBSnapshotNotFoundFault"}, + {"shape":"InvalidDBSnapshotStateFault"}, + {"shape":"SnapshotQuotaExceededFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"CustomAvailabilityZoneNotFoundFault"} + ] + }, + "CopyOptionGroup":{ + "name":"CopyOptionGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CopyOptionGroupMessage"}, + "output":{ + "shape":"CopyOptionGroupResult", + "resultWrapper":"CopyOptionGroupResult" + }, + "errors":[ + {"shape":"OptionGroupAlreadyExistsFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"OptionGroupQuotaExceededFault"} + ] + }, + "CreateBlueGreenDeployment":{ + "name":"CreateBlueGreenDeployment", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateBlueGreenDeploymentRequest"}, + "output":{ + "shape":"CreateBlueGreenDeploymentResponse", + "resultWrapper":"CreateBlueGreenDeploymentResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"SourceDatabaseNotSupportedFault"}, + {"shape":"SourceClusterNotSupportedFault"}, + {"shape":"BlueGreenDeploymentAlreadyExistsFault"}, + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"DBClusterParameterGroupNotFoundFault"}, + {"shape":"InstanceQuotaExceededFault"}, + {"shape":"DBClusterQuotaExceededFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"InvalidDBClusterStateFault"} + ] + }, + "CreateCustomDBEngineVersion":{ + "name":"CreateCustomDBEngineVersion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateCustomDBEngineVersionMessage"}, + "output":{ + "shape":"DBEngineVersion", + "resultWrapper":"CreateCustomDBEngineVersionResult" + }, + "errors":[ + {"shape":"CustomDBEngineVersionAlreadyExistsFault"}, + {"shape":"CustomDBEngineVersionQuotaExceededFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"Ec2ImagePropertiesNotSupportedFault"}, + {"shape":"CreateCustomDBEngineVersionFault"}, + {"shape":"CustomDBEngineVersionNotFoundFault"}, + {"shape":"InvalidCustomDBEngineVersionStateFault"} + ] + }, + "CreateDBCluster":{ + "name":"CreateDBCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBClusterMessage"}, + "output":{ + "shape":"CreateDBClusterResult", + "resultWrapper":"CreateDBClusterResult" + }, + "errors":[ + {"shape":"DBClusterAlreadyExistsFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"}, + {"shape":"InsufficientStorageClusterCapacityFault"}, + {"shape":"DBClusterQuotaExceededFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBSubnetGroupFault"}, + {"shape":"InvalidDBSubnetGroupStateFault"}, + {"shape":"InvalidSubnet"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"DBClusterParameterGroupNotFoundFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"GlobalClusterNotFoundFault"}, + {"shape":"InvalidGlobalClusterStateFault"}, + {"shape":"NetworkTypeNotSupported"}, + {"shape":"DomainNotFoundFault"}, + {"shape":"StorageTypeNotSupportedFault"}, + {"shape":"OptionGroupNotFoundFault"} + ] + }, + "CreateDBClusterEndpoint":{ + "name":"CreateDBClusterEndpoint", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBClusterEndpointMessage"}, + "output":{ + "shape":"DBClusterEndpoint", + "resultWrapper":"CreateDBClusterEndpointResult" + }, + "errors":[ + {"shape":"DBClusterEndpointQuotaExceededFault"}, + {"shape":"DBClusterEndpointAlreadyExistsFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ] + }, + "CreateDBClusterParameterGroup":{ + "name":"CreateDBClusterParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBClusterParameterGroupMessage"}, + "output":{ + "shape":"CreateDBClusterParameterGroupResult", + "resultWrapper":"CreateDBClusterParameterGroupResult" + }, + "errors":[ + {"shape":"DBParameterGroupQuotaExceededFault"}, + {"shape":"DBParameterGroupAlreadyExistsFault"} + ] + }, + "CreateDBClusterSnapshot":{ + "name":"CreateDBClusterSnapshot", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBClusterSnapshotMessage"}, + "output":{ + "shape":"CreateDBClusterSnapshotResult", + "resultWrapper":"CreateDBClusterSnapshotResult" + }, + "errors":[ + {"shape":"DBClusterSnapshotAlreadyExistsFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"SnapshotQuotaExceededFault"}, + {"shape":"InvalidDBClusterSnapshotStateFault"} + ] + }, + "CreateDBInstance":{ + "name":"CreateDBInstance", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBInstanceMessage"}, + "output":{ + "shape":"CreateDBInstanceResult", + "resultWrapper":"CreateDBInstanceResult" + }, + "errors":[ + {"shape":"DBInstanceAlreadyExistsFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"}, + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"DBSecurityGroupNotFoundFault"}, + {"shape":"InstanceQuotaExceededFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidSubnet"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"ProvisionedIopsNotAvailableInAZFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"StorageTypeNotSupportedFault"}, + {"shape":"AuthorizationNotFoundFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"DomainNotFoundFault"}, + {"shape":"NetworkTypeNotSupported"}, + {"shape":"BackupPolicyNotFoundFault"}, + {"shape":"CertificateNotFoundFault"}, + {"shape":"TenantDatabaseQuotaExceededFault"}, + {"shape":"FreeTierRestrictionError"} + ] + }, + "CreateDBInstanceReadReplica":{ + "name":"CreateDBInstanceReadReplica", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBInstanceReadReplicaMessage"}, + "output":{ + "shape":"CreateDBInstanceReadReplicaResult", + "resultWrapper":"CreateDBInstanceReadReplicaResult" + }, + "errors":[ + {"shape":"DBInstanceAlreadyExistsFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"}, + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"DBSecurityGroupNotFoundFault"}, + {"shape":"InstanceQuotaExceededFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidSubnet"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"ProvisionedIopsNotAvailableInAZFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"DBSubnetGroupNotAllowedFault"}, + {"shape":"InvalidDBSubnetGroupFault"}, + {"shape":"StorageTypeNotSupportedFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"NetworkTypeNotSupported"}, + {"shape":"DomainNotFoundFault"}, + {"shape":"TenantDatabaseQuotaExceededFault"}, + {"shape":"CertificateNotFoundFault"} + ] + }, + "CreateDBParameterGroup":{ + "name":"CreateDBParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBParameterGroupMessage"}, + "output":{ + "shape":"CreateDBParameterGroupResult", + "resultWrapper":"CreateDBParameterGroupResult" + }, + "errors":[ + {"shape":"DBParameterGroupQuotaExceededFault"}, + {"shape":"DBParameterGroupAlreadyExistsFault"} + ] + }, + "CreateDBProxy":{ + "name":"CreateDBProxy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBProxyRequest"}, + "output":{ + "shape":"CreateDBProxyResponse", + "resultWrapper":"CreateDBProxyResult" + }, + "errors":[ + {"shape":"InvalidSubnet"}, + {"shape":"DBProxyAlreadyExistsFault"}, + {"shape":"DBProxyQuotaExceededFault"} + ] + }, + "CreateDBProxyEndpoint":{ + "name":"CreateDBProxyEndpoint", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBProxyEndpointRequest"}, + "output":{ + "shape":"CreateDBProxyEndpointResponse", + "resultWrapper":"CreateDBProxyEndpointResult" + }, + "errors":[ + {"shape":"InvalidSubnet"}, + {"shape":"DBProxyNotFoundFault"}, + {"shape":"DBProxyEndpointAlreadyExistsFault"}, + {"shape":"DBProxyEndpointQuotaExceededFault"}, + {"shape":"InvalidDBProxyStateFault"} + ] + }, + "CreateDBSecurityGroup":{ + "name":"CreateDBSecurityGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBSecurityGroupMessage"}, + "output":{ + "shape":"CreateDBSecurityGroupResult", + "resultWrapper":"CreateDBSecurityGroupResult" + }, + "errors":[ + {"shape":"DBSecurityGroupAlreadyExistsFault"}, + {"shape":"DBSecurityGroupQuotaExceededFault"}, + {"shape":"DBSecurityGroupNotSupportedFault"} + ] + }, + "CreateDBShardGroup":{ + "name":"CreateDBShardGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBShardGroupMessage"}, + "output":{ + "shape":"DBShardGroup", + "resultWrapper":"CreateDBShardGroupResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"NetworkTypeNotSupported"} + ] + }, + "CreateDBSnapshot":{ + "name":"CreateDBSnapshot", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBSnapshotMessage"}, + "output":{ + "shape":"CreateDBSnapshotResult", + "resultWrapper":"CreateDBSnapshotResult" + }, + "errors":[ + {"shape":"DBSnapshotAlreadyExistsFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"SnapshotQuotaExceededFault"} + ] + }, + "CreateDBSubnetGroup":{ + "name":"CreateDBSubnetGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBSubnetGroupMessage"}, + "output":{ + "shape":"CreateDBSubnetGroupResult", + "resultWrapper":"CreateDBSubnetGroupResult" + }, + "errors":[ + {"shape":"DBSubnetGroupAlreadyExistsFault"}, + {"shape":"DBSubnetGroupQuotaExceededFault"}, + {"shape":"DBSubnetQuotaExceededFault"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidSubnet"} + ] + }, + "CreateEventSubscription":{ + "name":"CreateEventSubscription", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateEventSubscriptionMessage"}, + "output":{ + "shape":"CreateEventSubscriptionResult", + "resultWrapper":"CreateEventSubscriptionResult" + }, + "errors":[ + {"shape":"EventSubscriptionQuotaExceededFault"}, + {"shape":"SubscriptionAlreadyExistFault"}, + {"shape":"SNSInvalidTopicFault"}, + {"shape":"SNSNoAuthorizationFault"}, + {"shape":"SNSTopicArnNotFoundFault"}, + {"shape":"SubscriptionCategoryNotFoundFault"}, + {"shape":"SourceNotFoundFault"} + ] + }, + "CreateGlobalCluster":{ + "name":"CreateGlobalCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateGlobalClusterMessage"}, + "output":{ + "shape":"CreateGlobalClusterResult", + "resultWrapper":"CreateGlobalClusterResult" + }, + "errors":[ + {"shape":"GlobalClusterAlreadyExistsFault"}, + {"shape":"GlobalClusterQuotaExceededFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"ResourceNotFoundFault"} + ] + }, + "CreateIntegration":{ + "name":"CreateIntegration", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateIntegrationMessage"}, + "output":{ + "shape":"Integration", + "resultWrapper":"CreateIntegrationResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"IntegrationAlreadyExistsFault"}, + {"shape":"IntegrationQuotaExceededFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"IntegrationConflictOperationFault"} + ] + }, + "CreateOptionGroup":{ + "name":"CreateOptionGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateOptionGroupMessage"}, + "output":{ + "shape":"CreateOptionGroupResult", + "resultWrapper":"CreateOptionGroupResult" + }, + "errors":[ + {"shape":"OptionGroupAlreadyExistsFault"}, + {"shape":"OptionGroupQuotaExceededFault"} + ] + }, + "CreateTenantDatabase":{ + "name":"CreateTenantDatabase", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateTenantDatabaseMessage"}, + "output":{ + "shape":"CreateTenantDatabaseResult", + "resultWrapper":"CreateTenantDatabaseResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"TenantDatabaseAlreadyExistsFault"}, + {"shape":"TenantDatabaseQuotaExceededFault"}, + {"shape":"KMSKeyNotAccessibleFault"} + ] + }, + "DeleteBlueGreenDeployment":{ + "name":"DeleteBlueGreenDeployment", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteBlueGreenDeploymentRequest"}, + "output":{ + "shape":"DeleteBlueGreenDeploymentResponse", + "resultWrapper":"DeleteBlueGreenDeploymentResult" + }, + "errors":[ + {"shape":"BlueGreenDeploymentNotFoundFault"}, + {"shape":"InvalidBlueGreenDeploymentStateFault"} + ] + }, + "DeleteCustomDBEngineVersion":{ + "name":"DeleteCustomDBEngineVersion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteCustomDBEngineVersionMessage"}, + "output":{ + "shape":"DBEngineVersion", + "resultWrapper":"DeleteCustomDBEngineVersionResult" + }, + "errors":[ + {"shape":"CustomDBEngineVersionNotFoundFault"}, + {"shape":"InvalidCustomDBEngineVersionStateFault"} + ] + }, + "DeleteDBCluster":{ + "name":"DeleteDBCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBClusterMessage"}, + "output":{ + "shape":"DeleteDBClusterResult", + "resultWrapper":"DeleteDBClusterResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidGlobalClusterStateFault"}, + {"shape":"DBClusterSnapshotAlreadyExistsFault"}, + {"shape":"SnapshotQuotaExceededFault"}, + {"shape":"InvalidDBClusterSnapshotStateFault"}, + {"shape":"DBClusterAutomatedBackupQuotaExceededFault"}, + {"shape":"KMSKeyNotAccessibleFault"} + ] + }, + "DeleteDBClusterAutomatedBackup":{ + "name":"DeleteDBClusterAutomatedBackup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBClusterAutomatedBackupMessage"}, + "output":{ + "shape":"DeleteDBClusterAutomatedBackupResult", + "resultWrapper":"DeleteDBClusterAutomatedBackupResult" + }, + "errors":[ + {"shape":"InvalidDBClusterAutomatedBackupStateFault"}, + {"shape":"DBClusterAutomatedBackupNotFoundFault"} + ] + }, + "DeleteDBClusterEndpoint":{ + "name":"DeleteDBClusterEndpoint", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBClusterEndpointMessage"}, + "output":{ + "shape":"DBClusterEndpoint", + "resultWrapper":"DeleteDBClusterEndpointResult" + }, + "errors":[ + {"shape":"InvalidDBClusterEndpointStateFault"}, + {"shape":"DBClusterEndpointNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"} + ] + }, + "DeleteDBClusterParameterGroup":{ + "name":"DeleteDBClusterParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBClusterParameterGroupMessage"}, + "errors":[ + {"shape":"InvalidDBParameterGroupStateFault"}, + {"shape":"DBParameterGroupNotFoundFault"} + ] + }, + "DeleteDBClusterSnapshot":{ + "name":"DeleteDBClusterSnapshot", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBClusterSnapshotMessage"}, + "output":{ + "shape":"DeleteDBClusterSnapshotResult", + "resultWrapper":"DeleteDBClusterSnapshotResult" + }, + "errors":[ + {"shape":"InvalidDBClusterSnapshotStateFault"}, + {"shape":"DBClusterSnapshotNotFoundFault"} + ] + }, + "DeleteDBInstance":{ + "name":"DeleteDBInstance", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBInstanceMessage"}, + "output":{ + "shape":"DeleteDBInstanceResult", + "resultWrapper":"DeleteDBInstanceResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"DBSnapshotAlreadyExistsFault"}, + {"shape":"SnapshotQuotaExceededFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"DBInstanceAutomatedBackupQuotaExceededFault"}, + {"shape":"KMSKeyNotAccessibleFault"} + ] + }, + "DeleteDBInstanceAutomatedBackup":{ + "name":"DeleteDBInstanceAutomatedBackup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBInstanceAutomatedBackupMessage"}, + "output":{ + "shape":"DeleteDBInstanceAutomatedBackupResult", + "resultWrapper":"DeleteDBInstanceAutomatedBackupResult" + }, + "errors":[ + {"shape":"InvalidDBInstanceAutomatedBackupStateFault"}, + {"shape":"DBInstanceAutomatedBackupNotFoundFault"} + ] + }, + "DeleteDBParameterGroup":{ + "name":"DeleteDBParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBParameterGroupMessage"}, + "errors":[ + {"shape":"InvalidDBParameterGroupStateFault"}, + {"shape":"DBParameterGroupNotFoundFault"} + ] + }, + "DeleteDBProxy":{ + "name":"DeleteDBProxy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBProxyRequest"}, + "output":{ + "shape":"DeleteDBProxyResponse", + "resultWrapper":"DeleteDBProxyResult" + }, + "errors":[ + {"shape":"DBProxyNotFoundFault"}, + {"shape":"InvalidDBProxyStateFault"} + ] + }, + "DeleteDBProxyEndpoint":{ + "name":"DeleteDBProxyEndpoint", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBProxyEndpointRequest"}, + "output":{ + "shape":"DeleteDBProxyEndpointResponse", + "resultWrapper":"DeleteDBProxyEndpointResult" + }, + "errors":[ + {"shape":"DBProxyEndpointNotFoundFault"}, + {"shape":"InvalidDBProxyEndpointStateFault"} + ] + }, + "DeleteDBSecurityGroup":{ + "name":"DeleteDBSecurityGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBSecurityGroupMessage"}, + "errors":[ + {"shape":"InvalidDBSecurityGroupStateFault"}, + {"shape":"DBSecurityGroupNotFoundFault"} + ] + }, + "DeleteDBShardGroup":{ + "name":"DeleteDBShardGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBShardGroupMessage"}, + "output":{ + "shape":"DBShardGroup", + "resultWrapper":"DeleteDBShardGroupResult" + }, + "errors":[ + {"shape":"InvalidDBClusterStateFault"} + ] + }, + "DeleteDBSnapshot":{ + "name":"DeleteDBSnapshot", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBSnapshotMessage"}, + "output":{ + "shape":"DeleteDBSnapshotResult", + "resultWrapper":"DeleteDBSnapshotResult" + }, + "errors":[ + {"shape":"InvalidDBSnapshotStateFault"}, + {"shape":"DBSnapshotNotFoundFault"} + ] + }, + "DeleteDBSubnetGroup":{ + "name":"DeleteDBSubnetGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBSubnetGroupMessage"}, + "errors":[ + {"shape":"InvalidDBSubnetGroupStateFault"}, + {"shape":"InvalidDBSubnetStateFault"}, + {"shape":"DBSubnetGroupNotFoundFault"} + ] + }, + "DeleteEventSubscription":{ + "name":"DeleteEventSubscription", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteEventSubscriptionMessage"}, + "output":{ + "shape":"DeleteEventSubscriptionResult", + "resultWrapper":"DeleteEventSubscriptionResult" + }, + "errors":[ + {"shape":"SubscriptionNotFoundFault"} + ] + }, + "DeleteGlobalCluster":{ + "name":"DeleteGlobalCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteGlobalClusterMessage"}, + "output":{ + "shape":"DeleteGlobalClusterResult", + "resultWrapper":"DeleteGlobalClusterResult" + }, + "errors":[ + {"shape":"GlobalClusterNotFoundFault"}, + {"shape":"InvalidGlobalClusterStateFault"} + ] + }, + "DeleteIntegration":{ + "name":"DeleteIntegration", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteIntegrationMessage"}, + "output":{ + "shape":"Integration", + "resultWrapper":"DeleteIntegrationResult" + }, + "errors":[ + {"shape":"IntegrationNotFoundFault"}, + {"shape":"IntegrationConflictOperationFault"}, + {"shape":"InvalidIntegrationStateFault"} + ] + }, + "DeleteOptionGroup":{ + "name":"DeleteOptionGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteOptionGroupMessage"}, + "errors":[ + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"InvalidOptionGroupStateFault"} + ] + }, + "DeleteTenantDatabase":{ + "name":"DeleteTenantDatabase", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteTenantDatabaseMessage"}, + "output":{ + "shape":"DeleteTenantDatabaseResult", + "resultWrapper":"DeleteTenantDatabaseResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"TenantDatabaseNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"DBSnapshotAlreadyExistsFault"} + ] + }, + "DeregisterDBProxyTargets":{ + "name":"DeregisterDBProxyTargets", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeregisterDBProxyTargetsRequest"}, + "output":{ + "shape":"DeregisterDBProxyTargetsResponse", + "resultWrapper":"DeregisterDBProxyTargetsResult" + }, + "errors":[ + {"shape":"DBProxyTargetNotFoundFault"}, + {"shape":"DBProxyTargetGroupNotFoundFault"}, + {"shape":"DBProxyNotFoundFault"}, + {"shape":"InvalidDBProxyStateFault"} + ] + }, + "DescribeAccountAttributes":{ + "name":"DescribeAccountAttributes", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeAccountAttributesMessage"}, + "output":{ + "shape":"AccountAttributesMessage", + "resultWrapper":"DescribeAccountAttributesResult" + }, + "errors":[] + }, + "DescribeBlueGreenDeployments":{ + "name":"DescribeBlueGreenDeployments", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeBlueGreenDeploymentsRequest"}, + "output":{ + "shape":"DescribeBlueGreenDeploymentsResponse", + "resultWrapper":"DescribeBlueGreenDeploymentsResult" + }, + "errors":[ + {"shape":"BlueGreenDeploymentNotFoundFault"} + ] + }, + "DescribeCertificates":{ + "name":"DescribeCertificates", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeCertificatesMessage"}, + "output":{ + "shape":"CertificateMessage", + "resultWrapper":"DescribeCertificatesResult" + }, + "errors":[ + {"shape":"CertificateNotFoundFault"} + ] + }, + "DescribeDBClusterAutomatedBackups":{ + "name":"DescribeDBClusterAutomatedBackups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBClusterAutomatedBackupsMessage"}, + "output":{ + "shape":"DBClusterAutomatedBackupMessage", + "resultWrapper":"DescribeDBClusterAutomatedBackupsResult" + }, + "errors":[ + {"shape":"DBClusterAutomatedBackupNotFoundFault"} + ] + }, + "DescribeDBClusterBacktracks":{ + "name":"DescribeDBClusterBacktracks", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBClusterBacktracksMessage"}, + "output":{ + "shape":"DBClusterBacktrackMessage", + "resultWrapper":"DescribeDBClusterBacktracksResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"}, + {"shape":"DBClusterBacktrackNotFoundFault"} + ] + }, + "DescribeDBClusterEndpoints":{ + "name":"DescribeDBClusterEndpoints", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBClusterEndpointsMessage"}, + "output":{ + "shape":"DBClusterEndpointMessage", + "resultWrapper":"DescribeDBClusterEndpointsResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"} + ] + }, + "DescribeDBClusterParameterGroups":{ + "name":"DescribeDBClusterParameterGroups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBClusterParameterGroupsMessage"}, + "output":{ + "shape":"DBClusterParameterGroupsMessage", + "resultWrapper":"DescribeDBClusterParameterGroupsResult" + }, + "errors":[ + {"shape":"DBParameterGroupNotFoundFault"} + ] + }, + "DescribeDBClusterParameters":{ + "name":"DescribeDBClusterParameters", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBClusterParametersMessage"}, + "output":{ + "shape":"DBClusterParameterGroupDetails", + "resultWrapper":"DescribeDBClusterParametersResult" + }, + "errors":[ + {"shape":"DBParameterGroupNotFoundFault"} + ] + }, + "DescribeDBClusterSnapshotAttributes":{ + "name":"DescribeDBClusterSnapshotAttributes", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBClusterSnapshotAttributesMessage"}, + "output":{ + "shape":"DescribeDBClusterSnapshotAttributesResult", + "resultWrapper":"DescribeDBClusterSnapshotAttributesResult" + }, + "errors":[ + {"shape":"DBClusterSnapshotNotFoundFault"} + ] + }, + "DescribeDBClusterSnapshots":{ + "name":"DescribeDBClusterSnapshots", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBClusterSnapshotsMessage"}, + "output":{ + "shape":"DBClusterSnapshotMessage", + "resultWrapper":"DescribeDBClusterSnapshotsResult" + }, + "errors":[ + {"shape":"DBClusterSnapshotNotFoundFault"} + ] + }, + "DescribeDBClusters":{ + "name":"DescribeDBClusters", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBClustersMessage"}, + "output":{ + "shape":"DBClusterMessage", + "resultWrapper":"DescribeDBClustersResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"} + ] + }, + "DescribeDBEngineVersions":{ + "name":"DescribeDBEngineVersions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBEngineVersionsMessage"}, + "output":{ + "shape":"DBEngineVersionMessage", + "resultWrapper":"DescribeDBEngineVersionsResult" + }, + "errors":[] + }, + "DescribeDBInstanceAutomatedBackups":{ + "name":"DescribeDBInstanceAutomatedBackups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBInstanceAutomatedBackupsMessage"}, + "output":{ + "shape":"DBInstanceAutomatedBackupMessage", + "resultWrapper":"DescribeDBInstanceAutomatedBackupsResult" + }, + "errors":[ + {"shape":"DBInstanceAutomatedBackupNotFoundFault"} + ] + }, + "DescribeDBInstances":{ + "name":"DescribeDBInstances", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBInstancesMessage"}, + "output":{ + "shape":"DBInstanceMessage", + "resultWrapper":"DescribeDBInstancesResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"} + ] + }, + "DescribeDBLogFiles":{ + "name":"DescribeDBLogFiles", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBLogFilesMessage"}, + "output":{ + "shape":"DescribeDBLogFilesResponse", + "resultWrapper":"DescribeDBLogFilesResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBInstanceNotReadyFault"} + ] + }, + "DescribeDBMajorEngineVersions":{ + "name":"DescribeDBMajorEngineVersions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBMajorEngineVersionsRequest"}, + "output":{ + "shape":"DescribeDBMajorEngineVersionsResponse", + "resultWrapper":"DescribeDBMajorEngineVersionsResult" + }, + "errors":[] + }, + "DescribeDBParameterGroups":{ + "name":"DescribeDBParameterGroups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBParameterGroupsMessage"}, + "output":{ + "shape":"DBParameterGroupsMessage", + "resultWrapper":"DescribeDBParameterGroupsResult" + }, + "errors":[ + {"shape":"DBParameterGroupNotFoundFault"} + ] + }, + "DescribeDBParameters":{ + "name":"DescribeDBParameters", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBParametersMessage"}, + "output":{ + "shape":"DBParameterGroupDetails", + "resultWrapper":"DescribeDBParametersResult" + }, + "errors":[ + {"shape":"DBParameterGroupNotFoundFault"} + ] + }, + "DescribeDBProxies":{ + "name":"DescribeDBProxies", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBProxiesRequest"}, + "output":{ + "shape":"DescribeDBProxiesResponse", + "resultWrapper":"DescribeDBProxiesResult" + }, + "errors":[ + {"shape":"DBProxyNotFoundFault"} + ] + }, + "DescribeDBProxyEndpoints":{ + "name":"DescribeDBProxyEndpoints", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBProxyEndpointsRequest"}, + "output":{ + "shape":"DescribeDBProxyEndpointsResponse", + "resultWrapper":"DescribeDBProxyEndpointsResult" + }, + "errors":[ + {"shape":"DBProxyNotFoundFault"}, + {"shape":"DBProxyEndpointNotFoundFault"} + ] + }, + "DescribeDBProxyTargetGroups":{ + "name":"DescribeDBProxyTargetGroups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBProxyTargetGroupsRequest"}, + "output":{ + "shape":"DescribeDBProxyTargetGroupsResponse", + "resultWrapper":"DescribeDBProxyTargetGroupsResult" + }, + "errors":[ + {"shape":"DBProxyNotFoundFault"}, + {"shape":"DBProxyTargetGroupNotFoundFault"}, + {"shape":"InvalidDBProxyStateFault"} + ] + }, + "DescribeDBProxyTargets":{ + "name":"DescribeDBProxyTargets", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBProxyTargetsRequest"}, + "output":{ + "shape":"DescribeDBProxyTargetsResponse", + "resultWrapper":"DescribeDBProxyTargetsResult" + }, + "errors":[ + {"shape":"DBProxyNotFoundFault"}, + {"shape":"DBProxyTargetNotFoundFault"}, + {"shape":"DBProxyTargetGroupNotFoundFault"}, + {"shape":"InvalidDBProxyStateFault"} + ] + }, + "DescribeDBRecommendations":{ + "name":"DescribeDBRecommendations", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBRecommendationsMessage"}, + "output":{ + "shape":"DBRecommendationsMessage", + "resultWrapper":"DescribeDBRecommendationsResult" + }, + "errors":[] + }, + "DescribeDBSecurityGroups":{ + "name":"DescribeDBSecurityGroups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBSecurityGroupsMessage"}, + "output":{ + "shape":"DBSecurityGroupMessage", + "resultWrapper":"DescribeDBSecurityGroupsResult" + }, + "errors":[ + {"shape":"DBSecurityGroupNotFoundFault"} + ] + }, + "DescribeDBShardGroups":{ + "name":"DescribeDBShardGroups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBShardGroupsMessage"}, + "output":{ + "shape":"DescribeDBShardGroupsResponse", + "resultWrapper":"DescribeDBShardGroupsResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"} + ] + }, + "DescribeDBSnapshotAttributes":{ + "name":"DescribeDBSnapshotAttributes", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBSnapshotAttributesMessage"}, + "output":{ + "shape":"DescribeDBSnapshotAttributesResult", + "resultWrapper":"DescribeDBSnapshotAttributesResult" + }, + "errors":[ + {"shape":"DBSnapshotNotFoundFault"} + ] + }, + "DescribeDBSnapshotTenantDatabases":{ + "name":"DescribeDBSnapshotTenantDatabases", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBSnapshotTenantDatabasesMessage"}, + "output":{ + "shape":"DBSnapshotTenantDatabasesMessage", + "resultWrapper":"DescribeDBSnapshotTenantDatabasesResult" + }, + "errors":[ + {"shape":"DBSnapshotNotFoundFault"} + ] + }, + "DescribeDBSnapshots":{ + "name":"DescribeDBSnapshots", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBSnapshotsMessage"}, + "output":{ + "shape":"DBSnapshotMessage", + "resultWrapper":"DescribeDBSnapshotsResult" + }, + "errors":[ + {"shape":"DBSnapshotNotFoundFault"} + ] + }, + "DescribeDBSubnetGroups":{ + "name":"DescribeDBSubnetGroups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBSubnetGroupsMessage"}, + "output":{ + "shape":"DBSubnetGroupMessage", + "resultWrapper":"DescribeDBSubnetGroupsResult" + }, + "errors":[ + {"shape":"DBSubnetGroupNotFoundFault"} + ] + }, + "DescribeEngineDefaultClusterParameters":{ + "name":"DescribeEngineDefaultClusterParameters", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeEngineDefaultClusterParametersMessage"}, + "output":{ + "shape":"DescribeEngineDefaultClusterParametersResult", + "resultWrapper":"DescribeEngineDefaultClusterParametersResult" + }, + "errors":[] + }, + "DescribeEngineDefaultParameters":{ + "name":"DescribeEngineDefaultParameters", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeEngineDefaultParametersMessage"}, + "output":{ + "shape":"DescribeEngineDefaultParametersResult", + "resultWrapper":"DescribeEngineDefaultParametersResult" + }, + "errors":[] + }, + "DescribeEventCategories":{ + "name":"DescribeEventCategories", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeEventCategoriesMessage"}, + "output":{ + "shape":"EventCategoriesMessage", + "resultWrapper":"DescribeEventCategoriesResult" + }, + "errors":[] + }, + "DescribeEventSubscriptions":{ + "name":"DescribeEventSubscriptions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeEventSubscriptionsMessage"}, + "output":{ + "shape":"EventSubscriptionsMessage", + "resultWrapper":"DescribeEventSubscriptionsResult" + }, + "errors":[ + {"shape":"SubscriptionNotFoundFault"} + ] + }, + "DescribeEvents":{ + "name":"DescribeEvents", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeEventsMessage"}, + "output":{ + "shape":"EventsMessage", + "resultWrapper":"DescribeEventsResult" + }, + "errors":[] + }, + "DescribeExportTasks":{ + "name":"DescribeExportTasks", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeExportTasksMessage"}, + "output":{ + "shape":"ExportTasksMessage", + "resultWrapper":"DescribeExportTasksResult" + }, + "errors":[ + {"shape":"ExportTaskNotFoundFault"} + ] + }, + "DescribeGlobalClusters":{ + "name":"DescribeGlobalClusters", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeGlobalClustersMessage"}, + "output":{ + "shape":"GlobalClustersMessage", + "resultWrapper":"DescribeGlobalClustersResult" + }, + "errors":[ + {"shape":"GlobalClusterNotFoundFault"} + ] + }, + "DescribeIntegrations":{ + "name":"DescribeIntegrations", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeIntegrationsMessage"}, + "output":{ + "shape":"DescribeIntegrationsResponse", + "resultWrapper":"DescribeIntegrationsResult" + }, + "errors":[ + {"shape":"IntegrationNotFoundFault"} + ] + }, + "DescribeOptionGroupOptions":{ + "name":"DescribeOptionGroupOptions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeOptionGroupOptionsMessage"}, + "output":{ + "shape":"OptionGroupOptionsMessage", + "resultWrapper":"DescribeOptionGroupOptionsResult" + }, + "errors":[] + }, + "DescribeOptionGroups":{ + "name":"DescribeOptionGroups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeOptionGroupsMessage"}, + "output":{ + "shape":"OptionGroups", + "resultWrapper":"DescribeOptionGroupsResult" + }, + "errors":[ + {"shape":"OptionGroupNotFoundFault"} + ] + }, + "DescribeOrderableDBInstanceOptions":{ + "name":"DescribeOrderableDBInstanceOptions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeOrderableDBInstanceOptionsMessage"}, + "output":{ + "shape":"OrderableDBInstanceOptionsMessage", + "resultWrapper":"DescribeOrderableDBInstanceOptionsResult" + }, + "errors":[] + }, + "DescribePendingMaintenanceActions":{ + "name":"DescribePendingMaintenanceActions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribePendingMaintenanceActionsMessage"}, + "output":{ + "shape":"PendingMaintenanceActionsMessage", + "resultWrapper":"DescribePendingMaintenanceActionsResult" + }, + "errors":[ + {"shape":"ResourceNotFoundFault"} + ] + }, + "DescribeReservedDBInstances":{ + "name":"DescribeReservedDBInstances", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeReservedDBInstancesMessage"}, + "output":{ + "shape":"ReservedDBInstanceMessage", + "resultWrapper":"DescribeReservedDBInstancesResult" + }, + "errors":[ + {"shape":"ReservedDBInstanceNotFoundFault"} + ] + }, + "DescribeReservedDBInstancesOfferings":{ + "name":"DescribeReservedDBInstancesOfferings", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeReservedDBInstancesOfferingsMessage"}, + "output":{ + "shape":"ReservedDBInstancesOfferingMessage", + "resultWrapper":"DescribeReservedDBInstancesOfferingsResult" + }, + "errors":[ + {"shape":"ReservedDBInstancesOfferingNotFoundFault"} + ] + }, + "DescribeSourceRegions":{ + "name":"DescribeSourceRegions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeSourceRegionsMessage"}, + "output":{ + "shape":"SourceRegionMessage", + "resultWrapper":"DescribeSourceRegionsResult" + }, + "errors":[] + }, + "DescribeTenantDatabases":{ + "name":"DescribeTenantDatabases", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeTenantDatabasesMessage"}, + "output":{ + "shape":"TenantDatabasesMessage", + "resultWrapper":"DescribeTenantDatabasesResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"} + ] + }, + "DescribeValidDBInstanceModifications":{ + "name":"DescribeValidDBInstanceModifications", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeValidDBInstanceModificationsMessage"}, + "output":{ + "shape":"DescribeValidDBInstanceModificationsResult", + "resultWrapper":"DescribeValidDBInstanceModificationsResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ] + }, + "DisableHttpEndpoint":{ + "name":"DisableHttpEndpoint", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DisableHttpEndpointRequest"}, + "output":{ + "shape":"DisableHttpEndpointResponse", + "resultWrapper":"DisableHttpEndpointResult" + }, + "errors":[ + {"shape":"ResourceNotFoundFault"}, + {"shape":"InvalidResourceStateFault"} + ] + }, + "DownloadDBLogFilePortion":{ + "name":"DownloadDBLogFilePortion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DownloadDBLogFilePortionMessage"}, + "output":{ + "shape":"DownloadDBLogFilePortionDetails", + "resultWrapper":"DownloadDBLogFilePortionResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBInstanceNotReadyFault"}, + {"shape":"DBLogFileNotFoundFault"} + ] + }, + "EnableHttpEndpoint":{ + "name":"EnableHttpEndpoint", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"EnableHttpEndpointRequest"}, + "output":{ + "shape":"EnableHttpEndpointResponse", + "resultWrapper":"EnableHttpEndpointResult" + }, + "errors":[ + {"shape":"ResourceNotFoundFault"}, + {"shape":"InvalidResourceStateFault"} + ] + }, + "FailoverDBCluster":{ + "name":"FailoverDBCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"FailoverDBClusterMessage"}, + "output":{ + "shape":"FailoverDBClusterResult", + "resultWrapper":"FailoverDBClusterResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ] + }, + "FailoverGlobalCluster":{ + "name":"FailoverGlobalCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"FailoverGlobalClusterMessage"}, + "output":{ + "shape":"FailoverGlobalClusterResult", + "resultWrapper":"FailoverGlobalClusterResult" + }, + "errors":[ + {"shape":"GlobalClusterNotFoundFault"}, + {"shape":"InvalidGlobalClusterStateFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"DBClusterNotFoundFault"} + ] + }, + "ListTagsForResource":{ + "name":"ListTagsForResource", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListTagsForResourceMessage"}, + "output":{ + "shape":"TagListMessage", + "resultWrapper":"ListTagsForResourceResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBSnapshotNotFoundFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"DBProxyNotFoundFault"}, + {"shape":"DBProxyTargetGroupNotFoundFault"}, + {"shape":"DBProxyEndpointNotFoundFault"}, + {"shape":"BlueGreenDeploymentNotFoundFault"}, + {"shape":"TenantDatabaseNotFoundFault"}, + {"shape":"DBSnapshotTenantDatabaseNotFoundFault"}, + {"shape":"IntegrationNotFoundFault"} + ] + }, + "ModifyActivityStream":{ + "name":"ModifyActivityStream", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyActivityStreamRequest"}, + "output":{ + "shape":"ModifyActivityStreamResponse", + "resultWrapper":"ModifyActivityStreamResult" + }, + "errors":[ + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"ResourceNotFoundFault"}, + {"shape":"DBInstanceNotFoundFault"} + ] + }, + "ModifyCertificates":{ + "name":"ModifyCertificates", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyCertificatesMessage"}, + "output":{ + "shape":"ModifyCertificatesResult", + "resultWrapper":"ModifyCertificatesResult" + }, + "errors":[ + {"shape":"CertificateNotFoundFault"} + ] + }, + "ModifyCurrentDBClusterCapacity":{ + "name":"ModifyCurrentDBClusterCapacity", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyCurrentDBClusterCapacityMessage"}, + "output":{ + "shape":"DBClusterCapacityInfo", + "resultWrapper":"ModifyCurrentDBClusterCapacityResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBClusterCapacityFault"} + ] + }, + "ModifyCustomDBEngineVersion":{ + "name":"ModifyCustomDBEngineVersion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyCustomDBEngineVersionMessage"}, + "output":{ + "shape":"DBEngineVersion", + "resultWrapper":"ModifyCustomDBEngineVersionResult" + }, + "errors":[ + {"shape":"CustomDBEngineVersionNotFoundFault"}, + {"shape":"InvalidCustomDBEngineVersionStateFault"} + ] + }, + "ModifyDBCluster":{ + "name":"ModifyDBCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBClusterMessage"}, + "output":{ + "shape":"ModifyDBClusterResult", + "resultWrapper":"ModifyDBClusterResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"InvalidDBSubnetGroupStateFault"}, + {"shape":"InvalidSubnet"}, + {"shape":"DBClusterParameterGroupNotFoundFault"}, + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"InvalidDBSecurityGroupStateFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"DBClusterAlreadyExistsFault"}, + {"shape":"DBInstanceAlreadyExistsFault"}, + {"shape":"NetworkTypeNotSupported"}, + {"shape":"DomainNotFoundFault"}, + {"shape":"InvalidGlobalClusterStateFault"}, + {"shape":"StorageTypeNotSupportedFault"}, + {"shape":"StorageTypeNotAvailableFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"KMSKeyNotAccessibleFault"} + ] + }, + "ModifyDBClusterEndpoint":{ + "name":"ModifyDBClusterEndpoint", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBClusterEndpointMessage"}, + "output":{ + "shape":"DBClusterEndpoint", + "resultWrapper":"ModifyDBClusterEndpointResult" + }, + "errors":[ + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBClusterEndpointStateFault"}, + {"shape":"DBClusterEndpointNotFoundFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ] + }, + "ModifyDBClusterParameterGroup":{ + "name":"ModifyDBClusterParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBClusterParameterGroupMessage"}, + "output":{ + "shape":"DBClusterParameterGroupNameMessage", + "resultWrapper":"ModifyDBClusterParameterGroupResult" + }, + "errors":[ + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"InvalidDBParameterGroupStateFault"} + ] + }, + "ModifyDBClusterSnapshotAttribute":{ + "name":"ModifyDBClusterSnapshotAttribute", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBClusterSnapshotAttributeMessage"}, + "output":{ + "shape":"ModifyDBClusterSnapshotAttributeResult", + "resultWrapper":"ModifyDBClusterSnapshotAttributeResult" + }, + "errors":[ + {"shape":"DBClusterSnapshotNotFoundFault"}, + {"shape":"InvalidDBClusterSnapshotStateFault"}, + {"shape":"SharedSnapshotQuotaExceededFault"} + ] + }, + "ModifyDBInstance":{ + "name":"ModifyDBInstance", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBInstanceMessage"}, + "output":{ + "shape":"ModifyDBInstanceResult", + "resultWrapper":"ModifyDBInstanceResult" + }, + "errors":[ + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"InvalidDBSecurityGroupStateFault"}, + {"shape":"DBInstanceAlreadyExistsFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBSecurityGroupNotFoundFault"}, + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"ProvisionedIopsNotAvailableInAZFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"DBUpgradeDependencyFailureFault"}, + {"shape":"StorageTypeNotSupportedFault"}, + {"shape":"AuthorizationNotFoundFault"}, + {"shape":"CertificateNotFoundFault"}, + {"shape":"DomainNotFoundFault"}, + {"shape":"BackupPolicyNotFoundFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"NetworkTypeNotSupported"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"TenantDatabaseQuotaExceededFault"}, + {"shape":"FreeTierRestrictionError"} + ] + }, + "ModifyDBParameterGroup":{ + "name":"ModifyDBParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBParameterGroupMessage"}, + "output":{ + "shape":"DBParameterGroupNameMessage", + "resultWrapper":"ModifyDBParameterGroupResult" + }, + "errors":[ + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"InvalidDBParameterGroupStateFault"} + ] + }, + "ModifyDBProxy":{ + "name":"ModifyDBProxy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBProxyRequest"}, + "output":{ + "shape":"ModifyDBProxyResponse", + "resultWrapper":"ModifyDBProxyResult" + }, + "errors":[ + {"shape":"DBProxyNotFoundFault"}, + {"shape":"DBProxyAlreadyExistsFault"}, + {"shape":"InvalidDBProxyStateFault"} + ] + }, + "ModifyDBProxyEndpoint":{ + "name":"ModifyDBProxyEndpoint", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBProxyEndpointRequest"}, + "output":{ + "shape":"ModifyDBProxyEndpointResponse", + "resultWrapper":"ModifyDBProxyEndpointResult" + }, + "errors":[ + {"shape":"DBProxyEndpointNotFoundFault"}, + {"shape":"DBProxyEndpointAlreadyExistsFault"}, + {"shape":"InvalidDBProxyEndpointStateFault"}, + {"shape":"InvalidDBProxyStateFault"} + ] + }, + "ModifyDBProxyTargetGroup":{ + "name":"ModifyDBProxyTargetGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBProxyTargetGroupRequest"}, + "output":{ + "shape":"ModifyDBProxyTargetGroupResponse", + "resultWrapper":"ModifyDBProxyTargetGroupResult" + }, + "errors":[ + {"shape":"DBProxyNotFoundFault"}, + {"shape":"DBProxyTargetGroupNotFoundFault"}, + {"shape":"InvalidDBProxyStateFault"} + ] + }, + "ModifyDBRecommendation":{ + "name":"ModifyDBRecommendation", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBRecommendationMessage"}, + "output":{ + "shape":"DBRecommendationMessage", + "resultWrapper":"ModifyDBRecommendationResult" + }, + "errors":[] + }, + "ModifyDBShardGroup":{ + "name":"ModifyDBShardGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBShardGroupMessage"}, + "output":{ + "shape":"DBShardGroup", + "resultWrapper":"ModifyDBShardGroupResult" + }, + "errors":[ + {"shape":"InvalidDBClusterStateFault"} + ] + }, + "ModifyDBSnapshot":{ + "name":"ModifyDBSnapshot", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBSnapshotMessage"}, + "output":{ + "shape":"ModifyDBSnapshotResult", + "resultWrapper":"ModifyDBSnapshotResult" + }, + "errors":[ + {"shape":"DBSnapshotNotFoundFault"}, + {"shape":"InvalidDBSnapshotStateFault"}, + {"shape":"KMSKeyNotAccessibleFault"} + ] + }, + "ModifyDBSnapshotAttribute":{ + "name":"ModifyDBSnapshotAttribute", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBSnapshotAttributeMessage"}, + "output":{ + "shape":"ModifyDBSnapshotAttributeResult", + "resultWrapper":"ModifyDBSnapshotAttributeResult" + }, + "errors":[ + {"shape":"DBSnapshotNotFoundFault"}, + {"shape":"InvalidDBSnapshotStateFault"}, + {"shape":"SharedSnapshotQuotaExceededFault"} + ] + }, + "ModifyDBSubnetGroup":{ + "name":"ModifyDBSubnetGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBSubnetGroupMessage"}, + "output":{ + "shape":"ModifyDBSubnetGroupResult", + "resultWrapper":"ModifyDBSubnetGroupResult" + }, + "errors":[ + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"DBSubnetQuotaExceededFault"}, + {"shape":"SubnetAlreadyInUse"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidDBSubnetGroupStateFault"}, + {"shape":"InvalidSubnet"} + ] + }, + "ModifyEventSubscription":{ + "name":"ModifyEventSubscription", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyEventSubscriptionMessage"}, + "output":{ + "shape":"ModifyEventSubscriptionResult", + "resultWrapper":"ModifyEventSubscriptionResult" + }, + "errors":[ + {"shape":"SubscriptionNotFoundFault"}, + {"shape":"SNSInvalidTopicFault"}, + {"shape":"SNSNoAuthorizationFault"}, + {"shape":"SNSTopicArnNotFoundFault"}, + {"shape":"SubscriptionCategoryNotFoundFault"} + ] + }, + "ModifyGlobalCluster":{ + "name":"ModifyGlobalCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyGlobalClusterMessage"}, + "output":{ + "shape":"ModifyGlobalClusterResult", + "resultWrapper":"ModifyGlobalClusterResult" + }, + "errors":[ + {"shape":"GlobalClusterNotFoundFault"}, + {"shape":"GlobalClusterAlreadyExistsFault"}, + {"shape":"InvalidGlobalClusterStateFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ] + }, + "ModifyIntegration":{ + "name":"ModifyIntegration", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyIntegrationMessage"}, + "output":{ + "shape":"Integration", + "resultWrapper":"ModifyIntegrationResult" + }, + "errors":[ + {"shape":"IntegrationNotFoundFault"}, + {"shape":"InvalidIntegrationStateFault"}, + {"shape":"IntegrationConflictOperationFault"} + ] + }, + "ModifyOptionGroup":{ + "name":"ModifyOptionGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyOptionGroupMessage"}, + "output":{ + "shape":"ModifyOptionGroupResult", + "resultWrapper":"ModifyOptionGroupResult" + }, + "errors":[ + {"shape":"InvalidOptionGroupStateFault"}, + {"shape":"OptionGroupNotFoundFault"} + ] + }, + "ModifyTenantDatabase":{ + "name":"ModifyTenantDatabase", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyTenantDatabaseMessage"}, + "output":{ + "shape":"ModifyTenantDatabaseResult", + "resultWrapper":"ModifyTenantDatabaseResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"TenantDatabaseNotFoundFault"}, + {"shape":"TenantDatabaseAlreadyExistsFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"KMSKeyNotAccessibleFault"} + ] + }, + "PromoteReadReplica":{ + "name":"PromoteReadReplica", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"PromoteReadReplicaMessage"}, + "output":{ + "shape":"PromoteReadReplicaResult", + "resultWrapper":"PromoteReadReplicaResult" + }, + "errors":[ + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"DBInstanceNotFoundFault"} + ] + }, + "PromoteReadReplicaDBCluster":{ + "name":"PromoteReadReplicaDBCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"PromoteReadReplicaDBClusterMessage"}, + "output":{ + "shape":"PromoteReadReplicaDBClusterResult", + "resultWrapper":"PromoteReadReplicaDBClusterResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"} + ] + }, + "PurchaseReservedDBInstancesOffering":{ + "name":"PurchaseReservedDBInstancesOffering", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"PurchaseReservedDBInstancesOfferingMessage"}, + "output":{ + "shape":"PurchaseReservedDBInstancesOfferingResult", + "resultWrapper":"PurchaseReservedDBInstancesOfferingResult" + }, + "errors":[ + {"shape":"ReservedDBInstancesOfferingNotFoundFault"}, + {"shape":"ReservedDBInstanceAlreadyExistsFault"}, + {"shape":"ReservedDBInstanceQuotaExceededFault"}, + {"shape":"FreeTierRestrictionError"} + ] + }, + "RebootDBCluster":{ + "name":"RebootDBCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RebootDBClusterMessage"}, + "output":{ + "shape":"RebootDBClusterResult", + "resultWrapper":"RebootDBClusterResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ] + }, + "RebootDBInstance":{ + "name":"RebootDBInstance", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RebootDBInstanceMessage"}, + "output":{ + "shape":"RebootDBInstanceResult", + "resultWrapper":"RebootDBInstanceResult" + }, + "errors":[ + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"KMSKeyNotAccessibleFault"} + ] + }, + "RebootDBShardGroup":{ + "name":"RebootDBShardGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RebootDBShardGroupMessage"}, + "output":{ + "shape":"DBShardGroup", + "resultWrapper":"RebootDBShardGroupResult" + }, + "errors":[] + }, + "RegisterDBProxyTargets":{ + "name":"RegisterDBProxyTargets", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RegisterDBProxyTargetsRequest"}, + "output":{ + "shape":"RegisterDBProxyTargetsResponse", + "resultWrapper":"RegisterDBProxyTargetsResult" + }, + "errors":[ + {"shape":"DBProxyNotFoundFault"}, + {"shape":"DBProxyTargetGroupNotFoundFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBProxyTargetAlreadyRegisteredFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBProxyStateFault"}, + {"shape":"InsufficientAvailableIPsInSubnetFault"} + ] + }, + "RemoveFromGlobalCluster":{ + "name":"RemoveFromGlobalCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RemoveFromGlobalClusterMessage"}, + "output":{ + "shape":"RemoveFromGlobalClusterResult", + "resultWrapper":"RemoveFromGlobalClusterResult" + }, + "errors":[ + {"shape":"GlobalClusterNotFoundFault"}, + {"shape":"InvalidGlobalClusterStateFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"DBClusterNotFoundFault"} + ] + }, + "RemoveRoleFromDBCluster":{ + "name":"RemoveRoleFromDBCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RemoveRoleFromDBClusterMessage"}, + "errors":[ + {"shape":"DBClusterNotFoundFault"}, + {"shape":"DBClusterRoleNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"} + ] + }, + "RemoveRoleFromDBInstance":{ + "name":"RemoveRoleFromDBInstance", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RemoveRoleFromDBInstanceMessage"}, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBInstanceRoleNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ] + }, + "RemoveSourceIdentifierFromSubscription":{ + "name":"RemoveSourceIdentifierFromSubscription", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RemoveSourceIdentifierFromSubscriptionMessage"}, + "output":{ + "shape":"RemoveSourceIdentifierFromSubscriptionResult", + "resultWrapper":"RemoveSourceIdentifierFromSubscriptionResult" + }, + "errors":[ + {"shape":"SubscriptionNotFoundFault"}, + {"shape":"SourceNotFoundFault"} + ] + }, + "RemoveTagsFromResource":{ + "name":"RemoveTagsFromResource", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RemoveTagsFromResourceMessage"}, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"DBSnapshotNotFoundFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"DBProxyNotFoundFault"}, + {"shape":"DBProxyEndpointNotFoundFault"}, + {"shape":"DBProxyTargetGroupNotFoundFault"}, + {"shape":"BlueGreenDeploymentNotFoundFault"}, + {"shape":"TenantDatabaseNotFoundFault"}, + {"shape":"DBSnapshotTenantDatabaseNotFoundFault"}, + {"shape":"IntegrationNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ] + }, + "ResetDBClusterParameterGroup":{ + "name":"ResetDBClusterParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ResetDBClusterParameterGroupMessage"}, + "output":{ + "shape":"DBClusterParameterGroupNameMessage", + "resultWrapper":"ResetDBClusterParameterGroupResult" + }, + "errors":[ + {"shape":"InvalidDBParameterGroupStateFault"}, + {"shape":"DBParameterGroupNotFoundFault"} + ] + }, + "ResetDBParameterGroup":{ + "name":"ResetDBParameterGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ResetDBParameterGroupMessage"}, + "output":{ + "shape":"DBParameterGroupNameMessage", + "resultWrapper":"ResetDBParameterGroupResult" + }, + "errors":[ + {"shape":"InvalidDBParameterGroupStateFault"}, + {"shape":"DBParameterGroupNotFoundFault"} + ] + }, + "RestoreDBClusterFromS3":{ + "name":"RestoreDBClusterFromS3", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RestoreDBClusterFromS3Message"}, + "output":{ + "shape":"RestoreDBClusterFromS3Result", + "resultWrapper":"RestoreDBClusterFromS3Result" + }, + "errors":[ + {"shape":"DBClusterAlreadyExistsFault"}, + {"shape":"DBClusterQuotaExceededFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBSubnetGroupStateFault"}, + {"shape":"InvalidSubnet"}, + {"shape":"InvalidS3BucketFault"}, + {"shape":"DBClusterParameterGroupNotFoundFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"NetworkTypeNotSupported"}, + {"shape":"DomainNotFoundFault"}, + {"shape":"InsufficientStorageClusterCapacityFault"}, + {"shape":"StorageTypeNotSupportedFault"} + ] + }, + "RestoreDBClusterFromSnapshot":{ + "name":"RestoreDBClusterFromSnapshot", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RestoreDBClusterFromSnapshotMessage"}, + "output":{ + "shape":"RestoreDBClusterFromSnapshotResult", + "resultWrapper":"RestoreDBClusterFromSnapshotResult" + }, + "errors":[ + {"shape":"DBClusterAlreadyExistsFault"}, + {"shape":"DBClusterQuotaExceededFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"DBSnapshotNotFoundFault"}, + {"shape":"DBClusterSnapshotNotFoundFault"}, + {"shape":"InsufficientDBClusterCapacityFault"}, + {"shape":"InsufficientStorageClusterCapacityFault"}, + {"shape":"InvalidDBSnapshotStateFault"}, + {"shape":"InvalidDBClusterSnapshotStateFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidRestoreFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"InvalidSubnet"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"NetworkTypeNotSupported"}, + {"shape":"DomainNotFoundFault"}, + {"shape":"DBClusterParameterGroupNotFoundFault"}, + {"shape":"StorageTypeNotSupportedFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"} + ] + }, + "RestoreDBClusterToPointInTime":{ + "name":"RestoreDBClusterToPointInTime", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RestoreDBClusterToPointInTimeMessage"}, + "output":{ + "shape":"RestoreDBClusterToPointInTimeResult", + "resultWrapper":"RestoreDBClusterToPointInTimeResult" + }, + "errors":[ + {"shape":"DBClusterAlreadyExistsFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"DBClusterQuotaExceededFault"}, + {"shape":"DBClusterSnapshotNotFoundFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"InsufficientDBClusterCapacityFault"}, + {"shape":"InsufficientStorageClusterCapacityFault"}, + {"shape":"InvalidDBClusterSnapshotStateFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBSnapshotStateFault"}, + {"shape":"InvalidRestoreFault"}, + {"shape":"InvalidSubnet"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"NetworkTypeNotSupported"}, + {"shape":"DomainNotFoundFault"}, + {"shape":"DBClusterParameterGroupNotFoundFault"}, + {"shape":"StorageTypeNotSupportedFault"}, + {"shape":"DBClusterAutomatedBackupNotFoundFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"} + ] + }, + "RestoreDBInstanceFromDBSnapshot":{ + "name":"RestoreDBInstanceFromDBSnapshot", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RestoreDBInstanceFromDBSnapshotMessage"}, + "output":{ + "shape":"RestoreDBInstanceFromDBSnapshotResult", + "resultWrapper":"RestoreDBInstanceFromDBSnapshotResult" + }, + "errors":[ + {"shape":"DBInstanceAlreadyExistsFault"}, + {"shape":"DBSnapshotNotFoundFault"}, + {"shape":"InstanceQuotaExceededFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"}, + {"shape":"InvalidDBSnapshotStateFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"InvalidRestoreFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidSubnet"}, + {"shape":"ProvisionedIopsNotAvailableInAZFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"StorageTypeNotSupportedFault"}, + {"shape":"AuthorizationNotFoundFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"DBSecurityGroupNotFoundFault"}, + {"shape":"DomainNotFoundFault"}, + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"NetworkTypeNotSupported"}, + {"shape":"BackupPolicyNotFoundFault"}, + {"shape":"DBClusterSnapshotNotFoundFault"}, + {"shape":"CertificateNotFoundFault"}, + {"shape":"TenantDatabaseQuotaExceededFault"}, + {"shape":"FreeTierRestrictionError"} + ] + }, + "RestoreDBInstanceFromS3":{ + "name":"RestoreDBInstanceFromS3", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RestoreDBInstanceFromS3Message"}, + "output":{ + "shape":"RestoreDBInstanceFromS3Result", + "resultWrapper":"RestoreDBInstanceFromS3Result" + }, + "errors":[ + {"shape":"DBInstanceAlreadyExistsFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"}, + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"DBSecurityGroupNotFoundFault"}, + {"shape":"InstanceQuotaExceededFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidSubnet"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"InvalidS3BucketFault"}, + {"shape":"ProvisionedIopsNotAvailableInAZFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"StorageTypeNotSupportedFault"}, + {"shape":"AuthorizationNotFoundFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"NetworkTypeNotSupported"}, + {"shape":"BackupPolicyNotFoundFault"}, + {"shape":"CertificateNotFoundFault"}, + {"shape":"FreeTierRestrictionError"} + ] + }, + "RestoreDBInstanceToPointInTime":{ + "name":"RestoreDBInstanceToPointInTime", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RestoreDBInstanceToPointInTimeMessage"}, + "output":{ + "shape":"RestoreDBInstanceToPointInTimeResult", + "resultWrapper":"RestoreDBInstanceToPointInTimeResult" + }, + "errors":[ + {"shape":"DBInstanceAlreadyExistsFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InstanceQuotaExceededFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"PointInTimeRestoreNotEnabledFault"}, + {"shape":"StorageQuotaExceededFault"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"InvalidRestoreFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidSubnet"}, + {"shape":"ProvisionedIopsNotAvailableInAZFault"}, + {"shape":"OptionGroupNotFoundFault"}, + {"shape":"StorageTypeNotSupportedFault"}, + {"shape":"AuthorizationNotFoundFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"DBSecurityGroupNotFoundFault"}, + {"shape":"DomainNotFoundFault"}, + {"shape":"BackupPolicyNotFoundFault"}, + {"shape":"DBParameterGroupNotFoundFault"}, + {"shape":"NetworkTypeNotSupported"}, + {"shape":"DBInstanceAutomatedBackupNotFoundFault"}, + {"shape":"TenantDatabaseQuotaExceededFault"}, + {"shape":"CertificateNotFoundFault"}, + {"shape":"FreeTierRestrictionError"} + ] + }, + "RevokeDBSecurityGroupIngress":{ + "name":"RevokeDBSecurityGroupIngress", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RevokeDBSecurityGroupIngressMessage"}, + "output":{ + "shape":"RevokeDBSecurityGroupIngressResult", + "resultWrapper":"RevokeDBSecurityGroupIngressResult" + }, + "errors":[ + {"shape":"DBSecurityGroupNotFoundFault"}, + {"shape":"AuthorizationNotFoundFault"}, + {"shape":"InvalidDBSecurityGroupStateFault"} + ] + }, + "StartActivityStream":{ + "name":"StartActivityStream", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StartActivityStreamRequest"}, + "output":{ + "shape":"StartActivityStreamResponse", + "resultWrapper":"StartActivityStreamResult" + }, + "errors":[ + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"ResourceNotFoundFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"KMSKeyNotAccessibleFault"} + ] + }, + "StartDBCluster":{ + "name":"StartDBCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StartDBClusterMessage"}, + "output":{ + "shape":"StartDBClusterResult", + "resultWrapper":"StartDBClusterResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"KMSKeyNotAccessibleFault"} + ] + }, + "StartDBInstance":{ + "name":"StartDBInstance", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StartDBInstanceMessage"}, + "output":{ + "shape":"StartDBInstanceResult", + "resultWrapper":"StartDBInstanceResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"InsufficientDBInstanceCapacityFault"}, + {"shape":"DBSubnetGroupNotFoundFault"}, + {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidSubnet"}, + {"shape":"InvalidVPCNetworkStateFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"AuthorizationNotFoundFault"}, + {"shape":"KMSKeyNotAccessibleFault"} + ] + }, + "StartDBInstanceAutomatedBackupsReplication":{ + "name":"StartDBInstanceAutomatedBackupsReplication", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StartDBInstanceAutomatedBackupsReplicationMessage"}, + "output":{ + "shape":"StartDBInstanceAutomatedBackupsReplicationResult", + "resultWrapper":"StartDBInstanceAutomatedBackupsReplicationResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"InvalidDBInstanceAutomatedBackupStateFault"}, + {"shape":"DBInstanceAutomatedBackupQuotaExceededFault"}, + {"shape":"StorageTypeNotSupportedFault"} + ] + }, + "StartExportTask":{ + "name":"StartExportTask", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StartExportTaskMessage"}, + "output":{ + "shape":"ExportTask", + "resultWrapper":"StartExportTaskResult" + }, + "errors":[ + {"shape":"DBSnapshotNotFoundFault"}, + {"shape":"DBClusterSnapshotNotFoundFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"ExportTaskAlreadyExistsFault"}, + {"shape":"InvalidS3BucketFault"}, + {"shape":"IamRoleNotFoundFault"}, + {"shape":"IamRoleMissingPermissionsFault"}, + {"shape":"InvalidExportOnlyFault"}, + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"InvalidExportSourceStateFault"} + ] + }, + "StopActivityStream":{ + "name":"StopActivityStream", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StopActivityStreamRequest"}, + "output":{ + "shape":"StopActivityStreamResponse", + "resultWrapper":"StopActivityStreamResult" + }, + "errors":[ + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"ResourceNotFoundFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"DBInstanceNotFoundFault"} + ] + }, + "StopDBCluster":{ + "name":"StopDBCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StopDBClusterMessage"}, + "output":{ + "shape":"StopDBClusterResult", + "resultWrapper":"StopDBClusterResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ] + }, + "StopDBInstance":{ + "name":"StopDBInstance", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StopDBInstanceMessage"}, + "output":{ + "shape":"StopDBInstanceResult", + "resultWrapper":"StopDBInstanceResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"}, + {"shape":"DBSnapshotAlreadyExistsFault"}, + {"shape":"SnapshotQuotaExceededFault"}, + {"shape":"InvalidDBClusterStateFault"} + ] + }, + "StopDBInstanceAutomatedBackupsReplication":{ + "name":"StopDBInstanceAutomatedBackupsReplication", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StopDBInstanceAutomatedBackupsReplicationMessage"}, + "output":{ + "shape":"StopDBInstanceAutomatedBackupsReplicationResult", + "resultWrapper":"StopDBInstanceAutomatedBackupsReplicationResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ] + }, + "SwitchoverBlueGreenDeployment":{ + "name":"SwitchoverBlueGreenDeployment", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"SwitchoverBlueGreenDeploymentRequest"}, + "output":{ + "shape":"SwitchoverBlueGreenDeploymentResponse", + "resultWrapper":"SwitchoverBlueGreenDeploymentResult" + }, + "errors":[ + {"shape":"BlueGreenDeploymentNotFoundFault"}, + {"shape":"InvalidBlueGreenDeploymentStateFault"} + ] + }, + "SwitchoverGlobalCluster":{ + "name":"SwitchoverGlobalCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"SwitchoverGlobalClusterMessage"}, + "output":{ + "shape":"SwitchoverGlobalClusterResult", + "resultWrapper":"SwitchoverGlobalClusterResult" + }, + "errors":[ + {"shape":"GlobalClusterNotFoundFault"}, + {"shape":"InvalidGlobalClusterStateFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"DBClusterNotFoundFault"} + ] + }, + "SwitchoverReadReplica":{ + "name":"SwitchoverReadReplica", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"SwitchoverReadReplicaMessage"}, + "output":{ + "shape":"SwitchoverReadReplicaResult", + "resultWrapper":"SwitchoverReadReplicaResult" + }, + "errors":[ + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ] + } + }, + "shapes":{ + "AccountAttributesMessage":{ + "type":"structure", + "members":{ + "AccountQuotas":{"shape":"AccountQuotaList"} + } + }, + "AccountQuota":{ + "type":"structure", + "members":{ + "AccountQuotaName":{"shape":"String"}, + "Used":{"shape":"Long"}, + "Max":{"shape":"Long"} + }, + "wrapper":true + }, + "AccountQuotaList":{ + "type":"list", + "member":{ + "shape":"AccountQuota", + "locationName":"AccountQuota" + } + }, + "ActivityStreamMode":{ + "type":"string", + "enum":[ + "sync", + "async" + ] + }, + "ActivityStreamModeList":{ + "type":"list", + "member":{"shape":"String"} + }, + "ActivityStreamPolicyStatus":{ + "type":"string", + "enum":[ + "locked", + "unlocked", + "locking-policy", + "unlocking-policy" + ] + }, + "ActivityStreamStatus":{ + "type":"string", + "enum":[ + "stopped", + "starting", + "started", + "stopping" + ] + }, + "AddRoleToDBClusterMessage":{ + "type":"structure", + "required":[ + "DBClusterIdentifier", + "RoleArn" + ], + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "RoleArn":{"shape":"String"}, + "FeatureName":{"shape":"String"} + } + }, + "AddRoleToDBInstanceMessage":{ + "type":"structure", + "required":[ + "DBInstanceIdentifier", + "RoleArn", + "FeatureName" + ], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "RoleArn":{"shape":"String"}, + "FeatureName":{"shape":"String"} + } + }, + "AddSourceIdentifierToSubscriptionMessage":{ + "type":"structure", + "required":[ + "SubscriptionName", + "SourceIdentifier" + ], + "members":{ + "SubscriptionName":{"shape":"String"}, + "SourceIdentifier":{"shape":"String"} + } + }, + "AddSourceIdentifierToSubscriptionResult":{ + "type":"structure", + "members":{ + "EventSubscription":{"shape":"EventSubscription"} + } + }, + "AddTagsToResourceMessage":{ + "type":"structure", + "required":[ + "ResourceName", + "Tags" + ], + "members":{ + "ResourceName":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "ApplyMethod":{ + "type":"string", + "enum":[ + "immediate", + "pending-reboot" + ] + }, + "ApplyPendingMaintenanceActionMessage":{ + "type":"structure", + "required":[ + "ResourceIdentifier", + "ApplyAction", + "OptInType" + ], + "members":{ + "ResourceIdentifier":{"shape":"String"}, + "ApplyAction":{"shape":"String"}, + "OptInType":{"shape":"String"} + } + }, + "ApplyPendingMaintenanceActionResult":{ + "type":"structure", + "members":{ + "ResourcePendingMaintenanceActions":{"shape":"ResourcePendingMaintenanceActions"} + } + }, + "Arn":{ + "type":"string", + "max":2048, + "min":20 + }, + "AttributeValueList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"AttributeValue" + } + }, + "AuditPolicyState":{ + "type":"string", + "enum":[ + "locked", + "unlocked" + ] + }, + "AuthScheme":{ + "type":"string", + "enum":["SECRETS"] + }, + "AuthUserName":{ + "type":"string", + "max":128, + "min":1 + }, + "AuthorizationAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"AuthorizationAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "AuthorizationNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"AuthorizationNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "AuthorizationQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"AuthorizationQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "AuthorizeDBSecurityGroupIngressMessage":{ + "type":"structure", + "required":["DBSecurityGroupName"], + "members":{ + "DBSecurityGroupName":{"shape":"String"}, + "CIDRIP":{"shape":"String"}, + "EC2SecurityGroupName":{"shape":"String"}, + "EC2SecurityGroupId":{"shape":"String"}, + "EC2SecurityGroupOwnerId":{"shape":"String"} + } + }, + "AuthorizeDBSecurityGroupIngressResult":{ + "type":"structure", + "members":{ + "DBSecurityGroup":{"shape":"DBSecurityGroup"} + } + }, + "AutomationMode":{ + "type":"string", + "enum":[ + "full", + "all-paused" + ] + }, + "AvailabilityZone":{ + "type":"structure", + "members":{ + "Name":{"shape":"String"} + }, + "wrapper":true + }, + "AvailabilityZoneList":{ + "type":"list", + "member":{ + "shape":"AvailabilityZone", + "locationName":"AvailabilityZone" + } + }, + "AvailabilityZones":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"AvailabilityZone" + } + }, + "AvailableProcessorFeature":{ + "type":"structure", + "members":{ + "Name":{"shape":"String"}, + "DefaultValue":{"shape":"String"}, + "AllowedValues":{"shape":"String"} + } + }, + "AvailableProcessorFeatureList":{ + "type":"list", + "member":{ + "shape":"AvailableProcessorFeature", + "locationName":"AvailableProcessorFeature" + } + }, + "AwsBackupRecoveryPointArn":{ + "type":"string", + "max":350, + "min":43, + "pattern":"^arn:aws[a-z-]*:backup:[-a-z0-9]+:[0-9]{12}:[-a-z]+:([a-z0-9\\-]+:)?[a-z][a-z0-9\\-]{0,255}$" + }, + "BacktrackDBClusterMessage":{ + "type":"structure", + "required":[ + "DBClusterIdentifier", + "BacktrackTo" + ], + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "BacktrackTo":{"shape":"TStamp"}, + "Force":{"shape":"BooleanOptional"}, + "UseEarliestTimeOnPointInTimeUnavailable":{"shape":"BooleanOptional"} + } + }, + "BackupPolicyNotFoundFault":{ + "type":"structure", + "members":{}, + "deprecated":true, + "deprecatedMessage":"Please avoid using this fault", + "error":{ + "code":"BackupPolicyNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "BlueGreenDeployment":{ + "type":"structure", + "members":{ + "BlueGreenDeploymentIdentifier":{"shape":"BlueGreenDeploymentIdentifier"}, + "BlueGreenDeploymentName":{"shape":"BlueGreenDeploymentName"}, + "Source":{"shape":"DatabaseArn"}, + "Target":{"shape":"DatabaseArn"}, + "SwitchoverDetails":{"shape":"SwitchoverDetailList"}, + "Tasks":{"shape":"BlueGreenDeploymentTaskList"}, + "Status":{"shape":"BlueGreenDeploymentStatus"}, + "StatusDetails":{"shape":"BlueGreenDeploymentStatusDetails"}, + "CreateTime":{"shape":"TStamp"}, + "DeleteTime":{"shape":"TStamp"}, + "TagList":{"shape":"TagList"} + } + }, + "BlueGreenDeploymentAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"BlueGreenDeploymentAlreadyExistsFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "BlueGreenDeploymentIdentifier":{ + "type":"string", + "max":255, + "min":1, + "pattern":"[A-Za-z][0-9A-Za-z-:._]*" + }, + "BlueGreenDeploymentList":{ + "type":"list", + "member":{"shape":"BlueGreenDeployment"} + }, + "BlueGreenDeploymentName":{ + "type":"string", + "max":60, + "min":1, + "pattern":"[a-zA-Z](?:-?[a-zA-Z0-9]+)*" + }, + "BlueGreenDeploymentNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"BlueGreenDeploymentNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "BlueGreenDeploymentStatus":{"type":"string"}, + "BlueGreenDeploymentStatusDetails":{"type":"string"}, + "BlueGreenDeploymentTask":{ + "type":"structure", + "members":{ + "Name":{"shape":"BlueGreenDeploymentTaskName"}, + "Status":{"shape":"BlueGreenDeploymentTaskStatus"} + } + }, + "BlueGreenDeploymentTaskList":{ + "type":"list", + "member":{"shape":"BlueGreenDeploymentTask"} + }, + "BlueGreenDeploymentTaskName":{"type":"string"}, + "BlueGreenDeploymentTaskStatus":{"type":"string"}, + "Boolean":{"type":"boolean"}, + "BooleanOptional":{"type":"boolean"}, + "BucketName":{ + "type":"string", + "max":63, + "min":3, + "pattern":".*" + }, + "CACertificateIdentifiersList":{ + "type":"list", + "member":{"shape":"String"} + }, + "CancelExportTaskMessage":{ + "type":"structure", + "required":["ExportTaskIdentifier"], + "members":{ + "ExportTaskIdentifier":{"shape":"String"} + } + }, + "Certificate":{ + "type":"structure", + "members":{ + "CertificateIdentifier":{"shape":"String"}, + "CertificateType":{"shape":"String"}, + "Thumbprint":{"shape":"String"}, + "ValidFrom":{"shape":"TStamp"}, + "ValidTill":{"shape":"TStamp"}, + "CertificateArn":{"shape":"String"}, + "CustomerOverride":{"shape":"BooleanOptional"}, + "CustomerOverrideValidTill":{"shape":"TStamp"} + }, + "wrapper":true + }, + "CertificateDetails":{ + "type":"structure", + "members":{ + "CAIdentifier":{"shape":"String"}, + "ValidTill":{"shape":"TStamp"} + } + }, + "CertificateList":{ + "type":"list", + "member":{ + "shape":"Certificate", + "locationName":"Certificate" + } + }, + "CertificateMessage":{ + "type":"structure", + "members":{ + "Certificates":{"shape":"CertificateList"}, + "Marker":{"shape":"String"} + } + }, + "CertificateNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"CertificateNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "CharacterSet":{ + "type":"structure", + "members":{ + "CharacterSetName":{"shape":"String"}, + "CharacterSetDescription":{"shape":"String"} + } + }, + "ClientPasswordAuthType":{ + "type":"string", + "enum":[ + "MYSQL_NATIVE_PASSWORD", + "POSTGRES_SCRAM_SHA_256", + "POSTGRES_MD5", + "SQL_SERVER_AUTHENTICATION" + ] + }, + "CloudwatchLogsExportConfiguration":{ + "type":"structure", + "members":{ + "EnableLogTypes":{"shape":"LogTypeList"}, + "DisableLogTypes":{"shape":"LogTypeList"} + } + }, + "ClusterPendingModifiedValues":{ + "type":"structure", + "members":{ + "PendingCloudwatchLogsExports":{"shape":"PendingCloudwatchLogsExports"}, + "DBClusterIdentifier":{"shape":"String"}, + "MasterUserPassword":{"shape":"SensitiveString"}, + "IAMDatabaseAuthenticationEnabled":{"shape":"BooleanOptional"}, + "EngineVersion":{"shape":"String"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "StorageType":{"shape":"String"}, + "AllocatedStorage":{"shape":"IntegerOptional"}, + "RdsCustomClusterConfiguration":{"shape":"RdsCustomClusterConfiguration"}, + "Iops":{"shape":"IntegerOptional"}, + "CertificateDetails":{"shape":"CertificateDetails"} + } + }, + "ClusterScalabilityType":{ + "type":"string", + "enum":[ + "standard", + "limitless" + ] + }, + "ConnectionPoolConfiguration":{ + "type":"structure", + "members":{ + "MaxConnectionsPercent":{"shape":"IntegerOptional"}, + "MaxIdleConnectionsPercent":{"shape":"IntegerOptional"}, + "ConnectionBorrowTimeout":{"shape":"IntegerOptional"}, + "SessionPinningFilters":{"shape":"StringList"}, + "InitQuery":{"shape":"String"} + } + }, + "ConnectionPoolConfigurationInfo":{ + "type":"structure", + "members":{ + "MaxConnectionsPercent":{"shape":"Integer"}, + "MaxIdleConnectionsPercent":{"shape":"Integer"}, + "ConnectionBorrowTimeout":{"shape":"Integer"}, + "SessionPinningFilters":{"shape":"StringList"}, + "InitQuery":{"shape":"String"} + } + }, + "ContextAttribute":{ + "type":"structure", + "members":{ + "Key":{"shape":"String"}, + "Value":{"shape":"String"} + } + }, + "ContextAttributeList":{ + "type":"list", + "member":{"shape":"ContextAttribute"} + }, + "CopyDBClusterParameterGroupMessage":{ + "type":"structure", + "required":[ + "SourceDBClusterParameterGroupIdentifier", + "TargetDBClusterParameterGroupIdentifier", + "TargetDBClusterParameterGroupDescription" + ], + "members":{ + "SourceDBClusterParameterGroupIdentifier":{"shape":"String"}, + "TargetDBClusterParameterGroupIdentifier":{"shape":"String"}, + "TargetDBClusterParameterGroupDescription":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CopyDBClusterParameterGroupResult":{ + "type":"structure", + "members":{ + "DBClusterParameterGroup":{"shape":"DBClusterParameterGroup"} + } + }, + "CopyDBClusterSnapshotMessage":{ + "type":"structure", + "required":[ + "SourceDBClusterSnapshotIdentifier", + "TargetDBClusterSnapshotIdentifier" + ], + "members":{ + "SourceDBClusterSnapshotIdentifier":{"shape":"String"}, + "TargetDBClusterSnapshotIdentifier":{"shape":"String"}, + "KmsKeyId":{"shape":"String"}, + "PreSignedUrl":{"shape":"SensitiveString"}, + "CopyTags":{"shape":"BooleanOptional"}, + "Tags":{"shape":"TagList"} + } + }, + "CopyDBClusterSnapshotResult":{ + "type":"structure", + "members":{ + "DBClusterSnapshot":{"shape":"DBClusterSnapshot"} + } + }, + "CopyDBParameterGroupMessage":{ + "type":"structure", + "required":[ + "SourceDBParameterGroupIdentifier", + "TargetDBParameterGroupIdentifier", + "TargetDBParameterGroupDescription" + ], + "members":{ + "SourceDBParameterGroupIdentifier":{"shape":"String"}, + "TargetDBParameterGroupIdentifier":{"shape":"String"}, + "TargetDBParameterGroupDescription":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CopyDBParameterGroupResult":{ + "type":"structure", + "members":{ + "DBParameterGroup":{"shape":"DBParameterGroup"} + } + }, + "CopyDBSnapshotMessage":{ + "type":"structure", + "required":[ + "SourceDBSnapshotIdentifier", + "TargetDBSnapshotIdentifier" + ], + "members":{ + "SourceDBSnapshotIdentifier":{"shape":"String"}, + "TargetDBSnapshotIdentifier":{"shape":"String"}, + "KmsKeyId":{"shape":"String"}, + "Tags":{"shape":"TagList"}, + "CopyTags":{"shape":"BooleanOptional"}, + "PreSignedUrl":{"shape":"SensitiveString"}, + "OptionGroupName":{"shape":"String"}, + "TargetCustomAvailabilityZone":{"shape":"String"}, + "CopyOptionGroup":{"shape":"BooleanOptional"} + } + }, + "CopyDBSnapshotResult":{ + "type":"structure", + "members":{ + "DBSnapshot":{"shape":"DBSnapshot"} + } + }, + "CopyOptionGroupMessage":{ + "type":"structure", + "required":[ + "SourceOptionGroupIdentifier", + "TargetOptionGroupIdentifier", + "TargetOptionGroupDescription" + ], + "members":{ + "SourceOptionGroupIdentifier":{"shape":"String"}, + "TargetOptionGroupIdentifier":{"shape":"String"}, + "TargetOptionGroupDescription":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CopyOptionGroupResult":{ + "type":"structure", + "members":{ + "OptionGroup":{"shape":"OptionGroup"} + } + }, + "CreateBlueGreenDeploymentRequest":{ + "type":"structure", + "required":[ + "BlueGreenDeploymentName", + "Source" + ], + "members":{ + "BlueGreenDeploymentName":{"shape":"BlueGreenDeploymentName"}, + "Source":{"shape":"DatabaseArn"}, + "TargetEngineVersion":{"shape":"TargetEngineVersion"}, + "TargetDBParameterGroupName":{"shape":"TargetDBParameterGroupName"}, + "TargetDBClusterParameterGroupName":{"shape":"TargetDBClusterParameterGroupName"}, + "Tags":{"shape":"TagList"}, + "TargetDBInstanceClass":{"shape":"TargetDBInstanceClass"}, + "UpgradeTargetStorageConfig":{"shape":"BooleanOptional"} + } + }, + "CreateBlueGreenDeploymentResponse":{ + "type":"structure", + "members":{ + "BlueGreenDeployment":{"shape":"BlueGreenDeployment"} + } + }, + "CreateCustomDBEngineVersionFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"CreateCustomDBEngineVersionFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "CreateCustomDBEngineVersionMessage":{ + "type":"structure", + "required":[ + "Engine", + "EngineVersion" + ], + "members":{ + "Engine":{"shape":"CustomEngineName"}, + "EngineVersion":{"shape":"CustomEngineVersion"}, + "DatabaseInstallationFilesS3BucketName":{"shape":"BucketName"}, + "DatabaseInstallationFilesS3Prefix":{"shape":"String255"}, + "ImageId":{"shape":"String255"}, + "KMSKeyId":{"shape":"KmsKeyIdOrArn"}, + "Description":{"shape":"Description"}, + "Manifest":{"shape":"CustomDBEngineVersionManifest"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateDBClusterEndpointMessage":{ + "type":"structure", + "required":[ + "DBClusterIdentifier", + "DBClusterEndpointIdentifier", + "EndpointType" + ], + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "DBClusterEndpointIdentifier":{"shape":"String"}, + "EndpointType":{"shape":"String"}, + "StaticMembers":{"shape":"StringList"}, + "ExcludedMembers":{"shape":"StringList"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateDBClusterMessage":{ + "type":"structure", + "required":[ + "DBClusterIdentifier", + "Engine" + ], + "members":{ + "AvailabilityZones":{"shape":"AvailabilityZones"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "CharacterSetName":{"shape":"String"}, + "DatabaseName":{"shape":"String"}, + "DBClusterIdentifier":{"shape":"String"}, + "DBClusterParameterGroupName":{"shape":"String"}, + "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"}, + "DBSubnetGroupName":{"shape":"String"}, + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "Port":{"shape":"IntegerOptional"}, + "MasterUsername":{"shape":"String"}, + "MasterUserPassword":{"shape":"SensitiveString"}, + "OptionGroupName":{"shape":"String"}, + "PreferredBackupWindow":{"shape":"String"}, + "PreferredMaintenanceWindow":{"shape":"String"}, + "ReplicationSourceIdentifier":{"shape":"String"}, + "Tags":{"shape":"TagList"}, + "StorageEncrypted":{"shape":"BooleanOptional"}, + "KmsKeyId":{"shape":"String"}, + "PreSignedUrl":{"shape":"SensitiveString"}, + "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}, + "BacktrackWindow":{"shape":"LongOptional"}, + "EnableCloudwatchLogsExports":{"shape":"LogTypeList"}, + "EngineMode":{"shape":"String"}, + "ScalingConfiguration":{"shape":"ScalingConfiguration"}, + "RdsCustomClusterConfiguration":{"shape":"RdsCustomClusterConfiguration"}, + "DBClusterInstanceClass":{"shape":"String"}, + "AllocatedStorage":{"shape":"IntegerOptional"}, + "StorageType":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "GlobalClusterIdentifier":{"shape":"GlobalClusterIdentifier"}, + "EnableHttpEndpoint":{"shape":"BooleanOptional"}, + "CopyTagsToSnapshot":{"shape":"BooleanOptional"}, + "Domain":{"shape":"String"}, + "DomainIAMRoleName":{"shape":"String"}, + "EnableGlobalWriteForwarding":{"shape":"BooleanOptional"}, + "ServerlessV2ScalingConfiguration":{"shape":"ServerlessV2ScalingConfiguration"}, + "MonitoringInterval":{"shape":"IntegerOptional"}, + "MonitoringRoleArn":{"shape":"String"}, + "EnablePerformanceInsights":{"shape":"BooleanOptional"}, + "PerformanceInsightsKMSKeyId":{"shape":"String"}, + "PerformanceInsightsRetentionPeriod":{"shape":"IntegerOptional"}, + "EnableLimitlessDatabase":{"shape":"BooleanOptional"}, + "ClusterScalabilityType":{"shape":"ClusterScalabilityType"}, + "DBSystemId":{"shape":"String"}, + "ManageMasterUserPassword":{"shape":"BooleanOptional"}, + "MasterUserSecretKmsKeyId":{"shape":"String"}, + "CACertificateIdentifier":{"shape":"String"}, + "EngineLifecycleSupport":{"shape":"String"} + } + }, + "CreateDBClusterParameterGroupMessage":{ + "type":"structure", + "required":[ + "DBClusterParameterGroupName", + "DBParameterGroupFamily", + "Description" + ], + "members":{ + "DBClusterParameterGroupName":{"shape":"String"}, + "DBParameterGroupFamily":{"shape":"String"}, + "Description":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateDBClusterParameterGroupResult":{ + "type":"structure", + "members":{ + "DBClusterParameterGroup":{"shape":"DBClusterParameterGroup"} + } + }, + "CreateDBClusterResult":{ + "type":"structure", + "members":{ + "DBCluster":{"shape":"DBCluster"} + } + }, + "CreateDBClusterSnapshotMessage":{ + "type":"structure", + "required":[ + "DBClusterSnapshotIdentifier", + "DBClusterIdentifier" + ], + "members":{ + "DBClusterSnapshotIdentifier":{"shape":"String"}, + "DBClusterIdentifier":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateDBClusterSnapshotResult":{ + "type":"structure", + "members":{ + "DBClusterSnapshot":{"shape":"DBClusterSnapshot"} + } + }, + "CreateDBInstanceMessage":{ + "type":"structure", + "required":[ + "DBInstanceIdentifier", + "DBInstanceClass", + "Engine" + ], + "members":{ + "DBName":{"shape":"String"}, + "DBInstanceIdentifier":{"shape":"String"}, + "AllocatedStorage":{"shape":"IntegerOptional"}, + "DBInstanceClass":{"shape":"String"}, + "Engine":{"shape":"String"}, + "MasterUsername":{"shape":"String"}, + "MasterUserPassword":{"shape":"SensitiveString"}, + "DBSecurityGroups":{"shape":"DBSecurityGroupNameList"}, + "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"}, + "AvailabilityZone":{"shape":"String"}, + "DBSubnetGroupName":{"shape":"String"}, + "PreferredMaintenanceWindow":{"shape":"String"}, + "DBParameterGroupName":{"shape":"String"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "PreferredBackupWindow":{"shape":"String"}, + "Port":{"shape":"IntegerOptional"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "EngineVersion":{"shape":"String"}, + "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"}, + "LicenseModel":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "StorageThroughput":{"shape":"IntegerOptional"}, + "OptionGroupName":{"shape":"String"}, + "CharacterSetName":{"shape":"String"}, + "NcharCharacterSetName":{"shape":"String"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "Tags":{"shape":"TagList"}, + "DBClusterIdentifier":{"shape":"String"}, + "StorageType":{"shape":"String"}, + "TdeCredentialArn":{"shape":"String"}, + "TdeCredentialPassword":{"shape":"SensitiveString"}, + "StorageEncrypted":{"shape":"BooleanOptional"}, + "KmsKeyId":{"shape":"String"}, + "Domain":{"shape":"String"}, + "DomainFqdn":{"shape":"String"}, + "DomainOu":{"shape":"String"}, + "DomainAuthSecretArn":{"shape":"String"}, + "DomainDnsIps":{"shape":"StringList"}, + "CopyTagsToSnapshot":{"shape":"BooleanOptional"}, + "MonitoringInterval":{"shape":"IntegerOptional"}, + "MonitoringRoleArn":{"shape":"String"}, + "DomainIAMRoleName":{"shape":"String"}, + "PromotionTier":{"shape":"IntegerOptional"}, + "Timezone":{"shape":"String"}, + "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}, + "EnablePerformanceInsights":{"shape":"BooleanOptional"}, + "PerformanceInsightsKMSKeyId":{"shape":"String"}, + "PerformanceInsightsRetentionPeriod":{"shape":"IntegerOptional"}, + "EnableCloudwatchLogsExports":{"shape":"LogTypeList"}, + "ProcessorFeatures":{"shape":"ProcessorFeatureList"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "MaxAllocatedStorage":{"shape":"IntegerOptional"}, + "EnableCustomerOwnedIp":{"shape":"BooleanOptional"}, + "NetworkType":{"shape":"String"}, + "CustomIamInstanceProfile":{"shape":"String"}, + "DBSystemId":{"shape":"String"}, + "CACertificateIdentifier":{"shape":"String"}, + "ManageMasterUserPassword":{"shape":"BooleanOptional"}, + "MasterUserSecretKmsKeyId":{"shape":"String"}, + "MultiTenant":{"shape":"BooleanOptional"}, + "DedicatedLogVolume":{"shape":"BooleanOptional"}, + "EngineLifecycleSupport":{"shape":"String"} + } + }, + "CreateDBInstanceReadReplicaMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "SourceDBInstanceIdentifier":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "AvailabilityZone":{"shape":"String"}, + "Port":{"shape":"IntegerOptional"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"}, + "Iops":{"shape":"IntegerOptional"}, + "StorageThroughput":{"shape":"IntegerOptional"}, + "OptionGroupName":{"shape":"String"}, + "DBParameterGroupName":{"shape":"String"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "Tags":{"shape":"TagList"}, + "DBSubnetGroupName":{"shape":"String"}, + "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"}, + "StorageType":{"shape":"String"}, + "CopyTagsToSnapshot":{"shape":"BooleanOptional"}, + "MonitoringInterval":{"shape":"IntegerOptional"}, + "MonitoringRoleArn":{"shape":"String"}, + "KmsKeyId":{"shape":"String"}, + "PreSignedUrl":{"shape":"SensitiveString"}, + "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}, + "EnablePerformanceInsights":{"shape":"BooleanOptional"}, + "PerformanceInsightsKMSKeyId":{"shape":"String"}, + "PerformanceInsightsRetentionPeriod":{"shape":"IntegerOptional"}, + "EnableCloudwatchLogsExports":{"shape":"LogTypeList"}, + "ProcessorFeatures":{"shape":"ProcessorFeatureList"}, + "UseDefaultProcessorFeatures":{"shape":"BooleanOptional"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "Domain":{"shape":"String"}, + "DomainIAMRoleName":{"shape":"String"}, + "DomainFqdn":{"shape":"String"}, + "DomainOu":{"shape":"String"}, + "DomainAuthSecretArn":{"shape":"String"}, + "DomainDnsIps":{"shape":"StringList"}, + "ReplicaMode":{"shape":"ReplicaMode"}, + "NetworkType":{"shape":"String"}, + "MaxAllocatedStorage":{"shape":"IntegerOptional"}, + "CustomIamInstanceProfile":{"shape":"String"}, + "AllocatedStorage":{"shape":"IntegerOptional"}, + "SourceDBClusterIdentifier":{"shape":"String"}, + "DedicatedLogVolume":{"shape":"BooleanOptional"}, + "UpgradeStorageConfig":{"shape":"BooleanOptional"} + } + }, + "CreateDBInstanceReadReplicaResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "CreateDBInstanceResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "CreateDBParameterGroupMessage":{ + "type":"structure", + "required":[ + "DBParameterGroupName", + "DBParameterGroupFamily", + "Description" + ], + "members":{ + "DBParameterGroupName":{"shape":"String"}, + "DBParameterGroupFamily":{"shape":"String"}, + "Description":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateDBParameterGroupResult":{ + "type":"structure", + "members":{ + "DBParameterGroup":{"shape":"DBParameterGroup"} + } + }, + "CreateDBProxyEndpointRequest":{ + "type":"structure", + "required":[ + "DBProxyName", + "DBProxyEndpointName", + "VpcSubnetIds" + ], + "members":{ + "DBProxyName":{"shape":"DBProxyName"}, + "DBProxyEndpointName":{"shape":"DBProxyEndpointName"}, + "VpcSubnetIds":{"shape":"StringList"}, + "VpcSecurityGroupIds":{"shape":"StringList"}, + "TargetRole":{"shape":"DBProxyEndpointTargetRole"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateDBProxyEndpointResponse":{ + "type":"structure", + "members":{ + "DBProxyEndpoint":{"shape":"DBProxyEndpoint"} + } + }, + "CreateDBProxyRequest":{ + "type":"structure", + "required":[ + "DBProxyName", + "EngineFamily", + "RoleArn", + "VpcSubnetIds" + ], + "members":{ + "DBProxyName":{"shape":"DBProxyName"}, + "EngineFamily":{"shape":"EngineFamily"}, + "Auth":{"shape":"UserAuthConfigList"}, + "RoleArn":{"shape":"Arn"}, + "VpcSubnetIds":{"shape":"StringList"}, + "VpcSecurityGroupIds":{"shape":"StringList"}, + "RequireTLS":{"shape":"Boolean"}, + "IdleClientTimeout":{"shape":"IntegerOptional"}, + "DebugLogging":{"shape":"Boolean"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateDBProxyResponse":{ + "type":"structure", + "members":{ + "DBProxy":{"shape":"DBProxy"} + } + }, + "CreateDBSecurityGroupMessage":{ + "type":"structure", + "required":[ + "DBSecurityGroupName", + "DBSecurityGroupDescription" + ], + "members":{ + "DBSecurityGroupName":{"shape":"String"}, + "DBSecurityGroupDescription":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateDBSecurityGroupResult":{ + "type":"structure", + "members":{ + "DBSecurityGroup":{"shape":"DBSecurityGroup"} + } + }, + "CreateDBShardGroupMessage":{ + "type":"structure", + "required":[ + "DBShardGroupIdentifier", + "DBClusterIdentifier", + "MaxACU" + ], + "members":{ + "DBShardGroupIdentifier":{"shape":"String"}, + "DBClusterIdentifier":{"shape":"String"}, + "ComputeRedundancy":{"shape":"IntegerOptional"}, + "MaxACU":{"shape":"DoubleOptional"}, + "MinACU":{"shape":"DoubleOptional"}, + "PubliclyAccessible":{"shape":"BooleanOptional"} + } + }, + "CreateDBSnapshotMessage":{ + "type":"structure", + "required":[ + "DBSnapshotIdentifier", + "DBInstanceIdentifier" + ], + "members":{ + "DBSnapshotIdentifier":{"shape":"String"}, + "DBInstanceIdentifier":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateDBSnapshotResult":{ + "type":"structure", + "members":{ + "DBSnapshot":{"shape":"DBSnapshot"} + } + }, + "CreateDBSubnetGroupMessage":{ + "type":"structure", + "required":[ + "DBSubnetGroupName", + "DBSubnetGroupDescription", + "SubnetIds" + ], + "members":{ + "DBSubnetGroupName":{"shape":"String"}, + "DBSubnetGroupDescription":{"shape":"String"}, + "SubnetIds":{"shape":"SubnetIdentifierList"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateDBSubnetGroupResult":{ + "type":"structure", + "members":{ + "DBSubnetGroup":{"shape":"DBSubnetGroup"} + } + }, + "CreateEventSubscriptionMessage":{ + "type":"structure", + "required":[ + "SubscriptionName", + "SnsTopicArn" + ], + "members":{ + "SubscriptionName":{"shape":"String"}, + "SnsTopicArn":{"shape":"String"}, + "SourceType":{"shape":"String"}, + "EventCategories":{"shape":"EventCategoriesList"}, + "SourceIds":{"shape":"SourceIdsList"}, + "Enabled":{"shape":"BooleanOptional"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateEventSubscriptionResult":{ + "type":"structure", + "members":{ + "EventSubscription":{"shape":"EventSubscription"} + } + }, + "CreateGlobalClusterMessage":{ + "type":"structure", + "required":["GlobalClusterIdentifier"], + "members":{ + "GlobalClusterIdentifier":{"shape":"GlobalClusterIdentifier"}, + "SourceDBClusterIdentifier":{"shape":"String"}, + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "EngineLifecycleSupport":{"shape":"String"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "DatabaseName":{"shape":"String"}, + "StorageEncrypted":{"shape":"BooleanOptional"} + } + }, + "CreateGlobalClusterResult":{ + "type":"structure", + "members":{ + "GlobalCluster":{"shape":"GlobalCluster"} + } + }, + "CreateIntegrationMessage":{ + "type":"structure", + "required":[ + "SourceArn", + "TargetArn", + "IntegrationName" + ], + "members":{ + "SourceArn":{"shape":"SourceArn"}, + "TargetArn":{"shape":"Arn"}, + "IntegrationName":{"shape":"IntegrationName"}, + "KMSKeyId":{"shape":"String"}, + "AdditionalEncryptionContext":{"shape":"EncryptionContextMap"}, + "Tags":{"shape":"TagList"}, + "DataFilter":{"shape":"DataFilter"}, + "Description":{"shape":"IntegrationDescription"} + } + }, + "CreateOptionGroupMessage":{ + "type":"structure", + "required":[ + "OptionGroupName", + "EngineName", + "MajorEngineVersion", + "OptionGroupDescription" + ], + "members":{ + "OptionGroupName":{"shape":"String"}, + "EngineName":{"shape":"String"}, + "MajorEngineVersion":{"shape":"String"}, + "OptionGroupDescription":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateOptionGroupResult":{ + "type":"structure", + "members":{ + "OptionGroup":{"shape":"OptionGroup"} + } + }, + "CreateTenantDatabaseMessage":{ + "type":"structure", + "required":[ + "DBInstanceIdentifier", + "TenantDBName", + "MasterUsername" + ], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "TenantDBName":{"shape":"String"}, + "MasterUsername":{"shape":"String"}, + "MasterUserPassword":{"shape":"SensitiveString"}, + "CharacterSetName":{"shape":"String"}, + "NcharCharacterSetName":{"shape":"String"}, + "ManageMasterUserPassword":{"shape":"BooleanOptional"}, + "MasterUserSecretKmsKeyId":{"shape":"String"}, + "Tags":{"shape":"TagList"} + } + }, + "CreateTenantDatabaseResult":{ + "type":"structure", + "members":{ + "TenantDatabase":{"shape":"TenantDatabase"} + } + }, + "CustomAvailabilityZoneNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"CustomAvailabilityZoneNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "CustomDBEngineVersionAMI":{ + "type":"structure", + "members":{ + "ImageId":{"shape":"String"}, + "Status":{"shape":"String"} + } + }, + "CustomDBEngineVersionAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"CustomDBEngineVersionAlreadyExistsFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "CustomDBEngineVersionManifest":{ + "type":"string", + "max":51000, + "min":1, + "pattern":"[\\s\\S]*" + }, + "CustomDBEngineVersionNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"CustomDBEngineVersionNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "CustomDBEngineVersionQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"CustomDBEngineVersionQuotaExceededFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "CustomEngineName":{ + "type":"string", + "max":35, + "min":1, + "pattern":"^[A-Za-z0-9-]{1,35}$" + }, + "CustomEngineVersion":{ + "type":"string", + "max":60, + "min":1, + "pattern":"^[a-z0-9_.-]{1,60}$" + }, + "CustomEngineVersionStatus":{ + "type":"string", + "enum":[ + "available", + "inactive", + "inactive-except-restore" + ] + }, + "DBCluster":{ + "type":"structure", + "members":{ + "AllocatedStorage":{"shape":"IntegerOptional"}, + "AvailabilityZones":{"shape":"AvailabilityZones"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "CharacterSetName":{"shape":"String"}, + "DatabaseName":{"shape":"String"}, + "DBClusterIdentifier":{"shape":"String"}, + "DBClusterParameterGroup":{"shape":"String"}, + "DBSubnetGroup":{"shape":"String"}, + "Status":{"shape":"String"}, + "PercentProgress":{"shape":"String"}, + "EarliestRestorableTime":{"shape":"TStamp"}, + "Endpoint":{"shape":"String"}, + "ReaderEndpoint":{"shape":"String"}, + "CustomEndpoints":{"shape":"StringList"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "LatestRestorableTime":{"shape":"TStamp"}, + "Port":{"shape":"IntegerOptional"}, + "MasterUsername":{"shape":"String"}, + "DBClusterOptionGroupMemberships":{"shape":"DBClusterOptionGroupMemberships"}, + "PreferredBackupWindow":{"shape":"String"}, + "PreferredMaintenanceWindow":{"shape":"String"}, + "ReplicationSourceIdentifier":{"shape":"String"}, + "ReadReplicaIdentifiers":{"shape":"ReadReplicaIdentifierList"}, + "StatusInfos":{"shape":"DBClusterStatusInfoList"}, + "DBClusterMembers":{"shape":"DBClusterMemberList"}, + "VpcSecurityGroups":{"shape":"VpcSecurityGroupMembershipList"}, + "HostedZoneId":{"shape":"String"}, + "StorageEncrypted":{"shape":"Boolean"}, + "KmsKeyId":{"shape":"String"}, + "DbClusterResourceId":{"shape":"String"}, + "DBClusterArn":{"shape":"String"}, + "AssociatedRoles":{"shape":"DBClusterRoles"}, + "IAMDatabaseAuthenticationEnabled":{"shape":"BooleanOptional"}, + "CloneGroupId":{"shape":"String"}, + "ClusterCreateTime":{"shape":"TStamp"}, + "EarliestBacktrackTime":{"shape":"TStamp"}, + "BacktrackWindow":{"shape":"LongOptional"}, + "BacktrackConsumedChangeRecords":{"shape":"LongOptional"}, + "EnabledCloudwatchLogsExports":{"shape":"LogTypeList"}, + "Capacity":{"shape":"IntegerOptional"}, + "PendingModifiedValues":{"shape":"ClusterPendingModifiedValues"}, + "EngineMode":{"shape":"String"}, + "ScalingConfigurationInfo":{"shape":"ScalingConfigurationInfo"}, + "RdsCustomClusterConfiguration":{"shape":"RdsCustomClusterConfiguration"}, + "DBClusterInstanceClass":{"shape":"String"}, + "StorageType":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "StorageThroughput":{"shape":"IntegerOptional"}, + "IOOptimizedNextAllowedModificationTime":{"shape":"TStamp"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "AutoMinorVersionUpgrade":{"shape":"Boolean"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "HttpEndpointEnabled":{"shape":"BooleanOptional"}, + "ActivityStreamMode":{"shape":"ActivityStreamMode"}, + "ActivityStreamStatus":{"shape":"ActivityStreamStatus"}, + "ActivityStreamKmsKeyId":{"shape":"String"}, + "ActivityStreamKinesisStreamName":{"shape":"String"}, + "CopyTagsToSnapshot":{"shape":"BooleanOptional"}, + "CrossAccountClone":{"shape":"BooleanOptional"}, + "DomainMemberships":{"shape":"DomainMembershipList"}, + "TagList":{"shape":"TagList"}, + "GlobalWriteForwardingStatus":{"shape":"WriteForwardingStatus"}, + "GlobalWriteForwardingRequested":{"shape":"BooleanOptional"}, + "ServerlessV2ScalingConfiguration":{"shape":"ServerlessV2ScalingConfigurationInfo"}, + "MonitoringInterval":{"shape":"IntegerOptional"}, + "MonitoringRoleArn":{"shape":"String"}, + "PerformanceInsightsEnabled":{"shape":"BooleanOptional"}, + "PerformanceInsightsKMSKeyId":{"shape":"String"}, + "PerformanceInsightsRetentionPeriod":{"shape":"IntegerOptional"}, + "DBSystemId":{"shape":"String"}, + "MasterUserSecret":{"shape":"MasterUserSecret"}, + "LimitlessDatabase":{"shape":"LimitlessDatabase"}, + "ClusterScalabilityType":{"shape":"ClusterScalabilityType"}, + "CertificateDetails":{"shape":"CertificateDetails"}, + "EngineLifecycleSupport":{"shape":"String"} + }, + "wrapper":true + }, + "DBClusterAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterAlreadyExistsFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBClusterAutomatedBackup":{ + "type":"structure", + "members":{ + "Engine":{"shape":"String"}, + "VpcId":{"shape":"String"}, + "DBClusterAutomatedBackupsArn":{"shape":"String"}, + "DBClusterIdentifier":{"shape":"String"}, + "RestoreWindow":{"shape":"RestoreWindow"}, + "MasterUsername":{"shape":"String"}, + "DbClusterResourceId":{"shape":"String"}, + "Region":{"shape":"String"}, + "LicenseModel":{"shape":"String"}, + "Status":{"shape":"String"}, + "IAMDatabaseAuthenticationEnabled":{"shape":"Boolean"}, + "ClusterCreateTime":{"shape":"TStamp"}, + "StorageEncrypted":{"shape":"Boolean"}, + "AllocatedStorage":{"shape":"Integer"}, + "EngineVersion":{"shape":"String"}, + "DBClusterArn":{"shape":"String"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "EngineMode":{"shape":"String"}, + "AvailabilityZones":{"shape":"AvailabilityZones"}, + "Port":{"shape":"Integer"}, + "KmsKeyId":{"shape":"String"}, + "StorageType":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "StorageThroughput":{"shape":"IntegerOptional"} + }, + "wrapper":true + }, + "DBClusterAutomatedBackupList":{ + "type":"list", + "member":{ + "shape":"DBClusterAutomatedBackup", + "locationName":"DBClusterAutomatedBackup" + } + }, + "DBClusterAutomatedBackupMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBClusterAutomatedBackups":{"shape":"DBClusterAutomatedBackupList"} + } + }, + "DBClusterAutomatedBackupNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterAutomatedBackupNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBClusterAutomatedBackupQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterAutomatedBackupQuotaExceededFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBClusterBacktrack":{ + "type":"structure", + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "BacktrackIdentifier":{"shape":"String"}, + "BacktrackTo":{"shape":"TStamp"}, + "BacktrackedFrom":{"shape":"TStamp"}, + "BacktrackRequestCreationTime":{"shape":"TStamp"}, + "Status":{"shape":"String"} + } + }, + "DBClusterBacktrackList":{ + "type":"list", + "member":{ + "shape":"DBClusterBacktrack", + "locationName":"DBClusterBacktrack" + } + }, + "DBClusterBacktrackMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBClusterBacktracks":{"shape":"DBClusterBacktrackList"} + } + }, + "DBClusterBacktrackNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterBacktrackNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBClusterCapacityInfo":{ + "type":"structure", + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "PendingCapacity":{"shape":"IntegerOptional"}, + "CurrentCapacity":{"shape":"IntegerOptional"}, + "SecondsBeforeTimeout":{"shape":"IntegerOptional"}, + "TimeoutAction":{"shape":"String"} + } + }, + "DBClusterEndpoint":{ + "type":"structure", + "members":{ + "DBClusterEndpointIdentifier":{"shape":"String"}, + "DBClusterIdentifier":{"shape":"String"}, + "DBClusterEndpointResourceIdentifier":{"shape":"String"}, + "Endpoint":{"shape":"String"}, + "Status":{"shape":"String"}, + "EndpointType":{"shape":"String"}, + "CustomEndpointType":{"shape":"String"}, + "StaticMembers":{"shape":"StringList"}, + "ExcludedMembers":{"shape":"StringList"}, + "DBClusterEndpointArn":{"shape":"String"} + } + }, + "DBClusterEndpointAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterEndpointAlreadyExistsFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBClusterEndpointList":{ + "type":"list", + "member":{ + "shape":"DBClusterEndpoint", + "locationName":"DBClusterEndpointList" + } + }, + "DBClusterEndpointMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBClusterEndpoints":{"shape":"DBClusterEndpointList"} + } + }, + "DBClusterEndpointNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterEndpointNotFoundFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBClusterEndpointQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterEndpointQuotaExceededFault", + "httpStatusCode":403, + "senderFault":true + }, + "exception":true + }, + "DBClusterIdentifier":{ + "type":"string", + "max":255, + "min":1, + "pattern":"[A-Za-z][0-9A-Za-z-:._]*" + }, + "DBClusterList":{ + "type":"list", + "member":{ + "shape":"DBCluster", + "locationName":"DBCluster" + } + }, + "DBClusterMember":{ + "type":"structure", + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "IsClusterWriter":{"shape":"Boolean"}, + "DBClusterParameterGroupStatus":{"shape":"String"}, + "PromotionTier":{"shape":"IntegerOptional"} + }, + "wrapper":true + }, + "DBClusterMemberList":{ + "type":"list", + "member":{ + "shape":"DBClusterMember", + "locationName":"DBClusterMember" + } + }, + "DBClusterMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBClusters":{"shape":"DBClusterList"} + } + }, + "DBClusterNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBClusterOptionGroupMemberships":{ + "type":"list", + "member":{ + "shape":"DBClusterOptionGroupStatus", + "locationName":"DBClusterOptionGroup" + } + }, + "DBClusterOptionGroupStatus":{ + "type":"structure", + "members":{ + "DBClusterOptionGroupName":{"shape":"String"}, + "Status":{"shape":"String"} + } + }, + "DBClusterParameterGroup":{ + "type":"structure", + "members":{ + "DBClusterParameterGroupName":{"shape":"String"}, + "DBParameterGroupFamily":{"shape":"String"}, + "Description":{"shape":"String"}, + "DBClusterParameterGroupArn":{"shape":"String"} + }, + "wrapper":true + }, + "DBClusterParameterGroupDetails":{ + "type":"structure", + "members":{ + "Parameters":{"shape":"ParametersList"}, + "Marker":{"shape":"String"} + } + }, + "DBClusterParameterGroupList":{ + "type":"list", + "member":{ + "shape":"DBClusterParameterGroup", + "locationName":"DBClusterParameterGroup" + } + }, + "DBClusterParameterGroupNameMessage":{ + "type":"structure", + "members":{ + "DBClusterParameterGroupName":{"shape":"String"} + } + }, + "DBClusterParameterGroupNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterParameterGroupNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBClusterParameterGroupsMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBClusterParameterGroups":{"shape":"DBClusterParameterGroupList"} + } + }, + "DBClusterQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterQuotaExceededFault", + "httpStatusCode":403, + "senderFault":true + }, + "exception":true + }, + "DBClusterRole":{ + "type":"structure", + "members":{ + "RoleArn":{"shape":"String"}, + "Status":{"shape":"String"}, + "FeatureName":{"shape":"String"} + } + }, + "DBClusterRoleAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterRoleAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBClusterRoleNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterRoleNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBClusterRoleQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterRoleQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBClusterRoles":{ + "type":"list", + "member":{ + "shape":"DBClusterRole", + "locationName":"DBClusterRole" + } + }, + "DBClusterSnapshot":{ + "type":"structure", + "members":{ + "AvailabilityZones":{"shape":"AvailabilityZones"}, + "DBClusterSnapshotIdentifier":{"shape":"String"}, + "DBClusterIdentifier":{"shape":"String"}, + "SnapshotCreateTime":{"shape":"TStamp"}, + "Engine":{"shape":"String"}, + "EngineMode":{"shape":"String"}, + "AllocatedStorage":{"shape":"Integer"}, + "Status":{"shape":"String"}, + "Port":{"shape":"Integer"}, + "VpcId":{"shape":"String"}, + "ClusterCreateTime":{"shape":"TStamp"}, + "MasterUsername":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "LicenseModel":{"shape":"String"}, + "SnapshotType":{"shape":"String"}, + "PercentProgress":{"shape":"Integer"}, + "StorageEncrypted":{"shape":"Boolean"}, + "KmsKeyId":{"shape":"String"}, + "DBClusterSnapshotArn":{"shape":"String"}, + "SourceDBClusterSnapshotArn":{"shape":"String"}, + "IAMDatabaseAuthenticationEnabled":{"shape":"Boolean"}, + "TagList":{"shape":"TagList"}, + "StorageType":{"shape":"String"}, + "StorageThroughput":{"shape":"IntegerOptional"}, + "DbClusterResourceId":{"shape":"String"}, + "DBSystemId":{"shape":"String"} + }, + "wrapper":true + }, + "DBClusterSnapshotAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterSnapshotAlreadyExistsFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBClusterSnapshotAttribute":{ + "type":"structure", + "members":{ + "AttributeName":{"shape":"String"}, + "AttributeValues":{"shape":"AttributeValueList"} + } + }, + "DBClusterSnapshotAttributeList":{ + "type":"list", + "member":{ + "shape":"DBClusterSnapshotAttribute", + "locationName":"DBClusterSnapshotAttribute" + } + }, + "DBClusterSnapshotAttributesResult":{ + "type":"structure", + "members":{ + "DBClusterSnapshotIdentifier":{"shape":"String"}, + "DBClusterSnapshotAttributes":{"shape":"DBClusterSnapshotAttributeList"} + }, + "wrapper":true + }, + "DBClusterSnapshotList":{ + "type":"list", + "member":{ + "shape":"DBClusterSnapshot", + "locationName":"DBClusterSnapshot" + } + }, + "DBClusterSnapshotMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBClusterSnapshots":{"shape":"DBClusterSnapshotList"} + } + }, + "DBClusterSnapshotNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBClusterSnapshotNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBClusterStatusInfo":{ + "type":"structure", + "members":{ + "StatusType":{"shape":"String"}, + "Normal":{"shape":"Boolean"}, + "Status":{"shape":"String"}, + "Message":{"shape":"String"} + } + }, + "DBClusterStatusInfoList":{ + "type":"list", + "member":{ + "shape":"DBClusterStatusInfo", + "locationName":"DBClusterStatusInfo" + } + }, + "DBEngineVersion":{ + "type":"structure", + "members":{ + "Engine":{"shape":"String"}, + "MajorEngineVersion":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "DatabaseInstallationFilesS3BucketName":{"shape":"String"}, + "DatabaseInstallationFilesS3Prefix":{"shape":"String"}, + "CustomDBEngineVersionManifest":{"shape":"CustomDBEngineVersionManifest"}, + "DBParameterGroupFamily":{"shape":"String"}, + "DBEngineDescription":{"shape":"String"}, + "DBEngineVersionArn":{"shape":"String"}, + "DBEngineVersionDescription":{"shape":"String"}, + "DefaultCharacterSet":{"shape":"CharacterSet"}, + "Image":{"shape":"CustomDBEngineVersionAMI"}, + "DBEngineMediaType":{"shape":"String"}, + "KMSKeyId":{"shape":"String"}, + "CreateTime":{"shape":"TStamp"}, + "SupportedCharacterSets":{"shape":"SupportedCharacterSetsList"}, + "SupportedNcharCharacterSets":{"shape":"SupportedCharacterSetsList"}, + "ValidUpgradeTarget":{"shape":"ValidUpgradeTargetList"}, + "SupportedTimezones":{"shape":"SupportedTimezonesList"}, + "ExportableLogTypes":{"shape":"LogTypeList"}, + "SupportsLogExportsToCloudwatchLogs":{"shape":"Boolean"}, + "SupportsReadReplica":{"shape":"Boolean"}, + "SupportedEngineModes":{"shape":"EngineModeList"}, + "SupportedFeatureNames":{"shape":"FeatureNameList"}, + "Status":{"shape":"String"}, + "SupportsParallelQuery":{"shape":"Boolean"}, + "SupportsGlobalDatabases":{"shape":"Boolean"}, + "TagList":{"shape":"TagList"}, + "SupportsBabelfish":{"shape":"Boolean"}, + "SupportsLimitlessDatabase":{"shape":"Boolean"}, + "SupportsCertificateRotationWithoutRestart":{"shape":"BooleanOptional"}, + "SupportedCACertificateIdentifiers":{"shape":"CACertificateIdentifiersList"}, + "SupportsIntegrations":{"shape":"Boolean"}, + "ServerlessV2FeaturesSupport":{"shape":"ServerlessV2FeaturesSupport"} + } + }, + "DBEngineVersionList":{ + "type":"list", + "member":{ + "shape":"DBEngineVersion", + "locationName":"DBEngineVersion" + } + }, + "DBEngineVersionMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBEngineVersions":{"shape":"DBEngineVersionList"} + } + }, + "DBInstance":{ + "type":"structure", + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "Engine":{"shape":"String"}, + "DBInstanceStatus":{"shape":"String"}, + "MasterUsername":{"shape":"String"}, + "DBName":{"shape":"String"}, + "Endpoint":{"shape":"Endpoint"}, + "AllocatedStorage":{"shape":"Integer"}, + "InstanceCreateTime":{"shape":"TStamp"}, + "PreferredBackupWindow":{"shape":"String"}, + "BackupRetentionPeriod":{"shape":"Integer"}, + "DBSecurityGroups":{"shape":"DBSecurityGroupMembershipList"}, + "VpcSecurityGroups":{"shape":"VpcSecurityGroupMembershipList"}, + "DBParameterGroups":{"shape":"DBParameterGroupStatusList"}, + "AvailabilityZone":{"shape":"String"}, + "DBSubnetGroup":{"shape":"DBSubnetGroup"}, + "PreferredMaintenanceWindow":{"shape":"String"}, + "PendingModifiedValues":{"shape":"PendingModifiedValues"}, + "LatestRestorableTime":{"shape":"TStamp"}, + "MultiAZ":{"shape":"Boolean"}, + "EngineVersion":{"shape":"String"}, + "AutoMinorVersionUpgrade":{"shape":"Boolean"}, + "ReadReplicaSourceDBInstanceIdentifier":{"shape":"String"}, + "ReadReplicaDBInstanceIdentifiers":{"shape":"ReadReplicaDBInstanceIdentifierList"}, + "ReadReplicaDBClusterIdentifiers":{"shape":"ReadReplicaDBClusterIdentifierList"}, + "ReplicaMode":{"shape":"ReplicaMode"}, + "LicenseModel":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "StorageThroughput":{"shape":"IntegerOptional"}, + "OptionGroupMemberships":{"shape":"OptionGroupMembershipList"}, + "CharacterSetName":{"shape":"String"}, + "NcharCharacterSetName":{"shape":"String"}, + "SecondaryAvailabilityZone":{"shape":"String"}, + "PubliclyAccessible":{"shape":"Boolean"}, + "StatusInfos":{"shape":"DBInstanceStatusInfoList"}, + "StorageType":{"shape":"String"}, + "TdeCredentialArn":{"shape":"String"}, + "DbInstancePort":{"shape":"Integer"}, + "DBClusterIdentifier":{"shape":"String"}, + "StorageEncrypted":{"shape":"Boolean"}, + "KmsKeyId":{"shape":"String"}, + "DbiResourceId":{"shape":"String"}, + "CACertificateIdentifier":{"shape":"String"}, + "DomainMemberships":{"shape":"DomainMembershipList"}, + "CopyTagsToSnapshot":{"shape":"Boolean"}, + "MonitoringInterval":{"shape":"IntegerOptional"}, + "EnhancedMonitoringResourceArn":{"shape":"String"}, + "MonitoringRoleArn":{"shape":"String"}, + "PromotionTier":{"shape":"IntegerOptional"}, + "DBInstanceArn":{"shape":"String"}, + "Timezone":{"shape":"String"}, + "IAMDatabaseAuthenticationEnabled":{"shape":"Boolean"}, + "PerformanceInsightsEnabled":{"shape":"BooleanOptional"}, + "PerformanceInsightsKMSKeyId":{"shape":"String"}, + "PerformanceInsightsRetentionPeriod":{"shape":"IntegerOptional"}, + "EnabledCloudwatchLogsExports":{"shape":"LogTypeList"}, + "ProcessorFeatures":{"shape":"ProcessorFeatureList"}, + "DeletionProtection":{"shape":"Boolean"}, + "AssociatedRoles":{"shape":"DBInstanceRoles"}, + "ListenerEndpoint":{"shape":"Endpoint"}, + "MaxAllocatedStorage":{"shape":"IntegerOptional"}, + "TagList":{"shape":"TagList"}, + "AutomationMode":{"shape":"AutomationMode"}, + "ResumeFullAutomationModeTime":{"shape":"TStamp"}, + "CustomerOwnedIpEnabled":{"shape":"BooleanOptional"}, + "NetworkType":{"shape":"String"}, + "ActivityStreamStatus":{"shape":"ActivityStreamStatus"}, + "ActivityStreamKmsKeyId":{"shape":"String"}, + "ActivityStreamKinesisStreamName":{"shape":"String"}, + "ActivityStreamMode":{"shape":"ActivityStreamMode"}, + "ActivityStreamEngineNativeAuditFieldsIncluded":{"shape":"BooleanOptional"}, + "AwsBackupRecoveryPointArn":{"shape":"String"}, + "DBInstanceAutomatedBackupsReplications":{"shape":"DBInstanceAutomatedBackupsReplicationList"}, + "CustomIamInstanceProfile":{"shape":"String"}, + "CertificateDetails":{"shape":"CertificateDetails"}, + "DBSystemId":{"shape":"String"}, + "MasterUserSecret":{"shape":"MasterUserSecret"}, + "ReadReplicaSourceDBClusterIdentifier":{"shape":"String"}, + "PercentProgress":{"shape":"String"}, + "MultiTenant":{"shape":"BooleanOptional"}, + "DedicatedLogVolume":{"shape":"Boolean"}, + "IsStorageConfigUpgradeAvailable":{"shape":"BooleanOptional"}, + "EngineLifecycleSupport":{"shape":"String"} + }, + "wrapper":true + }, + "DBInstanceAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBInstanceAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBInstanceAutomatedBackup":{ + "type":"structure", + "members":{ + "DBInstanceArn":{"shape":"String"}, + "DbiResourceId":{"shape":"String"}, + "Region":{"shape":"String"}, + "DBInstanceIdentifier":{"shape":"String"}, + "RestoreWindow":{"shape":"RestoreWindow"}, + "AllocatedStorage":{"shape":"Integer"}, + "Status":{"shape":"String"}, + "Port":{"shape":"Integer"}, + "AvailabilityZone":{"shape":"String"}, + "VpcId":{"shape":"String"}, + "InstanceCreateTime":{"shape":"TStamp"}, + "MasterUsername":{"shape":"String"}, + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "LicenseModel":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "StorageThroughput":{"shape":"IntegerOptional"}, + "OptionGroupName":{"shape":"String"}, + "TdeCredentialArn":{"shape":"String"}, + "Encrypted":{"shape":"Boolean"}, + "StorageType":{"shape":"String"}, + "KmsKeyId":{"shape":"String"}, + "Timezone":{"shape":"String"}, + "IAMDatabaseAuthenticationEnabled":{"shape":"Boolean"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "DBInstanceAutomatedBackupsArn":{"shape":"String"}, + "DBInstanceAutomatedBackupsReplications":{"shape":"DBInstanceAutomatedBackupsReplicationList"}, + "MultiTenant":{"shape":"BooleanOptional"}, + "DedicatedLogVolume":{"shape":"BooleanOptional"} + }, + "wrapper":true + }, + "DBInstanceAutomatedBackupList":{ + "type":"list", + "member":{ + "shape":"DBInstanceAutomatedBackup", + "locationName":"DBInstanceAutomatedBackup" + } + }, + "DBInstanceAutomatedBackupMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBInstanceAutomatedBackups":{"shape":"DBInstanceAutomatedBackupList"} + } + }, + "DBInstanceAutomatedBackupNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBInstanceAutomatedBackupNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBInstanceAutomatedBackupQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBInstanceAutomatedBackupQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBInstanceAutomatedBackupsReplication":{ + "type":"structure", + "members":{ + "DBInstanceAutomatedBackupsArn":{"shape":"String"} + } + }, + "DBInstanceAutomatedBackupsReplicationList":{ + "type":"list", + "member":{ + "shape":"DBInstanceAutomatedBackupsReplication", + "locationName":"DBInstanceAutomatedBackupsReplication" + } + }, + "DBInstanceList":{ + "type":"list", + "member":{ + "shape":"DBInstance", + "locationName":"DBInstance" + } + }, + "DBInstanceMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBInstances":{"shape":"DBInstanceList"} + } + }, + "DBInstanceNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBInstanceNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBInstanceNotReadyFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBInstanceNotReady", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBInstanceRole":{ + "type":"structure", + "members":{ + "RoleArn":{"shape":"String"}, + "FeatureName":{"shape":"String"}, + "Status":{"shape":"String"} + } + }, + "DBInstanceRoleAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBInstanceRoleAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBInstanceRoleNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBInstanceRoleNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBInstanceRoleQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBInstanceRoleQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBInstanceRoles":{ + "type":"list", + "member":{ + "shape":"DBInstanceRole", + "locationName":"DBInstanceRole" + } + }, + "DBInstanceStatusInfo":{ + "type":"structure", + "members":{ + "StatusType":{"shape":"String"}, + "Normal":{"shape":"Boolean"}, + "Status":{"shape":"String"}, + "Message":{"shape":"String"} + } + }, + "DBInstanceStatusInfoList":{ + "type":"list", + "member":{ + "shape":"DBInstanceStatusInfo", + "locationName":"DBInstanceStatusInfo" + } + }, + "DBLogFileNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBLogFileNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBMajorEngineVersion":{ + "type":"structure", + "members":{ + "Engine":{"shape":"String"}, + "MajorEngineVersion":{"shape":"String"}, + "SupportedEngineLifecycles":{"shape":"SupportedEngineLifecycleList"} + } + }, + "DBMajorEngineVersionsList":{ + "type":"list", + "member":{ + "shape":"DBMajorEngineVersion", + "locationName":"DBMajorEngineVersion" + } + }, + "DBParameterGroup":{ + "type":"structure", + "members":{ + "DBParameterGroupName":{"shape":"String"}, + "DBParameterGroupFamily":{"shape":"String"}, + "Description":{"shape":"String"}, + "DBParameterGroupArn":{"shape":"String"} + }, + "wrapper":true + }, + "DBParameterGroupAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBParameterGroupAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBParameterGroupDetails":{ + "type":"structure", + "members":{ + "Parameters":{"shape":"ParametersList"}, + "Marker":{"shape":"String"} + } + }, + "DBParameterGroupList":{ + "type":"list", + "member":{ + "shape":"DBParameterGroup", + "locationName":"DBParameterGroup" + } + }, + "DBParameterGroupNameMessage":{ + "type":"structure", + "members":{ + "DBParameterGroupName":{"shape":"String"} + } + }, + "DBParameterGroupNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBParameterGroupNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBParameterGroupQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBParameterGroupQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBParameterGroupStatus":{ + "type":"structure", + "members":{ + "DBParameterGroupName":{"shape":"String"}, + "ParameterApplyStatus":{"shape":"String"} + } + }, + "DBParameterGroupStatusList":{ + "type":"list", + "member":{ + "shape":"DBParameterGroupStatus", + "locationName":"DBParameterGroup" + } + }, + "DBParameterGroupsMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBParameterGroups":{"shape":"DBParameterGroupList"} + } + }, + "DBProxy":{ + "type":"structure", + "members":{ + "DBProxyName":{"shape":"String"}, + "DBProxyArn":{"shape":"String"}, + "Status":{"shape":"DBProxyStatus"}, + "EngineFamily":{"shape":"String"}, + "VpcId":{"shape":"String"}, + "VpcSecurityGroupIds":{"shape":"StringList"}, + "VpcSubnetIds":{"shape":"StringList"}, + "Auth":{"shape":"UserAuthConfigInfoList"}, + "RoleArn":{"shape":"String"}, + "Endpoint":{"shape":"String"}, + "RequireTLS":{"shape":"Boolean"}, + "IdleClientTimeout":{"shape":"Integer"}, + "DebugLogging":{"shape":"Boolean"}, + "CreatedDate":{"shape":"TStamp"}, + "UpdatedDate":{"shape":"TStamp"} + } + }, + "DBProxyAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBProxyAlreadyExistsFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBProxyEndpoint":{ + "type":"structure", + "members":{ + "DBProxyEndpointName":{"shape":"String"}, + "DBProxyEndpointArn":{"shape":"String"}, + "DBProxyName":{"shape":"String"}, + "Status":{"shape":"DBProxyEndpointStatus"}, + "VpcId":{"shape":"String"}, + "VpcSecurityGroupIds":{"shape":"StringList"}, + "VpcSubnetIds":{"shape":"StringList"}, + "Endpoint":{"shape":"String"}, + "CreatedDate":{"shape":"TStamp"}, + "TargetRole":{"shape":"DBProxyEndpointTargetRole"}, + "IsDefault":{"shape":"Boolean"} + } + }, + "DBProxyEndpointAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBProxyEndpointAlreadyExistsFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBProxyEndpointList":{ + "type":"list", + "member":{"shape":"DBProxyEndpoint"} + }, + "DBProxyEndpointName":{ + "type":"string", + "max":63, + "min":1, + "pattern":"[a-zA-Z](?:-?[a-zA-Z0-9]+)*" + }, + "DBProxyEndpointNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBProxyEndpointNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBProxyEndpointQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBProxyEndpointQuotaExceededFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBProxyEndpointStatus":{ + "type":"string", + "enum":[ + "available", + "modifying", + "incompatible-network", + "insufficient-resource-limits", + "creating", + "deleting" + ] + }, + "DBProxyEndpointTargetRole":{ + "type":"string", + "enum":[ + "READ_WRITE", + "READ_ONLY" + ] + }, + "DBProxyList":{ + "type":"list", + "member":{"shape":"DBProxy"} + }, + "DBProxyName":{ + "type":"string", + "max":63, + "min":1, + "pattern":"[a-zA-Z](?:-?[a-zA-Z0-9]+)*" + }, + "DBProxyNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBProxyNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBProxyQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBProxyQuotaExceededFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBProxyStatus":{ + "type":"string", + "enum":[ + "available", + "modifying", + "incompatible-network", + "insufficient-resource-limits", + "creating", + "deleting", + "suspended", + "suspending", + "reactivating" + ] + }, + "DBProxyTarget":{ + "type":"structure", + "members":{ + "TargetArn":{"shape":"String"}, + "Endpoint":{"shape":"String"}, + "TrackedClusterId":{"shape":"String"}, + "RdsResourceId":{"shape":"String"}, + "Port":{"shape":"Integer"}, + "Type":{"shape":"TargetType"}, + "Role":{"shape":"TargetRole"}, + "TargetHealth":{"shape":"TargetHealth"} + } + }, + "DBProxyTargetAlreadyRegisteredFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBProxyTargetAlreadyRegisteredFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBProxyTargetGroup":{ + "type":"structure", + "members":{ + "DBProxyName":{"shape":"String"}, + "TargetGroupName":{"shape":"String"}, + "TargetGroupArn":{"shape":"String"}, + "IsDefault":{"shape":"Boolean"}, + "Status":{"shape":"String"}, + "ConnectionPoolConfig":{"shape":"ConnectionPoolConfigurationInfo"}, + "CreatedDate":{"shape":"TStamp"}, + "UpdatedDate":{"shape":"TStamp"} + } + }, + "DBProxyTargetGroupName":{ + "type":"string", + "max":63, + "min":1, + "pattern":"[a-zA-Z](?:-?[a-zA-Z0-9]+)*" + }, + "DBProxyTargetGroupNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBProxyTargetGroupNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBProxyTargetNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBProxyTargetNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBRecommendation":{ + "type":"structure", + "members":{ + "RecommendationId":{"shape":"String"}, + "TypeId":{"shape":"String"}, + "Severity":{"shape":"String"}, + "ResourceArn":{"shape":"String"}, + "Status":{"shape":"String"}, + "CreatedTime":{"shape":"TStamp"}, + "UpdatedTime":{"shape":"TStamp"}, + "Detection":{"shape":"String"}, + "Recommendation":{"shape":"String"}, + "Description":{"shape":"String"}, + "Reason":{"shape":"String"}, + "RecommendedActions":{"shape":"RecommendedActionList"}, + "Category":{"shape":"String"}, + "Source":{"shape":"String"}, + "TypeDetection":{"shape":"String"}, + "TypeRecommendation":{"shape":"String"}, + "Impact":{"shape":"String"}, + "AdditionalInfo":{"shape":"String"}, + "Links":{"shape":"DocLinkList"}, + "IssueDetails":{"shape":"IssueDetails"} + } + }, + "DBRecommendationList":{ + "type":"list", + "member":{"shape":"DBRecommendation"} + }, + "DBRecommendationMessage":{ + "type":"structure", + "members":{ + "DBRecommendation":{"shape":"DBRecommendation"} + } + }, + "DBRecommendationsMessage":{ + "type":"structure", + "members":{ + "DBRecommendations":{"shape":"DBRecommendationList"}, + "Marker":{"shape":"String"} + } + }, + "DBSecurityGroup":{ + "type":"structure", + "members":{ + "OwnerId":{"shape":"String"}, + "DBSecurityGroupName":{"shape":"String"}, + "DBSecurityGroupDescription":{"shape":"String"}, + "VpcId":{"shape":"String"}, + "EC2SecurityGroups":{"shape":"EC2SecurityGroupList"}, + "IPRanges":{"shape":"IPRangeList"}, + "DBSecurityGroupArn":{"shape":"String"} + }, + "wrapper":true + }, + "DBSecurityGroupAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSecurityGroupAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSecurityGroupMembership":{ + "type":"structure", + "members":{ + "DBSecurityGroupName":{"shape":"String"}, + "Status":{"shape":"String"} + } + }, + "DBSecurityGroupMembershipList":{ + "type":"list", + "member":{ + "shape":"DBSecurityGroupMembership", + "locationName":"DBSecurityGroup" + } + }, + "DBSecurityGroupMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBSecurityGroups":{"shape":"DBSecurityGroups"} + } + }, + "DBSecurityGroupNameList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"DBSecurityGroupName" + } + }, + "DBSecurityGroupNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSecurityGroupNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBSecurityGroupNotSupportedFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSecurityGroupNotSupported", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSecurityGroupQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"QuotaExceeded.DBSecurityGroup", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSecurityGroups":{ + "type":"list", + "member":{ + "shape":"DBSecurityGroup", + "locationName":"DBSecurityGroup" + } + }, + "DBShardGroup":{ + "type":"structure", + "members":{ + "DBShardGroupResourceId":{"shape":"String"}, + "DBShardGroupIdentifier":{"shape":"DBShardGroupIdentifier"}, + "DBClusterIdentifier":{"shape":"String"}, + "MaxACU":{"shape":"DoubleOptional"}, + "MinACU":{"shape":"DoubleOptional"}, + "ComputeRedundancy":{"shape":"IntegerOptional"}, + "Status":{"shape":"String"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "Endpoint":{"shape":"String"} + } + }, + "DBShardGroupIdentifier":{ + "type":"string", + "max":63, + "min":1, + "pattern":"[a-zA-Z](?:-?[a-zA-Z0-9]+)*" + }, + "DBShardGroupsList":{ + "type":"list", + "member":{ + "shape":"DBShardGroup", + "locationName":"DBShardGroup" + } + }, + "DBSnapshot":{ + "type":"structure", + "members":{ + "DBSnapshotIdentifier":{"shape":"String"}, + "DBInstanceIdentifier":{"shape":"String"}, + "SnapshotCreateTime":{"shape":"TStamp"}, + "Engine":{"shape":"String"}, + "AllocatedStorage":{"shape":"Integer"}, + "Status":{"shape":"String"}, + "Port":{"shape":"Integer"}, + "AvailabilityZone":{"shape":"String"}, + "VpcId":{"shape":"String"}, + "InstanceCreateTime":{"shape":"TStamp"}, + "MasterUsername":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "LicenseModel":{"shape":"String"}, + "SnapshotType":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "StorageThroughput":{"shape":"IntegerOptional"}, + "OptionGroupName":{"shape":"String"}, + "PercentProgress":{"shape":"Integer"}, + "SourceRegion":{"shape":"String"}, + "SourceDBSnapshotIdentifier":{"shape":"String"}, + "StorageType":{"shape":"String"}, + "TdeCredentialArn":{"shape":"String"}, + "Encrypted":{"shape":"Boolean"}, + "KmsKeyId":{"shape":"String"}, + "DBSnapshotArn":{"shape":"String"}, + "Timezone":{"shape":"String"}, + "IAMDatabaseAuthenticationEnabled":{"shape":"Boolean"}, + "ProcessorFeatures":{"shape":"ProcessorFeatureList"}, + "DbiResourceId":{"shape":"String"}, + "TagList":{"shape":"TagList"}, + "OriginalSnapshotCreateTime":{"shape":"TStamp"}, + "DBSystemId":{"shape":"String"}, + "MultiTenant":{"shape":"BooleanOptional"}, + "DedicatedLogVolume":{"shape":"Boolean"} + }, + "wrapper":true + }, + "DBSnapshotAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSnapshotAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSnapshotAttribute":{ + "type":"structure", + "members":{ + "AttributeName":{"shape":"String"}, + "AttributeValues":{"shape":"AttributeValueList"} + }, + "wrapper":true + }, + "DBSnapshotAttributeList":{ + "type":"list", + "member":{ + "shape":"DBSnapshotAttribute", + "locationName":"DBSnapshotAttribute" + } + }, + "DBSnapshotAttributesResult":{ + "type":"structure", + "members":{ + "DBSnapshotIdentifier":{"shape":"String"}, + "DBSnapshotAttributes":{"shape":"DBSnapshotAttributeList"} + }, + "wrapper":true + }, + "DBSnapshotList":{ + "type":"list", + "member":{ + "shape":"DBSnapshot", + "locationName":"DBSnapshot" + } + }, + "DBSnapshotMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBSnapshots":{"shape":"DBSnapshotList"} + } + }, + "DBSnapshotNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSnapshotNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBSnapshotTenantDatabase":{ + "type":"structure", + "members":{ + "DBSnapshotIdentifier":{"shape":"String"}, + "DBInstanceIdentifier":{"shape":"String"}, + "DbiResourceId":{"shape":"String"}, + "EngineName":{"shape":"String"}, + "SnapshotType":{"shape":"String"}, + "TenantDatabaseCreateTime":{"shape":"TStamp"}, + "TenantDBName":{"shape":"String"}, + "MasterUsername":{"shape":"String"}, + "TenantDatabaseResourceId":{"shape":"String"}, + "CharacterSetName":{"shape":"String"}, + "DBSnapshotTenantDatabaseARN":{"shape":"String"}, + "NcharCharacterSetName":{"shape":"String"}, + "TagList":{"shape":"TagList"} + }, + "wrapper":true + }, + "DBSnapshotTenantDatabaseNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSnapshotTenantDatabaseNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBSnapshotTenantDatabasesList":{ + "type":"list", + "member":{ + "shape":"DBSnapshotTenantDatabase", + "locationName":"DBSnapshotTenantDatabase" + } + }, + "DBSnapshotTenantDatabasesMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBSnapshotTenantDatabases":{"shape":"DBSnapshotTenantDatabasesList"} + } + }, + "DBSubnetGroup":{ + "type":"structure", + "members":{ + "DBSubnetGroupName":{"shape":"String"}, + "DBSubnetGroupDescription":{"shape":"String"}, + "VpcId":{"shape":"String"}, + "SubnetGroupStatus":{"shape":"String"}, + "Subnets":{"shape":"SubnetList"}, + "DBSubnetGroupArn":{"shape":"String"}, + "SupportedNetworkTypes":{"shape":"StringList"} + }, + "wrapper":true + }, + "DBSubnetGroupAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSubnetGroupAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSubnetGroupDoesNotCoverEnoughAZs":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSubnetGroupDoesNotCoverEnoughAZs", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSubnetGroupMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "DBSubnetGroups":{"shape":"DBSubnetGroups"} + } + }, + "DBSubnetGroupNotAllowedFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSubnetGroupNotAllowedFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSubnetGroupNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSubnetGroupNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "DBSubnetGroupQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSubnetGroupQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBSubnetGroups":{ + "type":"list", + "member":{ + "shape":"DBSubnetGroup", + "locationName":"DBSubnetGroup" + } + }, + "DBSubnetQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBSubnetQuotaExceededFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBUpgradeDependencyFailureFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DBUpgradeDependencyFailure", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DataFilter":{ + "type":"string", + "max":25600, + "min":1, + "pattern":"[a-zA-Z0-9_ \"\\\\\\-$,*.:?+\\/]*" + }, + "DatabaseArn":{ + "type":"string", + "max":2048, + "min":1, + "pattern":"^arn:[A-Za-z][0-9A-Za-z-:._]*" + }, + "DeleteBlueGreenDeploymentRequest":{ + "type":"structure", + "required":["BlueGreenDeploymentIdentifier"], + "members":{ + "BlueGreenDeploymentIdentifier":{"shape":"BlueGreenDeploymentIdentifier"}, + "DeleteTarget":{"shape":"BooleanOptional"} + } + }, + "DeleteBlueGreenDeploymentResponse":{ + "type":"structure", + "members":{ + "BlueGreenDeployment":{"shape":"BlueGreenDeployment"} + } + }, + "DeleteCustomDBEngineVersionMessage":{ + "type":"structure", + "required":[ + "Engine", + "EngineVersion" + ], + "members":{ + "Engine":{"shape":"CustomEngineName"}, + "EngineVersion":{"shape":"CustomEngineVersion"} + } + }, + "DeleteDBClusterAutomatedBackupMessage":{ + "type":"structure", + "required":["DbClusterResourceId"], + "members":{ + "DbClusterResourceId":{"shape":"String"} + } + }, + "DeleteDBClusterAutomatedBackupResult":{ + "type":"structure", + "members":{ + "DBClusterAutomatedBackup":{"shape":"DBClusterAutomatedBackup"} + } + }, + "DeleteDBClusterEndpointMessage":{ + "type":"structure", + "required":["DBClusterEndpointIdentifier"], + "members":{ + "DBClusterEndpointIdentifier":{"shape":"String"} + } + }, + "DeleteDBClusterMessage":{ + "type":"structure", + "required":["DBClusterIdentifier"], + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "SkipFinalSnapshot":{"shape":"Boolean"}, + "FinalDBSnapshotIdentifier":{"shape":"String"}, + "DeleteAutomatedBackups":{"shape":"BooleanOptional"} + } + }, + "DeleteDBClusterParameterGroupMessage":{ + "type":"structure", + "required":["DBClusterParameterGroupName"], + "members":{ + "DBClusterParameterGroupName":{"shape":"String"} + } + }, + "DeleteDBClusterResult":{ + "type":"structure", + "members":{ + "DBCluster":{"shape":"DBCluster"} + } + }, + "DeleteDBClusterSnapshotMessage":{ + "type":"structure", + "required":["DBClusterSnapshotIdentifier"], + "members":{ + "DBClusterSnapshotIdentifier":{"shape":"String"} + } + }, + "DeleteDBClusterSnapshotResult":{ + "type":"structure", + "members":{ + "DBClusterSnapshot":{"shape":"DBClusterSnapshot"} + } + }, + "DeleteDBInstanceAutomatedBackupMessage":{ + "type":"structure", + "members":{ + "DbiResourceId":{"shape":"String"}, + "DBInstanceAutomatedBackupsArn":{"shape":"String"} + } + }, + "DeleteDBInstanceAutomatedBackupResult":{ + "type":"structure", + "members":{ + "DBInstanceAutomatedBackup":{"shape":"DBInstanceAutomatedBackup"} + } + }, + "DeleteDBInstanceMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "SkipFinalSnapshot":{"shape":"Boolean"}, + "FinalDBSnapshotIdentifier":{"shape":"String"}, + "DeleteAutomatedBackups":{"shape":"BooleanOptional"} + } + }, + "DeleteDBInstanceResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "DeleteDBParameterGroupMessage":{ + "type":"structure", + "required":["DBParameterGroupName"], + "members":{ + "DBParameterGroupName":{"shape":"String"} + } + }, + "DeleteDBProxyEndpointRequest":{ + "type":"structure", + "required":["DBProxyEndpointName"], + "members":{ + "DBProxyEndpointName":{"shape":"DBProxyEndpointName"} + } + }, + "DeleteDBProxyEndpointResponse":{ + "type":"structure", + "members":{ + "DBProxyEndpoint":{"shape":"DBProxyEndpoint"} + } + }, + "DeleteDBProxyRequest":{ + "type":"structure", + "required":["DBProxyName"], + "members":{ + "DBProxyName":{"shape":"DBProxyName"} + } + }, + "DeleteDBProxyResponse":{ + "type":"structure", + "members":{ + "DBProxy":{"shape":"DBProxy"} + } + }, + "DeleteDBSecurityGroupMessage":{ + "type":"structure", + "required":["DBSecurityGroupName"], + "members":{ + "DBSecurityGroupName":{"shape":"String"} + } + }, + "DeleteDBShardGroupMessage":{ + "type":"structure", + "required":["DBShardGroupIdentifier"], + "members":{ + "DBShardGroupIdentifier":{"shape":"DBShardGroupIdentifier"} + } + }, + "DeleteDBSnapshotMessage":{ + "type":"structure", + "required":["DBSnapshotIdentifier"], + "members":{ + "DBSnapshotIdentifier":{"shape":"String"} + } + }, + "DeleteDBSnapshotResult":{ + "type":"structure", + "members":{ + "DBSnapshot":{"shape":"DBSnapshot"} + } + }, + "DeleteDBSubnetGroupMessage":{ + "type":"structure", + "required":["DBSubnetGroupName"], + "members":{ + "DBSubnetGroupName":{"shape":"String"} + } + }, + "DeleteEventSubscriptionMessage":{ + "type":"structure", + "required":["SubscriptionName"], + "members":{ + "SubscriptionName":{"shape":"String"} + } + }, + "DeleteEventSubscriptionResult":{ + "type":"structure", + "members":{ + "EventSubscription":{"shape":"EventSubscription"} + } + }, + "DeleteGlobalClusterMessage":{ + "type":"structure", + "required":["GlobalClusterIdentifier"], + "members":{ + "GlobalClusterIdentifier":{"shape":"GlobalClusterIdentifier"} + } + }, + "DeleteGlobalClusterResult":{ + "type":"structure", + "members":{ + "GlobalCluster":{"shape":"GlobalCluster"} + } + }, + "DeleteIntegrationMessage":{ + "type":"structure", + "required":["IntegrationIdentifier"], + "members":{ + "IntegrationIdentifier":{"shape":"IntegrationIdentifier"} + } + }, + "DeleteOptionGroupMessage":{ + "type":"structure", + "required":["OptionGroupName"], + "members":{ + "OptionGroupName":{"shape":"String"} + } + }, + "DeleteTenantDatabaseMessage":{ + "type":"structure", + "required":[ + "DBInstanceIdentifier", + "TenantDBName" + ], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "TenantDBName":{"shape":"String"}, + "SkipFinalSnapshot":{"shape":"Boolean"}, + "FinalDBSnapshotIdentifier":{"shape":"String"} + } + }, + "DeleteTenantDatabaseResult":{ + "type":"structure", + "members":{ + "TenantDatabase":{"shape":"TenantDatabase"} + } + }, + "DeregisterDBProxyTargetsRequest":{ + "type":"structure", + "required":["DBProxyName"], + "members":{ + "DBProxyName":{"shape":"DBProxyName"}, + "TargetGroupName":{"shape":"DBProxyTargetGroupName"}, + "DBInstanceIdentifiers":{"shape":"StringList"}, + "DBClusterIdentifiers":{"shape":"StringList"} + } + }, + "DeregisterDBProxyTargetsResponse":{ + "type":"structure", + "members":{} + }, + "DescribeAccountAttributesMessage":{ + "type":"structure", + "members":{} + }, + "DescribeBlueGreenDeploymentsRequest":{ + "type":"structure", + "members":{ + "BlueGreenDeploymentIdentifier":{"shape":"BlueGreenDeploymentIdentifier"}, + "Filters":{"shape":"FilterList"}, + "Marker":{"shape":"String"}, + "MaxRecords":{"shape":"MaxRecords"} + } + }, + "DescribeBlueGreenDeploymentsResponse":{ + "type":"structure", + "members":{ + "BlueGreenDeployments":{"shape":"BlueGreenDeploymentList"}, + "Marker":{"shape":"String"} + } + }, + "DescribeCertificatesMessage":{ + "type":"structure", + "members":{ + "CertificateIdentifier":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBClusterAutomatedBackupsMessage":{ + "type":"structure", + "members":{ + "DbClusterResourceId":{"shape":"String"}, + "DBClusterIdentifier":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBClusterBacktracksMessage":{ + "type":"structure", + "required":["DBClusterIdentifier"], + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "BacktrackIdentifier":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBClusterEndpointsMessage":{ + "type":"structure", + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "DBClusterEndpointIdentifier":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBClusterParameterGroupsMessage":{ + "type":"structure", + "members":{ + "DBClusterParameterGroupName":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBClusterParametersMessage":{ + "type":"structure", + "required":["DBClusterParameterGroupName"], + "members":{ + "DBClusterParameterGroupName":{"shape":"String"}, + "Source":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBClusterSnapshotAttributesMessage":{ + "type":"structure", + "required":["DBClusterSnapshotIdentifier"], + "members":{ + "DBClusterSnapshotIdentifier":{"shape":"String"} + } + }, + "DescribeDBClusterSnapshotAttributesResult":{ + "type":"structure", + "members":{ + "DBClusterSnapshotAttributesResult":{"shape":"DBClusterSnapshotAttributesResult"} + } + }, + "DescribeDBClusterSnapshotsMessage":{ + "type":"structure", + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "DBClusterSnapshotIdentifier":{"shape":"String"}, + "SnapshotType":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"}, + "IncludeShared":{"shape":"Boolean"}, + "IncludePublic":{"shape":"Boolean"}, + "DbClusterResourceId":{"shape":"String"} + } + }, + "DescribeDBClustersMessage":{ + "type":"structure", + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"}, + "IncludeShared":{"shape":"Boolean"} + } + }, + "DescribeDBEngineVersionsMessage":{ + "type":"structure", + "members":{ + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "DBParameterGroupFamily":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"}, + "DefaultOnly":{"shape":"Boolean"}, + "ListSupportedCharacterSets":{"shape":"BooleanOptional"}, + "ListSupportedTimezones":{"shape":"BooleanOptional"}, + "IncludeAll":{"shape":"BooleanOptional"} + } + }, + "DescribeDBInstanceAutomatedBackupsMessage":{ + "type":"structure", + "members":{ + "DbiResourceId":{"shape":"String"}, + "DBInstanceIdentifier":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"}, + "DBInstanceAutomatedBackupsArn":{"shape":"String"} + } + }, + "DescribeDBInstancesMessage":{ + "type":"structure", + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBLogFilesDetails":{ + "type":"structure", + "members":{ + "LogFileName":{"shape":"String"}, + "LastWritten":{"shape":"Long"}, + "Size":{"shape":"Long"} + } + }, + "DescribeDBLogFilesList":{ + "type":"list", + "member":{ + "shape":"DescribeDBLogFilesDetails", + "locationName":"DescribeDBLogFilesDetails" + } + }, + "DescribeDBLogFilesMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "FilenameContains":{"shape":"String"}, + "FileLastWritten":{"shape":"Long"}, + "FileSize":{"shape":"Long"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBLogFilesResponse":{ + "type":"structure", + "members":{ + "DescribeDBLogFiles":{"shape":"DescribeDBLogFilesList"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBMajorEngineVersionsRequest":{ + "type":"structure", + "members":{ + "Engine":{"shape":"Engine"}, + "MajorEngineVersion":{"shape":"MajorEngineVersion"}, + "Marker":{"shape":"Marker"}, + "MaxRecords":{"shape":"MaxRecords"} + } + }, + "DescribeDBMajorEngineVersionsResponse":{ + "type":"structure", + "members":{ + "DBMajorEngineVersions":{"shape":"DBMajorEngineVersionsList"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBParameterGroupsMessage":{ + "type":"structure", + "members":{ + "DBParameterGroupName":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBParametersMessage":{ + "type":"structure", + "required":["DBParameterGroupName"], + "members":{ + "DBParameterGroupName":{"shape":"String"}, + "Source":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBProxiesRequest":{ + "type":"structure", + "members":{ + "DBProxyName":{"shape":"DBProxyName"}, + "Filters":{"shape":"FilterList"}, + "Marker":{"shape":"String"}, + "MaxRecords":{"shape":"MaxRecords"} + } + }, + "DescribeDBProxiesResponse":{ + "type":"structure", + "members":{ + "DBProxies":{"shape":"DBProxyList"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBProxyEndpointsRequest":{ + "type":"structure", + "members":{ + "DBProxyName":{"shape":"DBProxyName"}, + "DBProxyEndpointName":{"shape":"DBProxyEndpointName"}, + "Filters":{"shape":"FilterList"}, + "Marker":{"shape":"String"}, + "MaxRecords":{"shape":"MaxRecords"} + } + }, + "DescribeDBProxyEndpointsResponse":{ + "type":"structure", + "members":{ + "DBProxyEndpoints":{"shape":"DBProxyEndpointList"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBProxyTargetGroupsRequest":{ + "type":"structure", + "required":["DBProxyName"], + "members":{ + "DBProxyName":{"shape":"DBProxyName"}, + "TargetGroupName":{"shape":"DBProxyTargetGroupName"}, + "Filters":{"shape":"FilterList"}, + "Marker":{"shape":"String"}, + "MaxRecords":{"shape":"MaxRecords"} + } + }, + "DescribeDBProxyTargetGroupsResponse":{ + "type":"structure", + "members":{ + "TargetGroups":{"shape":"TargetGroupList"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBProxyTargetsRequest":{ + "type":"structure", + "required":["DBProxyName"], + "members":{ + "DBProxyName":{"shape":"DBProxyName"}, + "TargetGroupName":{"shape":"DBProxyTargetGroupName"}, + "Filters":{"shape":"FilterList"}, + "Marker":{"shape":"String"}, + "MaxRecords":{"shape":"MaxRecords"} + } + }, + "DescribeDBProxyTargetsResponse":{ + "type":"structure", + "members":{ + "Targets":{"shape":"TargetList"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBRecommendationsMessage":{ + "type":"structure", + "members":{ + "LastUpdatedAfter":{"shape":"TStamp"}, + "LastUpdatedBefore":{"shape":"TStamp"}, + "Locale":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBSecurityGroupsMessage":{ + "type":"structure", + "members":{ + "DBSecurityGroupName":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBShardGroupsMessage":{ + "type":"structure", + "members":{ + "DBShardGroupIdentifier":{"shape":"DBShardGroupIdentifier"}, + "Filters":{"shape":"FilterList"}, + "Marker":{"shape":"String"}, + "MaxRecords":{"shape":"MaxRecords"} + } + }, + "DescribeDBShardGroupsResponse":{ + "type":"structure", + "members":{ + "DBShardGroups":{"shape":"DBShardGroupsList"}, + "Marker":{"shape":"String"} + } + }, + "DescribeDBSnapshotAttributesMessage":{ + "type":"structure", + "required":["DBSnapshotIdentifier"], + "members":{ + "DBSnapshotIdentifier":{"shape":"String"} + } + }, + "DescribeDBSnapshotAttributesResult":{ + "type":"structure", + "members":{ + "DBSnapshotAttributesResult":{"shape":"DBSnapshotAttributesResult"} + } + }, + "DescribeDBSnapshotTenantDatabasesMessage":{ + "type":"structure", + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "DBSnapshotIdentifier":{"shape":"String"}, + "SnapshotType":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"}, + "DbiResourceId":{"shape":"String"} + } + }, + "DescribeDBSnapshotsMessage":{ + "type":"structure", + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "DBSnapshotIdentifier":{"shape":"String"}, + "SnapshotType":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"}, + "IncludeShared":{"shape":"Boolean"}, + "IncludePublic":{"shape":"Boolean"}, + "DbiResourceId":{"shape":"String"} + } + }, + "DescribeDBSubnetGroupsMessage":{ + "type":"structure", + "members":{ + "DBSubnetGroupName":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeEngineDefaultClusterParametersMessage":{ + "type":"structure", + "required":["DBParameterGroupFamily"], + "members":{ + "DBParameterGroupFamily":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeEngineDefaultClusterParametersResult":{ + "type":"structure", + "members":{ + "EngineDefaults":{"shape":"EngineDefaults"} + } + }, + "DescribeEngineDefaultParametersMessage":{ + "type":"structure", + "required":["DBParameterGroupFamily"], + "members":{ + "DBParameterGroupFamily":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeEngineDefaultParametersResult":{ + "type":"structure", + "members":{ + "EngineDefaults":{"shape":"EngineDefaults"} + } + }, + "DescribeEventCategoriesMessage":{ + "type":"structure", + "members":{ + "SourceType":{"shape":"String"}, + "Filters":{"shape":"FilterList"} + } + }, + "DescribeEventSubscriptionsMessage":{ + "type":"structure", + "members":{ + "SubscriptionName":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeEventsMessage":{ + "type":"structure", + "members":{ + "SourceIdentifier":{"shape":"String"}, + "SourceType":{"shape":"SourceType"}, + "StartTime":{"shape":"TStamp"}, + "EndTime":{"shape":"TStamp"}, + "Duration":{"shape":"IntegerOptional"}, + "EventCategories":{"shape":"EventCategoriesList"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeExportTasksMessage":{ + "type":"structure", + "members":{ + "ExportTaskIdentifier":{"shape":"String"}, + "SourceArn":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "Marker":{"shape":"String"}, + "MaxRecords":{"shape":"MaxRecords"}, + "SourceType":{"shape":"ExportSourceType"} + } + }, + "DescribeGlobalClustersMessage":{ + "type":"structure", + "members":{ + "GlobalClusterIdentifier":{"shape":"GlobalClusterIdentifier"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeIntegrationsMessage":{ + "type":"structure", + "members":{ + "IntegrationIdentifier":{"shape":"IntegrationIdentifier"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"Marker"} + } + }, + "DescribeIntegrationsResponse":{ + "type":"structure", + "members":{ + "Marker":{"shape":"Marker"}, + "Integrations":{"shape":"IntegrationList"} + } + }, + "DescribeOptionGroupOptionsMessage":{ + "type":"structure", + "required":["EngineName"], + "members":{ + "EngineName":{"shape":"String"}, + "MajorEngineVersion":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeOptionGroupsMessage":{ + "type":"structure", + "members":{ + "OptionGroupName":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "Marker":{"shape":"String"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "EngineName":{"shape":"String"}, + "MajorEngineVersion":{"shape":"String"} + } + }, + "DescribeOrderableDBInstanceOptionsMessage":{ + "type":"structure", + "required":["Engine"], + "members":{ + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "LicenseModel":{"shape":"String"}, + "AvailabilityZoneGroup":{"shape":"String"}, + "Vpc":{"shape":"BooleanOptional"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribePendingMaintenanceActionsMessage":{ + "type":"structure", + "members":{ + "ResourceIdentifier":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "Marker":{"shape":"String"}, + "MaxRecords":{"shape":"IntegerOptional"} + } + }, + "DescribeReservedDBInstancesMessage":{ + "type":"structure", + "members":{ + "ReservedDBInstanceId":{"shape":"String"}, + "ReservedDBInstancesOfferingId":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "Duration":{"shape":"String"}, + "ProductDescription":{"shape":"String"}, + "OfferingType":{"shape":"String"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "LeaseId":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeReservedDBInstancesOfferingsMessage":{ + "type":"structure", + "members":{ + "ReservedDBInstancesOfferingId":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "Duration":{"shape":"String"}, + "ProductDescription":{"shape":"String"}, + "OfferingType":{"shape":"String"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "Filters":{"shape":"FilterList"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"} + } + }, + "DescribeSourceRegionsMessage":{ + "type":"structure", + "members":{ + "RegionName":{"shape":"String"}, + "MaxRecords":{"shape":"IntegerOptional"}, + "Marker":{"shape":"String"}, + "Filters":{"shape":"FilterList"} + } + }, + "DescribeTenantDatabasesMessage":{ + "type":"structure", + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "TenantDBName":{"shape":"String"}, + "Filters":{"shape":"FilterList"}, + "Marker":{"shape":"String"}, + "MaxRecords":{"shape":"IntegerOptional"} + } + }, + "DescribeValidDBInstanceModificationsMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"} + } + }, + "DescribeValidDBInstanceModificationsResult":{ + "type":"structure", + "members":{ + "ValidDBInstanceModificationsMessage":{"shape":"ValidDBInstanceModificationsMessage"} + } + }, + "Description":{ + "type":"string", + "max":1000, + "min":1, + "pattern":".*" + }, + "DisableHttpEndpointRequest":{ + "type":"structure", + "required":["ResourceArn"], + "members":{ + "ResourceArn":{"shape":"String"} + } + }, + "DisableHttpEndpointResponse":{ + "type":"structure", + "members":{ + "ResourceArn":{"shape":"String"}, + "HttpEndpointEnabled":{"shape":"Boolean"} + } + }, + "DocLink":{ + "type":"structure", + "members":{ + "Text":{"shape":"String"}, + "Url":{"shape":"String"} + } + }, + "DocLinkList":{ + "type":"list", + "member":{"shape":"DocLink"} + }, + "DomainMembership":{ + "type":"structure", + "members":{ + "Domain":{"shape":"String"}, + "Status":{"shape":"String"}, + "FQDN":{"shape":"String"}, + "IAMRoleName":{"shape":"String"}, + "OU":{"shape":"String"}, + "AuthSecretArn":{"shape":"String"}, + "DnsIps":{"shape":"StringList"} + } + }, + "DomainMembershipList":{ + "type":"list", + "member":{ + "shape":"DomainMembership", + "locationName":"DomainMembership" + } + }, + "DomainNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"DomainNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "Double":{"type":"double"}, + "DoubleOptional":{"type":"double"}, + "DoubleRange":{ + "type":"structure", + "members":{ + "From":{"shape":"Double"}, + "To":{"shape":"Double"} + } + }, + "DoubleRangeList":{ + "type":"list", + "member":{ + "shape":"DoubleRange", + "locationName":"DoubleRange" + } + }, + "DownloadDBLogFilePortionDetails":{ + "type":"structure", + "members":{ + "LogFileData":{"shape":"SensitiveString"}, + "Marker":{"shape":"String"}, + "AdditionalDataPending":{"shape":"Boolean"} + } + }, + "DownloadDBLogFilePortionMessage":{ + "type":"structure", + "required":[ + "DBInstanceIdentifier", + "LogFileName" + ], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "LogFileName":{"shape":"String"}, + "Marker":{"shape":"String"}, + "NumberOfLines":{"shape":"Integer"} + } + }, + "EC2SecurityGroup":{ + "type":"structure", + "members":{ + "Status":{"shape":"String"}, + "EC2SecurityGroupName":{"shape":"String"}, + "EC2SecurityGroupId":{"shape":"String"}, + "EC2SecurityGroupOwnerId":{"shape":"String"} + } + }, + "EC2SecurityGroupList":{ + "type":"list", + "member":{ + "shape":"EC2SecurityGroup", + "locationName":"EC2SecurityGroup" + } + }, + "Ec2ImagePropertiesNotSupportedFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"Ec2ImagePropertiesNotSupportedFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "EnableHttpEndpointRequest":{ + "type":"structure", + "required":["ResourceArn"], + "members":{ + "ResourceArn":{"shape":"String"} + } + }, + "EnableHttpEndpointResponse":{ + "type":"structure", + "members":{ + "ResourceArn":{"shape":"String"}, + "HttpEndpointEnabled":{"shape":"Boolean"} + } + }, + "EncryptionContextMap":{ + "type":"map", + "key":{"shape":"String"}, + "value":{"shape":"String"} + }, + "Endpoint":{ + "type":"structure", + "members":{ + "Address":{"shape":"String"}, + "Port":{"shape":"Integer"}, + "HostedZoneId":{"shape":"String"} + } + }, + "Engine":{ + "type":"string", + "max":50, + "min":1 + }, + "EngineDefaults":{ + "type":"structure", + "members":{ + "DBParameterGroupFamily":{"shape":"String"}, + "Marker":{"shape":"String"}, + "Parameters":{"shape":"ParametersList"} + }, + "wrapper":true + }, + "EngineFamily":{ + "type":"string", + "enum":[ + "MYSQL", + "POSTGRESQL", + "SQLSERVER" + ] + }, + "EngineModeList":{ + "type":"list", + "member":{"shape":"String"} + }, + "Event":{ + "type":"structure", + "members":{ + "SourceIdentifier":{"shape":"String"}, + "SourceType":{"shape":"SourceType"}, + "Message":{"shape":"String"}, + "EventCategories":{"shape":"EventCategoriesList"}, + "Date":{"shape":"TStamp"}, + "SourceArn":{"shape":"String"} + } + }, + "EventCategoriesList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"EventCategory" + } + }, + "EventCategoriesMap":{ + "type":"structure", + "members":{ + "SourceType":{"shape":"String"}, + "EventCategories":{"shape":"EventCategoriesList"} + }, + "wrapper":true + }, + "EventCategoriesMapList":{ + "type":"list", + "member":{ + "shape":"EventCategoriesMap", + "locationName":"EventCategoriesMap" + } + }, + "EventCategoriesMessage":{ + "type":"structure", + "members":{ + "EventCategoriesMapList":{"shape":"EventCategoriesMapList"} + } + }, + "EventList":{ + "type":"list", + "member":{ + "shape":"Event", + "locationName":"Event" + } + }, + "EventSubscription":{ + "type":"structure", + "members":{ + "CustomerAwsId":{"shape":"String"}, + "CustSubscriptionId":{"shape":"String"}, + "SnsTopicArn":{"shape":"String"}, + "Status":{"shape":"String"}, + "SubscriptionCreationTime":{"shape":"String"}, + "SourceType":{"shape":"String"}, + "SourceIdsList":{"shape":"SourceIdsList"}, + "EventCategoriesList":{"shape":"EventCategoriesList"}, + "Enabled":{"shape":"Boolean"}, + "EventSubscriptionArn":{"shape":"String"} + }, + "wrapper":true + }, + "EventSubscriptionQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"EventSubscriptionQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "EventSubscriptionsList":{ + "type":"list", + "member":{ + "shape":"EventSubscription", + "locationName":"EventSubscription" + } + }, + "EventSubscriptionsMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "EventSubscriptionsList":{"shape":"EventSubscriptionsList"} + } + }, + "EventsMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "Events":{"shape":"EventList"} + } + }, + "ExportSourceType":{ + "type":"string", + "enum":[ + "SNAPSHOT", + "CLUSTER" + ] + }, + "ExportTask":{ + "type":"structure", + "members":{ + "ExportTaskIdentifier":{"shape":"String"}, + "SourceArn":{"shape":"String"}, + "ExportOnly":{"shape":"StringList"}, + "SnapshotTime":{"shape":"TStamp"}, + "TaskStartTime":{"shape":"TStamp"}, + "TaskEndTime":{"shape":"TStamp"}, + "S3Bucket":{"shape":"String"}, + "S3Prefix":{"shape":"String"}, + "IamRoleArn":{"shape":"String"}, + "KmsKeyId":{"shape":"String"}, + "Status":{"shape":"String"}, + "PercentProgress":{"shape":"Integer"}, + "TotalExtractedDataInGB":{"shape":"Integer"}, + "FailureCause":{"shape":"String"}, + "WarningMessage":{"shape":"String"}, + "SourceType":{"shape":"ExportSourceType"} + } + }, + "ExportTaskAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"ExportTaskAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "ExportTaskNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"ExportTaskNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "ExportTasksList":{ + "type":"list", + "member":{ + "shape":"ExportTask", + "locationName":"ExportTask" + } + }, + "ExportTasksMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "ExportTasks":{"shape":"ExportTasksList"} + } + }, + "FailoverDBClusterMessage":{ + "type":"structure", + "required":["DBClusterIdentifier"], + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "TargetDBInstanceIdentifier":{"shape":"String"} + } + }, + "FailoverDBClusterResult":{ + "type":"structure", + "members":{ + "DBCluster":{"shape":"DBCluster"} + } + }, + "FailoverGlobalClusterMessage":{ + "type":"structure", + "required":[ + "GlobalClusterIdentifier", + "TargetDbClusterIdentifier" + ], + "members":{ + "GlobalClusterIdentifier":{"shape":"GlobalClusterIdentifier"}, + "TargetDbClusterIdentifier":{"shape":"DBClusterIdentifier"}, + "AllowDataLoss":{"shape":"BooleanOptional"}, + "Switchover":{"shape":"BooleanOptional"} + } + }, + "FailoverGlobalClusterResult":{ + "type":"structure", + "members":{ + "GlobalCluster":{"shape":"GlobalCluster"} + } + }, + "FailoverState":{ + "type":"structure", + "members":{ + "Status":{"shape":"FailoverStatus"}, + "FromDbClusterArn":{"shape":"String"}, + "ToDbClusterArn":{"shape":"String"}, + "IsDataLossAllowed":{"shape":"Boolean"} + }, + "wrapper":true + }, + "FailoverStatus":{ + "type":"string", + "enum":[ + "pending", + "failing-over", + "cancelling" + ] + }, + "FeatureNameList":{ + "type":"list", + "member":{"shape":"String"} + }, + "Filter":{ + "type":"structure", + "required":[ + "Name", + "Values" + ], + "members":{ + "Name":{"shape":"String"}, + "Values":{"shape":"FilterValueList"} + } + }, + "FilterList":{ + "type":"list", + "member":{ + "shape":"Filter", + "locationName":"Filter" + } + }, + "FilterValueList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"Value" + } + }, + "FreeTierRestrictionError":{ + "type":"structure", + "members":{}, + "error":{ + "code":"FreeTierRestrictionError", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "GlobalCluster":{ + "type":"structure", + "members":{ + "GlobalClusterIdentifier":{"shape":"GlobalClusterIdentifier"}, + "GlobalClusterResourceId":{"shape":"String"}, + "GlobalClusterArn":{"shape":"String"}, + "Status":{"shape":"String"}, + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "EngineLifecycleSupport":{"shape":"String"}, + "DatabaseName":{"shape":"String"}, + "StorageEncrypted":{"shape":"BooleanOptional"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "GlobalClusterMembers":{"shape":"GlobalClusterMemberList"}, + "Endpoint":{"shape":"String"}, + "FailoverState":{"shape":"FailoverState"} + }, + "wrapper":true + }, + "GlobalClusterAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"GlobalClusterAlreadyExistsFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "GlobalClusterIdentifier":{ + "type":"string", + "max":255, + "min":1, + "pattern":"[A-Za-z][0-9A-Za-z-:._]*" + }, + "GlobalClusterList":{ + "type":"list", + "member":{ + "shape":"GlobalCluster", + "locationName":"GlobalClusterMember" + } + }, + "GlobalClusterMember":{ + "type":"structure", + "members":{ + "DBClusterArn":{"shape":"String"}, + "Readers":{"shape":"ReadersArnList"}, + "IsWriter":{"shape":"Boolean"}, + "GlobalWriteForwardingStatus":{"shape":"WriteForwardingStatus"}, + "SynchronizationStatus":{"shape":"GlobalClusterMemberSynchronizationStatus"} + }, + "wrapper":true + }, + "GlobalClusterMemberList":{ + "type":"list", + "member":{ + "shape":"GlobalClusterMember", + "locationName":"GlobalClusterMember" + } + }, + "GlobalClusterMemberSynchronizationStatus":{ + "type":"string", + "enum":[ + "connected", + "pending-resync" + ] + }, + "GlobalClusterNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"GlobalClusterNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "GlobalClusterQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"GlobalClusterQuotaExceededFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "GlobalClustersMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "GlobalClusters":{"shape":"GlobalClusterList"} + } + }, + "IAMAuthMode":{ + "type":"string", + "enum":[ + "DISABLED", + "REQUIRED", + "ENABLED" + ] + }, + "IPRange":{ + "type":"structure", + "members":{ + "Status":{"shape":"String"}, + "CIDRIP":{"shape":"String"} + } + }, + "IPRangeList":{ + "type":"list", + "member":{ + "shape":"IPRange", + "locationName":"IPRange" + } + }, + "IamRoleMissingPermissionsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"IamRoleMissingPermissions", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "IamRoleNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"IamRoleNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "InstanceQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InstanceQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InsufficientAvailableIPsInSubnetFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InsufficientAvailableIPsInSubnetFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InsufficientDBClusterCapacityFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InsufficientDBClusterCapacityFault", + "httpStatusCode":403, + "senderFault":true + }, + "exception":true + }, + "InsufficientDBInstanceCapacityFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InsufficientDBInstanceCapacity", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InsufficientStorageClusterCapacityFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InsufficientStorageClusterCapacity", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "Integer":{"type":"integer"}, + "IntegerOptional":{"type":"integer"}, + "Integration":{ + "type":"structure", + "members":{ + "SourceArn":{"shape":"SourceArn"}, + "TargetArn":{"shape":"Arn"}, + "IntegrationName":{"shape":"IntegrationName"}, + "IntegrationArn":{"shape":"IntegrationArn"}, + "KMSKeyId":{"shape":"String"}, + "AdditionalEncryptionContext":{"shape":"EncryptionContextMap"}, + "Status":{"shape":"IntegrationStatus"}, + "Tags":{"shape":"TagList"}, + "DataFilter":{"shape":"DataFilter"}, + "Description":{"shape":"IntegrationDescription"}, + "CreateTime":{"shape":"TStamp"}, + "Errors":{"shape":"IntegrationErrorList"} + } + }, + "IntegrationAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"IntegrationAlreadyExistsFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "IntegrationArn":{ + "type":"string", + "max":255, + "min":1, + "pattern":"arn:aws[a-z\\-]*:rds(-[a-z]*)?:[a-z0-9\\-]*:[0-9]*:integration:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}" + }, + "IntegrationConflictOperationFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"IntegrationConflictOperationFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "IntegrationDescription":{ + "type":"string", + "max":1000, + "min":0, + "pattern":".*" + }, + "IntegrationError":{ + "type":"structure", + "required":["ErrorCode"], + "members":{ + "ErrorCode":{"shape":"String"}, + "ErrorMessage":{"shape":"String"} + } + }, + "IntegrationErrorList":{ + "type":"list", + "member":{ + "shape":"IntegrationError", + "locationName":"IntegrationError" + } + }, + "IntegrationIdentifier":{ + "type":"string", + "max":255, + "min":1, + "pattern":"[a-zA-Z0-9_:\\-\\/]+" + }, + "IntegrationList":{ + "type":"list", + "member":{ + "shape":"Integration", + "locationName":"Integration" + } + }, + "IntegrationName":{ + "type":"string", + "max":63, + "min":1, + "pattern":"[a-zA-Z](?:-?[a-zA-Z0-9]+)*" + }, + "IntegrationNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"IntegrationNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "IntegrationQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"IntegrationQuotaExceededFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "IntegrationStatus":{ + "type":"string", + "enum":[ + "creating", + "active", + "modifying", + "failed", + "deleting", + "syncing", + "needs_attention" + ] + }, + "InvalidBlueGreenDeploymentStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidBlueGreenDeploymentStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidCustomDBEngineVersionStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidCustomDBEngineVersionStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBClusterAutomatedBackupStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBClusterAutomatedBackupStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBClusterCapacityFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBClusterCapacityFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBClusterEndpointStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBClusterEndpointStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBClusterSnapshotStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBClusterSnapshotStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBClusterStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBClusterStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBInstanceAutomatedBackupStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBInstanceAutomatedBackupState", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBInstanceStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBInstanceState", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBParameterGroupStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBParameterGroupState", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBProxyEndpointStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBProxyEndpointStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBProxyStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBProxyStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBSecurityGroupStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBSecurityGroupState", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBSnapshotStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBSnapshotState", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBSubnetGroupFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBSubnetGroupFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBSubnetGroupStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBSubnetGroupStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidDBSubnetStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidDBSubnetStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidExportOnlyFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidExportOnly", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidExportSourceStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidExportSourceState", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidExportTaskStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidExportTaskStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidGlobalClusterStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidGlobalClusterStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidIntegrationStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidIntegrationStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidOptionGroupStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidOptionGroupStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidResourceStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidResourceStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidRestoreFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidRestoreFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidS3BucketFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidS3BucketFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidSubnet":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidSubnet", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "InvalidVPCNetworkStateFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"InvalidVPCNetworkStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "IssueDetails":{ + "type":"structure", + "members":{ + "PerformanceIssueDetails":{"shape":"PerformanceIssueDetails"} + } + }, + "KMSKeyNotAccessibleFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"KMSKeyNotAccessibleFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "KeyList":{ + "type":"list", + "member":{"shape":"String"} + }, + "KmsKeyIdOrArn":{ + "type":"string", + "max":2048, + "min":1, + "pattern":"[a-zA-Z0-9_:\\-\\/]+" + }, + "LifecycleSupportName":{ + "type":"string", + "enum":[ + "open-source-rds-standard-support", + "open-source-rds-extended-support" + ] + }, + "LimitlessDatabase":{ + "type":"structure", + "members":{ + "Status":{"shape":"LimitlessDatabaseStatus"}, + "MinRequiredACU":{"shape":"DoubleOptional"} + } + }, + "LimitlessDatabaseStatus":{ + "type":"string", + "enum":[ + "active", + "not-in-use", + "enabled", + "disabled", + "enabling", + "disabling", + "modifying-max-capacity", + "error" + ] + }, + "ListTagsForResourceMessage":{ + "type":"structure", + "required":["ResourceName"], + "members":{ + "ResourceName":{"shape":"String"}, + "Filters":{"shape":"FilterList"} + } + }, + "LogTypeList":{ + "type":"list", + "member":{"shape":"String"} + }, + "Long":{"type":"long"}, + "LongOptional":{"type":"long"}, + "MajorEngineVersion":{ + "type":"string", + "max":50, + "min":1 + }, + "Marker":{ + "type":"string", + "max":340, + "min":1 + }, + "MasterUserSecret":{ + "type":"structure", + "members":{ + "SecretArn":{"shape":"String"}, + "SecretStatus":{"shape":"String"}, + "KmsKeyId":{"shape":"String"} + } + }, + "MaxRecords":{ + "type":"integer", + "max":100, + "min":20 + }, + "Metric":{ + "type":"structure", + "members":{ + "Name":{"shape":"String"}, + "References":{"shape":"MetricReferenceList"}, + "StatisticsDetails":{"shape":"String"}, + "MetricQuery":{"shape":"MetricQuery"} + } + }, + "MetricList":{ + "type":"list", + "member":{"shape":"Metric"} + }, + "MetricQuery":{ + "type":"structure", + "members":{ + "PerformanceInsightsMetricQuery":{"shape":"PerformanceInsightsMetricQuery"} + } + }, + "MetricReference":{ + "type":"structure", + "members":{ + "Name":{"shape":"String"}, + "ReferenceDetails":{"shape":"ReferenceDetails"} + } + }, + "MetricReferenceList":{ + "type":"list", + "member":{"shape":"MetricReference"} + }, + "MinimumEngineVersionPerAllowedValue":{ + "type":"structure", + "members":{ + "AllowedValue":{"shape":"String"}, + "MinimumEngineVersion":{"shape":"String"} + } + }, + "MinimumEngineVersionPerAllowedValueList":{ + "type":"list", + "member":{ + "shape":"MinimumEngineVersionPerAllowedValue", + "locationName":"MinimumEngineVersionPerAllowedValue" + } + }, + "ModifyActivityStreamRequest":{ + "type":"structure", + "members":{ + "ResourceArn":{"shape":"String"}, + "AuditPolicyState":{"shape":"AuditPolicyState"} + } + }, + "ModifyActivityStreamResponse":{ + "type":"structure", + "members":{ + "KmsKeyId":{"shape":"String"}, + "KinesisStreamName":{"shape":"String"}, + "Status":{"shape":"ActivityStreamStatus"}, + "Mode":{"shape":"ActivityStreamMode"}, + "EngineNativeAuditFieldsIncluded":{"shape":"BooleanOptional"}, + "PolicyStatus":{"shape":"ActivityStreamPolicyStatus"} + } + }, + "ModifyCertificatesMessage":{ + "type":"structure", + "members":{ + "CertificateIdentifier":{"shape":"String"}, + "RemoveCustomerOverride":{"shape":"BooleanOptional"} + } + }, + "ModifyCertificatesResult":{ + "type":"structure", + "members":{ + "Certificate":{"shape":"Certificate"} + } + }, + "ModifyCurrentDBClusterCapacityMessage":{ + "type":"structure", + "required":["DBClusterIdentifier"], + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "Capacity":{"shape":"IntegerOptional"}, + "SecondsBeforeTimeout":{"shape":"IntegerOptional"}, + "TimeoutAction":{"shape":"String"} + } + }, + "ModifyCustomDBEngineVersionMessage":{ + "type":"structure", + "required":[ + "Engine", + "EngineVersion" + ], + "members":{ + "Engine":{"shape":"CustomEngineName"}, + "EngineVersion":{"shape":"CustomEngineVersion"}, + "Description":{"shape":"Description"}, + "Status":{"shape":"CustomEngineVersionStatus"} + } + }, + "ModifyDBClusterEndpointMessage":{ + "type":"structure", + "required":["DBClusterEndpointIdentifier"], + "members":{ + "DBClusterEndpointIdentifier":{"shape":"String"}, + "EndpointType":{"shape":"String"}, + "StaticMembers":{"shape":"StringList"}, + "ExcludedMembers":{"shape":"StringList"} + } + }, + "ModifyDBClusterMessage":{ + "type":"structure", + "required":["DBClusterIdentifier"], + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "NewDBClusterIdentifier":{"shape":"String"}, + "ApplyImmediately":{"shape":"Boolean"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "DBClusterParameterGroupName":{"shape":"String"}, + "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"}, + "Port":{"shape":"IntegerOptional"}, + "MasterUserPassword":{"shape":"SensitiveString"}, + "OptionGroupName":{"shape":"String"}, + "PreferredBackupWindow":{"shape":"String"}, + "PreferredMaintenanceWindow":{"shape":"String"}, + "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}, + "BacktrackWindow":{"shape":"LongOptional"}, + "CloudwatchLogsExportConfiguration":{"shape":"CloudwatchLogsExportConfiguration"}, + "EngineVersion":{"shape":"String"}, + "AllowMajorVersionUpgrade":{"shape":"Boolean"}, + "DBInstanceParameterGroupName":{"shape":"String"}, + "Domain":{"shape":"String"}, + "DomainIAMRoleName":{"shape":"String"}, + "ScalingConfiguration":{"shape":"ScalingConfiguration"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "EnableHttpEndpoint":{"shape":"BooleanOptional"}, + "CopyTagsToSnapshot":{"shape":"BooleanOptional"}, + "EnableGlobalWriteForwarding":{"shape":"BooleanOptional"}, + "DBClusterInstanceClass":{"shape":"String"}, + "AllocatedStorage":{"shape":"IntegerOptional"}, + "StorageType":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"}, + "ServerlessV2ScalingConfiguration":{"shape":"ServerlessV2ScalingConfiguration"}, + "MonitoringInterval":{"shape":"IntegerOptional"}, + "MonitoringRoleArn":{"shape":"String"}, + "EnablePerformanceInsights":{"shape":"BooleanOptional"}, + "PerformanceInsightsKMSKeyId":{"shape":"String"}, + "PerformanceInsightsRetentionPeriod":{"shape":"IntegerOptional"}, + "ManageMasterUserPassword":{"shape":"BooleanOptional"}, + "RotateMasterUserPassword":{"shape":"BooleanOptional"}, + "MasterUserSecretKmsKeyId":{"shape":"String"}, + "EngineMode":{"shape":"String"}, + "AllowEngineModeChange":{"shape":"Boolean"}, + "EnableLimitlessDatabase":{"shape":"BooleanOptional"}, + "CACertificateIdentifier":{"shape":"String"} + } + }, + "ModifyDBClusterParameterGroupMessage":{ + "type":"structure", + "required":[ + "DBClusterParameterGroupName", + "Parameters" + ], + "members":{ + "DBClusterParameterGroupName":{"shape":"String"}, + "Parameters":{"shape":"ParametersList"} + } + }, + "ModifyDBClusterResult":{ + "type":"structure", + "members":{ + "DBCluster":{"shape":"DBCluster"} + } + }, + "ModifyDBClusterSnapshotAttributeMessage":{ + "type":"structure", + "required":[ + "DBClusterSnapshotIdentifier", + "AttributeName" + ], + "members":{ + "DBClusterSnapshotIdentifier":{"shape":"String"}, + "AttributeName":{"shape":"String"}, + "ValuesToAdd":{"shape":"AttributeValueList"}, + "ValuesToRemove":{"shape":"AttributeValueList"} + } + }, + "ModifyDBClusterSnapshotAttributeResult":{ + "type":"structure", + "members":{ + "DBClusterSnapshotAttributesResult":{"shape":"DBClusterSnapshotAttributesResult"} + } + }, + "ModifyDBInstanceMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "AllocatedStorage":{"shape":"IntegerOptional"}, + "DBInstanceClass":{"shape":"String"}, + "DBSubnetGroupName":{"shape":"String"}, + "DBSecurityGroups":{"shape":"DBSecurityGroupNameList"}, + "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"}, + "ApplyImmediately":{"shape":"Boolean"}, + "MasterUserPassword":{"shape":"SensitiveString"}, + "DBParameterGroupName":{"shape":"String"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "PreferredBackupWindow":{"shape":"String"}, + "PreferredMaintenanceWindow":{"shape":"String"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "EngineVersion":{"shape":"String"}, + "AllowMajorVersionUpgrade":{"shape":"Boolean"}, + "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"}, + "LicenseModel":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "StorageThroughput":{"shape":"IntegerOptional"}, + "OptionGroupName":{"shape":"String"}, + "NewDBInstanceIdentifier":{"shape":"String"}, + "StorageType":{"shape":"String"}, + "TdeCredentialArn":{"shape":"String"}, + "TdeCredentialPassword":{"shape":"SensitiveString"}, + "CACertificateIdentifier":{"shape":"String"}, + "Domain":{"shape":"String"}, + "DomainFqdn":{"shape":"String"}, + "DomainOu":{"shape":"String"}, + "DomainAuthSecretArn":{"shape":"String"}, + "DomainDnsIps":{"shape":"StringList"}, + "DisableDomain":{"shape":"BooleanOptional"}, + "CopyTagsToSnapshot":{"shape":"BooleanOptional"}, + "MonitoringInterval":{"shape":"IntegerOptional"}, + "DBPortNumber":{"shape":"IntegerOptional"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "MonitoringRoleArn":{"shape":"String"}, + "DomainIAMRoleName":{"shape":"String"}, + "PromotionTier":{"shape":"IntegerOptional"}, + "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}, + "EnablePerformanceInsights":{"shape":"BooleanOptional"}, + "PerformanceInsightsKMSKeyId":{"shape":"String"}, + "PerformanceInsightsRetentionPeriod":{"shape":"IntegerOptional"}, + "CloudwatchLogsExportConfiguration":{"shape":"CloudwatchLogsExportConfiguration"}, + "ProcessorFeatures":{"shape":"ProcessorFeatureList"}, + "UseDefaultProcessorFeatures":{"shape":"BooleanOptional"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "MaxAllocatedStorage":{"shape":"IntegerOptional"}, + "CertificateRotationRestart":{"shape":"BooleanOptional"}, + "ReplicaMode":{"shape":"ReplicaMode"}, + "AutomationMode":{"shape":"AutomationMode"}, + "ResumeFullAutomationModeMinutes":{"shape":"IntegerOptional"}, + "EnableCustomerOwnedIp":{"shape":"BooleanOptional"}, + "NetworkType":{"shape":"String"}, + "AwsBackupRecoveryPointArn":{"shape":"AwsBackupRecoveryPointArn"}, + "ManageMasterUserPassword":{"shape":"BooleanOptional"}, + "RotateMasterUserPassword":{"shape":"BooleanOptional"}, + "MasterUserSecretKmsKeyId":{"shape":"String"}, + "MultiTenant":{"shape":"BooleanOptional"}, + "DedicatedLogVolume":{"shape":"BooleanOptional"}, + "Engine":{"shape":"String"} + } + }, + "ModifyDBInstanceResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "ModifyDBParameterGroupMessage":{ + "type":"structure", + "required":[ + "DBParameterGroupName", + "Parameters" + ], + "members":{ + "DBParameterGroupName":{"shape":"String"}, + "Parameters":{"shape":"ParametersList"} + } + }, + "ModifyDBProxyEndpointRequest":{ + "type":"structure", + "required":["DBProxyEndpointName"], + "members":{ + "DBProxyEndpointName":{"shape":"DBProxyEndpointName"}, + "NewDBProxyEndpointName":{"shape":"DBProxyEndpointName"}, + "VpcSecurityGroupIds":{"shape":"StringList"} + } + }, + "ModifyDBProxyEndpointResponse":{ + "type":"structure", + "members":{ + "DBProxyEndpoint":{"shape":"DBProxyEndpoint"} + } + }, + "ModifyDBProxyRequest":{ + "type":"structure", + "required":["DBProxyName"], + "members":{ + "DBProxyName":{"shape":"DBProxyName"}, + "NewDBProxyName":{"shape":"DBProxyName"}, + "Auth":{"shape":"UserAuthConfigList"}, + "RequireTLS":{"shape":"BooleanOptional"}, + "IdleClientTimeout":{"shape":"IntegerOptional"}, + "DebugLogging":{"shape":"BooleanOptional"}, + "RoleArn":{"shape":"Arn"}, + "SecurityGroups":{"shape":"StringList"} + } + }, + "ModifyDBProxyResponse":{ + "type":"structure", + "members":{ + "DBProxy":{"shape":"DBProxy"} + } + }, + "ModifyDBProxyTargetGroupRequest":{ + "type":"structure", + "required":[ + "TargetGroupName", + "DBProxyName" + ], + "members":{ + "TargetGroupName":{"shape":"DBProxyTargetGroupName"}, + "DBProxyName":{"shape":"DBProxyName"}, + "ConnectionPoolConfig":{"shape":"ConnectionPoolConfiguration"}, + "NewName":{"shape":"String"} + } + }, + "ModifyDBProxyTargetGroupResponse":{ + "type":"structure", + "members":{ + "DBProxyTargetGroup":{"shape":"DBProxyTargetGroup"} + } + }, + "ModifyDBRecommendationMessage":{ + "type":"structure", + "required":["RecommendationId"], + "members":{ + "RecommendationId":{"shape":"String"}, + "Locale":{"shape":"String"}, + "Status":{"shape":"String"}, + "RecommendedActionUpdates":{"shape":"RecommendedActionUpdateList"} + } + }, + "ModifyDBShardGroupMessage":{ + "type":"structure", + "required":["DBShardGroupIdentifier"], + "members":{ + "DBShardGroupIdentifier":{"shape":"DBShardGroupIdentifier"}, + "MaxACU":{"shape":"DoubleOptional"}, + "MinACU":{"shape":"DoubleOptional"} + } + }, + "ModifyDBSnapshotAttributeMessage":{ + "type":"structure", + "required":[ + "DBSnapshotIdentifier", + "AttributeName" + ], + "members":{ + "DBSnapshotIdentifier":{"shape":"String"}, + "AttributeName":{"shape":"String"}, + "ValuesToAdd":{"shape":"AttributeValueList"}, + "ValuesToRemove":{"shape":"AttributeValueList"} + } + }, + "ModifyDBSnapshotAttributeResult":{ + "type":"structure", + "members":{ + "DBSnapshotAttributesResult":{"shape":"DBSnapshotAttributesResult"} + } + }, + "ModifyDBSnapshotMessage":{ + "type":"structure", + "required":["DBSnapshotIdentifier"], + "members":{ + "DBSnapshotIdentifier":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "OptionGroupName":{"shape":"String"} + } + }, + "ModifyDBSnapshotResult":{ + "type":"structure", + "members":{ + "DBSnapshot":{"shape":"DBSnapshot"} + } + }, + "ModifyDBSubnetGroupMessage":{ + "type":"structure", + "required":[ + "DBSubnetGroupName", + "SubnetIds" + ], + "members":{ + "DBSubnetGroupName":{"shape":"String"}, + "DBSubnetGroupDescription":{"shape":"String"}, + "SubnetIds":{"shape":"SubnetIdentifierList"} + } + }, + "ModifyDBSubnetGroupResult":{ + "type":"structure", + "members":{ + "DBSubnetGroup":{"shape":"DBSubnetGroup"} + } + }, + "ModifyEventSubscriptionMessage":{ + "type":"structure", + "required":["SubscriptionName"], + "members":{ + "SubscriptionName":{"shape":"String"}, + "SnsTopicArn":{"shape":"String"}, + "SourceType":{"shape":"String"}, + "EventCategories":{"shape":"EventCategoriesList"}, + "Enabled":{"shape":"BooleanOptional"} + } + }, + "ModifyEventSubscriptionResult":{ + "type":"structure", + "members":{ + "EventSubscription":{"shape":"EventSubscription"} + } + }, + "ModifyGlobalClusterMessage":{ + "type":"structure", + "required":["GlobalClusterIdentifier"], + "members":{ + "GlobalClusterIdentifier":{"shape":"GlobalClusterIdentifier"}, + "NewGlobalClusterIdentifier":{"shape":"GlobalClusterIdentifier"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "EngineVersion":{"shape":"String"}, + "AllowMajorVersionUpgrade":{"shape":"BooleanOptional"} + } + }, + "ModifyGlobalClusterResult":{ + "type":"structure", + "members":{ + "GlobalCluster":{"shape":"GlobalCluster"} + } + }, + "ModifyIntegrationMessage":{ + "type":"structure", + "required":["IntegrationIdentifier"], + "members":{ + "IntegrationIdentifier":{"shape":"IntegrationIdentifier"}, + "IntegrationName":{"shape":"IntegrationName"}, + "DataFilter":{"shape":"DataFilter"}, + "Description":{"shape":"IntegrationDescription"} + } + }, + "ModifyOptionGroupMessage":{ + "type":"structure", + "required":["OptionGroupName"], + "members":{ + "OptionGroupName":{"shape":"String"}, + "OptionsToInclude":{"shape":"OptionConfigurationList"}, + "OptionsToRemove":{"shape":"OptionNamesList"}, + "ApplyImmediately":{"shape":"Boolean"} + } + }, + "ModifyOptionGroupResult":{ + "type":"structure", + "members":{ + "OptionGroup":{"shape":"OptionGroup"} + } + }, + "ModifyTenantDatabaseMessage":{ + "type":"structure", + "required":[ + "DBInstanceIdentifier", + "TenantDBName" + ], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "TenantDBName":{"shape":"String"}, + "MasterUserPassword":{"shape":"SensitiveString"}, + "NewTenantDBName":{"shape":"String"}, + "ManageMasterUserPassword":{"shape":"BooleanOptional"}, + "RotateMasterUserPassword":{"shape":"BooleanOptional"}, + "MasterUserSecretKmsKeyId":{"shape":"String"} + } + }, + "ModifyTenantDatabaseResult":{ + "type":"structure", + "members":{ + "TenantDatabase":{"shape":"TenantDatabase"} + } + }, + "NetworkTypeNotSupported":{ + "type":"structure", + "members":{}, + "error":{ + "code":"NetworkTypeNotSupported", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "Option":{ + "type":"structure", + "members":{ + "OptionName":{"shape":"String"}, + "OptionDescription":{"shape":"String"}, + "Persistent":{"shape":"Boolean"}, + "Permanent":{"shape":"Boolean"}, + "Port":{"shape":"IntegerOptional"}, + "OptionVersion":{"shape":"String"}, + "OptionSettings":{"shape":"OptionSettingConfigurationList"}, + "DBSecurityGroupMemberships":{"shape":"DBSecurityGroupMembershipList"}, + "VpcSecurityGroupMemberships":{"shape":"VpcSecurityGroupMembershipList"} + } + }, + "OptionConfiguration":{ + "type":"structure", + "required":["OptionName"], + "members":{ + "OptionName":{"shape":"String"}, + "Port":{"shape":"IntegerOptional"}, + "OptionVersion":{"shape":"String"}, + "DBSecurityGroupMemberships":{"shape":"DBSecurityGroupNameList"}, + "VpcSecurityGroupMemberships":{"shape":"VpcSecurityGroupIdList"}, + "OptionSettings":{"shape":"OptionSettingsList"} + } + }, + "OptionConfigurationList":{ + "type":"list", + "member":{ + "shape":"OptionConfiguration", + "locationName":"OptionConfiguration" + } + }, + "OptionGroup":{ + "type":"structure", + "members":{ + "OptionGroupName":{"shape":"String"}, + "OptionGroupDescription":{"shape":"String"}, + "EngineName":{"shape":"String"}, + "MajorEngineVersion":{"shape":"String"}, + "Options":{"shape":"OptionsList"}, + "AllowsVpcAndNonVpcInstanceMemberships":{"shape":"Boolean"}, + "VpcId":{"shape":"String"}, + "OptionGroupArn":{"shape":"String"}, + "SourceOptionGroup":{"shape":"String"}, + "SourceAccountId":{"shape":"String"}, + "CopyTimestamp":{"shape":"TStamp"} + }, + "wrapper":true + }, + "OptionGroupAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"OptionGroupAlreadyExistsFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "OptionGroupMembership":{ + "type":"structure", + "members":{ + "OptionGroupName":{"shape":"String"}, + "Status":{"shape":"String"} + } + }, + "OptionGroupMembershipList":{ + "type":"list", + "member":{ + "shape":"OptionGroupMembership", + "locationName":"OptionGroupMembership" + } + }, + "OptionGroupNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"OptionGroupNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "OptionGroupOption":{ + "type":"structure", + "members":{ + "Name":{"shape":"String"}, + "Description":{"shape":"String"}, + "EngineName":{"shape":"String"}, + "MajorEngineVersion":{"shape":"String"}, + "MinimumRequiredMinorEngineVersion":{"shape":"String"}, + "PortRequired":{"shape":"Boolean"}, + "DefaultPort":{"shape":"IntegerOptional"}, + "OptionsDependedOn":{"shape":"OptionsDependedOn"}, + "OptionsConflictsWith":{"shape":"OptionsConflictsWith"}, + "Persistent":{"shape":"Boolean"}, + "Permanent":{"shape":"Boolean"}, + "RequiresAutoMinorEngineVersionUpgrade":{"shape":"Boolean"}, + "VpcOnly":{"shape":"Boolean"}, + "SupportsOptionVersionDowngrade":{"shape":"BooleanOptional"}, + "OptionGroupOptionSettings":{"shape":"OptionGroupOptionSettingsList"}, + "OptionGroupOptionVersions":{"shape":"OptionGroupOptionVersionsList"}, + "CopyableCrossAccount":{"shape":"BooleanOptional"} + } + }, + "OptionGroupOptionSetting":{ + "type":"structure", + "members":{ + "SettingName":{"shape":"String"}, + "SettingDescription":{"shape":"String"}, + "DefaultValue":{"shape":"String"}, + "ApplyType":{"shape":"String"}, + "AllowedValues":{"shape":"String"}, + "IsModifiable":{"shape":"Boolean"}, + "IsRequired":{"shape":"Boolean"}, + "MinimumEngineVersionPerAllowedValue":{"shape":"MinimumEngineVersionPerAllowedValueList"} + } + }, + "OptionGroupOptionSettingsList":{ + "type":"list", + "member":{ + "shape":"OptionGroupOptionSetting", + "locationName":"OptionGroupOptionSetting" + } + }, + "OptionGroupOptionVersionsList":{ + "type":"list", + "member":{ + "shape":"OptionVersion", + "locationName":"OptionVersion" + } + }, + "OptionGroupOptionsList":{ + "type":"list", + "member":{ + "shape":"OptionGroupOption", + "locationName":"OptionGroupOption" + } + }, + "OptionGroupOptionsMessage":{ + "type":"structure", + "members":{ + "OptionGroupOptions":{"shape":"OptionGroupOptionsList"}, + "Marker":{"shape":"String"} + } + }, + "OptionGroupQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"OptionGroupQuotaExceededFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "OptionGroups":{ + "type":"structure", + "members":{ + "OptionGroupsList":{"shape":"OptionGroupsList"}, + "Marker":{"shape":"String"} + } + }, + "OptionGroupsList":{ + "type":"list", + "member":{ + "shape":"OptionGroup", + "locationName":"OptionGroup" + } + }, + "OptionNamesList":{ + "type":"list", + "member":{"shape":"String"} + }, + "OptionSetting":{ + "type":"structure", + "members":{ + "Name":{"shape":"String"}, + "Value":{"shape":"PotentiallySensitiveOptionSettingValue"}, + "DefaultValue":{"shape":"String"}, + "Description":{"shape":"String"}, + "ApplyType":{"shape":"String"}, + "DataType":{"shape":"String"}, + "AllowedValues":{"shape":"String"}, + "IsModifiable":{"shape":"Boolean"}, + "IsCollection":{"shape":"Boolean"} + } + }, + "OptionSettingConfigurationList":{ + "type":"list", + "member":{ + "shape":"OptionSetting", + "locationName":"OptionSetting" + } + }, + "OptionSettingsList":{ + "type":"list", + "member":{ + "shape":"OptionSetting", + "locationName":"OptionSetting" + } + }, + "OptionVersion":{ + "type":"structure", + "members":{ + "Version":{"shape":"String"}, + "IsDefault":{"shape":"Boolean"} + } + }, + "OptionsConflictsWith":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"OptionConflictName" + } + }, + "OptionsDependedOn":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"OptionName" + } + }, + "OptionsList":{ + "type":"list", + "member":{ + "shape":"Option", + "locationName":"Option" + } + }, + "OrderableDBInstanceOption":{ + "type":"structure", + "members":{ + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "LicenseModel":{"shape":"String"}, + "AvailabilityZoneGroup":{"shape":"String"}, + "AvailabilityZones":{"shape":"AvailabilityZoneList"}, + "MultiAZCapable":{"shape":"Boolean"}, + "ReadReplicaCapable":{"shape":"Boolean"}, + "Vpc":{"shape":"Boolean"}, + "SupportsStorageEncryption":{"shape":"Boolean"}, + "StorageType":{"shape":"String"}, + "SupportsIops":{"shape":"Boolean"}, + "SupportsStorageThroughput":{"shape":"Boolean"}, + "SupportsEnhancedMonitoring":{"shape":"Boolean"}, + "SupportsIAMDatabaseAuthentication":{"shape":"Boolean"}, + "SupportsPerformanceInsights":{"shape":"Boolean"}, + "MinStorageSize":{"shape":"IntegerOptional"}, + "MaxStorageSize":{"shape":"IntegerOptional"}, + "MinIopsPerDbInstance":{"shape":"IntegerOptional"}, + "MaxIopsPerDbInstance":{"shape":"IntegerOptional"}, + "MinIopsPerGib":{"shape":"DoubleOptional"}, + "MaxIopsPerGib":{"shape":"DoubleOptional"}, + "MinStorageThroughputPerDbInstance":{"shape":"IntegerOptional"}, + "MaxStorageThroughputPerDbInstance":{"shape":"IntegerOptional"}, + "MinStorageThroughputPerIops":{"shape":"DoubleOptional"}, + "MaxStorageThroughputPerIops":{"shape":"DoubleOptional"}, + "AvailableProcessorFeatures":{"shape":"AvailableProcessorFeatureList"}, + "SupportedEngineModes":{"shape":"EngineModeList"}, + "SupportsStorageAutoscaling":{"shape":"BooleanOptional"}, + "SupportsKerberosAuthentication":{"shape":"BooleanOptional"}, + "OutpostCapable":{"shape":"Boolean"}, + "SupportedActivityStreamModes":{"shape":"ActivityStreamModeList"}, + "SupportsGlobalDatabases":{"shape":"Boolean"}, + "SupportedNetworkTypes":{"shape":"StringList"}, + "SupportsClusters":{"shape":"Boolean"}, + "SupportsDedicatedLogVolume":{"shape":"Boolean"} + }, + "wrapper":true + }, + "OrderableDBInstanceOptionsList":{ + "type":"list", + "member":{ + "shape":"OrderableDBInstanceOption", + "locationName":"OrderableDBInstanceOption" + } + }, + "OrderableDBInstanceOptionsMessage":{ + "type":"structure", + "members":{ + "OrderableDBInstanceOptions":{"shape":"OrderableDBInstanceOptionsList"}, + "Marker":{"shape":"String"} + } + }, + "Outpost":{ + "type":"structure", + "members":{ + "Arn":{"shape":"String"} + } + }, + "Parameter":{ + "type":"structure", + "members":{ + "ParameterName":{"shape":"String"}, + "ParameterValue":{"shape":"PotentiallySensitiveParameterValue"}, + "Description":{"shape":"String"}, + "Source":{"shape":"String"}, + "ApplyType":{"shape":"String"}, + "DataType":{"shape":"String"}, + "AllowedValues":{"shape":"String"}, + "IsModifiable":{"shape":"Boolean"}, + "MinimumEngineVersion":{"shape":"String"}, + "ApplyMethod":{"shape":"ApplyMethod"}, + "SupportedEngineModes":{"shape":"EngineModeList"} + } + }, + "ParametersList":{ + "type":"list", + "member":{ + "shape":"Parameter", + "locationName":"Parameter" + } + }, + "PendingCloudwatchLogsExports":{ + "type":"structure", + "members":{ + "LogTypesToEnable":{"shape":"LogTypeList"}, + "LogTypesToDisable":{"shape":"LogTypeList"} + } + }, + "PendingMaintenanceAction":{ + "type":"structure", + "members":{ + "Action":{"shape":"String"}, + "AutoAppliedAfterDate":{"shape":"TStamp"}, + "ForcedApplyDate":{"shape":"TStamp"}, + "OptInStatus":{"shape":"String"}, + "CurrentApplyDate":{"shape":"TStamp"}, + "Description":{"shape":"String"} + } + }, + "PendingMaintenanceActionDetails":{ + "type":"list", + "member":{ + "shape":"PendingMaintenanceAction", + "locationName":"PendingMaintenanceAction" + } + }, + "PendingMaintenanceActions":{ + "type":"list", + "member":{ + "shape":"ResourcePendingMaintenanceActions", + "locationName":"ResourcePendingMaintenanceActions" + } + }, + "PendingMaintenanceActionsMessage":{ + "type":"structure", + "members":{ + "PendingMaintenanceActions":{"shape":"PendingMaintenanceActions"}, + "Marker":{"shape":"String"} + } + }, + "PendingModifiedValues":{ + "type":"structure", + "members":{ + "DBInstanceClass":{"shape":"String"}, + "AllocatedStorage":{"shape":"IntegerOptional"}, + "MasterUserPassword":{"shape":"SensitiveString"}, + "Port":{"shape":"IntegerOptional"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "EngineVersion":{"shape":"String"}, + "LicenseModel":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "StorageThroughput":{"shape":"IntegerOptional"}, + "DBInstanceIdentifier":{"shape":"String"}, + "StorageType":{"shape":"String"}, + "CACertificateIdentifier":{"shape":"String"}, + "DBSubnetGroupName":{"shape":"String"}, + "PendingCloudwatchLogsExports":{"shape":"PendingCloudwatchLogsExports"}, + "ProcessorFeatures":{"shape":"ProcessorFeatureList"}, + "AutomationMode":{"shape":"AutomationMode"}, + "ResumeFullAutomationModeTime":{"shape":"TStamp"}, + "MultiTenant":{"shape":"BooleanOptional"}, + "IAMDatabaseAuthenticationEnabled":{"shape":"BooleanOptional"}, + "DedicatedLogVolume":{"shape":"BooleanOptional"}, + "Engine":{"shape":"String"} + } + }, + "PerformanceInsightsMetricDimensionGroup":{ + "type":"structure", + "members":{ + "Dimensions":{"shape":"StringList"}, + "Group":{"shape":"String"}, + "Limit":{"shape":"Integer"} + } + }, + "PerformanceInsightsMetricQuery":{ + "type":"structure", + "members":{ + "GroupBy":{"shape":"PerformanceInsightsMetricDimensionGroup"}, + "Metric":{"shape":"String"} + } + }, + "PerformanceIssueDetails":{ + "type":"structure", + "members":{ + "StartTime":{"shape":"TStamp"}, + "EndTime":{"shape":"TStamp"}, + "Metrics":{"shape":"MetricList"}, + "Analysis":{"shape":"String"} + } + }, + "PointInTimeRestoreNotEnabledFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"PointInTimeRestoreNotEnabled", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "PotentiallySensitiveOptionSettingValue":{ + "type":"string", + "sensitive":true + }, + "PotentiallySensitiveParameterValue":{"type":"string"}, + "ProcessorFeature":{ + "type":"structure", + "members":{ + "Name":{"shape":"String"}, + "Value":{"shape":"String"} + } + }, + "ProcessorFeatureList":{ + "type":"list", + "member":{ + "shape":"ProcessorFeature", + "locationName":"ProcessorFeature" + } + }, + "PromoteReadReplicaDBClusterMessage":{ + "type":"structure", + "required":["DBClusterIdentifier"], + "members":{ + "DBClusterIdentifier":{"shape":"String"} + } + }, + "PromoteReadReplicaDBClusterResult":{ + "type":"structure", + "members":{ + "DBCluster":{"shape":"DBCluster"} + } + }, + "PromoteReadReplicaMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "PreferredBackupWindow":{"shape":"String"} + } + }, + "PromoteReadReplicaResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "ProvisionedIopsNotAvailableInAZFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"ProvisionedIopsNotAvailableInAZFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "PurchaseReservedDBInstancesOfferingMessage":{ + "type":"structure", + "required":["ReservedDBInstancesOfferingId"], + "members":{ + "ReservedDBInstancesOfferingId":{"shape":"String"}, + "ReservedDBInstanceId":{"shape":"String"}, + "DBInstanceCount":{"shape":"IntegerOptional"}, + "Tags":{"shape":"TagList"} + } + }, + "PurchaseReservedDBInstancesOfferingResult":{ + "type":"structure", + "members":{ + "ReservedDBInstance":{"shape":"ReservedDBInstance"} + } + }, + "Range":{ + "type":"structure", + "members":{ + "From":{"shape":"Integer"}, + "To":{"shape":"Integer"}, + "Step":{"shape":"IntegerOptional"} + } + }, + "RangeList":{ + "type":"list", + "member":{ + "shape":"Range", + "locationName":"Range" + } + }, + "RdsCustomClusterConfiguration":{ + "type":"structure", + "members":{ + "InterconnectSubnetId":{"shape":"String"}, + "TransitGatewayMulticastDomainId":{"shape":"String"}, + "ReplicaMode":{"shape":"ReplicaMode"} + } + }, + "ReadReplicaDBClusterIdentifierList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"ReadReplicaDBClusterIdentifier" + } + }, + "ReadReplicaDBInstanceIdentifierList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"ReadReplicaDBInstanceIdentifier" + } + }, + "ReadReplicaIdentifierList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"ReadReplicaIdentifier" + } + }, + "ReadersArnList":{ + "type":"list", + "member":{"shape":"String"} + }, + "RebootDBClusterMessage":{ + "type":"structure", + "required":["DBClusterIdentifier"], + "members":{ + "DBClusterIdentifier":{"shape":"String"} + } + }, + "RebootDBClusterResult":{ + "type":"structure", + "members":{ + "DBCluster":{"shape":"DBCluster"} + } + }, + "RebootDBInstanceMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "ForceFailover":{"shape":"BooleanOptional"} + } + }, + "RebootDBInstanceResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "RebootDBShardGroupMessage":{ + "type":"structure", + "required":["DBShardGroupIdentifier"], + "members":{ + "DBShardGroupIdentifier":{"shape":"DBShardGroupIdentifier"} + } + }, + "RecommendedAction":{ + "type":"structure", + "members":{ + "ActionId":{"shape":"String"}, + "Title":{"shape":"String"}, + "Description":{"shape":"String"}, + "Operation":{"shape":"String"}, + "Parameters":{"shape":"RecommendedActionParameterList"}, + "ApplyModes":{"shape":"StringList"}, + "Status":{"shape":"String"}, + "IssueDetails":{"shape":"IssueDetails"}, + "ContextAttributes":{"shape":"ContextAttributeList"} + } + }, + "RecommendedActionList":{ + "type":"list", + "member":{"shape":"RecommendedAction"} + }, + "RecommendedActionParameter":{ + "type":"structure", + "members":{ + "Key":{"shape":"String"}, + "Value":{"shape":"String"} + } + }, + "RecommendedActionParameterList":{ + "type":"list", + "member":{"shape":"RecommendedActionParameter"} + }, + "RecommendedActionUpdate":{ + "type":"structure", + "required":[ + "ActionId", + "Status" + ], + "members":{ + "ActionId":{"shape":"String"}, + "Status":{"shape":"String"} + } + }, + "RecommendedActionUpdateList":{ + "type":"list", + "member":{"shape":"RecommendedActionUpdate"} + }, + "RecurringCharge":{ + "type":"structure", + "members":{ + "RecurringChargeAmount":{"shape":"Double"}, + "RecurringChargeFrequency":{"shape":"String"} + }, + "wrapper":true + }, + "RecurringChargeList":{ + "type":"list", + "member":{ + "shape":"RecurringCharge", + "locationName":"RecurringCharge" + } + }, + "ReferenceDetails":{ + "type":"structure", + "members":{ + "ScalarReferenceDetails":{"shape":"ScalarReferenceDetails"} + } + }, + "RegisterDBProxyTargetsRequest":{ + "type":"structure", + "required":["DBProxyName"], + "members":{ + "DBProxyName":{"shape":"DBProxyName"}, + "TargetGroupName":{"shape":"DBProxyTargetGroupName"}, + "DBInstanceIdentifiers":{"shape":"StringList"}, + "DBClusterIdentifiers":{"shape":"StringList"} + } + }, + "RegisterDBProxyTargetsResponse":{ + "type":"structure", + "members":{ + "DBProxyTargets":{"shape":"TargetList"} + } + }, + "RemoveFromGlobalClusterMessage":{ + "type":"structure", + "required":[ + "GlobalClusterIdentifier", + "DbClusterIdentifier" + ], + "members":{ + "GlobalClusterIdentifier":{"shape":"GlobalClusterIdentifier"}, + "DbClusterIdentifier":{"shape":"String"} + } + }, + "RemoveFromGlobalClusterResult":{ + "type":"structure", + "members":{ + "GlobalCluster":{"shape":"GlobalCluster"} + } + }, + "RemoveRoleFromDBClusterMessage":{ + "type":"structure", + "required":[ + "DBClusterIdentifier", + "RoleArn" + ], + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "RoleArn":{"shape":"String"}, + "FeatureName":{"shape":"String"} + } + }, + "RemoveRoleFromDBInstanceMessage":{ + "type":"structure", + "required":[ + "DBInstanceIdentifier", + "RoleArn", + "FeatureName" + ], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "RoleArn":{"shape":"String"}, + "FeatureName":{"shape":"String"} + } + }, + "RemoveSourceIdentifierFromSubscriptionMessage":{ + "type":"structure", + "required":[ + "SubscriptionName", + "SourceIdentifier" + ], + "members":{ + "SubscriptionName":{"shape":"String"}, + "SourceIdentifier":{"shape":"String"} + } + }, + "RemoveSourceIdentifierFromSubscriptionResult":{ + "type":"structure", + "members":{ + "EventSubscription":{"shape":"EventSubscription"} + } + }, + "RemoveTagsFromResourceMessage":{ + "type":"structure", + "required":[ + "ResourceName", + "TagKeys" + ], + "members":{ + "ResourceName":{"shape":"String"}, + "TagKeys":{"shape":"KeyList"} + } + }, + "ReplicaMode":{ + "type":"string", + "enum":[ + "open-read-only", + "mounted" + ] + }, + "ReservedDBInstance":{ + "type":"structure", + "members":{ + "ReservedDBInstanceId":{"shape":"String"}, + "ReservedDBInstancesOfferingId":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "StartTime":{"shape":"TStamp"}, + "Duration":{"shape":"Integer"}, + "FixedPrice":{"shape":"Double"}, + "UsagePrice":{"shape":"Double"}, + "CurrencyCode":{"shape":"String"}, + "DBInstanceCount":{"shape":"Integer"}, + "ProductDescription":{"shape":"String"}, + "OfferingType":{"shape":"String"}, + "MultiAZ":{"shape":"Boolean"}, + "State":{"shape":"String"}, + "RecurringCharges":{"shape":"RecurringChargeList"}, + "ReservedDBInstanceArn":{"shape":"String"}, + "LeaseId":{"shape":"String"} + }, + "wrapper":true + }, + "ReservedDBInstanceAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"ReservedDBInstanceAlreadyExists", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "ReservedDBInstanceList":{ + "type":"list", + "member":{ + "shape":"ReservedDBInstance", + "locationName":"ReservedDBInstance" + } + }, + "ReservedDBInstanceMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "ReservedDBInstances":{"shape":"ReservedDBInstanceList"} + } + }, + "ReservedDBInstanceNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"ReservedDBInstanceNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "ReservedDBInstanceQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"ReservedDBInstanceQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "ReservedDBInstancesOffering":{ + "type":"structure", + "members":{ + "ReservedDBInstancesOfferingId":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "Duration":{"shape":"Integer"}, + "FixedPrice":{"shape":"Double"}, + "UsagePrice":{"shape":"Double"}, + "CurrencyCode":{"shape":"String"}, + "ProductDescription":{"shape":"String"}, + "OfferingType":{"shape":"String"}, + "MultiAZ":{"shape":"Boolean"}, + "RecurringCharges":{"shape":"RecurringChargeList"} + }, + "wrapper":true + }, + "ReservedDBInstancesOfferingList":{ + "type":"list", + "member":{ + "shape":"ReservedDBInstancesOffering", + "locationName":"ReservedDBInstancesOffering" + } + }, + "ReservedDBInstancesOfferingMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "ReservedDBInstancesOfferings":{"shape":"ReservedDBInstancesOfferingList"} + } + }, + "ReservedDBInstancesOfferingNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"ReservedDBInstancesOfferingNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "ResetDBClusterParameterGroupMessage":{ + "type":"structure", + "required":["DBClusterParameterGroupName"], + "members":{ + "DBClusterParameterGroupName":{"shape":"String"}, + "ResetAllParameters":{"shape":"Boolean"}, + "Parameters":{"shape":"ParametersList"} + } + }, + "ResetDBParameterGroupMessage":{ + "type":"structure", + "required":["DBParameterGroupName"], + "members":{ + "DBParameterGroupName":{"shape":"String"}, + "ResetAllParameters":{"shape":"Boolean"}, + "Parameters":{"shape":"ParametersList"} + } + }, + "ResourceNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"ResourceNotFoundFault", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "ResourcePendingMaintenanceActions":{ + "type":"structure", + "members":{ + "ResourceIdentifier":{"shape":"String"}, + "PendingMaintenanceActionDetails":{"shape":"PendingMaintenanceActionDetails"} + }, + "wrapper":true + }, + "RestoreDBClusterFromS3Message":{ + "type":"structure", + "required":[ + "DBClusterIdentifier", + "Engine", + "MasterUsername", + "SourceEngine", + "SourceEngineVersion", + "S3BucketName", + "S3IngestionRoleArn" + ], + "members":{ + "AvailabilityZones":{"shape":"AvailabilityZones"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "CharacterSetName":{"shape":"String"}, + "DatabaseName":{"shape":"String"}, + "DBClusterIdentifier":{"shape":"String"}, + "DBClusterParameterGroupName":{"shape":"String"}, + "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"}, + "DBSubnetGroupName":{"shape":"String"}, + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "Port":{"shape":"IntegerOptional"}, + "MasterUsername":{"shape":"String"}, + "MasterUserPassword":{"shape":"SensitiveString"}, + "OptionGroupName":{"shape":"String"}, + "PreferredBackupWindow":{"shape":"String"}, + "PreferredMaintenanceWindow":{"shape":"String"}, + "Tags":{"shape":"TagList"}, + "StorageEncrypted":{"shape":"BooleanOptional"}, + "KmsKeyId":{"shape":"String"}, + "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}, + "SourceEngine":{"shape":"String"}, + "SourceEngineVersion":{"shape":"String"}, + "S3BucketName":{"shape":"String"}, + "S3Prefix":{"shape":"String"}, + "S3IngestionRoleArn":{"shape":"String"}, + "BacktrackWindow":{"shape":"LongOptional"}, + "EnableCloudwatchLogsExports":{"shape":"LogTypeList"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "CopyTagsToSnapshot":{"shape":"BooleanOptional"}, + "Domain":{"shape":"String"}, + "DomainIAMRoleName":{"shape":"String"}, + "StorageType":{"shape":"String"}, + "ServerlessV2ScalingConfiguration":{"shape":"ServerlessV2ScalingConfiguration"}, + "ManageMasterUserPassword":{"shape":"BooleanOptional"}, + "MasterUserSecretKmsKeyId":{"shape":"String"}, + "EngineLifecycleSupport":{"shape":"String"} + } + }, + "RestoreDBClusterFromS3Result":{ + "type":"structure", + "members":{ + "DBCluster":{"shape":"DBCluster"} + } + }, + "RestoreDBClusterFromSnapshotMessage":{ + "type":"structure", + "required":[ + "DBClusterIdentifier", + "SnapshotIdentifier", + "Engine" + ], + "members":{ + "AvailabilityZones":{"shape":"AvailabilityZones"}, + "DBClusterIdentifier":{"shape":"String"}, + "SnapshotIdentifier":{"shape":"String"}, + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "Port":{"shape":"IntegerOptional"}, + "DBSubnetGroupName":{"shape":"String"}, + "DatabaseName":{"shape":"String"}, + "OptionGroupName":{"shape":"String"}, + "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"}, + "Tags":{"shape":"TagList"}, + "KmsKeyId":{"shape":"String"}, + "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}, + "BacktrackWindow":{"shape":"LongOptional"}, + "EnableCloudwatchLogsExports":{"shape":"LogTypeList"}, + "EngineMode":{"shape":"String"}, + "ScalingConfiguration":{"shape":"ScalingConfiguration"}, + "DBClusterParameterGroupName":{"shape":"String"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "CopyTagsToSnapshot":{"shape":"BooleanOptional"}, + "Domain":{"shape":"String"}, + "DomainIAMRoleName":{"shape":"String"}, + "DBClusterInstanceClass":{"shape":"String"}, + "StorageType":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "ServerlessV2ScalingConfiguration":{"shape":"ServerlessV2ScalingConfiguration"}, + "RdsCustomClusterConfiguration":{"shape":"RdsCustomClusterConfiguration"}, + "MonitoringInterval":{"shape":"IntegerOptional"}, + "MonitoringRoleArn":{"shape":"String"}, + "EnablePerformanceInsights":{"shape":"BooleanOptional"}, + "PerformanceInsightsKMSKeyId":{"shape":"String"}, + "PerformanceInsightsRetentionPeriod":{"shape":"IntegerOptional"}, + "EngineLifecycleSupport":{"shape":"String"} + } + }, + "RestoreDBClusterFromSnapshotResult":{ + "type":"structure", + "members":{ + "DBCluster":{"shape":"DBCluster"} + } + }, + "RestoreDBClusterToPointInTimeMessage":{ + "type":"structure", + "required":["DBClusterIdentifier"], + "members":{ + "DBClusterIdentifier":{"shape":"String"}, + "RestoreType":{"shape":"String"}, + "SourceDBClusterIdentifier":{"shape":"String"}, + "RestoreToTime":{"shape":"TStamp"}, + "UseLatestRestorableTime":{"shape":"Boolean"}, + "Port":{"shape":"IntegerOptional"}, + "DBSubnetGroupName":{"shape":"String"}, + "OptionGroupName":{"shape":"String"}, + "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"}, + "Tags":{"shape":"TagList"}, + "KmsKeyId":{"shape":"String"}, + "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}, + "BacktrackWindow":{"shape":"LongOptional"}, + "EnableCloudwatchLogsExports":{"shape":"LogTypeList"}, + "DBClusterParameterGroupName":{"shape":"String"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "CopyTagsToSnapshot":{"shape":"BooleanOptional"}, + "Domain":{"shape":"String"}, + "DomainIAMRoleName":{"shape":"String"}, + "DBClusterInstanceClass":{"shape":"String"}, + "StorageType":{"shape":"String"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "Iops":{"shape":"IntegerOptional"}, + "SourceDbClusterResourceId":{"shape":"String"}, + "ServerlessV2ScalingConfiguration":{"shape":"ServerlessV2ScalingConfiguration"}, + "ScalingConfiguration":{"shape":"ScalingConfiguration"}, + "EngineMode":{"shape":"String"}, + "RdsCustomClusterConfiguration":{"shape":"RdsCustomClusterConfiguration"}, + "MonitoringInterval":{"shape":"IntegerOptional"}, + "MonitoringRoleArn":{"shape":"String"}, + "EnablePerformanceInsights":{"shape":"BooleanOptional"}, + "PerformanceInsightsKMSKeyId":{"shape":"String"}, + "PerformanceInsightsRetentionPeriod":{"shape":"IntegerOptional"}, + "EngineLifecycleSupport":{"shape":"String"} + } + }, + "RestoreDBClusterToPointInTimeResult":{ + "type":"structure", + "members":{ + "DBCluster":{"shape":"DBCluster"} + } + }, + "RestoreDBInstanceFromDBSnapshotMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "DBSnapshotIdentifier":{"shape":"String"}, + "DBInstanceClass":{"shape":"String"}, + "Port":{"shape":"IntegerOptional"}, + "AvailabilityZone":{"shape":"String"}, + "DBSubnetGroupName":{"shape":"String"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"}, + "LicenseModel":{"shape":"String"}, + "DBName":{"shape":"String"}, + "Engine":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "StorageThroughput":{"shape":"IntegerOptional"}, + "OptionGroupName":{"shape":"String"}, + "Tags":{"shape":"TagList"}, + "StorageType":{"shape":"String"}, + "TdeCredentialArn":{"shape":"String"}, + "TdeCredentialPassword":{"shape":"SensitiveString"}, + "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"}, + "Domain":{"shape":"String"}, + "DomainFqdn":{"shape":"String"}, + "DomainOu":{"shape":"String"}, + "DomainAuthSecretArn":{"shape":"String"}, + "DomainDnsIps":{"shape":"StringList"}, + "CopyTagsToSnapshot":{"shape":"BooleanOptional"}, + "DomainIAMRoleName":{"shape":"String"}, + "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}, + "EnableCloudwatchLogsExports":{"shape":"LogTypeList"}, + "ProcessorFeatures":{"shape":"ProcessorFeatureList"}, + "UseDefaultProcessorFeatures":{"shape":"BooleanOptional"}, + "DBParameterGroupName":{"shape":"String"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "EnableCustomerOwnedIp":{"shape":"BooleanOptional"}, + "NetworkType":{"shape":"String"}, + "CustomIamInstanceProfile":{"shape":"String"}, + "AllocatedStorage":{"shape":"IntegerOptional"}, + "DBClusterSnapshotIdentifier":{"shape":"String"}, + "DedicatedLogVolume":{"shape":"BooleanOptional"}, + "EngineLifecycleSupport":{"shape":"String"}, + "ManageMasterUserPassword":{"shape":"BooleanOptional"}, + "MasterUserSecretKmsKeyId":{"shape":"String"} + } + }, + "RestoreDBInstanceFromDBSnapshotResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "RestoreDBInstanceFromS3Message":{ + "type":"structure", + "required":[ + "DBInstanceIdentifier", + "DBInstanceClass", + "Engine", + "SourceEngine", + "SourceEngineVersion", + "S3BucketName", + "S3IngestionRoleArn" + ], + "members":{ + "DBName":{"shape":"String"}, + "DBInstanceIdentifier":{"shape":"String"}, + "AllocatedStorage":{"shape":"IntegerOptional"}, + "DBInstanceClass":{"shape":"String"}, + "Engine":{"shape":"String"}, + "MasterUsername":{"shape":"String"}, + "MasterUserPassword":{"shape":"SensitiveString"}, + "DBSecurityGroups":{"shape":"DBSecurityGroupNameList"}, + "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"}, + "AvailabilityZone":{"shape":"String"}, + "DBSubnetGroupName":{"shape":"String"}, + "PreferredMaintenanceWindow":{"shape":"String"}, + "DBParameterGroupName":{"shape":"String"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "PreferredBackupWindow":{"shape":"String"}, + "Port":{"shape":"IntegerOptional"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "EngineVersion":{"shape":"String"}, + "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"}, + "LicenseModel":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "StorageThroughput":{"shape":"IntegerOptional"}, + "OptionGroupName":{"shape":"String"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "Tags":{"shape":"TagList"}, + "StorageType":{"shape":"String"}, + "StorageEncrypted":{"shape":"BooleanOptional"}, + "KmsKeyId":{"shape":"String"}, + "CopyTagsToSnapshot":{"shape":"BooleanOptional"}, + "MonitoringInterval":{"shape":"IntegerOptional"}, + "MonitoringRoleArn":{"shape":"String"}, + "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}, + "SourceEngine":{"shape":"String"}, + "SourceEngineVersion":{"shape":"String"}, + "S3BucketName":{"shape":"String"}, + "S3Prefix":{"shape":"String"}, + "S3IngestionRoleArn":{"shape":"String"}, + "EnablePerformanceInsights":{"shape":"BooleanOptional"}, + "PerformanceInsightsKMSKeyId":{"shape":"String"}, + "PerformanceInsightsRetentionPeriod":{"shape":"IntegerOptional"}, + "EnableCloudwatchLogsExports":{"shape":"LogTypeList"}, + "ProcessorFeatures":{"shape":"ProcessorFeatureList"}, + "UseDefaultProcessorFeatures":{"shape":"BooleanOptional"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "MaxAllocatedStorage":{"shape":"IntegerOptional"}, + "NetworkType":{"shape":"String"}, + "ManageMasterUserPassword":{"shape":"BooleanOptional"}, + "MasterUserSecretKmsKeyId":{"shape":"String"}, + "DedicatedLogVolume":{"shape":"BooleanOptional"}, + "EngineLifecycleSupport":{"shape":"String"} + } + }, + "RestoreDBInstanceFromS3Result":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "RestoreDBInstanceToPointInTimeMessage":{ + "type":"structure", + "required":["TargetDBInstanceIdentifier"], + "members":{ + "SourceDBInstanceIdentifier":{"shape":"String"}, + "TargetDBInstanceIdentifier":{"shape":"String"}, + "RestoreTime":{"shape":"TStamp"}, + "UseLatestRestorableTime":{"shape":"Boolean"}, + "DBInstanceClass":{"shape":"String"}, + "Port":{"shape":"IntegerOptional"}, + "AvailabilityZone":{"shape":"String"}, + "DBSubnetGroupName":{"shape":"String"}, + "MultiAZ":{"shape":"BooleanOptional"}, + "PubliclyAccessible":{"shape":"BooleanOptional"}, + "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"}, + "LicenseModel":{"shape":"String"}, + "DBName":{"shape":"String"}, + "Engine":{"shape":"String"}, + "Iops":{"shape":"IntegerOptional"}, + "StorageThroughput":{"shape":"IntegerOptional"}, + "OptionGroupName":{"shape":"String"}, + "CopyTagsToSnapshot":{"shape":"BooleanOptional"}, + "Tags":{"shape":"TagList"}, + "StorageType":{"shape":"String"}, + "TdeCredentialArn":{"shape":"String"}, + "TdeCredentialPassword":{"shape":"SensitiveString"}, + "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"}, + "Domain":{"shape":"String"}, + "DomainIAMRoleName":{"shape":"String"}, + "DomainFqdn":{"shape":"String"}, + "DomainOu":{"shape":"String"}, + "DomainAuthSecretArn":{"shape":"String"}, + "DomainDnsIps":{"shape":"StringList"}, + "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}, + "EnableCloudwatchLogsExports":{"shape":"LogTypeList"}, + "ProcessorFeatures":{"shape":"ProcessorFeatureList"}, + "UseDefaultProcessorFeatures":{"shape":"BooleanOptional"}, + "DBParameterGroupName":{"shape":"String"}, + "DeletionProtection":{"shape":"BooleanOptional"}, + "SourceDbiResourceId":{"shape":"String"}, + "MaxAllocatedStorage":{"shape":"IntegerOptional"}, + "EnableCustomerOwnedIp":{"shape":"BooleanOptional"}, + "NetworkType":{"shape":"String"}, + "SourceDBInstanceAutomatedBackupsArn":{"shape":"String"}, + "CustomIamInstanceProfile":{"shape":"String"}, + "AllocatedStorage":{"shape":"IntegerOptional"}, + "DedicatedLogVolume":{"shape":"BooleanOptional"}, + "EngineLifecycleSupport":{"shape":"String"}, + "ManageMasterUserPassword":{"shape":"BooleanOptional"}, + "MasterUserSecretKmsKeyId":{"shape":"String"} + } + }, + "RestoreDBInstanceToPointInTimeResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "RestoreWindow":{ + "type":"structure", + "members":{ + "EarliestTime":{"shape":"TStamp"}, + "LatestTime":{"shape":"TStamp"} + } + }, + "RevokeDBSecurityGroupIngressMessage":{ + "type":"structure", + "required":["DBSecurityGroupName"], + "members":{ + "DBSecurityGroupName":{"shape":"String"}, + "CIDRIP":{"shape":"String"}, + "EC2SecurityGroupName":{"shape":"String"}, + "EC2SecurityGroupId":{"shape":"String"}, + "EC2SecurityGroupOwnerId":{"shape":"String"} + } + }, + "RevokeDBSecurityGroupIngressResult":{ + "type":"structure", + "members":{ + "DBSecurityGroup":{"shape":"DBSecurityGroup"} + } + }, + "SNSInvalidTopicFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SNSInvalidTopic", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "SNSNoAuthorizationFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SNSNoAuthorization", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "SNSTopicArnNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SNSTopicArnNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "ScalarReferenceDetails":{ + "type":"structure", + "members":{ + "Value":{"shape":"Double"} + } + }, + "ScalingConfiguration":{ + "type":"structure", + "members":{ + "MinCapacity":{"shape":"IntegerOptional"}, + "MaxCapacity":{"shape":"IntegerOptional"}, + "AutoPause":{"shape":"BooleanOptional"}, + "SecondsUntilAutoPause":{"shape":"IntegerOptional"}, + "TimeoutAction":{"shape":"String"}, + "SecondsBeforeTimeout":{"shape":"IntegerOptional"} + } + }, + "ScalingConfigurationInfo":{ + "type":"structure", + "members":{ + "MinCapacity":{"shape":"IntegerOptional"}, + "MaxCapacity":{"shape":"IntegerOptional"}, + "AutoPause":{"shape":"BooleanOptional"}, + "SecondsUntilAutoPause":{"shape":"IntegerOptional"}, + "TimeoutAction":{"shape":"String"}, + "SecondsBeforeTimeout":{"shape":"IntegerOptional"} + } + }, + "SensitiveString":{ + "type":"string", + "sensitive":true + }, + "ServerlessV2FeaturesSupport":{ + "type":"structure", + "members":{ + "MinCapacity":{"shape":"DoubleOptional"}, + "MaxCapacity":{"shape":"DoubleOptional"} + } + }, + "ServerlessV2ScalingConfiguration":{ + "type":"structure", + "members":{ + "MinCapacity":{"shape":"DoubleOptional"}, + "MaxCapacity":{"shape":"DoubleOptional"}, + "SecondsUntilAutoPause":{"shape":"IntegerOptional"} + } + }, + "ServerlessV2ScalingConfigurationInfo":{ + "type":"structure", + "members":{ + "MinCapacity":{"shape":"DoubleOptional"}, + "MaxCapacity":{"shape":"DoubleOptional"}, + "SecondsUntilAutoPause":{"shape":"IntegerOptional"} + } + }, + "SharedSnapshotQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SharedSnapshotQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "SnapshotQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SnapshotQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "SourceArn":{ + "type":"string", + "max":255, + "min":1, + "pattern":"arn:aws[a-z\\-]*:rds(-[a-z]*)?:[a-z0-9\\-]*:[0-9]*:(cluster|db):[a-z][a-z0-9]*(-[a-z0-9]+)*" + }, + "SourceClusterNotSupportedFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SourceClusterNotSupportedFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "SourceDatabaseNotSupportedFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SourceDatabaseNotSupportedFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "SourceIdsList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"SourceId" + } + }, + "SourceNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SourceNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "SourceRegion":{ + "type":"structure", + "members":{ + "RegionName":{"shape":"String"}, + "Endpoint":{"shape":"String"}, + "Status":{"shape":"String"}, + "SupportsDBInstanceAutomatedBackupsReplication":{"shape":"Boolean"} + } + }, + "SourceRegionList":{ + "type":"list", + "member":{ + "shape":"SourceRegion", + "locationName":"SourceRegion" + } + }, + "SourceRegionMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "SourceRegions":{"shape":"SourceRegionList"} + } + }, + "SourceType":{ + "type":"string", + "enum":[ + "db-instance", + "db-parameter-group", + "db-security-group", + "db-snapshot", + "db-cluster", + "db-cluster-snapshot", + "custom-engine-version", + "db-proxy", + "blue-green-deployment", + "db-shard-group", + "zero-etl" + ] + }, + "StartActivityStreamRequest":{ + "type":"structure", + "required":[ + "ResourceArn", + "Mode", + "KmsKeyId" + ], + "members":{ + "ResourceArn":{"shape":"String"}, + "Mode":{"shape":"ActivityStreamMode"}, + "KmsKeyId":{"shape":"String"}, + "ApplyImmediately":{"shape":"BooleanOptional"}, + "EngineNativeAuditFieldsIncluded":{"shape":"BooleanOptional"} + } + }, + "StartActivityStreamResponse":{ + "type":"structure", + "members":{ + "KmsKeyId":{"shape":"String"}, + "KinesisStreamName":{"shape":"String"}, + "Status":{"shape":"ActivityStreamStatus"}, + "Mode":{"shape":"ActivityStreamMode"}, + "EngineNativeAuditFieldsIncluded":{"shape":"BooleanOptional"}, + "ApplyImmediately":{"shape":"Boolean"} + } + }, + "StartDBClusterMessage":{ + "type":"structure", + "required":["DBClusterIdentifier"], + "members":{ + "DBClusterIdentifier":{"shape":"String"} + } + }, + "StartDBClusterResult":{ + "type":"structure", + "members":{ + "DBCluster":{"shape":"DBCluster"} + } + }, + "StartDBInstanceAutomatedBackupsReplicationMessage":{ + "type":"structure", + "required":["SourceDBInstanceArn"], + "members":{ + "SourceDBInstanceArn":{"shape":"String"}, + "BackupRetentionPeriod":{"shape":"IntegerOptional"}, + "KmsKeyId":{"shape":"String"}, + "PreSignedUrl":{"shape":"SensitiveString"} + } + }, + "StartDBInstanceAutomatedBackupsReplicationResult":{ + "type":"structure", + "members":{ + "DBInstanceAutomatedBackup":{"shape":"DBInstanceAutomatedBackup"} + } + }, + "StartDBInstanceMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"} + } + }, + "StartDBInstanceResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "StartExportTaskMessage":{ + "type":"structure", + "required":[ + "ExportTaskIdentifier", + "SourceArn", + "S3BucketName", + "IamRoleArn", + "KmsKeyId" + ], + "members":{ + "ExportTaskIdentifier":{"shape":"String"}, + "SourceArn":{"shape":"String"}, + "S3BucketName":{"shape":"String"}, + "IamRoleArn":{"shape":"String"}, + "KmsKeyId":{"shape":"String"}, + "S3Prefix":{"shape":"String"}, + "ExportOnly":{"shape":"StringList"} + } + }, + "StopActivityStreamRequest":{ + "type":"structure", + "required":["ResourceArn"], + "members":{ + "ResourceArn":{"shape":"String"}, + "ApplyImmediately":{"shape":"BooleanOptional"} + } + }, + "StopActivityStreamResponse":{ + "type":"structure", + "members":{ + "KmsKeyId":{"shape":"String"}, + "KinesisStreamName":{"shape":"String"}, + "Status":{"shape":"ActivityStreamStatus"} + } + }, + "StopDBClusterMessage":{ + "type":"structure", + "required":["DBClusterIdentifier"], + "members":{ + "DBClusterIdentifier":{"shape":"String"} + } + }, + "StopDBClusterResult":{ + "type":"structure", + "members":{ + "DBCluster":{"shape":"DBCluster"} + } + }, + "StopDBInstanceAutomatedBackupsReplicationMessage":{ + "type":"structure", + "required":["SourceDBInstanceArn"], + "members":{ + "SourceDBInstanceArn":{"shape":"String"} + } + }, + "StopDBInstanceAutomatedBackupsReplicationResult":{ + "type":"structure", + "members":{ + "DBInstanceAutomatedBackup":{"shape":"DBInstanceAutomatedBackup"} + } + }, + "StopDBInstanceMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"}, + "DBSnapshotIdentifier":{"shape":"String"} + } + }, + "StopDBInstanceResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "StorageQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"StorageQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "StorageTypeNotAvailableFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"StorageTypeNotAvailableFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "StorageTypeNotSupportedFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"StorageTypeNotSupported", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "String":{"type":"string"}, + "String255":{ + "type":"string", + "max":255, + "min":1, + "pattern":".*" + }, + "StringList":{ + "type":"list", + "member":{"shape":"String"} + }, + "Subnet":{ + "type":"structure", + "members":{ + "SubnetIdentifier":{"shape":"String"}, + "SubnetAvailabilityZone":{"shape":"AvailabilityZone"}, + "SubnetOutpost":{"shape":"Outpost"}, + "SubnetStatus":{"shape":"String"} + } + }, + "SubnetAlreadyInUse":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SubnetAlreadyInUse", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "SubnetIdentifierList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"SubnetIdentifier" + } + }, + "SubnetList":{ + "type":"list", + "member":{ + "shape":"Subnet", + "locationName":"Subnet" + } + }, + "SubscriptionAlreadyExistFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SubscriptionAlreadyExist", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "SubscriptionCategoryNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SubscriptionCategoryNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "SubscriptionNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"SubscriptionNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "SupportedCharacterSetsList":{ + "type":"list", + "member":{ + "shape":"CharacterSet", + "locationName":"CharacterSet" + } + }, + "SupportedEngineLifecycle":{ + "type":"structure", + "required":[ + "LifecycleSupportName", + "LifecycleSupportStartDate", + "LifecycleSupportEndDate" + ], + "members":{ + "LifecycleSupportName":{"shape":"LifecycleSupportName"}, + "LifecycleSupportStartDate":{"shape":"TStamp"}, + "LifecycleSupportEndDate":{"shape":"TStamp"} + } + }, + "SupportedEngineLifecycleList":{ + "type":"list", + "member":{ + "shape":"SupportedEngineLifecycle", + "locationName":"SupportedEngineLifecycle" + } + }, + "SupportedTimezonesList":{ + "type":"list", + "member":{ + "shape":"Timezone", + "locationName":"Timezone" + } + }, + "SwitchoverBlueGreenDeploymentRequest":{ + "type":"structure", + "required":["BlueGreenDeploymentIdentifier"], + "members":{ + "BlueGreenDeploymentIdentifier":{"shape":"BlueGreenDeploymentIdentifier"}, + "SwitchoverTimeout":{"shape":"SwitchoverTimeout"} + } + }, + "SwitchoverBlueGreenDeploymentResponse":{ + "type":"structure", + "members":{ + "BlueGreenDeployment":{"shape":"BlueGreenDeployment"} + } + }, + "SwitchoverDetail":{ + "type":"structure", + "members":{ + "SourceMember":{"shape":"DatabaseArn"}, + "TargetMember":{"shape":"DatabaseArn"}, + "Status":{"shape":"SwitchoverDetailStatus"} + } + }, + "SwitchoverDetailList":{ + "type":"list", + "member":{"shape":"SwitchoverDetail"} + }, + "SwitchoverDetailStatus":{"type":"string"}, + "SwitchoverGlobalClusterMessage":{ + "type":"structure", + "required":[ + "GlobalClusterIdentifier", + "TargetDbClusterIdentifier" + ], + "members":{ + "GlobalClusterIdentifier":{"shape":"GlobalClusterIdentifier"}, + "TargetDbClusterIdentifier":{"shape":"DBClusterIdentifier"} + } + }, + "SwitchoverGlobalClusterResult":{ + "type":"structure", + "members":{ + "GlobalCluster":{"shape":"GlobalCluster"} + } + }, + "SwitchoverReadReplicaMessage":{ + "type":"structure", + "required":["DBInstanceIdentifier"], + "members":{ + "DBInstanceIdentifier":{"shape":"String"} + } + }, + "SwitchoverReadReplicaResult":{ + "type":"structure", + "members":{ + "DBInstance":{"shape":"DBInstance"} + } + }, + "SwitchoverTimeout":{ + "type":"integer", + "min":30 + }, + "TStamp":{"type":"timestamp"}, + "Tag":{ + "type":"structure", + "members":{ + "Key":{"shape":"String"}, + "Value":{"shape":"String"} + } + }, + "TagList":{ + "type":"list", + "member":{ + "shape":"Tag", + "locationName":"Tag" + } + }, + "TagListMessage":{ + "type":"structure", + "members":{ + "TagList":{"shape":"TagList"} + } + }, + "TargetDBClusterParameterGroupName":{ + "type":"string", + "max":255, + "min":1, + "pattern":"[A-Za-z](?!.*--)[0-9A-Za-z-]*[^-]|^default(?!.*--)(?!.*\\.\\.)[0-9A-Za-z-.]*[^-]" + }, + "TargetDBInstanceClass":{ + "type":"string", + "max":20, + "min":5, + "pattern":"db\\.[0-9a-z]{2,6}\\.[0-9a-z]{4,9}" + }, + "TargetDBParameterGroupName":{ + "type":"string", + "max":255, + "min":1, + "pattern":"[A-Za-z](?!.*--)[0-9A-Za-z-]*[^-]|^default(?!.*--)(?!.*\\.\\.)[0-9A-Za-z-.]*[^-]" + }, + "TargetEngineVersion":{ + "type":"string", + "max":64, + "min":1, + "pattern":"[0-9A-Za-z-_.]+" + }, + "TargetGroupList":{ + "type":"list", + "member":{"shape":"DBProxyTargetGroup"} + }, + "TargetHealth":{ + "type":"structure", + "members":{ + "State":{"shape":"TargetState"}, + "Reason":{"shape":"TargetHealthReason"}, + "Description":{"shape":"String"} + } + }, + "TargetHealthReason":{ + "type":"string", + "enum":[ + "UNREACHABLE", + "CONNECTION_FAILED", + "AUTH_FAILURE", + "PENDING_PROXY_CAPACITY", + "INVALID_REPLICATION_STATE", + "PROMOTED" + ] + }, + "TargetList":{ + "type":"list", + "member":{"shape":"DBProxyTarget"} + }, + "TargetRole":{ + "type":"string", + "enum":[ + "READ_WRITE", + "READ_ONLY", + "UNKNOWN" + ] + }, + "TargetState":{ + "type":"string", + "enum":[ + "REGISTERING", + "AVAILABLE", + "UNAVAILABLE", + "UNUSED" + ] + }, + "TargetType":{ + "type":"string", + "enum":[ + "RDS_INSTANCE", + "RDS_SERVERLESS_ENDPOINT", + "TRACKED_CLUSTER" + ] + }, + "TenantDatabase":{ + "type":"structure", + "members":{ + "TenantDatabaseCreateTime":{"shape":"TStamp"}, + "DBInstanceIdentifier":{"shape":"String"}, + "TenantDBName":{"shape":"String"}, + "Status":{"shape":"String"}, + "MasterUsername":{"shape":"String"}, + "DbiResourceId":{"shape":"String"}, + "TenantDatabaseResourceId":{"shape":"String"}, + "TenantDatabaseARN":{"shape":"String"}, + "CharacterSetName":{"shape":"String"}, + "NcharCharacterSetName":{"shape":"String"}, + "DeletionProtection":{"shape":"Boolean"}, + "PendingModifiedValues":{"shape":"TenantDatabasePendingModifiedValues"}, + "MasterUserSecret":{"shape":"MasterUserSecret"}, + "TagList":{"shape":"TagList"} + }, + "wrapper":true + }, + "TenantDatabaseAlreadyExistsFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"TenantDatabaseAlreadyExists", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "TenantDatabaseNotFoundFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"TenantDatabaseNotFound", + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "TenantDatabasePendingModifiedValues":{ + "type":"structure", + "members":{ + "MasterUserPassword":{"shape":"SensitiveString"}, + "TenantDBName":{"shape":"String"} + } + }, + "TenantDatabaseQuotaExceededFault":{ + "type":"structure", + "members":{}, + "error":{ + "code":"TenantDatabaseQuotaExceeded", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "TenantDatabasesList":{ + "type":"list", + "member":{ + "shape":"TenantDatabase", + "locationName":"TenantDatabase" + } + }, + "TenantDatabasesMessage":{ + "type":"structure", + "members":{ + "Marker":{"shape":"String"}, + "TenantDatabases":{"shape":"TenantDatabasesList"} + } + }, + "Timezone":{ + "type":"structure", + "members":{ + "TimezoneName":{"shape":"String"} + } + }, + "UpgradeTarget":{ + "type":"structure", + "members":{ + "Engine":{"shape":"String"}, + "EngineVersion":{"shape":"String"}, + "Description":{"shape":"String"}, + "AutoUpgrade":{"shape":"Boolean"}, + "IsMajorVersionUpgrade":{"shape":"Boolean"}, + "SupportedEngineModes":{"shape":"EngineModeList"}, + "SupportsParallelQuery":{"shape":"BooleanOptional"}, + "SupportsGlobalDatabases":{"shape":"BooleanOptional"}, + "SupportsBabelfish":{"shape":"BooleanOptional"}, + "SupportsLimitlessDatabase":{"shape":"BooleanOptional"}, + "SupportsIntegrations":{"shape":"BooleanOptional"} + } + }, + "UserAuthConfig":{ + "type":"structure", + "members":{ + "Description":{"shape":"Description"}, + "UserName":{"shape":"AuthUserName"}, + "AuthScheme":{"shape":"AuthScheme"}, + "SecretArn":{"shape":"Arn"}, + "IAMAuth":{"shape":"IAMAuthMode"}, + "ClientPasswordAuthType":{"shape":"ClientPasswordAuthType"} + } + }, + "UserAuthConfigInfo":{ + "type":"structure", + "members":{ + "Description":{"shape":"String"}, + "UserName":{"shape":"String"}, + "AuthScheme":{"shape":"AuthScheme"}, + "SecretArn":{"shape":"String"}, + "IAMAuth":{"shape":"IAMAuthMode"}, + "ClientPasswordAuthType":{"shape":"ClientPasswordAuthType"} + } + }, + "UserAuthConfigInfoList":{ + "type":"list", + "member":{"shape":"UserAuthConfigInfo"} + }, + "UserAuthConfigList":{ + "type":"list", + "member":{"shape":"UserAuthConfig"}, + "max":200, + "min":0 + }, + "ValidDBInstanceModificationsMessage":{ + "type":"structure", + "members":{ + "Storage":{"shape":"ValidStorageOptionsList"}, + "ValidProcessorFeatures":{"shape":"AvailableProcessorFeatureList"}, + "SupportsDedicatedLogVolume":{"shape":"Boolean"} + }, + "wrapper":true + }, + "ValidStorageOptions":{ + "type":"structure", + "members":{ + "StorageType":{"shape":"String"}, + "StorageSize":{"shape":"RangeList"}, + "ProvisionedIops":{"shape":"RangeList"}, + "IopsToStorageRatio":{"shape":"DoubleRangeList"}, + "ProvisionedStorageThroughput":{"shape":"RangeList"}, + "StorageThroughputToIopsRatio":{"shape":"DoubleRangeList"}, + "SupportsStorageAutoscaling":{"shape":"Boolean"} + } + }, + "ValidStorageOptionsList":{ + "type":"list", + "member":{ + "shape":"ValidStorageOptions", + "locationName":"ValidStorageOptions" + } + }, + "ValidUpgradeTargetList":{ + "type":"list", + "member":{ + "shape":"UpgradeTarget", + "locationName":"UpgradeTarget" + } + }, + "VpcSecurityGroupIdList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"VpcSecurityGroupId" + } + }, + "VpcSecurityGroupMembership":{ + "type":"structure", + "members":{ + "VpcSecurityGroupId":{"shape":"String"}, + "Status":{"shape":"String"} + } + }, + "VpcSecurityGroupMembershipList":{ + "type":"list", + "member":{ + "shape":"VpcSecurityGroupMembership", + "locationName":"VpcSecurityGroupMembership" + } + }, + "WriteForwardingStatus":{ + "type":"string", + "enum":[ + "enabled", + "disabled", + "enabling", + "disabling", + "unknown" + ] + } + } +} diff --git a/src/data/rds_feature/2014-10-31/api-2.json.php b/src/data/rds_feature/2014-10-31/api-2.json.php new file mode 100644 index 0000000000..dfc2569104 --- /dev/null +++ b/src/data/rds_feature/2014-10-31/api-2.json.php @@ -0,0 +1,3 @@ + '2.0', 'metadata' => [ 'apiVersion' => '2014-10-31', 'endpointPrefix' => 'rds', 'protocol' => 'query', 'protocols' => [ 'query', ], 'serviceAbbreviation' => 'Amazon RDS', 'serviceFullName' => 'Amazon Relational Database Service', 'serviceId' => 'RDS', 'signatureVersion' => 'v4', 'uid' => 'rds-2014-10-31', 'xmlNamespace' => 'http://rds.amazonaws.com/doc/2014-10-31/', 'auth' => [ 'aws.auth#sigv4', ], ], 'operations' => [ 'AddRoleToDBCluster' => [ 'name' => 'AddRoleToDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddRoleToDBClusterMessage', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBClusterRoleAlreadyExistsFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'DBClusterRoleQuotaExceededFault', ], ], ], 'AddRoleToDBInstance' => [ 'name' => 'AddRoleToDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddRoleToDBInstanceMessage', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBInstanceRoleAlreadyExistsFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBInstanceRoleQuotaExceededFault', ], ], ], 'AddSourceIdentifierToSubscription' => [ 'name' => 'AddSourceIdentifierToSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddSourceIdentifierToSubscriptionMessage', ], 'output' => [ 'shape' => 'AddSourceIdentifierToSubscriptionResult', 'resultWrapper' => 'AddSourceIdentifierToSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], ], ], 'AddTagsToResource' => [ 'name' => 'AddTagsToResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddTagsToResourceMessage', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'DBProxyNotFoundFault', ], [ 'shape' => 'DBProxyEndpointNotFoundFault', ], [ 'shape' => 'DBProxyTargetGroupNotFoundFault', ], [ 'shape' => 'BlueGreenDeploymentNotFoundFault', ], [ 'shape' => 'TenantDatabaseNotFoundFault', ], [ 'shape' => 'DBSnapshotTenantDatabaseNotFoundFault', ], [ 'shape' => 'IntegrationNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], 'ApplyPendingMaintenanceAction' => [ 'name' => 'ApplyPendingMaintenanceAction', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ApplyPendingMaintenanceActionMessage', ], 'output' => [ 'shape' => 'ApplyPendingMaintenanceActionResult', 'resultWrapper' => 'ApplyPendingMaintenanceActionResult', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], 'AuthorizeDBSecurityGroupIngress' => [ 'name' => 'AuthorizeDBSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeDBSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'AuthorizeDBSecurityGroupIngressResult', 'resultWrapper' => 'AuthorizeDBSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'AuthorizationAlreadyExistsFault', ], [ 'shape' => 'AuthorizationQuotaExceededFault', ], ], ], 'BacktrackDBCluster' => [ 'name' => 'BacktrackDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BacktrackDBClusterMessage', ], 'output' => [ 'shape' => 'DBClusterBacktrack', 'resultWrapper' => 'BacktrackDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], ], ], 'CancelExportTask' => [ 'name' => 'CancelExportTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelExportTaskMessage', ], 'output' => [ 'shape' => 'ExportTask', 'resultWrapper' => 'CancelExportTaskResult', ], 'errors' => [ [ 'shape' => 'ExportTaskNotFoundFault', ], [ 'shape' => 'InvalidExportTaskStateFault', ], ], ], 'CopyDBClusterParameterGroup' => [ 'name' => 'CopyDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyDBClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'CopyDBClusterParameterGroupResult', 'resultWrapper' => 'CopyDBClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBParameterGroupQuotaExceededFault', ], [ 'shape' => 'DBParameterGroupAlreadyExistsFault', ], ], ], 'CopyDBClusterSnapshot' => [ 'name' => 'CopyDBClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyDBClusterSnapshotMessage', ], 'output' => [ 'shape' => 'CopyDBClusterSnapshotResult', 'resultWrapper' => 'CopyDBClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'CopyDBParameterGroup' => [ 'name' => 'CopyDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyDBParameterGroupMessage', ], 'output' => [ 'shape' => 'CopyDBParameterGroupResult', 'resultWrapper' => 'CopyDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBParameterGroupAlreadyExistsFault', ], [ 'shape' => 'DBParameterGroupQuotaExceededFault', ], ], ], 'CopyDBSnapshot' => [ 'name' => 'CopyDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyDBSnapshotMessage', ], 'output' => [ 'shape' => 'CopyDBSnapshotResult', 'resultWrapper' => 'CopyDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotAlreadyExistsFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'CustomAvailabilityZoneNotFoundFault', ], ], ], 'CopyOptionGroup' => [ 'name' => 'CopyOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyOptionGroupMessage', ], 'output' => [ 'shape' => 'CopyOptionGroupResult', 'resultWrapper' => 'CopyOptionGroupResult', ], 'errors' => [ [ 'shape' => 'OptionGroupAlreadyExistsFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'OptionGroupQuotaExceededFault', ], ], ], 'CreateBlueGreenDeployment' => [ 'name' => 'CreateBlueGreenDeployment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateBlueGreenDeploymentRequest', ], 'output' => [ 'shape' => 'CreateBlueGreenDeploymentResponse', 'resultWrapper' => 'CreateBlueGreenDeploymentResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'SourceDatabaseNotSupportedFault', ], [ 'shape' => 'SourceClusterNotSupportedFault', ], [ 'shape' => 'BlueGreenDeploymentAlreadyExistsFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBClusterParameterGroupNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'DBClusterQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], ], ], 'CreateCustomDBEngineVersion' => [ 'name' => 'CreateCustomDBEngineVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCustomDBEngineVersionMessage', ], 'output' => [ 'shape' => 'DBEngineVersion', 'resultWrapper' => 'CreateCustomDBEngineVersionResult', ], 'errors' => [ [ 'shape' => 'CustomDBEngineVersionAlreadyExistsFault', ], [ 'shape' => 'CustomDBEngineVersionQuotaExceededFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'Ec2ImagePropertiesNotSupportedFault', ], [ 'shape' => 'CreateCustomDBEngineVersionFault', ], [ 'shape' => 'CustomDBEngineVersionNotFoundFault', ], [ 'shape' => 'InvalidCustomDBEngineVersionStateFault', ], ], ], 'CreateDBCluster' => [ 'name' => 'CreateDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBClusterMessage', ], 'output' => [ 'shape' => 'CreateDBClusterResult', 'resultWrapper' => 'CreateDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterAlreadyExistsFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'InsufficientStorageClusterCapacityFault', ], [ 'shape' => 'DBClusterQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBSubnetGroupFault', ], [ 'shape' => 'InvalidDBSubnetGroupStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBClusterParameterGroupNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'GlobalClusterNotFoundFault', ], [ 'shape' => 'InvalidGlobalClusterStateFault', ], [ 'shape' => 'NetworkTypeNotSupported', ], [ 'shape' => 'DomainNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], ], ], 'CreateDBClusterEndpoint' => [ 'name' => 'CreateDBClusterEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBClusterEndpointMessage', ], 'output' => [ 'shape' => 'DBClusterEndpoint', 'resultWrapper' => 'CreateDBClusterEndpointResult', ], 'errors' => [ [ 'shape' => 'DBClusterEndpointQuotaExceededFault', ], [ 'shape' => 'DBClusterEndpointAlreadyExistsFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], 'CreateDBClusterParameterGroup' => [ 'name' => 'CreateDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'CreateDBClusterParameterGroupResult', 'resultWrapper' => 'CreateDBClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupQuotaExceededFault', ], [ 'shape' => 'DBParameterGroupAlreadyExistsFault', ], ], ], 'CreateDBClusterSnapshot' => [ 'name' => 'CreateDBClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBClusterSnapshotMessage', ], 'output' => [ 'shape' => 'CreateDBClusterSnapshotResult', 'resultWrapper' => 'CreateDBClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], ], ], 'CreateDBInstance' => [ 'name' => 'CreateDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBInstanceMessage', ], 'output' => [ 'shape' => 'CreateDBInstanceResult', 'resultWrapper' => 'CreateDBInstanceResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DomainNotFoundFault', ], [ 'shape' => 'NetworkTypeNotSupported', ], [ 'shape' => 'BackupPolicyNotFoundFault', ], [ 'shape' => 'CertificateNotFoundFault', ], [ 'shape' => 'TenantDatabaseQuotaExceededFault', ], [ 'shape' => 'FreeTierRestrictionError', ], ], ], 'CreateDBInstanceReadReplica' => [ 'name' => 'CreateDBInstanceReadReplica', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBInstanceReadReplicaMessage', ], 'output' => [ 'shape' => 'CreateDBInstanceReadReplicaResult', 'resultWrapper' => 'CreateDBInstanceReadReplicaResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupNotAllowedFault', ], [ 'shape' => 'InvalidDBSubnetGroupFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'NetworkTypeNotSupported', ], [ 'shape' => 'DomainNotFoundFault', ], [ 'shape' => 'TenantDatabaseQuotaExceededFault', ], [ 'shape' => 'CertificateNotFoundFault', ], ], ], 'CreateDBParameterGroup' => [ 'name' => 'CreateDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBParameterGroupMessage', ], 'output' => [ 'shape' => 'CreateDBParameterGroupResult', 'resultWrapper' => 'CreateDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupQuotaExceededFault', ], [ 'shape' => 'DBParameterGroupAlreadyExistsFault', ], ], ], 'CreateDBProxy' => [ 'name' => 'CreateDBProxy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBProxyRequest', ], 'output' => [ 'shape' => 'CreateDBProxyResponse', 'resultWrapper' => 'CreateDBProxyResult', ], 'errors' => [ [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'DBProxyAlreadyExistsFault', ], [ 'shape' => 'DBProxyQuotaExceededFault', ], ], ], 'CreateDBProxyEndpoint' => [ 'name' => 'CreateDBProxyEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBProxyEndpointRequest', ], 'output' => [ 'shape' => 'CreateDBProxyEndpointResponse', 'resultWrapper' => 'CreateDBProxyEndpointResult', ], 'errors' => [ [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'DBProxyNotFoundFault', ], [ 'shape' => 'DBProxyEndpointAlreadyExistsFault', ], [ 'shape' => 'DBProxyEndpointQuotaExceededFault', ], [ 'shape' => 'InvalidDBProxyStateFault', ], ], ], 'CreateDBSecurityGroup' => [ 'name' => 'CreateDBSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBSecurityGroupMessage', ], 'output' => [ 'shape' => 'CreateDBSecurityGroupResult', 'resultWrapper' => 'CreateDBSecurityGroupResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupAlreadyExistsFault', ], [ 'shape' => 'DBSecurityGroupQuotaExceededFault', ], [ 'shape' => 'DBSecurityGroupNotSupportedFault', ], ], ], 'CreateDBShardGroup' => [ 'name' => 'CreateDBShardGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBShardGroupMessage', ], 'output' => [ 'shape' => 'DBShardGroup', 'resultWrapper' => 'CreateDBShardGroupResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'NetworkTypeNotSupported', ], ], ], 'CreateDBSnapshot' => [ 'name' => 'CreateDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBSnapshotMessage', ], 'output' => [ 'shape' => 'CreateDBSnapshotResult', 'resultWrapper' => 'CreateDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotAlreadyExistsFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], ], ], 'CreateDBSubnetGroup' => [ 'name' => 'CreateDBSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBSubnetGroupMessage', ], 'output' => [ 'shape' => 'CreateDBSubnetGroupResult', 'resultWrapper' => 'CreateDBSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'DBSubnetGroupAlreadyExistsFault', ], [ 'shape' => 'DBSubnetGroupQuotaExceededFault', ], [ 'shape' => 'DBSubnetQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], ], ], 'CreateEventSubscription' => [ 'name' => 'CreateEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateEventSubscriptionMessage', ], 'output' => [ 'shape' => 'CreateEventSubscriptionResult', 'resultWrapper' => 'CreateEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'EventSubscriptionQuotaExceededFault', ], [ 'shape' => 'SubscriptionAlreadyExistFault', ], [ 'shape' => 'SNSInvalidTopicFault', ], [ 'shape' => 'SNSNoAuthorizationFault', ], [ 'shape' => 'SNSTopicArnNotFoundFault', ], [ 'shape' => 'SubscriptionCategoryNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], ], ], 'CreateGlobalCluster' => [ 'name' => 'CreateGlobalCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateGlobalClusterMessage', ], 'output' => [ 'shape' => 'CreateGlobalClusterResult', 'resultWrapper' => 'CreateGlobalClusterResult', ], 'errors' => [ [ 'shape' => 'GlobalClusterAlreadyExistsFault', ], [ 'shape' => 'GlobalClusterQuotaExceededFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'ResourceNotFoundFault', ], ], ], 'CreateIntegration' => [ 'name' => 'CreateIntegration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateIntegrationMessage', ], 'output' => [ 'shape' => 'Integration', 'resultWrapper' => 'CreateIntegrationResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'IntegrationAlreadyExistsFault', ], [ 'shape' => 'IntegrationQuotaExceededFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'IntegrationConflictOperationFault', ], ], ], 'CreateOptionGroup' => [ 'name' => 'CreateOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateOptionGroupMessage', ], 'output' => [ 'shape' => 'CreateOptionGroupResult', 'resultWrapper' => 'CreateOptionGroupResult', ], 'errors' => [ [ 'shape' => 'OptionGroupAlreadyExistsFault', ], [ 'shape' => 'OptionGroupQuotaExceededFault', ], ], ], 'CreateTenantDatabase' => [ 'name' => 'CreateTenantDatabase', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTenantDatabaseMessage', ], 'output' => [ 'shape' => 'CreateTenantDatabaseResult', 'resultWrapper' => 'CreateTenantDatabaseResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'TenantDatabaseAlreadyExistsFault', ], [ 'shape' => 'TenantDatabaseQuotaExceededFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'DeleteBlueGreenDeployment' => [ 'name' => 'DeleteBlueGreenDeployment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteBlueGreenDeploymentRequest', ], 'output' => [ 'shape' => 'DeleteBlueGreenDeploymentResponse', 'resultWrapper' => 'DeleteBlueGreenDeploymentResult', ], 'errors' => [ [ 'shape' => 'BlueGreenDeploymentNotFoundFault', ], [ 'shape' => 'InvalidBlueGreenDeploymentStateFault', ], ], ], 'DeleteCustomDBEngineVersion' => [ 'name' => 'DeleteCustomDBEngineVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCustomDBEngineVersionMessage', ], 'output' => [ 'shape' => 'DBEngineVersion', 'resultWrapper' => 'DeleteCustomDBEngineVersionResult', ], 'errors' => [ [ 'shape' => 'CustomDBEngineVersionNotFoundFault', ], [ 'shape' => 'InvalidCustomDBEngineVersionStateFault', ], ], ], 'DeleteDBCluster' => [ 'name' => 'DeleteDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBClusterMessage', ], 'output' => [ 'shape' => 'DeleteDBClusterResult', 'resultWrapper' => 'DeleteDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidGlobalClusterStateFault', ], [ 'shape' => 'DBClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'DBClusterAutomatedBackupQuotaExceededFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'DeleteDBClusterAutomatedBackup' => [ 'name' => 'DeleteDBClusterAutomatedBackup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBClusterAutomatedBackupMessage', ], 'output' => [ 'shape' => 'DeleteDBClusterAutomatedBackupResult', 'resultWrapper' => 'DeleteDBClusterAutomatedBackupResult', ], 'errors' => [ [ 'shape' => 'InvalidDBClusterAutomatedBackupStateFault', ], [ 'shape' => 'DBClusterAutomatedBackupNotFoundFault', ], ], ], 'DeleteDBClusterEndpoint' => [ 'name' => 'DeleteDBClusterEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBClusterEndpointMessage', ], 'output' => [ 'shape' => 'DBClusterEndpoint', 'resultWrapper' => 'DeleteDBClusterEndpointResult', ], 'errors' => [ [ 'shape' => 'InvalidDBClusterEndpointStateFault', ], [ 'shape' => 'DBClusterEndpointNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], ], ], 'DeleteDBClusterParameterGroup' => [ 'name' => 'DeleteDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBClusterParameterGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBParameterGroupStateFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DeleteDBClusterSnapshot' => [ 'name' => 'DeleteDBClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBClusterSnapshotMessage', ], 'output' => [ 'shape' => 'DeleteDBClusterSnapshotResult', 'resultWrapper' => 'DeleteDBClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], ], ], 'DeleteDBInstance' => [ 'name' => 'DeleteDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBInstanceMessage', ], 'output' => [ 'shape' => 'DeleteDBInstanceResult', 'resultWrapper' => 'DeleteDBInstanceResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBSnapshotAlreadyExistsFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'DBInstanceAutomatedBackupQuotaExceededFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'DeleteDBInstanceAutomatedBackup' => [ 'name' => 'DeleteDBInstanceAutomatedBackup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBInstanceAutomatedBackupMessage', ], 'output' => [ 'shape' => 'DeleteDBInstanceAutomatedBackupResult', 'resultWrapper' => 'DeleteDBInstanceAutomatedBackupResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceAutomatedBackupStateFault', ], [ 'shape' => 'DBInstanceAutomatedBackupNotFoundFault', ], ], ], 'DeleteDBParameterGroup' => [ 'name' => 'DeleteDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBParameterGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBParameterGroupStateFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DeleteDBProxy' => [ 'name' => 'DeleteDBProxy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBProxyRequest', ], 'output' => [ 'shape' => 'DeleteDBProxyResponse', 'resultWrapper' => 'DeleteDBProxyResult', ], 'errors' => [ [ 'shape' => 'DBProxyNotFoundFault', ], [ 'shape' => 'InvalidDBProxyStateFault', ], ], ], 'DeleteDBProxyEndpoint' => [ 'name' => 'DeleteDBProxyEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBProxyEndpointRequest', ], 'output' => [ 'shape' => 'DeleteDBProxyEndpointResponse', 'resultWrapper' => 'DeleteDBProxyEndpointResult', ], 'errors' => [ [ 'shape' => 'DBProxyEndpointNotFoundFault', ], [ 'shape' => 'InvalidDBProxyEndpointStateFault', ], ], ], 'DeleteDBSecurityGroup' => [ 'name' => 'DeleteDBSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBSecurityGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], ], ], 'DeleteDBShardGroup' => [ 'name' => 'DeleteDBShardGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBShardGroupMessage', ], 'output' => [ 'shape' => 'DBShardGroup', 'resultWrapper' => 'DeleteDBShardGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidDBClusterStateFault', ], ], ], 'DeleteDBSnapshot' => [ 'name' => 'DeleteDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBSnapshotMessage', ], 'output' => [ 'shape' => 'DeleteDBSnapshotResult', 'resultWrapper' => 'DeleteDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'DeleteDBSubnetGroup' => [ 'name' => 'DeleteDBSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBSubnetGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBSubnetGroupStateFault', ], [ 'shape' => 'InvalidDBSubnetStateFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], ], ], 'DeleteEventSubscription' => [ 'name' => 'DeleteEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteEventSubscriptionMessage', ], 'output' => [ 'shape' => 'DeleteEventSubscriptionResult', 'resultWrapper' => 'DeleteEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], ], ], 'DeleteGlobalCluster' => [ 'name' => 'DeleteGlobalCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteGlobalClusterMessage', ], 'output' => [ 'shape' => 'DeleteGlobalClusterResult', 'resultWrapper' => 'DeleteGlobalClusterResult', ], 'errors' => [ [ 'shape' => 'GlobalClusterNotFoundFault', ], [ 'shape' => 'InvalidGlobalClusterStateFault', ], ], ], 'DeleteIntegration' => [ 'name' => 'DeleteIntegration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIntegrationMessage', ], 'output' => [ 'shape' => 'Integration', 'resultWrapper' => 'DeleteIntegrationResult', ], 'errors' => [ [ 'shape' => 'IntegrationNotFoundFault', ], [ 'shape' => 'IntegrationConflictOperationFault', ], [ 'shape' => 'InvalidIntegrationStateFault', ], ], ], 'DeleteOptionGroup' => [ 'name' => 'DeleteOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteOptionGroupMessage', ], 'errors' => [ [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'InvalidOptionGroupStateFault', ], ], ], 'DeleteTenantDatabase' => [ 'name' => 'DeleteTenantDatabase', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTenantDatabaseMessage', ], 'output' => [ 'shape' => 'DeleteTenantDatabaseResult', 'resultWrapper' => 'DeleteTenantDatabaseResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'TenantDatabaseNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBSnapshotAlreadyExistsFault', ], ], ], 'DeregisterDBProxyTargets' => [ 'name' => 'DeregisterDBProxyTargets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeregisterDBProxyTargetsRequest', ], 'output' => [ 'shape' => 'DeregisterDBProxyTargetsResponse', 'resultWrapper' => 'DeregisterDBProxyTargetsResult', ], 'errors' => [ [ 'shape' => 'DBProxyTargetNotFoundFault', ], [ 'shape' => 'DBProxyTargetGroupNotFoundFault', ], [ 'shape' => 'DBProxyNotFoundFault', ], [ 'shape' => 'InvalidDBProxyStateFault', ], ], ], 'DescribeAccountAttributes' => [ 'name' => 'DescribeAccountAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAccountAttributesMessage', ], 'output' => [ 'shape' => 'AccountAttributesMessage', 'resultWrapper' => 'DescribeAccountAttributesResult', ], 'errors' => [], ], 'DescribeBlueGreenDeployments' => [ 'name' => 'DescribeBlueGreenDeployments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeBlueGreenDeploymentsRequest', ], 'output' => [ 'shape' => 'DescribeBlueGreenDeploymentsResponse', 'resultWrapper' => 'DescribeBlueGreenDeploymentsResult', ], 'errors' => [ [ 'shape' => 'BlueGreenDeploymentNotFoundFault', ], ], ], 'DescribeCertificates' => [ 'name' => 'DescribeCertificates', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCertificatesMessage', ], 'output' => [ 'shape' => 'CertificateMessage', 'resultWrapper' => 'DescribeCertificatesResult', ], 'errors' => [ [ 'shape' => 'CertificateNotFoundFault', ], ], ], 'DescribeDBClusterAutomatedBackups' => [ 'name' => 'DescribeDBClusterAutomatedBackups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterAutomatedBackupsMessage', ], 'output' => [ 'shape' => 'DBClusterAutomatedBackupMessage', 'resultWrapper' => 'DescribeDBClusterAutomatedBackupsResult', ], 'errors' => [ [ 'shape' => 'DBClusterAutomatedBackupNotFoundFault', ], ], ], 'DescribeDBClusterBacktracks' => [ 'name' => 'DescribeDBClusterBacktracks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterBacktracksMessage', ], 'output' => [ 'shape' => 'DBClusterBacktrackMessage', 'resultWrapper' => 'DescribeDBClusterBacktracksResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBClusterBacktrackNotFoundFault', ], ], ], 'DescribeDBClusterEndpoints' => [ 'name' => 'DescribeDBClusterEndpoints', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterEndpointsMessage', ], 'output' => [ 'shape' => 'DBClusterEndpointMessage', 'resultWrapper' => 'DescribeDBClusterEndpointsResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], ], ], 'DescribeDBClusterParameterGroups' => [ 'name' => 'DescribeDBClusterParameterGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterParameterGroupsMessage', ], 'output' => [ 'shape' => 'DBClusterParameterGroupsMessage', 'resultWrapper' => 'DescribeDBClusterParameterGroupsResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DescribeDBClusterParameters' => [ 'name' => 'DescribeDBClusterParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterParametersMessage', ], 'output' => [ 'shape' => 'DBClusterParameterGroupDetails', 'resultWrapper' => 'DescribeDBClusterParametersResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DescribeDBClusterSnapshotAttributes' => [ 'name' => 'DescribeDBClusterSnapshotAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterSnapshotAttributesMessage', ], 'output' => [ 'shape' => 'DescribeDBClusterSnapshotAttributesResult', 'resultWrapper' => 'DescribeDBClusterSnapshotAttributesResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], ], ], 'DescribeDBClusterSnapshots' => [ 'name' => 'DescribeDBClusterSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterSnapshotsMessage', ], 'output' => [ 'shape' => 'DBClusterSnapshotMessage', 'resultWrapper' => 'DescribeDBClusterSnapshotsResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], ], ], 'DescribeDBClusters' => [ 'name' => 'DescribeDBClusters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClustersMessage', ], 'output' => [ 'shape' => 'DBClusterMessage', 'resultWrapper' => 'DescribeDBClustersResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], ], ], 'DescribeDBEngineVersions' => [ 'name' => 'DescribeDBEngineVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBEngineVersionsMessage', ], 'output' => [ 'shape' => 'DBEngineVersionMessage', 'resultWrapper' => 'DescribeDBEngineVersionsResult', ], 'errors' => [], ], 'DescribeDBInstanceAutomatedBackups' => [ 'name' => 'DescribeDBInstanceAutomatedBackups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBInstanceAutomatedBackupsMessage', ], 'output' => [ 'shape' => 'DBInstanceAutomatedBackupMessage', 'resultWrapper' => 'DescribeDBInstanceAutomatedBackupsResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAutomatedBackupNotFoundFault', ], ], ], 'DescribeDBInstances' => [ 'name' => 'DescribeDBInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBInstancesMessage', ], 'output' => [ 'shape' => 'DBInstanceMessage', 'resultWrapper' => 'DescribeDBInstancesResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'DescribeDBLogFiles' => [ 'name' => 'DescribeDBLogFiles', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBLogFilesMessage', ], 'output' => [ 'shape' => 'DescribeDBLogFilesResponse', 'resultWrapper' => 'DescribeDBLogFilesResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBInstanceNotReadyFault', ], ], ], 'DescribeDBMajorEngineVersions' => [ 'name' => 'DescribeDBMajorEngineVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBMajorEngineVersionsRequest', ], 'output' => [ 'shape' => 'DescribeDBMajorEngineVersionsResponse', 'resultWrapper' => 'DescribeDBMajorEngineVersionsResult', ], 'errors' => [], ], 'DescribeDBParameterGroups' => [ 'name' => 'DescribeDBParameterGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBParameterGroupsMessage', ], 'output' => [ 'shape' => 'DBParameterGroupsMessage', 'resultWrapper' => 'DescribeDBParameterGroupsResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DescribeDBParameters' => [ 'name' => 'DescribeDBParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBParametersMessage', ], 'output' => [ 'shape' => 'DBParameterGroupDetails', 'resultWrapper' => 'DescribeDBParametersResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DescribeDBProxies' => [ 'name' => 'DescribeDBProxies', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBProxiesRequest', ], 'output' => [ 'shape' => 'DescribeDBProxiesResponse', 'resultWrapper' => 'DescribeDBProxiesResult', ], 'errors' => [ [ 'shape' => 'DBProxyNotFoundFault', ], ], ], 'DescribeDBProxyEndpoints' => [ 'name' => 'DescribeDBProxyEndpoints', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBProxyEndpointsRequest', ], 'output' => [ 'shape' => 'DescribeDBProxyEndpointsResponse', 'resultWrapper' => 'DescribeDBProxyEndpointsResult', ], 'errors' => [ [ 'shape' => 'DBProxyNotFoundFault', ], [ 'shape' => 'DBProxyEndpointNotFoundFault', ], ], ], 'DescribeDBProxyTargetGroups' => [ 'name' => 'DescribeDBProxyTargetGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBProxyTargetGroupsRequest', ], 'output' => [ 'shape' => 'DescribeDBProxyTargetGroupsResponse', 'resultWrapper' => 'DescribeDBProxyTargetGroupsResult', ], 'errors' => [ [ 'shape' => 'DBProxyNotFoundFault', ], [ 'shape' => 'DBProxyTargetGroupNotFoundFault', ], [ 'shape' => 'InvalidDBProxyStateFault', ], ], ], 'DescribeDBProxyTargets' => [ 'name' => 'DescribeDBProxyTargets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBProxyTargetsRequest', ], 'output' => [ 'shape' => 'DescribeDBProxyTargetsResponse', 'resultWrapper' => 'DescribeDBProxyTargetsResult', ], 'errors' => [ [ 'shape' => 'DBProxyNotFoundFault', ], [ 'shape' => 'DBProxyTargetNotFoundFault', ], [ 'shape' => 'DBProxyTargetGroupNotFoundFault', ], [ 'shape' => 'InvalidDBProxyStateFault', ], ], ], 'DescribeDBRecommendations' => [ 'name' => 'DescribeDBRecommendations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBRecommendationsMessage', ], 'output' => [ 'shape' => 'DBRecommendationsMessage', 'resultWrapper' => 'DescribeDBRecommendationsResult', ], 'errors' => [], ], 'DescribeDBSecurityGroups' => [ 'name' => 'DescribeDBSecurityGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSecurityGroupsMessage', ], 'output' => [ 'shape' => 'DBSecurityGroupMessage', 'resultWrapper' => 'DescribeDBSecurityGroupsResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupNotFoundFault', ], ], ], 'DescribeDBShardGroups' => [ 'name' => 'DescribeDBShardGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBShardGroupsMessage', ], 'output' => [ 'shape' => 'DescribeDBShardGroupsResponse', 'resultWrapper' => 'DescribeDBShardGroupsResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], ], ], 'DescribeDBSnapshotAttributes' => [ 'name' => 'DescribeDBSnapshotAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSnapshotAttributesMessage', ], 'output' => [ 'shape' => 'DescribeDBSnapshotAttributesResult', 'resultWrapper' => 'DescribeDBSnapshotAttributesResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'DescribeDBSnapshotTenantDatabases' => [ 'name' => 'DescribeDBSnapshotTenantDatabases', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSnapshotTenantDatabasesMessage', ], 'output' => [ 'shape' => 'DBSnapshotTenantDatabasesMessage', 'resultWrapper' => 'DescribeDBSnapshotTenantDatabasesResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'DescribeDBSnapshots' => [ 'name' => 'DescribeDBSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSnapshotsMessage', ], 'output' => [ 'shape' => 'DBSnapshotMessage', 'resultWrapper' => 'DescribeDBSnapshotsResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'DescribeDBSubnetGroups' => [ 'name' => 'DescribeDBSubnetGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSubnetGroupsMessage', ], 'output' => [ 'shape' => 'DBSubnetGroupMessage', 'resultWrapper' => 'DescribeDBSubnetGroupsResult', ], 'errors' => [ [ 'shape' => 'DBSubnetGroupNotFoundFault', ], ], ], 'DescribeEngineDefaultClusterParameters' => [ 'name' => 'DescribeEngineDefaultClusterParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEngineDefaultClusterParametersMessage', ], 'output' => [ 'shape' => 'DescribeEngineDefaultClusterParametersResult', 'resultWrapper' => 'DescribeEngineDefaultClusterParametersResult', ], 'errors' => [], ], 'DescribeEngineDefaultParameters' => [ 'name' => 'DescribeEngineDefaultParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEngineDefaultParametersMessage', ], 'output' => [ 'shape' => 'DescribeEngineDefaultParametersResult', 'resultWrapper' => 'DescribeEngineDefaultParametersResult', ], 'errors' => [], ], 'DescribeEventCategories' => [ 'name' => 'DescribeEventCategories', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventCategoriesMessage', ], 'output' => [ 'shape' => 'EventCategoriesMessage', 'resultWrapper' => 'DescribeEventCategoriesResult', ], 'errors' => [], ], 'DescribeEventSubscriptions' => [ 'name' => 'DescribeEventSubscriptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventSubscriptionsMessage', ], 'output' => [ 'shape' => 'EventSubscriptionsMessage', 'resultWrapper' => 'DescribeEventSubscriptionsResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], ], ], 'DescribeEvents' => [ 'name' => 'DescribeEvents', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventsMessage', ], 'output' => [ 'shape' => 'EventsMessage', 'resultWrapper' => 'DescribeEventsResult', ], 'errors' => [], ], 'DescribeExportTasks' => [ 'name' => 'DescribeExportTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeExportTasksMessage', ], 'output' => [ 'shape' => 'ExportTasksMessage', 'resultWrapper' => 'DescribeExportTasksResult', ], 'errors' => [ [ 'shape' => 'ExportTaskNotFoundFault', ], ], ], 'DescribeGlobalClusters' => [ 'name' => 'DescribeGlobalClusters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeGlobalClustersMessage', ], 'output' => [ 'shape' => 'GlobalClustersMessage', 'resultWrapper' => 'DescribeGlobalClustersResult', ], 'errors' => [ [ 'shape' => 'GlobalClusterNotFoundFault', ], ], ], 'DescribeIntegrations' => [ 'name' => 'DescribeIntegrations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIntegrationsMessage', ], 'output' => [ 'shape' => 'DescribeIntegrationsResponse', 'resultWrapper' => 'DescribeIntegrationsResult', ], 'errors' => [ [ 'shape' => 'IntegrationNotFoundFault', ], ], ], 'DescribeOptionGroupOptions' => [ 'name' => 'DescribeOptionGroupOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeOptionGroupOptionsMessage', ], 'output' => [ 'shape' => 'OptionGroupOptionsMessage', 'resultWrapper' => 'DescribeOptionGroupOptionsResult', ], 'errors' => [], ], 'DescribeOptionGroups' => [ 'name' => 'DescribeOptionGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeOptionGroupsMessage', ], 'output' => [ 'shape' => 'OptionGroups', 'resultWrapper' => 'DescribeOptionGroupsResult', ], 'errors' => [ [ 'shape' => 'OptionGroupNotFoundFault', ], ], ], 'DescribeOrderableDBInstanceOptions' => [ 'name' => 'DescribeOrderableDBInstanceOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeOrderableDBInstanceOptionsMessage', ], 'output' => [ 'shape' => 'OrderableDBInstanceOptionsMessage', 'resultWrapper' => 'DescribeOrderableDBInstanceOptionsResult', ], 'errors' => [], ], 'DescribePendingMaintenanceActions' => [ 'name' => 'DescribePendingMaintenanceActions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePendingMaintenanceActionsMessage', ], 'output' => [ 'shape' => 'PendingMaintenanceActionsMessage', 'resultWrapper' => 'DescribePendingMaintenanceActionsResult', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundFault', ], ], ], 'DescribeReservedDBInstances' => [ 'name' => 'DescribeReservedDBInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedDBInstancesMessage', ], 'output' => [ 'shape' => 'ReservedDBInstanceMessage', 'resultWrapper' => 'DescribeReservedDBInstancesResult', ], 'errors' => [ [ 'shape' => 'ReservedDBInstanceNotFoundFault', ], ], ], 'DescribeReservedDBInstancesOfferings' => [ 'name' => 'DescribeReservedDBInstancesOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedDBInstancesOfferingsMessage', ], 'output' => [ 'shape' => 'ReservedDBInstancesOfferingMessage', 'resultWrapper' => 'DescribeReservedDBInstancesOfferingsResult', ], 'errors' => [ [ 'shape' => 'ReservedDBInstancesOfferingNotFoundFault', ], ], ], 'DescribeSourceRegions' => [ 'name' => 'DescribeSourceRegions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSourceRegionsMessage', ], 'output' => [ 'shape' => 'SourceRegionMessage', 'resultWrapper' => 'DescribeSourceRegionsResult', ], 'errors' => [], ], 'DescribeTenantDatabases' => [ 'name' => 'DescribeTenantDatabases', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTenantDatabasesMessage', ], 'output' => [ 'shape' => 'TenantDatabasesMessage', 'resultWrapper' => 'DescribeTenantDatabasesResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'DescribeValidDBInstanceModifications' => [ 'name' => 'DescribeValidDBInstanceModifications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeValidDBInstanceModificationsMessage', ], 'output' => [ 'shape' => 'DescribeValidDBInstanceModificationsResult', 'resultWrapper' => 'DescribeValidDBInstanceModificationsResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], 'DisableHttpEndpoint' => [ 'name' => 'DisableHttpEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableHttpEndpointRequest', ], 'output' => [ 'shape' => 'DisableHttpEndpointResponse', 'resultWrapper' => 'DisableHttpEndpointResult', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundFault', ], [ 'shape' => 'InvalidResourceStateFault', ], ], ], 'DownloadDBLogFilePortion' => [ 'name' => 'DownloadDBLogFilePortion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DownloadDBLogFilePortionMessage', ], 'output' => [ 'shape' => 'DownloadDBLogFilePortionDetails', 'resultWrapper' => 'DownloadDBLogFilePortionResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBInstanceNotReadyFault', ], [ 'shape' => 'DBLogFileNotFoundFault', ], ], ], 'EnableHttpEndpoint' => [ 'name' => 'EnableHttpEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableHttpEndpointRequest', ], 'output' => [ 'shape' => 'EnableHttpEndpointResponse', 'resultWrapper' => 'EnableHttpEndpointResult', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundFault', ], [ 'shape' => 'InvalidResourceStateFault', ], ], ], 'FailoverDBCluster' => [ 'name' => 'FailoverDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'FailoverDBClusterMessage', ], 'output' => [ 'shape' => 'FailoverDBClusterResult', 'resultWrapper' => 'FailoverDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], 'FailoverGlobalCluster' => [ 'name' => 'FailoverGlobalCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'FailoverGlobalClusterMessage', ], 'output' => [ 'shape' => 'FailoverGlobalClusterResult', 'resultWrapper' => 'FailoverGlobalClusterResult', ], 'errors' => [ [ 'shape' => 'GlobalClusterNotFoundFault', ], [ 'shape' => 'InvalidGlobalClusterStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListTagsForResourceMessage', ], 'output' => [ 'shape' => 'TagListMessage', 'resultWrapper' => 'ListTagsForResourceResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBProxyNotFoundFault', ], [ 'shape' => 'DBProxyTargetGroupNotFoundFault', ], [ 'shape' => 'DBProxyEndpointNotFoundFault', ], [ 'shape' => 'BlueGreenDeploymentNotFoundFault', ], [ 'shape' => 'TenantDatabaseNotFoundFault', ], [ 'shape' => 'DBSnapshotTenantDatabaseNotFoundFault', ], [ 'shape' => 'IntegrationNotFoundFault', ], ], ], 'ModifyActivityStream' => [ 'name' => 'ModifyActivityStream', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyActivityStreamRequest', ], 'output' => [ 'shape' => 'ModifyActivityStreamResponse', 'resultWrapper' => 'ModifyActivityStreamResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'ResourceNotFoundFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'ModifyCertificates' => [ 'name' => 'ModifyCertificates', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyCertificatesMessage', ], 'output' => [ 'shape' => 'ModifyCertificatesResult', 'resultWrapper' => 'ModifyCertificatesResult', ], 'errors' => [ [ 'shape' => 'CertificateNotFoundFault', ], ], ], 'ModifyCurrentDBClusterCapacity' => [ 'name' => 'ModifyCurrentDBClusterCapacity', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyCurrentDBClusterCapacityMessage', ], 'output' => [ 'shape' => 'DBClusterCapacityInfo', 'resultWrapper' => 'ModifyCurrentDBClusterCapacityResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBClusterCapacityFault', ], ], ], 'ModifyCustomDBEngineVersion' => [ 'name' => 'ModifyCustomDBEngineVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyCustomDBEngineVersionMessage', ], 'output' => [ 'shape' => 'DBEngineVersion', 'resultWrapper' => 'ModifyCustomDBEngineVersionResult', ], 'errors' => [ [ 'shape' => 'CustomDBEngineVersionNotFoundFault', ], [ 'shape' => 'InvalidCustomDBEngineVersionStateFault', ], ], ], 'ModifyDBCluster' => [ 'name' => 'ModifyDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBClusterMessage', ], 'output' => [ 'shape' => 'ModifyDBClusterResult', 'resultWrapper' => 'ModifyDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidDBSubnetGroupStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'DBClusterParameterGroupNotFoundFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBClusterAlreadyExistsFault', ], [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'NetworkTypeNotSupported', ], [ 'shape' => 'DomainNotFoundFault', ], [ 'shape' => 'InvalidGlobalClusterStateFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'StorageTypeNotAvailableFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'ModifyDBClusterEndpoint' => [ 'name' => 'ModifyDBClusterEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBClusterEndpointMessage', ], 'output' => [ 'shape' => 'DBClusterEndpoint', 'resultWrapper' => 'ModifyDBClusterEndpointResult', ], 'errors' => [ [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBClusterEndpointStateFault', ], [ 'shape' => 'DBClusterEndpointNotFoundFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], 'ModifyDBClusterParameterGroup' => [ 'name' => 'ModifyDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'DBClusterParameterGroupNameMessage', 'resultWrapper' => 'ModifyDBClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidDBParameterGroupStateFault', ], ], ], 'ModifyDBClusterSnapshotAttribute' => [ 'name' => 'ModifyDBClusterSnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBClusterSnapshotAttributeMessage', ], 'output' => [ 'shape' => 'ModifyDBClusterSnapshotAttributeResult', 'resultWrapper' => 'ModifyDBClusterSnapshotAttributeResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'SharedSnapshotQuotaExceededFault', ], ], ], 'ModifyDBInstance' => [ 'name' => 'ModifyDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBInstanceMessage', ], 'output' => [ 'shape' => 'ModifyDBInstanceResult', 'resultWrapper' => 'ModifyDBInstanceResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'DBUpgradeDependencyFailureFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'CertificateNotFoundFault', ], [ 'shape' => 'DomainNotFoundFault', ], [ 'shape' => 'BackupPolicyNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'NetworkTypeNotSupported', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'TenantDatabaseQuotaExceededFault', ], [ 'shape' => 'FreeTierRestrictionError', ], ], ], 'ModifyDBParameterGroup' => [ 'name' => 'ModifyDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBParameterGroupMessage', ], 'output' => [ 'shape' => 'DBParameterGroupNameMessage', 'resultWrapper' => 'ModifyDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidDBParameterGroupStateFault', ], ], ], 'ModifyDBProxy' => [ 'name' => 'ModifyDBProxy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBProxyRequest', ], 'output' => [ 'shape' => 'ModifyDBProxyResponse', 'resultWrapper' => 'ModifyDBProxyResult', ], 'errors' => [ [ 'shape' => 'DBProxyNotFoundFault', ], [ 'shape' => 'DBProxyAlreadyExistsFault', ], [ 'shape' => 'InvalidDBProxyStateFault', ], ], ], 'ModifyDBProxyEndpoint' => [ 'name' => 'ModifyDBProxyEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBProxyEndpointRequest', ], 'output' => [ 'shape' => 'ModifyDBProxyEndpointResponse', 'resultWrapper' => 'ModifyDBProxyEndpointResult', ], 'errors' => [ [ 'shape' => 'DBProxyEndpointNotFoundFault', ], [ 'shape' => 'DBProxyEndpointAlreadyExistsFault', ], [ 'shape' => 'InvalidDBProxyEndpointStateFault', ], [ 'shape' => 'InvalidDBProxyStateFault', ], ], ], 'ModifyDBProxyTargetGroup' => [ 'name' => 'ModifyDBProxyTargetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBProxyTargetGroupRequest', ], 'output' => [ 'shape' => 'ModifyDBProxyTargetGroupResponse', 'resultWrapper' => 'ModifyDBProxyTargetGroupResult', ], 'errors' => [ [ 'shape' => 'DBProxyNotFoundFault', ], [ 'shape' => 'DBProxyTargetGroupNotFoundFault', ], [ 'shape' => 'InvalidDBProxyStateFault', ], ], ], 'ModifyDBRecommendation' => [ 'name' => 'ModifyDBRecommendation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBRecommendationMessage', ], 'output' => [ 'shape' => 'DBRecommendationMessage', 'resultWrapper' => 'ModifyDBRecommendationResult', ], 'errors' => [], ], 'ModifyDBShardGroup' => [ 'name' => 'ModifyDBShardGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBShardGroupMessage', ], 'output' => [ 'shape' => 'DBShardGroup', 'resultWrapper' => 'ModifyDBShardGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidDBClusterStateFault', ], ], ], 'ModifyDBSnapshot' => [ 'name' => 'ModifyDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBSnapshotMessage', ], 'output' => [ 'shape' => 'ModifyDBSnapshotResult', 'resultWrapper' => 'ModifyDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'ModifyDBSnapshotAttribute' => [ 'name' => 'ModifyDBSnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBSnapshotAttributeMessage', ], 'output' => [ 'shape' => 'ModifyDBSnapshotAttributeResult', 'resultWrapper' => 'ModifyDBSnapshotAttributeResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'SharedSnapshotQuotaExceededFault', ], ], ], 'ModifyDBSubnetGroup' => [ 'name' => 'ModifyDBSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBSubnetGroupMessage', ], 'output' => [ 'shape' => 'ModifyDBSubnetGroupResult', 'resultWrapper' => 'ModifyDBSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetQuotaExceededFault', ], [ 'shape' => 'SubnetAlreadyInUse', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidDBSubnetGroupStateFault', ], [ 'shape' => 'InvalidSubnet', ], ], ], 'ModifyEventSubscription' => [ 'name' => 'ModifyEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyEventSubscriptionMessage', ], 'output' => [ 'shape' => 'ModifyEventSubscriptionResult', 'resultWrapper' => 'ModifyEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'SNSInvalidTopicFault', ], [ 'shape' => 'SNSNoAuthorizationFault', ], [ 'shape' => 'SNSTopicArnNotFoundFault', ], [ 'shape' => 'SubscriptionCategoryNotFoundFault', ], ], ], 'ModifyGlobalCluster' => [ 'name' => 'ModifyGlobalCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyGlobalClusterMessage', ], 'output' => [ 'shape' => 'ModifyGlobalClusterResult', 'resultWrapper' => 'ModifyGlobalClusterResult', ], 'errors' => [ [ 'shape' => 'GlobalClusterNotFoundFault', ], [ 'shape' => 'GlobalClusterAlreadyExistsFault', ], [ 'shape' => 'InvalidGlobalClusterStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], 'ModifyIntegration' => [ 'name' => 'ModifyIntegration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIntegrationMessage', ], 'output' => [ 'shape' => 'Integration', 'resultWrapper' => 'ModifyIntegrationResult', ], 'errors' => [ [ 'shape' => 'IntegrationNotFoundFault', ], [ 'shape' => 'InvalidIntegrationStateFault', ], [ 'shape' => 'IntegrationConflictOperationFault', ], ], ], 'ModifyOptionGroup' => [ 'name' => 'ModifyOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyOptionGroupMessage', ], 'output' => [ 'shape' => 'ModifyOptionGroupResult', 'resultWrapper' => 'ModifyOptionGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidOptionGroupStateFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], ], ], 'ModifyTenantDatabase' => [ 'name' => 'ModifyTenantDatabase', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyTenantDatabaseMessage', ], 'output' => [ 'shape' => 'ModifyTenantDatabaseResult', 'resultWrapper' => 'ModifyTenantDatabaseResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'TenantDatabaseNotFoundFault', ], [ 'shape' => 'TenantDatabaseAlreadyExistsFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'PromoteReadReplica' => [ 'name' => 'PromoteReadReplica', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PromoteReadReplicaMessage', ], 'output' => [ 'shape' => 'PromoteReadReplicaResult', 'resultWrapper' => 'PromoteReadReplicaResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'PromoteReadReplicaDBCluster' => [ 'name' => 'PromoteReadReplicaDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PromoteReadReplicaDBClusterMessage', ], 'output' => [ 'shape' => 'PromoteReadReplicaDBClusterResult', 'resultWrapper' => 'PromoteReadReplicaDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], ], ], 'PurchaseReservedDBInstancesOffering' => [ 'name' => 'PurchaseReservedDBInstancesOffering', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseReservedDBInstancesOfferingMessage', ], 'output' => [ 'shape' => 'PurchaseReservedDBInstancesOfferingResult', 'resultWrapper' => 'PurchaseReservedDBInstancesOfferingResult', ], 'errors' => [ [ 'shape' => 'ReservedDBInstancesOfferingNotFoundFault', ], [ 'shape' => 'ReservedDBInstanceAlreadyExistsFault', ], [ 'shape' => 'ReservedDBInstanceQuotaExceededFault', ], [ 'shape' => 'FreeTierRestrictionError', ], ], ], 'RebootDBCluster' => [ 'name' => 'RebootDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebootDBClusterMessage', ], 'output' => [ 'shape' => 'RebootDBClusterResult', 'resultWrapper' => 'RebootDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], 'RebootDBInstance' => [ 'name' => 'RebootDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebootDBInstanceMessage', ], 'output' => [ 'shape' => 'RebootDBInstanceResult', 'resultWrapper' => 'RebootDBInstanceResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'RebootDBShardGroup' => [ 'name' => 'RebootDBShardGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebootDBShardGroupMessage', ], 'output' => [ 'shape' => 'DBShardGroup', 'resultWrapper' => 'RebootDBShardGroupResult', ], 'errors' => [], ], 'RegisterDBProxyTargets' => [ 'name' => 'RegisterDBProxyTargets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RegisterDBProxyTargetsRequest', ], 'output' => [ 'shape' => 'RegisterDBProxyTargetsResponse', 'resultWrapper' => 'RegisterDBProxyTargetsResult', ], 'errors' => [ [ 'shape' => 'DBProxyNotFoundFault', ], [ 'shape' => 'DBProxyTargetGroupNotFoundFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBProxyTargetAlreadyRegisteredFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBProxyStateFault', ], [ 'shape' => 'InsufficientAvailableIPsInSubnetFault', ], ], ], 'RemoveFromGlobalCluster' => [ 'name' => 'RemoveFromGlobalCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveFromGlobalClusterMessage', ], 'output' => [ 'shape' => 'RemoveFromGlobalClusterResult', 'resultWrapper' => 'RemoveFromGlobalClusterResult', ], 'errors' => [ [ 'shape' => 'GlobalClusterNotFoundFault', ], [ 'shape' => 'InvalidGlobalClusterStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], ], ], 'RemoveRoleFromDBCluster' => [ 'name' => 'RemoveRoleFromDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveRoleFromDBClusterMessage', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBClusterRoleNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], ], ], 'RemoveRoleFromDBInstance' => [ 'name' => 'RemoveRoleFromDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveRoleFromDBInstanceMessage', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBInstanceRoleNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], 'RemoveSourceIdentifierFromSubscription' => [ 'name' => 'RemoveSourceIdentifierFromSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveSourceIdentifierFromSubscriptionMessage', ], 'output' => [ 'shape' => 'RemoveSourceIdentifierFromSubscriptionResult', 'resultWrapper' => 'RemoveSourceIdentifierFromSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], ], ], 'RemoveTagsFromResource' => [ 'name' => 'RemoveTagsFromResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveTagsFromResourceMessage', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBProxyNotFoundFault', ], [ 'shape' => 'DBProxyEndpointNotFoundFault', ], [ 'shape' => 'DBProxyTargetGroupNotFoundFault', ], [ 'shape' => 'BlueGreenDeploymentNotFoundFault', ], [ 'shape' => 'TenantDatabaseNotFoundFault', ], [ 'shape' => 'DBSnapshotTenantDatabaseNotFoundFault', ], [ 'shape' => 'IntegrationNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], 'ResetDBClusterParameterGroup' => [ 'name' => 'ResetDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetDBClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'DBClusterParameterGroupNameMessage', 'resultWrapper' => 'ResetDBClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidDBParameterGroupStateFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'ResetDBParameterGroup' => [ 'name' => 'ResetDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetDBParameterGroupMessage', ], 'output' => [ 'shape' => 'DBParameterGroupNameMessage', 'resultWrapper' => 'ResetDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidDBParameterGroupStateFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'RestoreDBClusterFromS3' => [ 'name' => 'RestoreDBClusterFromS3', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBClusterFromS3Message', ], 'output' => [ 'shape' => 'RestoreDBClusterFromS3Result', 'resultWrapper' => 'RestoreDBClusterFromS3Result', ], 'errors' => [ [ 'shape' => 'DBClusterAlreadyExistsFault', ], [ 'shape' => 'DBClusterQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBSubnetGroupStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidS3BucketFault', ], [ 'shape' => 'DBClusterParameterGroupNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'NetworkTypeNotSupported', ], [ 'shape' => 'DomainNotFoundFault', ], [ 'shape' => 'InsufficientStorageClusterCapacityFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], ], ], 'RestoreDBClusterFromSnapshot' => [ 'name' => 'RestoreDBClusterFromSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBClusterFromSnapshotMessage', ], 'output' => [ 'shape' => 'RestoreDBClusterFromSnapshotResult', 'resultWrapper' => 'RestoreDBClusterFromSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBClusterAlreadyExistsFault', ], [ 'shape' => 'DBClusterQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], [ 'shape' => 'InsufficientDBClusterCapacityFault', ], [ 'shape' => 'InsufficientStorageClusterCapacityFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'NetworkTypeNotSupported', ], [ 'shape' => 'DomainNotFoundFault', ], [ 'shape' => 'DBClusterParameterGroupNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], ], ], 'RestoreDBClusterToPointInTime' => [ 'name' => 'RestoreDBClusterToPointInTime', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBClusterToPointInTimeMessage', ], 'output' => [ 'shape' => 'RestoreDBClusterToPointInTimeResult', 'resultWrapper' => 'RestoreDBClusterToPointInTimeResult', ], 'errors' => [ [ 'shape' => 'DBClusterAlreadyExistsFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBClusterQuotaExceededFault', ], [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InsufficientDBClusterCapacityFault', ], [ 'shape' => 'InsufficientStorageClusterCapacityFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'NetworkTypeNotSupported', ], [ 'shape' => 'DomainNotFoundFault', ], [ 'shape' => 'DBClusterParameterGroupNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'DBClusterAutomatedBackupNotFoundFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], ], ], 'RestoreDBInstanceFromDBSnapshot' => [ 'name' => 'RestoreDBInstanceFromDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBInstanceFromDBSnapshotMessage', ], 'output' => [ 'shape' => 'RestoreDBInstanceFromDBSnapshotResult', 'resultWrapper' => 'RestoreDBInstanceFromDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'DomainNotFoundFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'NetworkTypeNotSupported', ], [ 'shape' => 'BackupPolicyNotFoundFault', ], [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], [ 'shape' => 'CertificateNotFoundFault', ], [ 'shape' => 'TenantDatabaseQuotaExceededFault', ], [ 'shape' => 'FreeTierRestrictionError', ], ], ], 'RestoreDBInstanceFromS3' => [ 'name' => 'RestoreDBInstanceFromS3', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBInstanceFromS3Message', ], 'output' => [ 'shape' => 'RestoreDBInstanceFromS3Result', 'resultWrapper' => 'RestoreDBInstanceFromS3Result', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidS3BucketFault', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'NetworkTypeNotSupported', ], [ 'shape' => 'BackupPolicyNotFoundFault', ], [ 'shape' => 'CertificateNotFoundFault', ], [ 'shape' => 'FreeTierRestrictionError', ], ], ], 'RestoreDBInstanceToPointInTime' => [ 'name' => 'RestoreDBInstanceToPointInTime', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBInstanceToPointInTimeMessage', ], 'output' => [ 'shape' => 'RestoreDBInstanceToPointInTimeResult', 'resultWrapper' => 'RestoreDBInstanceToPointInTimeResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'PointInTimeRestoreNotEnabledFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'DomainNotFoundFault', ], [ 'shape' => 'BackupPolicyNotFoundFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'NetworkTypeNotSupported', ], [ 'shape' => 'DBInstanceAutomatedBackupNotFoundFault', ], [ 'shape' => 'TenantDatabaseQuotaExceededFault', ], [ 'shape' => 'CertificateNotFoundFault', ], [ 'shape' => 'FreeTierRestrictionError', ], ], ], 'RevokeDBSecurityGroupIngress' => [ 'name' => 'RevokeDBSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeDBSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'RevokeDBSecurityGroupIngressResult', 'resultWrapper' => 'RevokeDBSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], ], ], 'StartActivityStream' => [ 'name' => 'StartActivityStream', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartActivityStreamRequest', ], 'output' => [ 'shape' => 'StartActivityStreamResponse', 'resultWrapper' => 'StartActivityStreamResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'ResourceNotFoundFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'StartDBCluster' => [ 'name' => 'StartDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartDBClusterMessage', ], 'output' => [ 'shape' => 'StartDBClusterResult', 'resultWrapper' => 'StartDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'StartDBInstance' => [ 'name' => 'StartDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartDBInstanceMessage', ], 'output' => [ 'shape' => 'StartDBInstanceResult', 'resultWrapper' => 'StartDBInstanceResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'StartDBInstanceAutomatedBackupsReplication' => [ 'name' => 'StartDBInstanceAutomatedBackupsReplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartDBInstanceAutomatedBackupsReplicationMessage', ], 'output' => [ 'shape' => 'StartDBInstanceAutomatedBackupsReplicationResult', 'resultWrapper' => 'StartDBInstanceAutomatedBackupsReplicationResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'InvalidDBInstanceAutomatedBackupStateFault', ], [ 'shape' => 'DBInstanceAutomatedBackupQuotaExceededFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], ], ], 'StartExportTask' => [ 'name' => 'StartExportTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartExportTaskMessage', ], 'output' => [ 'shape' => 'ExportTask', 'resultWrapper' => 'StartExportTaskResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'ExportTaskAlreadyExistsFault', ], [ 'shape' => 'InvalidS3BucketFault', ], [ 'shape' => 'IamRoleNotFoundFault', ], [ 'shape' => 'IamRoleMissingPermissionsFault', ], [ 'shape' => 'InvalidExportOnlyFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'InvalidExportSourceStateFault', ], ], ], 'StopActivityStream' => [ 'name' => 'StopActivityStream', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopActivityStreamRequest', ], 'output' => [ 'shape' => 'StopActivityStreamResponse', 'resultWrapper' => 'StopActivityStreamResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'ResourceNotFoundFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'StopDBCluster' => [ 'name' => 'StopDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopDBClusterMessage', ], 'output' => [ 'shape' => 'StopDBClusterResult', 'resultWrapper' => 'StopDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], 'StopDBInstance' => [ 'name' => 'StopDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopDBInstanceMessage', ], 'output' => [ 'shape' => 'StopDBInstanceResult', 'resultWrapper' => 'StopDBInstanceResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBSnapshotAlreadyExistsFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], ], ], 'StopDBInstanceAutomatedBackupsReplication' => [ 'name' => 'StopDBInstanceAutomatedBackupsReplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopDBInstanceAutomatedBackupsReplicationMessage', ], 'output' => [ 'shape' => 'StopDBInstanceAutomatedBackupsReplicationResult', 'resultWrapper' => 'StopDBInstanceAutomatedBackupsReplicationResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], 'SwitchoverBlueGreenDeployment' => [ 'name' => 'SwitchoverBlueGreenDeployment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SwitchoverBlueGreenDeploymentRequest', ], 'output' => [ 'shape' => 'SwitchoverBlueGreenDeploymentResponse', 'resultWrapper' => 'SwitchoverBlueGreenDeploymentResult', ], 'errors' => [ [ 'shape' => 'BlueGreenDeploymentNotFoundFault', ], [ 'shape' => 'InvalidBlueGreenDeploymentStateFault', ], ], ], 'SwitchoverGlobalCluster' => [ 'name' => 'SwitchoverGlobalCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SwitchoverGlobalClusterMessage', ], 'output' => [ 'shape' => 'SwitchoverGlobalClusterResult', 'resultWrapper' => 'SwitchoverGlobalClusterResult', ], 'errors' => [ [ 'shape' => 'GlobalClusterNotFoundFault', ], [ 'shape' => 'InvalidGlobalClusterStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], ], ], 'SwitchoverReadReplica' => [ 'name' => 'SwitchoverReadReplica', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SwitchoverReadReplicaMessage', ], 'output' => [ 'shape' => 'SwitchoverReadReplicaResult', 'resultWrapper' => 'SwitchoverReadReplicaResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], ], 'shapes' => [ 'AccountAttributesMessage' => [ 'type' => 'structure', 'members' => [ 'AccountQuotas' => [ 'shape' => 'AccountQuotaList', ], ], ], 'AccountQuota' => [ 'type' => 'structure', 'members' => [ 'AccountQuotaName' => [ 'shape' => 'String', ], 'Used' => [ 'shape' => 'Long', ], 'Max' => [ 'shape' => 'Long', ], ], 'wrapper' => true, ], 'AccountQuotaList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountQuota', 'locationName' => 'AccountQuota', ], ], 'ActivityStreamMode' => [ 'type' => 'string', 'enum' => [ 'sync', 'async', ], ], 'ActivityStreamModeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'ActivityStreamPolicyStatus' => [ 'type' => 'string', 'enum' => [ 'locked', 'unlocked', 'locking-policy', 'unlocking-policy', ], ], 'ActivityStreamStatus' => [ 'type' => 'string', 'enum' => [ 'stopped', 'starting', 'started', 'stopping', ], ], 'AddRoleToDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'RoleArn', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'RoleArn' => [ 'shape' => 'String', ], 'FeatureName' => [ 'shape' => 'String', ], ], ], 'AddRoleToDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'RoleArn', 'FeatureName', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'RoleArn' => [ 'shape' => 'String', ], 'FeatureName' => [ 'shape' => 'String', ], ], ], 'AddSourceIdentifierToSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', 'SourceIdentifier', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SourceIdentifier' => [ 'shape' => 'String', ], ], ], 'AddSourceIdentifierToSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'AddTagsToResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'Tags', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'ApplyMethod' => [ 'type' => 'string', 'enum' => [ 'immediate', 'pending-reboot', ], ], 'ApplyPendingMaintenanceActionMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceIdentifier', 'ApplyAction', 'OptInType', ], 'members' => [ 'ResourceIdentifier' => [ 'shape' => 'String', ], 'ApplyAction' => [ 'shape' => 'String', ], 'OptInType' => [ 'shape' => 'String', ], ], ], 'ApplyPendingMaintenanceActionResult' => [ 'type' => 'structure', 'members' => [ 'ResourcePendingMaintenanceActions' => [ 'shape' => 'ResourcePendingMaintenanceActions', ], ], ], 'Arn' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, ], 'AttributeValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'AttributeValue', ], ], 'AuditPolicyState' => [ 'type' => 'string', 'enum' => [ 'locked', 'unlocked', ], ], 'AuthScheme' => [ 'type' => 'string', 'enum' => [ 'SECRETS', ], ], 'AuthUserName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'AuthorizationAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizationNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizationQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizeDBSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupId' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'AuthorizeDBSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroup' => [ 'shape' => 'DBSecurityGroup', ], ], ], 'AutomationMode' => [ 'type' => 'string', 'enum' => [ 'full', 'all-paused', ], ], 'AvailabilityZone' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'AvailabilityZoneList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AvailabilityZone', 'locationName' => 'AvailabilityZone', ], ], 'AvailabilityZones' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'AvailabilityZone', ], ], 'AvailableProcessorFeature' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'DefaultValue' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], ], ], 'AvailableProcessorFeatureList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AvailableProcessorFeature', 'locationName' => 'AvailableProcessorFeature', ], ], 'AwsBackupRecoveryPointArn' => [ 'type' => 'string', 'max' => 350, 'min' => 43, 'pattern' => '^arn:aws[a-z-]*:backup:[-a-z0-9]+:[0-9]{12}:[-a-z]+:([a-z0-9\\-]+:)?[a-z][a-z0-9\\-]{0,255}$', ], 'BacktrackDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'BacktrackTo', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'BacktrackTo' => [ 'shape' => 'TStamp', ], 'Force' => [ 'shape' => 'BooleanOptional', ], 'UseEarliestTimeOnPointInTimeUnavailable' => [ 'shape' => 'BooleanOptional', ], ], ], 'BackupPolicyNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'deprecated' => true, 'deprecatedMessage' => 'Please avoid using this fault', 'error' => [ 'code' => 'BackupPolicyNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'BlueGreenDeployment' => [ 'type' => 'structure', 'members' => [ 'BlueGreenDeploymentIdentifier' => [ 'shape' => 'BlueGreenDeploymentIdentifier', ], 'BlueGreenDeploymentName' => [ 'shape' => 'BlueGreenDeploymentName', ], 'Source' => [ 'shape' => 'DatabaseArn', ], 'Target' => [ 'shape' => 'DatabaseArn', ], 'SwitchoverDetails' => [ 'shape' => 'SwitchoverDetailList', ], 'Tasks' => [ 'shape' => 'BlueGreenDeploymentTaskList', ], 'Status' => [ 'shape' => 'BlueGreenDeploymentStatus', ], 'StatusDetails' => [ 'shape' => 'BlueGreenDeploymentStatusDetails', ], 'CreateTime' => [ 'shape' => 'TStamp', ], 'DeleteTime' => [ 'shape' => 'TStamp', ], 'TagList' => [ 'shape' => 'TagList', ], ], ], 'BlueGreenDeploymentAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'BlueGreenDeploymentAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'BlueGreenDeploymentIdentifier' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => '[A-Za-z][0-9A-Za-z-:._]*', ], 'BlueGreenDeploymentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BlueGreenDeployment', ], ], 'BlueGreenDeploymentName' => [ 'type' => 'string', 'max' => 60, 'min' => 1, 'pattern' => '[a-zA-Z](?:-?[a-zA-Z0-9]+)*', ], 'BlueGreenDeploymentNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'BlueGreenDeploymentNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'BlueGreenDeploymentStatus' => [ 'type' => 'string', ], 'BlueGreenDeploymentStatusDetails' => [ 'type' => 'string', ], 'BlueGreenDeploymentTask' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'BlueGreenDeploymentTaskName', ], 'Status' => [ 'shape' => 'BlueGreenDeploymentTaskStatus', ], ], ], 'BlueGreenDeploymentTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BlueGreenDeploymentTask', ], ], 'BlueGreenDeploymentTaskName' => [ 'type' => 'string', ], 'BlueGreenDeploymentTaskStatus' => [ 'type' => 'string', ], 'Boolean' => [ 'type' => 'boolean', ], 'BooleanOptional' => [ 'type' => 'boolean', ], 'BucketName' => [ 'type' => 'string', 'max' => 63, 'min' => 3, 'pattern' => '.*', ], 'CACertificateIdentifiersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'CancelExportTaskMessage' => [ 'type' => 'structure', 'required' => [ 'ExportTaskIdentifier', ], 'members' => [ 'ExportTaskIdentifier' => [ 'shape' => 'String', ], ], ], 'Certificate' => [ 'type' => 'structure', 'members' => [ 'CertificateIdentifier' => [ 'shape' => 'String', ], 'CertificateType' => [ 'shape' => 'String', ], 'Thumbprint' => [ 'shape' => 'String', ], 'ValidFrom' => [ 'shape' => 'TStamp', ], 'ValidTill' => [ 'shape' => 'TStamp', ], 'CertificateArn' => [ 'shape' => 'String', ], 'CustomerOverride' => [ 'shape' => 'BooleanOptional', ], 'CustomerOverrideValidTill' => [ 'shape' => 'TStamp', ], ], 'wrapper' => true, ], 'CertificateDetails' => [ 'type' => 'structure', 'members' => [ 'CAIdentifier' => [ 'shape' => 'String', ], 'ValidTill' => [ 'shape' => 'TStamp', ], ], ], 'CertificateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Certificate', 'locationName' => 'Certificate', ], ], 'CertificateMessage' => [ 'type' => 'structure', 'members' => [ 'Certificates' => [ 'shape' => 'CertificateList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'CertificateNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CertificateNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'CharacterSet' => [ 'type' => 'structure', 'members' => [ 'CharacterSetName' => [ 'shape' => 'String', ], 'CharacterSetDescription' => [ 'shape' => 'String', ], ], ], 'ClientPasswordAuthType' => [ 'type' => 'string', 'enum' => [ 'MYSQL_NATIVE_PASSWORD', 'POSTGRES_SCRAM_SHA_256', 'POSTGRES_MD5', 'SQL_SERVER_AUTHENTICATION', ], ], 'CloudwatchLogsExportConfiguration' => [ 'type' => 'structure', 'members' => [ 'EnableLogTypes' => [ 'shape' => 'LogTypeList', ], 'DisableLogTypes' => [ 'shape' => 'LogTypeList', ], ], ], 'ClusterPendingModifiedValues' => [ 'type' => 'structure', 'members' => [ 'PendingCloudwatchLogsExports' => [ 'shape' => 'PendingCloudwatchLogsExports', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'SensitiveString', ], 'IAMDatabaseAuthenticationEnabled' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'StorageType' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'RdsCustomClusterConfiguration' => [ 'shape' => 'RdsCustomClusterConfiguration', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'CertificateDetails' => [ 'shape' => 'CertificateDetails', ], ], ], 'ClusterScalabilityType' => [ 'type' => 'string', 'enum' => [ 'standard', 'limitless', ], ], 'ConnectionPoolConfiguration' => [ 'type' => 'structure', 'members' => [ 'MaxConnectionsPercent' => [ 'shape' => 'IntegerOptional', ], 'MaxIdleConnectionsPercent' => [ 'shape' => 'IntegerOptional', ], 'ConnectionBorrowTimeout' => [ 'shape' => 'IntegerOptional', ], 'SessionPinningFilters' => [ 'shape' => 'StringList', ], 'InitQuery' => [ 'shape' => 'String', ], ], ], 'ConnectionPoolConfigurationInfo' => [ 'type' => 'structure', 'members' => [ 'MaxConnectionsPercent' => [ 'shape' => 'Integer', ], 'MaxIdleConnectionsPercent' => [ 'shape' => 'Integer', ], 'ConnectionBorrowTimeout' => [ 'shape' => 'Integer', ], 'SessionPinningFilters' => [ 'shape' => 'StringList', ], 'InitQuery' => [ 'shape' => 'String', ], ], ], 'ContextAttribute' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'ContextAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ContextAttribute', ], ], 'CopyDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBClusterParameterGroupIdentifier', 'TargetDBClusterParameterGroupIdentifier', 'TargetDBClusterParameterGroupDescription', ], 'members' => [ 'SourceDBClusterParameterGroupIdentifier' => [ 'shape' => 'String', ], 'TargetDBClusterParameterGroupIdentifier' => [ 'shape' => 'String', ], 'TargetDBClusterParameterGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyDBClusterParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroup' => [ 'shape' => 'DBClusterParameterGroup', ], ], ], 'CopyDBClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBClusterSnapshotIdentifier', 'TargetDBClusterSnapshotIdentifier', ], 'members' => [ 'SourceDBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'TargetDBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'PreSignedUrl' => [ 'shape' => 'SensitiveString', ], 'CopyTags' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyDBClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshot' => [ 'shape' => 'DBClusterSnapshot', ], ], ], 'CopyDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBParameterGroupIdentifier', 'TargetDBParameterGroupIdentifier', 'TargetDBParameterGroupDescription', ], 'members' => [ 'SourceDBParameterGroupIdentifier' => [ 'shape' => 'String', ], 'TargetDBParameterGroupIdentifier' => [ 'shape' => 'String', ], 'TargetDBParameterGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyDBParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroup' => [ 'shape' => 'DBParameterGroup', ], ], ], 'CopyDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBSnapshotIdentifier', 'TargetDBSnapshotIdentifier', ], 'members' => [ 'SourceDBSnapshotIdentifier' => [ 'shape' => 'String', ], 'TargetDBSnapshotIdentifier' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'CopyTags' => [ 'shape' => 'BooleanOptional', ], 'PreSignedUrl' => [ 'shape' => 'SensitiveString', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'TargetCustomAvailabilityZone' => [ 'shape' => 'String', ], 'CopyOptionGroup' => [ 'shape' => 'BooleanOptional', ], ], ], 'CopyDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshot' => [ 'shape' => 'DBSnapshot', ], ], ], 'CopyOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'SourceOptionGroupIdentifier', 'TargetOptionGroupIdentifier', 'TargetOptionGroupDescription', ], 'members' => [ 'SourceOptionGroupIdentifier' => [ 'shape' => 'String', ], 'TargetOptionGroupIdentifier' => [ 'shape' => 'String', ], 'TargetOptionGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyOptionGroupResult' => [ 'type' => 'structure', 'members' => [ 'OptionGroup' => [ 'shape' => 'OptionGroup', ], ], ], 'CreateBlueGreenDeploymentRequest' => [ 'type' => 'structure', 'required' => [ 'BlueGreenDeploymentName', 'Source', ], 'members' => [ 'BlueGreenDeploymentName' => [ 'shape' => 'BlueGreenDeploymentName', ], 'Source' => [ 'shape' => 'DatabaseArn', ], 'TargetEngineVersion' => [ 'shape' => 'TargetEngineVersion', ], 'TargetDBParameterGroupName' => [ 'shape' => 'TargetDBParameterGroupName', ], 'TargetDBClusterParameterGroupName' => [ 'shape' => 'TargetDBClusterParameterGroupName', ], 'Tags' => [ 'shape' => 'TagList', ], 'TargetDBInstanceClass' => [ 'shape' => 'TargetDBInstanceClass', ], 'UpgradeTargetStorageConfig' => [ 'shape' => 'BooleanOptional', ], ], ], 'CreateBlueGreenDeploymentResponse' => [ 'type' => 'structure', 'members' => [ 'BlueGreenDeployment' => [ 'shape' => 'BlueGreenDeployment', ], ], ], 'CreateCustomDBEngineVersionFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CreateCustomDBEngineVersionFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CreateCustomDBEngineVersionMessage' => [ 'type' => 'structure', 'required' => [ 'Engine', 'EngineVersion', ], 'members' => [ 'Engine' => [ 'shape' => 'CustomEngineName', ], 'EngineVersion' => [ 'shape' => 'CustomEngineVersion', ], 'DatabaseInstallationFilesS3BucketName' => [ 'shape' => 'BucketName', ], 'DatabaseInstallationFilesS3Prefix' => [ 'shape' => 'String255', ], 'ImageId' => [ 'shape' => 'String255', ], 'KMSKeyId' => [ 'shape' => 'KmsKeyIdOrArn', ], 'Description' => [ 'shape' => 'Description', ], 'Manifest' => [ 'shape' => 'CustomDBEngineVersionManifest', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBClusterEndpointMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'DBClusterEndpointIdentifier', 'EndpointType', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterEndpointIdentifier' => [ 'shape' => 'String', ], 'EndpointType' => [ 'shape' => 'String', ], 'StaticMembers' => [ 'shape' => 'StringList', ], 'ExcludedMembers' => [ 'shape' => 'StringList', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'Engine', ], 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'DatabaseName' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MasterUsername' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'SensitiveString', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'ReplicationSourceIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageEncrypted' => [ 'shape' => 'BooleanOptional', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'PreSignedUrl' => [ 'shape' => 'SensitiveString', ], 'EnableIAMDatabaseAuthentication' => [ 'shape' => 'BooleanOptional', ], 'BacktrackWindow' => [ 'shape' => 'LongOptional', ], 'EnableCloudwatchLogsExports' => [ 'shape' => 'LogTypeList', ], 'EngineMode' => [ 'shape' => 'String', ], 'ScalingConfiguration' => [ 'shape' => 'ScalingConfiguration', ], 'RdsCustomClusterConfiguration' => [ 'shape' => 'RdsCustomClusterConfiguration', ], 'DBClusterInstanceClass' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'StorageType' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'GlobalClusterIdentifier' => [ 'shape' => 'GlobalClusterIdentifier', ], 'EnableHttpEndpoint' => [ 'shape' => 'BooleanOptional', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'Domain' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], 'EnableGlobalWriteForwarding' => [ 'shape' => 'BooleanOptional', ], 'ServerlessV2ScalingConfiguration' => [ 'shape' => 'ServerlessV2ScalingConfiguration', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'EnablePerformanceInsights' => [ 'shape' => 'BooleanOptional', ], 'PerformanceInsightsKMSKeyId' => [ 'shape' => 'String', ], 'PerformanceInsightsRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'EnableLimitlessDatabase' => [ 'shape' => 'BooleanOptional', ], 'ClusterScalabilityType' => [ 'shape' => 'ClusterScalabilityType', ], 'DBSystemId' => [ 'shape' => 'String', ], 'ManageMasterUserPassword' => [ 'shape' => 'BooleanOptional', ], 'MasterUserSecretKmsKeyId' => [ 'shape' => 'String', ], 'CACertificateIdentifier' => [ 'shape' => 'String', ], 'EngineLifecycleSupport' => [ 'shape' => 'String', ], ], ], 'CreateDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', 'DBParameterGroupFamily', 'Description', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBClusterParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroup' => [ 'shape' => 'DBClusterParameterGroup', ], ], ], 'CreateDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'CreateDBClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterSnapshotIdentifier', 'DBClusterIdentifier', ], 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshot' => [ 'shape' => 'DBClusterSnapshot', ], ], ], 'CreateDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'DBInstanceClass', 'Engine', ], 'members' => [ 'DBName' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'SensitiveString', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'DBParameterGroupName' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'StorageThroughput' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'NcharCharacterSetName' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'SensitiveString', ], 'StorageEncrypted' => [ 'shape' => 'BooleanOptional', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'Domain' => [ 'shape' => 'String', ], 'DomainFqdn' => [ 'shape' => 'String', ], 'DomainOu' => [ 'shape' => 'String', ], 'DomainAuthSecretArn' => [ 'shape' => 'String', ], 'DomainDnsIps' => [ 'shape' => 'StringList', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], 'PromotionTier' => [ 'shape' => 'IntegerOptional', ], 'Timezone' => [ 'shape' => 'String', ], 'EnableIAMDatabaseAuthentication' => [ 'shape' => 'BooleanOptional', ], 'EnablePerformanceInsights' => [ 'shape' => 'BooleanOptional', ], 'PerformanceInsightsKMSKeyId' => [ 'shape' => 'String', ], 'PerformanceInsightsRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'EnableCloudwatchLogsExports' => [ 'shape' => 'LogTypeList', ], 'ProcessorFeatures' => [ 'shape' => 'ProcessorFeatureList', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'MaxAllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'EnableCustomerOwnedIp' => [ 'shape' => 'BooleanOptional', ], 'NetworkType' => [ 'shape' => 'String', ], 'CustomIamInstanceProfile' => [ 'shape' => 'String', ], 'DBSystemId' => [ 'shape' => 'String', ], 'CACertificateIdentifier' => [ 'shape' => 'String', ], 'ManageMasterUserPassword' => [ 'shape' => 'BooleanOptional', ], 'MasterUserSecretKmsKeyId' => [ 'shape' => 'String', ], 'MultiTenant' => [ 'shape' => 'BooleanOptional', ], 'DedicatedLogVolume' => [ 'shape' => 'BooleanOptional', ], 'EngineLifecycleSupport' => [ 'shape' => 'String', ], ], ], 'CreateDBInstanceReadReplicaMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'SourceDBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'StorageThroughput' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupName' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'StorageType' => [ 'shape' => 'String', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'PreSignedUrl' => [ 'shape' => 'SensitiveString', ], 'EnableIAMDatabaseAuthentication' => [ 'shape' => 'BooleanOptional', ], 'EnablePerformanceInsights' => [ 'shape' => 'BooleanOptional', ], 'PerformanceInsightsKMSKeyId' => [ 'shape' => 'String', ], 'PerformanceInsightsRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'EnableCloudwatchLogsExports' => [ 'shape' => 'LogTypeList', ], 'ProcessorFeatures' => [ 'shape' => 'ProcessorFeatureList', ], 'UseDefaultProcessorFeatures' => [ 'shape' => 'BooleanOptional', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'Domain' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], 'DomainFqdn' => [ 'shape' => 'String', ], 'DomainOu' => [ 'shape' => 'String', ], 'DomainAuthSecretArn' => [ 'shape' => 'String', ], 'DomainDnsIps' => [ 'shape' => 'StringList', ], 'ReplicaMode' => [ 'shape' => 'ReplicaMode', ], 'NetworkType' => [ 'shape' => 'String', ], 'MaxAllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'CustomIamInstanceProfile' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'SourceDBClusterIdentifier' => [ 'shape' => 'String', ], 'DedicatedLogVolume' => [ 'shape' => 'BooleanOptional', ], 'UpgradeStorageConfig' => [ 'shape' => 'BooleanOptional', ], ], ], 'CreateDBInstanceReadReplicaResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'CreateDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'CreateDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', 'DBParameterGroupFamily', 'Description', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroup' => [ 'shape' => 'DBParameterGroup', ], ], ], 'CreateDBProxyEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'DBProxyName', 'DBProxyEndpointName', 'VpcSubnetIds', ], 'members' => [ 'DBProxyName' => [ 'shape' => 'DBProxyName', ], 'DBProxyEndpointName' => [ 'shape' => 'DBProxyEndpointName', ], 'VpcSubnetIds' => [ 'shape' => 'StringList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'StringList', ], 'TargetRole' => [ 'shape' => 'DBProxyEndpointTargetRole', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBProxyEndpointResponse' => [ 'type' => 'structure', 'members' => [ 'DBProxyEndpoint' => [ 'shape' => 'DBProxyEndpoint', ], ], ], 'CreateDBProxyRequest' => [ 'type' => 'structure', 'required' => [ 'DBProxyName', 'EngineFamily', 'RoleArn', 'VpcSubnetIds', ], 'members' => [ 'DBProxyName' => [ 'shape' => 'DBProxyName', ], 'EngineFamily' => [ 'shape' => 'EngineFamily', ], 'Auth' => [ 'shape' => 'UserAuthConfigList', ], 'RoleArn' => [ 'shape' => 'Arn', ], 'VpcSubnetIds' => [ 'shape' => 'StringList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'StringList', ], 'RequireTLS' => [ 'shape' => 'Boolean', ], 'IdleClientTimeout' => [ 'shape' => 'IntegerOptional', ], 'DebugLogging' => [ 'shape' => 'Boolean', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBProxyResponse' => [ 'type' => 'structure', 'members' => [ 'DBProxy' => [ 'shape' => 'DBProxy', ], ], ], 'CreateDBSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', 'DBSecurityGroupDescription', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'DBSecurityGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBSecurityGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroup' => [ 'shape' => 'DBSecurityGroup', ], ], ], 'CreateDBShardGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBShardGroupIdentifier', 'DBClusterIdentifier', 'MaxACU', ], 'members' => [ 'DBShardGroupIdentifier' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'ComputeRedundancy' => [ 'shape' => 'IntegerOptional', ], 'MaxACU' => [ 'shape' => 'DoubleOptional', ], 'MinACU' => [ 'shape' => 'DoubleOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], ], ], 'CreateDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', 'DBInstanceIdentifier', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshot' => [ 'shape' => 'DBSnapshot', ], ], ], 'CreateDBSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSubnetGroupName', 'DBSubnetGroupDescription', 'SubnetIds', ], 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSubnetGroupDescription' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroup' => [ 'shape' => 'DBSubnetGroup', ], ], ], 'CreateEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', 'SnsTopicArn', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'SourceIds' => [ 'shape' => 'SourceIdsList', ], 'Enabled' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'CreateGlobalClusterMessage' => [ 'type' => 'structure', 'required' => [ 'GlobalClusterIdentifier', ], 'members' => [ 'GlobalClusterIdentifier' => [ 'shape' => 'GlobalClusterIdentifier', ], 'SourceDBClusterIdentifier' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'EngineLifecycleSupport' => [ 'shape' => 'String', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'DatabaseName' => [ 'shape' => 'String', ], 'StorageEncrypted' => [ 'shape' => 'BooleanOptional', ], ], ], 'CreateGlobalClusterResult' => [ 'type' => 'structure', 'members' => [ 'GlobalCluster' => [ 'shape' => 'GlobalCluster', ], ], ], 'CreateIntegrationMessage' => [ 'type' => 'structure', 'required' => [ 'SourceArn', 'TargetArn', 'IntegrationName', ], 'members' => [ 'SourceArn' => [ 'shape' => 'SourceArn', ], 'TargetArn' => [ 'shape' => 'Arn', ], 'IntegrationName' => [ 'shape' => 'IntegrationName', ], 'KMSKeyId' => [ 'shape' => 'String', ], 'AdditionalEncryptionContext' => [ 'shape' => 'EncryptionContextMap', ], 'Tags' => [ 'shape' => 'TagList', ], 'DataFilter' => [ 'shape' => 'DataFilter', ], 'Description' => [ 'shape' => 'IntegrationDescription', ], ], ], 'CreateOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'OptionGroupName', 'EngineName', 'MajorEngineVersion', 'OptionGroupDescription', ], 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'OptionGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateOptionGroupResult' => [ 'type' => 'structure', 'members' => [ 'OptionGroup' => [ 'shape' => 'OptionGroup', ], ], ], 'CreateTenantDatabaseMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'TenantDBName', 'MasterUsername', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'TenantDBName' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'SensitiveString', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'NcharCharacterSetName' => [ 'shape' => 'String', ], 'ManageMasterUserPassword' => [ 'shape' => 'BooleanOptional', ], 'MasterUserSecretKmsKeyId' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateTenantDatabaseResult' => [ 'type' => 'structure', 'members' => [ 'TenantDatabase' => [ 'shape' => 'TenantDatabase', ], ], ], 'CustomAvailabilityZoneNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CustomAvailabilityZoneNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'CustomDBEngineVersionAMI' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'CustomDBEngineVersionAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CustomDBEngineVersionAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CustomDBEngineVersionManifest' => [ 'type' => 'string', 'max' => 51000, 'min' => 1, 'pattern' => '[\\s\\S]*', ], 'CustomDBEngineVersionNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CustomDBEngineVersionNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'CustomDBEngineVersionQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CustomDBEngineVersionQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CustomEngineName' => [ 'type' => 'string', 'max' => 35, 'min' => 1, 'pattern' => '^[A-Za-z0-9-]{1,35}$', ], 'CustomEngineVersion' => [ 'type' => 'string', 'max' => 60, 'min' => 1, 'pattern' => '^[a-z0-9_.-]{1,60}$', ], 'CustomEngineVersionStatus' => [ 'type' => 'string', 'enum' => [ 'available', 'inactive', 'inactive-except-restore', ], ], 'DBCluster' => [ 'type' => 'structure', 'members' => [ 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'DatabaseName' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterParameterGroup' => [ 'shape' => 'String', ], 'DBSubnetGroup' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'PercentProgress' => [ 'shape' => 'String', ], 'EarliestRestorableTime' => [ 'shape' => 'TStamp', ], 'Endpoint' => [ 'shape' => 'String', ], 'ReaderEndpoint' => [ 'shape' => 'String', ], 'CustomEndpoints' => [ 'shape' => 'StringList', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'LatestRestorableTime' => [ 'shape' => 'TStamp', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MasterUsername' => [ 'shape' => 'String', ], 'DBClusterOptionGroupMemberships' => [ 'shape' => 'DBClusterOptionGroupMemberships', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'ReplicationSourceIdentifier' => [ 'shape' => 'String', ], 'ReadReplicaIdentifiers' => [ 'shape' => 'ReadReplicaIdentifierList', ], 'StatusInfos' => [ 'shape' => 'DBClusterStatusInfoList', ], 'DBClusterMembers' => [ 'shape' => 'DBClusterMemberList', ], 'VpcSecurityGroups' => [ 'shape' => 'VpcSecurityGroupMembershipList', ], 'HostedZoneId' => [ 'shape' => 'String', ], 'StorageEncrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'DbClusterResourceId' => [ 'shape' => 'String', ], 'DBClusterArn' => [ 'shape' => 'String', ], 'AssociatedRoles' => [ 'shape' => 'DBClusterRoles', ], 'IAMDatabaseAuthenticationEnabled' => [ 'shape' => 'BooleanOptional', ], 'CloneGroupId' => [ 'shape' => 'String', ], 'ClusterCreateTime' => [ 'shape' => 'TStamp', ], 'EarliestBacktrackTime' => [ 'shape' => 'TStamp', ], 'BacktrackWindow' => [ 'shape' => 'LongOptional', ], 'BacktrackConsumedChangeRecords' => [ 'shape' => 'LongOptional', ], 'EnabledCloudwatchLogsExports' => [ 'shape' => 'LogTypeList', ], 'Capacity' => [ 'shape' => 'IntegerOptional', ], 'PendingModifiedValues' => [ 'shape' => 'ClusterPendingModifiedValues', ], 'EngineMode' => [ 'shape' => 'String', ], 'ScalingConfigurationInfo' => [ 'shape' => 'ScalingConfigurationInfo', ], 'RdsCustomClusterConfiguration' => [ 'shape' => 'RdsCustomClusterConfiguration', ], 'DBClusterInstanceClass' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'StorageThroughput' => [ 'shape' => 'IntegerOptional', ], 'IOOptimizedNextAllowedModificationTime' => [ 'shape' => 'TStamp', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'HttpEndpointEnabled' => [ 'shape' => 'BooleanOptional', ], 'ActivityStreamMode' => [ 'shape' => 'ActivityStreamMode', ], 'ActivityStreamStatus' => [ 'shape' => 'ActivityStreamStatus', ], 'ActivityStreamKmsKeyId' => [ 'shape' => 'String', ], 'ActivityStreamKinesisStreamName' => [ 'shape' => 'String', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'CrossAccountClone' => [ 'shape' => 'BooleanOptional', ], 'DomainMemberships' => [ 'shape' => 'DomainMembershipList', ], 'TagList' => [ 'shape' => 'TagList', ], 'GlobalWriteForwardingStatus' => [ 'shape' => 'WriteForwardingStatus', ], 'GlobalWriteForwardingRequested' => [ 'shape' => 'BooleanOptional', ], 'ServerlessV2ScalingConfiguration' => [ 'shape' => 'ServerlessV2ScalingConfigurationInfo', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'PerformanceInsightsEnabled' => [ 'shape' => 'BooleanOptional', ], 'PerformanceInsightsKMSKeyId' => [ 'shape' => 'String', ], 'PerformanceInsightsRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'DBSystemId' => [ 'shape' => 'String', ], 'MasterUserSecret' => [ 'shape' => 'MasterUserSecret', ], 'LimitlessDatabase' => [ 'shape' => 'LimitlessDatabase', ], 'ClusterScalabilityType' => [ 'shape' => 'ClusterScalabilityType', ], 'CertificateDetails' => [ 'shape' => 'CertificateDetails', ], 'EngineLifecycleSupport' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBClusterAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterAutomatedBackup' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'DBClusterAutomatedBackupsArn' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'RestoreWindow' => [ 'shape' => 'RestoreWindow', ], 'MasterUsername' => [ 'shape' => 'String', ], 'DbClusterResourceId' => [ 'shape' => 'String', ], 'Region' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'IAMDatabaseAuthenticationEnabled' => [ 'shape' => 'Boolean', ], 'ClusterCreateTime' => [ 'shape' => 'TStamp', ], 'StorageEncrypted' => [ 'shape' => 'Boolean', ], 'AllocatedStorage' => [ 'shape' => 'Integer', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBClusterArn' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'EngineMode' => [ 'shape' => 'String', ], 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'Port' => [ 'shape' => 'Integer', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'StorageThroughput' => [ 'shape' => 'IntegerOptional', ], ], 'wrapper' => true, ], 'DBClusterAutomatedBackupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterAutomatedBackup', 'locationName' => 'DBClusterAutomatedBackup', ], ], 'DBClusterAutomatedBackupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBClusterAutomatedBackups' => [ 'shape' => 'DBClusterAutomatedBackupList', ], ], ], 'DBClusterAutomatedBackupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterAutomatedBackupNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterAutomatedBackupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterAutomatedBackupQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterBacktrack' => [ 'type' => 'structure', 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'BacktrackIdentifier' => [ 'shape' => 'String', ], 'BacktrackTo' => [ 'shape' => 'TStamp', ], 'BacktrackedFrom' => [ 'shape' => 'TStamp', ], 'BacktrackRequestCreationTime' => [ 'shape' => 'TStamp', ], 'Status' => [ 'shape' => 'String', ], ], ], 'DBClusterBacktrackList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterBacktrack', 'locationName' => 'DBClusterBacktrack', ], ], 'DBClusterBacktrackMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBClusterBacktracks' => [ 'shape' => 'DBClusterBacktrackList', ], ], ], 'DBClusterBacktrackNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterBacktrackNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterCapacityInfo' => [ 'type' => 'structure', 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'PendingCapacity' => [ 'shape' => 'IntegerOptional', ], 'CurrentCapacity' => [ 'shape' => 'IntegerOptional', ], 'SecondsBeforeTimeout' => [ 'shape' => 'IntegerOptional', ], 'TimeoutAction' => [ 'shape' => 'String', ], ], ], 'DBClusterEndpoint' => [ 'type' => 'structure', 'members' => [ 'DBClusterEndpointIdentifier' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterEndpointResourceIdentifier' => [ 'shape' => 'String', ], 'Endpoint' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'EndpointType' => [ 'shape' => 'String', ], 'CustomEndpointType' => [ 'shape' => 'String', ], 'StaticMembers' => [ 'shape' => 'StringList', ], 'ExcludedMembers' => [ 'shape' => 'StringList', ], 'DBClusterEndpointArn' => [ 'shape' => 'String', ], ], ], 'DBClusterEndpointAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterEndpointAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterEndpointList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterEndpoint', 'locationName' => 'DBClusterEndpointList', ], ], 'DBClusterEndpointMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBClusterEndpoints' => [ 'shape' => 'DBClusterEndpointList', ], ], ], 'DBClusterEndpointNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterEndpointNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterEndpointQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterEndpointQuotaExceededFault', 'httpStatusCode' => 403, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterIdentifier' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => '[A-Za-z][0-9A-Za-z-:._]*', ], 'DBClusterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBCluster', 'locationName' => 'DBCluster', ], ], 'DBClusterMember' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'IsClusterWriter' => [ 'shape' => 'Boolean', ], 'DBClusterParameterGroupStatus' => [ 'shape' => 'String', ], 'PromotionTier' => [ 'shape' => 'IntegerOptional', ], ], 'wrapper' => true, ], 'DBClusterMemberList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterMember', 'locationName' => 'DBClusterMember', ], ], 'DBClusterMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBClusters' => [ 'shape' => 'DBClusterList', ], ], ], 'DBClusterNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterOptionGroupMemberships' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterOptionGroupStatus', 'locationName' => 'DBClusterOptionGroup', ], ], 'DBClusterOptionGroupStatus' => [ 'type' => 'structure', 'members' => [ 'DBClusterOptionGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'DBClusterParameterGroup' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'DBClusterParameterGroupArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBClusterParameterGroupDetails' => [ 'type' => 'structure', 'members' => [ 'Parameters' => [ 'shape' => 'ParametersList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DBClusterParameterGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterParameterGroup', 'locationName' => 'DBClusterParameterGroup', ], ], 'DBClusterParameterGroupNameMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DBClusterParameterGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterParameterGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBClusterParameterGroups' => [ 'shape' => 'DBClusterParameterGroupList', ], ], ], 'DBClusterQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterQuotaExceededFault', 'httpStatusCode' => 403, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterRole' => [ 'type' => 'structure', 'members' => [ 'RoleArn' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'FeatureName' => [ 'shape' => 'String', ], ], ], 'DBClusterRoleAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterRoleAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterRoleNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterRoleNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterRoleQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterRoleQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterRoles' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterRole', 'locationName' => 'DBClusterRole', ], ], 'DBClusterSnapshot' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotCreateTime' => [ 'shape' => 'TStamp', ], 'Engine' => [ 'shape' => 'String', ], 'EngineMode' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'Integer', ], 'Status' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], 'VpcId' => [ 'shape' => 'String', ], 'ClusterCreateTime' => [ 'shape' => 'TStamp', ], 'MasterUsername' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'PercentProgress' => [ 'shape' => 'Integer', ], 'StorageEncrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'DBClusterSnapshotArn' => [ 'shape' => 'String', ], 'SourceDBClusterSnapshotArn' => [ 'shape' => 'String', ], 'IAMDatabaseAuthenticationEnabled' => [ 'shape' => 'Boolean', ], 'TagList' => [ 'shape' => 'TagList', ], 'StorageType' => [ 'shape' => 'String', ], 'StorageThroughput' => [ 'shape' => 'IntegerOptional', ], 'DbClusterResourceId' => [ 'shape' => 'String', ], 'DBSystemId' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBClusterSnapshotAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterSnapshotAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterSnapshotAttribute' => [ 'type' => 'structure', 'members' => [ 'AttributeName' => [ 'shape' => 'String', ], 'AttributeValues' => [ 'shape' => 'AttributeValueList', ], ], ], 'DBClusterSnapshotAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterSnapshotAttribute', 'locationName' => 'DBClusterSnapshotAttribute', ], ], 'DBClusterSnapshotAttributesResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBClusterSnapshotAttributes' => [ 'shape' => 'DBClusterSnapshotAttributeList', ], ], 'wrapper' => true, ], 'DBClusterSnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterSnapshot', 'locationName' => 'DBClusterSnapshot', ], ], 'DBClusterSnapshotMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBClusterSnapshots' => [ 'shape' => 'DBClusterSnapshotList', ], ], ], 'DBClusterSnapshotNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterSnapshotNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterStatusInfo' => [ 'type' => 'structure', 'members' => [ 'StatusType' => [ 'shape' => 'String', ], 'Normal' => [ 'shape' => 'Boolean', ], 'Status' => [ 'shape' => 'String', ], 'Message' => [ 'shape' => 'String', ], ], ], 'DBClusterStatusInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterStatusInfo', 'locationName' => 'DBClusterStatusInfo', ], ], 'DBEngineVersion' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DatabaseInstallationFilesS3BucketName' => [ 'shape' => 'String', ], 'DatabaseInstallationFilesS3Prefix' => [ 'shape' => 'String', ], 'CustomDBEngineVersionManifest' => [ 'shape' => 'CustomDBEngineVersionManifest', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'DBEngineDescription' => [ 'shape' => 'String', ], 'DBEngineVersionArn' => [ 'shape' => 'String', ], 'DBEngineVersionDescription' => [ 'shape' => 'String', ], 'DefaultCharacterSet' => [ 'shape' => 'CharacterSet', ], 'Image' => [ 'shape' => 'CustomDBEngineVersionAMI', ], 'DBEngineMediaType' => [ 'shape' => 'String', ], 'KMSKeyId' => [ 'shape' => 'String', ], 'CreateTime' => [ 'shape' => 'TStamp', ], 'SupportedCharacterSets' => [ 'shape' => 'SupportedCharacterSetsList', ], 'SupportedNcharCharacterSets' => [ 'shape' => 'SupportedCharacterSetsList', ], 'ValidUpgradeTarget' => [ 'shape' => 'ValidUpgradeTargetList', ], 'SupportedTimezones' => [ 'shape' => 'SupportedTimezonesList', ], 'ExportableLogTypes' => [ 'shape' => 'LogTypeList', ], 'SupportsLogExportsToCloudwatchLogs' => [ 'shape' => 'Boolean', ], 'SupportsReadReplica' => [ 'shape' => 'Boolean', ], 'SupportedEngineModes' => [ 'shape' => 'EngineModeList', ], 'SupportedFeatureNames' => [ 'shape' => 'FeatureNameList', ], 'Status' => [ 'shape' => 'String', ], 'SupportsParallelQuery' => [ 'shape' => 'Boolean', ], 'SupportsGlobalDatabases' => [ 'shape' => 'Boolean', ], 'TagList' => [ 'shape' => 'TagList', ], 'SupportsBabelfish' => [ 'shape' => 'Boolean', ], 'SupportsLimitlessDatabase' => [ 'shape' => 'Boolean', ], 'SupportsCertificateRotationWithoutRestart' => [ 'shape' => 'BooleanOptional', ], 'SupportedCACertificateIdentifiers' => [ 'shape' => 'CACertificateIdentifiersList', ], 'SupportsIntegrations' => [ 'shape' => 'Boolean', ], 'ServerlessV2FeaturesSupport' => [ 'shape' => 'ServerlessV2FeaturesSupport', ], ], ], 'DBEngineVersionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBEngineVersion', 'locationName' => 'DBEngineVersion', ], ], 'DBEngineVersionMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBEngineVersions' => [ 'shape' => 'DBEngineVersionList', ], ], ], 'DBInstance' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'DBInstanceStatus' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'DBName' => [ 'shape' => 'String', ], 'Endpoint' => [ 'shape' => 'Endpoint', ], 'AllocatedStorage' => [ 'shape' => 'Integer', ], 'InstanceCreateTime' => [ 'shape' => 'TStamp', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'Integer', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroupMembershipList', ], 'VpcSecurityGroups' => [ 'shape' => 'VpcSecurityGroupMembershipList', ], 'DBParameterGroups' => [ 'shape' => 'DBParameterGroupStatusList', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroup' => [ 'shape' => 'DBSubnetGroup', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'PendingModifiedValues' => [ 'shape' => 'PendingModifiedValues', ], 'LatestRestorableTime' => [ 'shape' => 'TStamp', ], 'MultiAZ' => [ 'shape' => 'Boolean', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'ReadReplicaSourceDBInstanceIdentifier' => [ 'shape' => 'String', ], 'ReadReplicaDBInstanceIdentifiers' => [ 'shape' => 'ReadReplicaDBInstanceIdentifierList', ], 'ReadReplicaDBClusterIdentifiers' => [ 'shape' => 'ReadReplicaDBClusterIdentifierList', ], 'ReplicaMode' => [ 'shape' => 'ReplicaMode', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'StorageThroughput' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupMemberships' => [ 'shape' => 'OptionGroupMembershipList', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'NcharCharacterSetName' => [ 'shape' => 'String', ], 'SecondaryAvailabilityZone' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'Boolean', ], 'StatusInfos' => [ 'shape' => 'DBInstanceStatusInfoList', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'DbInstancePort' => [ 'shape' => 'Integer', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'StorageEncrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'DbiResourceId' => [ 'shape' => 'String', ], 'CACertificateIdentifier' => [ 'shape' => 'String', ], 'DomainMemberships' => [ 'shape' => 'DomainMembershipList', ], 'CopyTagsToSnapshot' => [ 'shape' => 'Boolean', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'EnhancedMonitoringResourceArn' => [ 'shape' => 'String', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'PromotionTier' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceArn' => [ 'shape' => 'String', ], 'Timezone' => [ 'shape' => 'String', ], 'IAMDatabaseAuthenticationEnabled' => [ 'shape' => 'Boolean', ], 'PerformanceInsightsEnabled' => [ 'shape' => 'BooleanOptional', ], 'PerformanceInsightsKMSKeyId' => [ 'shape' => 'String', ], 'PerformanceInsightsRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'EnabledCloudwatchLogsExports' => [ 'shape' => 'LogTypeList', ], 'ProcessorFeatures' => [ 'shape' => 'ProcessorFeatureList', ], 'DeletionProtection' => [ 'shape' => 'Boolean', ], 'AssociatedRoles' => [ 'shape' => 'DBInstanceRoles', ], 'ListenerEndpoint' => [ 'shape' => 'Endpoint', ], 'MaxAllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'TagList' => [ 'shape' => 'TagList', ], 'AutomationMode' => [ 'shape' => 'AutomationMode', ], 'ResumeFullAutomationModeTime' => [ 'shape' => 'TStamp', ], 'CustomerOwnedIpEnabled' => [ 'shape' => 'BooleanOptional', ], 'NetworkType' => [ 'shape' => 'String', ], 'ActivityStreamStatus' => [ 'shape' => 'ActivityStreamStatus', ], 'ActivityStreamKmsKeyId' => [ 'shape' => 'String', ], 'ActivityStreamKinesisStreamName' => [ 'shape' => 'String', ], 'ActivityStreamMode' => [ 'shape' => 'ActivityStreamMode', ], 'ActivityStreamEngineNativeAuditFieldsIncluded' => [ 'shape' => 'BooleanOptional', ], 'AwsBackupRecoveryPointArn' => [ 'shape' => 'String', ], 'DBInstanceAutomatedBackupsReplications' => [ 'shape' => 'DBInstanceAutomatedBackupsReplicationList', ], 'CustomIamInstanceProfile' => [ 'shape' => 'String', ], 'CertificateDetails' => [ 'shape' => 'CertificateDetails', ], 'DBSystemId' => [ 'shape' => 'String', ], 'MasterUserSecret' => [ 'shape' => 'MasterUserSecret', ], 'ReadReplicaSourceDBClusterIdentifier' => [ 'shape' => 'String', ], 'PercentProgress' => [ 'shape' => 'String', ], 'MultiTenant' => [ 'shape' => 'BooleanOptional', ], 'DedicatedLogVolume' => [ 'shape' => 'Boolean', ], 'IsStorageConfigUpgradeAvailable' => [ 'shape' => 'BooleanOptional', ], 'EngineLifecycleSupport' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBInstanceAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceAutomatedBackup' => [ 'type' => 'structure', 'members' => [ 'DBInstanceArn' => [ 'shape' => 'String', ], 'DbiResourceId' => [ 'shape' => 'String', ], 'Region' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'RestoreWindow' => [ 'shape' => 'RestoreWindow', ], 'AllocatedStorage' => [ 'shape' => 'Integer', ], 'Status' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'InstanceCreateTime' => [ 'shape' => 'TStamp', ], 'MasterUsername' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'StorageThroughput' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'Encrypted' => [ 'shape' => 'Boolean', ], 'StorageType' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'Timezone' => [ 'shape' => 'String', ], 'IAMDatabaseAuthenticationEnabled' => [ 'shape' => 'Boolean', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceAutomatedBackupsArn' => [ 'shape' => 'String', ], 'DBInstanceAutomatedBackupsReplications' => [ 'shape' => 'DBInstanceAutomatedBackupsReplicationList', ], 'MultiTenant' => [ 'shape' => 'BooleanOptional', ], 'DedicatedLogVolume' => [ 'shape' => 'BooleanOptional', ], ], 'wrapper' => true, ], 'DBInstanceAutomatedBackupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBInstanceAutomatedBackup', 'locationName' => 'DBInstanceAutomatedBackup', ], ], 'DBInstanceAutomatedBackupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBInstanceAutomatedBackups' => [ 'shape' => 'DBInstanceAutomatedBackupList', ], ], ], 'DBInstanceAutomatedBackupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceAutomatedBackupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceAutomatedBackupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceAutomatedBackupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceAutomatedBackupsReplication' => [ 'type' => 'structure', 'members' => [ 'DBInstanceAutomatedBackupsArn' => [ 'shape' => 'String', ], ], ], 'DBInstanceAutomatedBackupsReplicationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBInstanceAutomatedBackupsReplication', 'locationName' => 'DBInstanceAutomatedBackupsReplication', ], ], 'DBInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBInstance', 'locationName' => 'DBInstance', ], ], 'DBInstanceMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBInstances' => [ 'shape' => 'DBInstanceList', ], ], ], 'DBInstanceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceNotReadyFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceNotReady', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceRole' => [ 'type' => 'structure', 'members' => [ 'RoleArn' => [ 'shape' => 'String', ], 'FeatureName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'DBInstanceRoleAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceRoleAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceRoleNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceRoleNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceRoleQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceRoleQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceRoles' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBInstanceRole', 'locationName' => 'DBInstanceRole', ], ], 'DBInstanceStatusInfo' => [ 'type' => 'structure', 'members' => [ 'StatusType' => [ 'shape' => 'String', ], 'Normal' => [ 'shape' => 'Boolean', ], 'Status' => [ 'shape' => 'String', ], 'Message' => [ 'shape' => 'String', ], ], ], 'DBInstanceStatusInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBInstanceStatusInfo', 'locationName' => 'DBInstanceStatusInfo', ], ], 'DBLogFileNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBLogFileNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBMajorEngineVersion' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'SupportedEngineLifecycles' => [ 'shape' => 'SupportedEngineLifecycleList', ], ], ], 'DBMajorEngineVersionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBMajorEngineVersion', 'locationName' => 'DBMajorEngineVersion', ], ], 'DBParameterGroup' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'DBParameterGroupArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBParameterGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBParameterGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroupDetails' => [ 'type' => 'structure', 'members' => [ 'Parameters' => [ 'shape' => 'ParametersList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DBParameterGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBParameterGroup', 'locationName' => 'DBParameterGroup', ], ], 'DBParameterGroupNameMessage' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DBParameterGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBParameterGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBParameterGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroupStatus' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'ParameterApplyStatus' => [ 'shape' => 'String', ], ], ], 'DBParameterGroupStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBParameterGroupStatus', 'locationName' => 'DBParameterGroup', ], ], 'DBParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBParameterGroups' => [ 'shape' => 'DBParameterGroupList', ], ], ], 'DBProxy' => [ 'type' => 'structure', 'members' => [ 'DBProxyName' => [ 'shape' => 'String', ], 'DBProxyArn' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'DBProxyStatus', ], 'EngineFamily' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'StringList', ], 'VpcSubnetIds' => [ 'shape' => 'StringList', ], 'Auth' => [ 'shape' => 'UserAuthConfigInfoList', ], 'RoleArn' => [ 'shape' => 'String', ], 'Endpoint' => [ 'shape' => 'String', ], 'RequireTLS' => [ 'shape' => 'Boolean', ], 'IdleClientTimeout' => [ 'shape' => 'Integer', ], 'DebugLogging' => [ 'shape' => 'Boolean', ], 'CreatedDate' => [ 'shape' => 'TStamp', ], 'UpdatedDate' => [ 'shape' => 'TStamp', ], ], ], 'DBProxyAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBProxyAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBProxyEndpoint' => [ 'type' => 'structure', 'members' => [ 'DBProxyEndpointName' => [ 'shape' => 'String', ], 'DBProxyEndpointArn' => [ 'shape' => 'String', ], 'DBProxyName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'DBProxyEndpointStatus', ], 'VpcId' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'StringList', ], 'VpcSubnetIds' => [ 'shape' => 'StringList', ], 'Endpoint' => [ 'shape' => 'String', ], 'CreatedDate' => [ 'shape' => 'TStamp', ], 'TargetRole' => [ 'shape' => 'DBProxyEndpointTargetRole', ], 'IsDefault' => [ 'shape' => 'Boolean', ], ], ], 'DBProxyEndpointAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBProxyEndpointAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBProxyEndpointList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBProxyEndpoint', ], ], 'DBProxyEndpointName' => [ 'type' => 'string', 'max' => 63, 'min' => 1, 'pattern' => '[a-zA-Z](?:-?[a-zA-Z0-9]+)*', ], 'DBProxyEndpointNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBProxyEndpointNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBProxyEndpointQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBProxyEndpointQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBProxyEndpointStatus' => [ 'type' => 'string', 'enum' => [ 'available', 'modifying', 'incompatible-network', 'insufficient-resource-limits', 'creating', 'deleting', ], ], 'DBProxyEndpointTargetRole' => [ 'type' => 'string', 'enum' => [ 'READ_WRITE', 'READ_ONLY', ], ], 'DBProxyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBProxy', ], ], 'DBProxyName' => [ 'type' => 'string', 'max' => 63, 'min' => 1, 'pattern' => '[a-zA-Z](?:-?[a-zA-Z0-9]+)*', ], 'DBProxyNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBProxyNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBProxyQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBProxyQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBProxyStatus' => [ 'type' => 'string', 'enum' => [ 'available', 'modifying', 'incompatible-network', 'insufficient-resource-limits', 'creating', 'deleting', 'suspended', 'suspending', 'reactivating', ], ], 'DBProxyTarget' => [ 'type' => 'structure', 'members' => [ 'TargetArn' => [ 'shape' => 'String', ], 'Endpoint' => [ 'shape' => 'String', ], 'TrackedClusterId' => [ 'shape' => 'String', ], 'RdsResourceId' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], 'Type' => [ 'shape' => 'TargetType', ], 'Role' => [ 'shape' => 'TargetRole', ], 'TargetHealth' => [ 'shape' => 'TargetHealth', ], ], ], 'DBProxyTargetAlreadyRegisteredFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBProxyTargetAlreadyRegisteredFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBProxyTargetGroup' => [ 'type' => 'structure', 'members' => [ 'DBProxyName' => [ 'shape' => 'String', ], 'TargetGroupName' => [ 'shape' => 'String', ], 'TargetGroupArn' => [ 'shape' => 'String', ], 'IsDefault' => [ 'shape' => 'Boolean', ], 'Status' => [ 'shape' => 'String', ], 'ConnectionPoolConfig' => [ 'shape' => 'ConnectionPoolConfigurationInfo', ], 'CreatedDate' => [ 'shape' => 'TStamp', ], 'UpdatedDate' => [ 'shape' => 'TStamp', ], ], ], 'DBProxyTargetGroupName' => [ 'type' => 'string', 'max' => 63, 'min' => 1, 'pattern' => '[a-zA-Z](?:-?[a-zA-Z0-9]+)*', ], 'DBProxyTargetGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBProxyTargetGroupNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBProxyTargetNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBProxyTargetNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBRecommendation' => [ 'type' => 'structure', 'members' => [ 'RecommendationId' => [ 'shape' => 'String', ], 'TypeId' => [ 'shape' => 'String', ], 'Severity' => [ 'shape' => 'String', ], 'ResourceArn' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'CreatedTime' => [ 'shape' => 'TStamp', ], 'UpdatedTime' => [ 'shape' => 'TStamp', ], 'Detection' => [ 'shape' => 'String', ], 'Recommendation' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Reason' => [ 'shape' => 'String', ], 'RecommendedActions' => [ 'shape' => 'RecommendedActionList', ], 'Category' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'TypeDetection' => [ 'shape' => 'String', ], 'TypeRecommendation' => [ 'shape' => 'String', ], 'Impact' => [ 'shape' => 'String', ], 'AdditionalInfo' => [ 'shape' => 'String', ], 'Links' => [ 'shape' => 'DocLinkList', ], 'IssueDetails' => [ 'shape' => 'IssueDetails', ], ], ], 'DBRecommendationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBRecommendation', ], ], 'DBRecommendationMessage' => [ 'type' => 'structure', 'members' => [ 'DBRecommendation' => [ 'shape' => 'DBRecommendation', ], ], ], 'DBRecommendationsMessage' => [ 'type' => 'structure', 'members' => [ 'DBRecommendations' => [ 'shape' => 'DBRecommendationList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DBSecurityGroup' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', ], 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'DBSecurityGroupDescription' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'EC2SecurityGroups' => [ 'shape' => 'EC2SecurityGroupList', ], 'IPRanges' => [ 'shape' => 'IPRangeList', ], 'DBSecurityGroupArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBSecurityGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSecurityGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'DBSecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSecurityGroupMembership', 'locationName' => 'DBSecurityGroup', ], ], 'DBSecurityGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroups', ], ], ], 'DBSecurityGroupNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'DBSecurityGroupName', ], ], 'DBSecurityGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSecurityGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroupNotSupportedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSecurityGroupNotSupported', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'QuotaExceeded.DBSecurityGroup', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSecurityGroup', 'locationName' => 'DBSecurityGroup', ], ], 'DBShardGroup' => [ 'type' => 'structure', 'members' => [ 'DBShardGroupResourceId' => [ 'shape' => 'String', ], 'DBShardGroupIdentifier' => [ 'shape' => 'DBShardGroupIdentifier', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'MaxACU' => [ 'shape' => 'DoubleOptional', ], 'MinACU' => [ 'shape' => 'DoubleOptional', ], 'ComputeRedundancy' => [ 'shape' => 'IntegerOptional', ], 'Status' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'Endpoint' => [ 'shape' => 'String', ], ], ], 'DBShardGroupIdentifier' => [ 'type' => 'string', 'max' => 63, 'min' => 1, 'pattern' => '[a-zA-Z](?:-?[a-zA-Z0-9]+)*', ], 'DBShardGroupsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBShardGroup', 'locationName' => 'DBShardGroup', ], ], 'DBSnapshot' => [ 'type' => 'structure', 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'SnapshotCreateTime' => [ 'shape' => 'TStamp', ], 'Engine' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'Integer', ], 'Status' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'InstanceCreateTime' => [ 'shape' => 'TStamp', ], 'MasterUsername' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'StorageThroughput' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PercentProgress' => [ 'shape' => 'Integer', ], 'SourceRegion' => [ 'shape' => 'String', ], 'SourceDBSnapshotIdentifier' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'Encrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'DBSnapshotArn' => [ 'shape' => 'String', ], 'Timezone' => [ 'shape' => 'String', ], 'IAMDatabaseAuthenticationEnabled' => [ 'shape' => 'Boolean', ], 'ProcessorFeatures' => [ 'shape' => 'ProcessorFeatureList', ], 'DbiResourceId' => [ 'shape' => 'String', ], 'TagList' => [ 'shape' => 'TagList', ], 'OriginalSnapshotCreateTime' => [ 'shape' => 'TStamp', ], 'DBSystemId' => [ 'shape' => 'String', ], 'MultiTenant' => [ 'shape' => 'BooleanOptional', ], 'DedicatedLogVolume' => [ 'shape' => 'Boolean', ], ], 'wrapper' => true, ], 'DBSnapshotAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSnapshotAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSnapshotAttribute' => [ 'type' => 'structure', 'members' => [ 'AttributeName' => [ 'shape' => 'String', ], 'AttributeValues' => [ 'shape' => 'AttributeValueList', ], ], 'wrapper' => true, ], 'DBSnapshotAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSnapshotAttribute', 'locationName' => 'DBSnapshotAttribute', ], ], 'DBSnapshotAttributesResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBSnapshotAttributes' => [ 'shape' => 'DBSnapshotAttributeList', ], ], 'wrapper' => true, ], 'DBSnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSnapshot', 'locationName' => 'DBSnapshot', ], ], 'DBSnapshotMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBSnapshots' => [ 'shape' => 'DBSnapshotList', ], ], ], 'DBSnapshotNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSnapshotNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBSnapshotTenantDatabase' => [ 'type' => 'structure', 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DbiResourceId' => [ 'shape' => 'String', ], 'EngineName' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'TenantDatabaseCreateTime' => [ 'shape' => 'TStamp', ], 'TenantDBName' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'TenantDatabaseResourceId' => [ 'shape' => 'String', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'DBSnapshotTenantDatabaseARN' => [ 'shape' => 'String', ], 'NcharCharacterSetName' => [ 'shape' => 'String', ], 'TagList' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'DBSnapshotTenantDatabaseNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSnapshotTenantDatabaseNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBSnapshotTenantDatabasesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSnapshotTenantDatabase', 'locationName' => 'DBSnapshotTenantDatabase', ], ], 'DBSnapshotTenantDatabasesMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBSnapshotTenantDatabases' => [ 'shape' => 'DBSnapshotTenantDatabasesList', ], ], ], 'DBSubnetGroup' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSubnetGroupDescription' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'SubnetGroupStatus' => [ 'shape' => 'String', ], 'Subnets' => [ 'shape' => 'SubnetList', ], 'DBSubnetGroupArn' => [ 'shape' => 'String', ], 'SupportedNetworkTypes' => [ 'shape' => 'StringList', ], ], 'wrapper' => true, ], 'DBSubnetGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupDoesNotCoverEnoughAZs' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupDoesNotCoverEnoughAZs', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBSubnetGroups' => [ 'shape' => 'DBSubnetGroups', ], ], ], 'DBSubnetGroupNotAllowedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupNotAllowedFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSubnetGroup', 'locationName' => 'DBSubnetGroup', ], ], 'DBSubnetQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBUpgradeDependencyFailureFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBUpgradeDependencyFailure', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DataFilter' => [ 'type' => 'string', 'max' => 25600, 'min' => 1, 'pattern' => '[a-zA-Z0-9_ "\\\\\\-$,*.:?+\\/]*', ], 'DatabaseArn' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => '^arn:[A-Za-z][0-9A-Za-z-:._]*', ], 'DeleteBlueGreenDeploymentRequest' => [ 'type' => 'structure', 'required' => [ 'BlueGreenDeploymentIdentifier', ], 'members' => [ 'BlueGreenDeploymentIdentifier' => [ 'shape' => 'BlueGreenDeploymentIdentifier', ], 'DeleteTarget' => [ 'shape' => 'BooleanOptional', ], ], ], 'DeleteBlueGreenDeploymentResponse' => [ 'type' => 'structure', 'members' => [ 'BlueGreenDeployment' => [ 'shape' => 'BlueGreenDeployment', ], ], ], 'DeleteCustomDBEngineVersionMessage' => [ 'type' => 'structure', 'required' => [ 'Engine', 'EngineVersion', ], 'members' => [ 'Engine' => [ 'shape' => 'CustomEngineName', ], 'EngineVersion' => [ 'shape' => 'CustomEngineVersion', ], ], ], 'DeleteDBClusterAutomatedBackupMessage' => [ 'type' => 'structure', 'required' => [ 'DbClusterResourceId', ], 'members' => [ 'DbClusterResourceId' => [ 'shape' => 'String', ], ], ], 'DeleteDBClusterAutomatedBackupResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterAutomatedBackup' => [ 'shape' => 'DBClusterAutomatedBackup', ], ], ], 'DeleteDBClusterEndpointMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterEndpointIdentifier', ], 'members' => [ 'DBClusterEndpointIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'SkipFinalSnapshot' => [ 'shape' => 'Boolean', ], 'FinalDBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DeleteAutomatedBackups' => [ 'shape' => 'BooleanOptional', ], ], ], 'DeleteDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'DeleteDBClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterSnapshotIdentifier', ], 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteDBClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshot' => [ 'shape' => 'DBClusterSnapshot', ], ], ], 'DeleteDBInstanceAutomatedBackupMessage' => [ 'type' => 'structure', 'members' => [ 'DbiResourceId' => [ 'shape' => 'String', ], 'DBInstanceAutomatedBackupsArn' => [ 'shape' => 'String', ], ], ], 'DeleteDBInstanceAutomatedBackupResult' => [ 'type' => 'structure', 'members' => [ 'DBInstanceAutomatedBackup' => [ 'shape' => 'DBInstanceAutomatedBackup', ], ], ], 'DeleteDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'SkipFinalSnapshot' => [ 'shape' => 'Boolean', ], 'FinalDBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DeleteAutomatedBackups' => [ 'shape' => 'BooleanOptional', ], ], ], 'DeleteDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'DeleteDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteDBProxyEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'DBProxyEndpointName', ], 'members' => [ 'DBProxyEndpointName' => [ 'shape' => 'DBProxyEndpointName', ], ], ], 'DeleteDBProxyEndpointResponse' => [ 'type' => 'structure', 'members' => [ 'DBProxyEndpoint' => [ 'shape' => 'DBProxyEndpoint', ], ], ], 'DeleteDBProxyRequest' => [ 'type' => 'structure', 'required' => [ 'DBProxyName', ], 'members' => [ 'DBProxyName' => [ 'shape' => 'DBProxyName', ], ], ], 'DeleteDBProxyResponse' => [ 'type' => 'structure', 'members' => [ 'DBProxy' => [ 'shape' => 'DBProxy', ], ], ], 'DeleteDBSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteDBShardGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBShardGroupIdentifier', ], 'members' => [ 'DBShardGroupIdentifier' => [ 'shape' => 'DBShardGroupIdentifier', ], ], ], 'DeleteDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshot' => [ 'shape' => 'DBSnapshot', ], ], ], 'DeleteDBSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSubnetGroupName', ], 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], ], ], 'DeleteEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'DeleteGlobalClusterMessage' => [ 'type' => 'structure', 'required' => [ 'GlobalClusterIdentifier', ], 'members' => [ 'GlobalClusterIdentifier' => [ 'shape' => 'GlobalClusterIdentifier', ], ], ], 'DeleteGlobalClusterResult' => [ 'type' => 'structure', 'members' => [ 'GlobalCluster' => [ 'shape' => 'GlobalCluster', ], ], ], 'DeleteIntegrationMessage' => [ 'type' => 'structure', 'required' => [ 'IntegrationIdentifier', ], 'members' => [ 'IntegrationIdentifier' => [ 'shape' => 'IntegrationIdentifier', ], ], ], 'DeleteOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'OptionGroupName', ], 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteTenantDatabaseMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'TenantDBName', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'TenantDBName' => [ 'shape' => 'String', ], 'SkipFinalSnapshot' => [ 'shape' => 'Boolean', ], 'FinalDBSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteTenantDatabaseResult' => [ 'type' => 'structure', 'members' => [ 'TenantDatabase' => [ 'shape' => 'TenantDatabase', ], ], ], 'DeregisterDBProxyTargetsRequest' => [ 'type' => 'structure', 'required' => [ 'DBProxyName', ], 'members' => [ 'DBProxyName' => [ 'shape' => 'DBProxyName', ], 'TargetGroupName' => [ 'shape' => 'DBProxyTargetGroupName', ], 'DBInstanceIdentifiers' => [ 'shape' => 'StringList', ], 'DBClusterIdentifiers' => [ 'shape' => 'StringList', ], ], ], 'DeregisterDBProxyTargetsResponse' => [ 'type' => 'structure', 'members' => [], ], 'DescribeAccountAttributesMessage' => [ 'type' => 'structure', 'members' => [], ], 'DescribeBlueGreenDeploymentsRequest' => [ 'type' => 'structure', 'members' => [ 'BlueGreenDeploymentIdentifier' => [ 'shape' => 'BlueGreenDeploymentIdentifier', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'MaxRecords', ], ], ], 'DescribeBlueGreenDeploymentsResponse' => [ 'type' => 'structure', 'members' => [ 'BlueGreenDeployments' => [ 'shape' => 'BlueGreenDeploymentList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeCertificatesMessage' => [ 'type' => 'structure', 'members' => [ 'CertificateIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterAutomatedBackupsMessage' => [ 'type' => 'structure', 'members' => [ 'DbClusterResourceId' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterBacktracksMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'BacktrackIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterEndpointsMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterEndpointIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterParametersMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterSnapshotAttributesMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterSnapshotIdentifier', ], 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterSnapshotAttributesResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshotAttributesResult' => [ 'shape' => 'DBClusterSnapshotAttributesResult', ], ], ], 'DescribeDBClusterSnapshotsMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'IncludeShared' => [ 'shape' => 'Boolean', ], 'IncludePublic' => [ 'shape' => 'Boolean', ], 'DbClusterResourceId' => [ 'shape' => 'String', ], ], ], 'DescribeDBClustersMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'IncludeShared' => [ 'shape' => 'Boolean', ], ], ], 'DescribeDBEngineVersionsMessage' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'DefaultOnly' => [ 'shape' => 'Boolean', ], 'ListSupportedCharacterSets' => [ 'shape' => 'BooleanOptional', ], 'ListSupportedTimezones' => [ 'shape' => 'BooleanOptional', ], 'IncludeAll' => [ 'shape' => 'BooleanOptional', ], ], ], 'DescribeDBInstanceAutomatedBackupsMessage' => [ 'type' => 'structure', 'members' => [ 'DbiResourceId' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'DBInstanceAutomatedBackupsArn' => [ 'shape' => 'String', ], ], ], 'DescribeDBInstancesMessage' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBLogFilesDetails' => [ 'type' => 'structure', 'members' => [ 'LogFileName' => [ 'shape' => 'String', ], 'LastWritten' => [ 'shape' => 'Long', ], 'Size' => [ 'shape' => 'Long', ], ], ], 'DescribeDBLogFilesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DescribeDBLogFilesDetails', 'locationName' => 'DescribeDBLogFilesDetails', ], ], 'DescribeDBLogFilesMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'FilenameContains' => [ 'shape' => 'String', ], 'FileLastWritten' => [ 'shape' => 'Long', ], 'FileSize' => [ 'shape' => 'Long', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBLogFilesResponse' => [ 'type' => 'structure', 'members' => [ 'DescribeDBLogFiles' => [ 'shape' => 'DescribeDBLogFilesList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBMajorEngineVersionsRequest' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'Engine', ], 'MajorEngineVersion' => [ 'shape' => 'MajorEngineVersion', ], 'Marker' => [ 'shape' => 'Marker', ], 'MaxRecords' => [ 'shape' => 'MaxRecords', ], ], ], 'DescribeDBMajorEngineVersionsResponse' => [ 'type' => 'structure', 'members' => [ 'DBMajorEngineVersions' => [ 'shape' => 'DBMajorEngineVersionsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBParametersMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBProxiesRequest' => [ 'type' => 'structure', 'members' => [ 'DBProxyName' => [ 'shape' => 'DBProxyName', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'MaxRecords', ], ], ], 'DescribeDBProxiesResponse' => [ 'type' => 'structure', 'members' => [ 'DBProxies' => [ 'shape' => 'DBProxyList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBProxyEndpointsRequest' => [ 'type' => 'structure', 'members' => [ 'DBProxyName' => [ 'shape' => 'DBProxyName', ], 'DBProxyEndpointName' => [ 'shape' => 'DBProxyEndpointName', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'MaxRecords', ], ], ], 'DescribeDBProxyEndpointsResponse' => [ 'type' => 'structure', 'members' => [ 'DBProxyEndpoints' => [ 'shape' => 'DBProxyEndpointList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBProxyTargetGroupsRequest' => [ 'type' => 'structure', 'required' => [ 'DBProxyName', ], 'members' => [ 'DBProxyName' => [ 'shape' => 'DBProxyName', ], 'TargetGroupName' => [ 'shape' => 'DBProxyTargetGroupName', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'MaxRecords', ], ], ], 'DescribeDBProxyTargetGroupsResponse' => [ 'type' => 'structure', 'members' => [ 'TargetGroups' => [ 'shape' => 'TargetGroupList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBProxyTargetsRequest' => [ 'type' => 'structure', 'required' => [ 'DBProxyName', ], 'members' => [ 'DBProxyName' => [ 'shape' => 'DBProxyName', ], 'TargetGroupName' => [ 'shape' => 'DBProxyTargetGroupName', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'MaxRecords', ], ], ], 'DescribeDBProxyTargetsResponse' => [ 'type' => 'structure', 'members' => [ 'Targets' => [ 'shape' => 'TargetList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBRecommendationsMessage' => [ 'type' => 'structure', 'members' => [ 'LastUpdatedAfter' => [ 'shape' => 'TStamp', ], 'LastUpdatedBefore' => [ 'shape' => 'TStamp', ], 'Locale' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBSecurityGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBShardGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBShardGroupIdentifier' => [ 'shape' => 'DBShardGroupIdentifier', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'MaxRecords', ], ], ], 'DescribeDBShardGroupsResponse' => [ 'type' => 'structure', 'members' => [ 'DBShardGroups' => [ 'shape' => 'DBShardGroupsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBSnapshotAttributesMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DescribeDBSnapshotAttributesResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshotAttributesResult' => [ 'shape' => 'DBSnapshotAttributesResult', ], ], ], 'DescribeDBSnapshotTenantDatabasesMessage' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'DbiResourceId' => [ 'shape' => 'String', ], ], ], 'DescribeDBSnapshotsMessage' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'IncludeShared' => [ 'shape' => 'Boolean', ], 'IncludePublic' => [ 'shape' => 'Boolean', ], 'DbiResourceId' => [ 'shape' => 'String', ], ], ], 'DescribeDBSubnetGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultClusterParametersMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupFamily', ], 'members' => [ 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultClusterParametersResult' => [ 'type' => 'structure', 'members' => [ 'EngineDefaults' => [ 'shape' => 'EngineDefaults', ], ], ], 'DescribeEngineDefaultParametersMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupFamily', ], 'members' => [ 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultParametersResult' => [ 'type' => 'structure', 'members' => [ 'EngineDefaults' => [ 'shape' => 'EngineDefaults', ], ], ], 'DescribeEventCategoriesMessage' => [ 'type' => 'structure', 'members' => [ 'SourceType' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], ], ], 'DescribeEventSubscriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEventsMessage' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'EndTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'IntegerOptional', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeExportTasksMessage' => [ 'type' => 'structure', 'members' => [ 'ExportTaskIdentifier' => [ 'shape' => 'String', ], 'SourceArn' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'MaxRecords', ], 'SourceType' => [ 'shape' => 'ExportSourceType', ], ], ], 'DescribeGlobalClustersMessage' => [ 'type' => 'structure', 'members' => [ 'GlobalClusterIdentifier' => [ 'shape' => 'GlobalClusterIdentifier', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeIntegrationsMessage' => [ 'type' => 'structure', 'members' => [ 'IntegrationIdentifier' => [ 'shape' => 'IntegrationIdentifier', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'DescribeIntegrationsResponse' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'Marker', ], 'Integrations' => [ 'shape' => 'IntegrationList', ], ], ], 'DescribeOptionGroupOptionsMessage' => [ 'type' => 'structure', 'required' => [ 'EngineName', ], 'members' => [ 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeOptionGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], ], ], 'DescribeOrderableDBInstanceOptionsMessage' => [ 'type' => 'structure', 'required' => [ 'Engine', ], 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'AvailabilityZoneGroup' => [ 'shape' => 'String', ], 'Vpc' => [ 'shape' => 'BooleanOptional', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribePendingMaintenanceActionsMessage' => [ 'type' => 'structure', 'members' => [ 'ResourceIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], ], ], 'DescribeReservedDBInstancesMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstanceId' => [ 'shape' => 'String', ], 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'LeaseId' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReservedDBInstancesOfferingsMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeSourceRegionsMessage' => [ 'type' => 'structure', 'members' => [ 'RegionName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], ], ], 'DescribeTenantDatabasesMessage' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'TenantDBName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], ], ], 'DescribeValidDBInstanceModificationsMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], ], ], 'DescribeValidDBInstanceModificationsResult' => [ 'type' => 'structure', 'members' => [ 'ValidDBInstanceModificationsMessage' => [ 'shape' => 'ValidDBInstanceModificationsMessage', ], ], ], 'Description' => [ 'type' => 'string', 'max' => 1000, 'min' => 1, 'pattern' => '.*', ], 'DisableHttpEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'String', ], ], ], 'DisableHttpEndpointResponse' => [ 'type' => 'structure', 'members' => [ 'ResourceArn' => [ 'shape' => 'String', ], 'HttpEndpointEnabled' => [ 'shape' => 'Boolean', ], ], ], 'DocLink' => [ 'type' => 'structure', 'members' => [ 'Text' => [ 'shape' => 'String', ], 'Url' => [ 'shape' => 'String', ], ], ], 'DocLinkList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DocLink', ], ], 'DomainMembership' => [ 'type' => 'structure', 'members' => [ 'Domain' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'FQDN' => [ 'shape' => 'String', ], 'IAMRoleName' => [ 'shape' => 'String', ], 'OU' => [ 'shape' => 'String', ], 'AuthSecretArn' => [ 'shape' => 'String', ], 'DnsIps' => [ 'shape' => 'StringList', ], ], ], 'DomainMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DomainMembership', 'locationName' => 'DomainMembership', ], ], 'DomainNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DomainNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'Double' => [ 'type' => 'double', ], 'DoubleOptional' => [ 'type' => 'double', ], 'DoubleRange' => [ 'type' => 'structure', 'members' => [ 'From' => [ 'shape' => 'Double', ], 'To' => [ 'shape' => 'Double', ], ], ], 'DoubleRangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DoubleRange', 'locationName' => 'DoubleRange', ], ], 'DownloadDBLogFilePortionDetails' => [ 'type' => 'structure', 'members' => [ 'LogFileData' => [ 'shape' => 'SensitiveString', ], 'Marker' => [ 'shape' => 'String', ], 'AdditionalDataPending' => [ 'shape' => 'Boolean', ], ], ], 'DownloadDBLogFilePortionMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'LogFileName', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'LogFileName' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'NumberOfLines' => [ 'shape' => 'Integer', ], ], ], 'EC2SecurityGroup' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupId' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'EC2SecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EC2SecurityGroup', 'locationName' => 'EC2SecurityGroup', ], ], 'Ec2ImagePropertiesNotSupportedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'Ec2ImagePropertiesNotSupportedFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'EnableHttpEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'String', ], ], ], 'EnableHttpEndpointResponse' => [ 'type' => 'structure', 'members' => [ 'ResourceArn' => [ 'shape' => 'String', ], 'HttpEndpointEnabled' => [ 'shape' => 'Boolean', ], ], ], 'EncryptionContextMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'Endpoint' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], 'HostedZoneId' => [ 'shape' => 'String', ], ], ], 'Engine' => [ 'type' => 'string', 'max' => 50, 'min' => 1, ], 'EngineDefaults' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], 'wrapper' => true, ], 'EngineFamily' => [ 'type' => 'string', 'enum' => [ 'MYSQL', 'POSTGRESQL', 'SQLSERVER', ], ], 'EngineModeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'Event' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'Message' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Date' => [ 'shape' => 'TStamp', ], 'SourceArn' => [ 'shape' => 'String', ], ], ], 'EventCategoriesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'EventCategory', ], ], 'EventCategoriesMap' => [ 'type' => 'structure', 'members' => [ 'SourceType' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], ], 'wrapper' => true, ], 'EventCategoriesMapList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventCategoriesMap', 'locationName' => 'EventCategoriesMap', ], ], 'EventCategoriesMessage' => [ 'type' => 'structure', 'members' => [ 'EventCategoriesMapList' => [ 'shape' => 'EventCategoriesMapList', ], ], ], 'EventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Event', 'locationName' => 'Event', ], ], 'EventSubscription' => [ 'type' => 'structure', 'members' => [ 'CustomerAwsId' => [ 'shape' => 'String', ], 'CustSubscriptionId' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'SubscriptionCreationTime' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'SourceIdsList' => [ 'shape' => 'SourceIdsList', ], 'EventCategoriesList' => [ 'shape' => 'EventCategoriesList', ], 'Enabled' => [ 'shape' => 'Boolean', ], 'EventSubscriptionArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'EventSubscriptionQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'EventSubscriptionQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'EventSubscriptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventSubscription', 'locationName' => 'EventSubscription', ], ], 'EventSubscriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'EventSubscriptionsList' => [ 'shape' => 'EventSubscriptionsList', ], ], ], 'EventsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Events' => [ 'shape' => 'EventList', ], ], ], 'ExportSourceType' => [ 'type' => 'string', 'enum' => [ 'SNAPSHOT', 'CLUSTER', ], ], 'ExportTask' => [ 'type' => 'structure', 'members' => [ 'ExportTaskIdentifier' => [ 'shape' => 'String', ], 'SourceArn' => [ 'shape' => 'String', ], 'ExportOnly' => [ 'shape' => 'StringList', ], 'SnapshotTime' => [ 'shape' => 'TStamp', ], 'TaskStartTime' => [ 'shape' => 'TStamp', ], 'TaskEndTime' => [ 'shape' => 'TStamp', ], 'S3Bucket' => [ 'shape' => 'String', ], 'S3Prefix' => [ 'shape' => 'String', ], 'IamRoleArn' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'PercentProgress' => [ 'shape' => 'Integer', ], 'TotalExtractedDataInGB' => [ 'shape' => 'Integer', ], 'FailureCause' => [ 'shape' => 'String', ], 'WarningMessage' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'ExportSourceType', ], ], ], 'ExportTaskAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ExportTaskAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ExportTaskNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ExportTaskNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ExportTasksList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExportTask', 'locationName' => 'ExportTask', ], ], 'ExportTasksMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ExportTasks' => [ 'shape' => 'ExportTasksList', ], ], ], 'FailoverDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'TargetDBInstanceIdentifier' => [ 'shape' => 'String', ], ], ], 'FailoverDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'FailoverGlobalClusterMessage' => [ 'type' => 'structure', 'required' => [ 'GlobalClusterIdentifier', 'TargetDbClusterIdentifier', ], 'members' => [ 'GlobalClusterIdentifier' => [ 'shape' => 'GlobalClusterIdentifier', ], 'TargetDbClusterIdentifier' => [ 'shape' => 'DBClusterIdentifier', ], 'AllowDataLoss' => [ 'shape' => 'BooleanOptional', ], 'Switchover' => [ 'shape' => 'BooleanOptional', ], ], ], 'FailoverGlobalClusterResult' => [ 'type' => 'structure', 'members' => [ 'GlobalCluster' => [ 'shape' => 'GlobalCluster', ], ], ], 'FailoverState' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'FailoverStatus', ], 'FromDbClusterArn' => [ 'shape' => 'String', ], 'ToDbClusterArn' => [ 'shape' => 'String', ], 'IsDataLossAllowed' => [ 'shape' => 'Boolean', ], ], 'wrapper' => true, ], 'FailoverStatus' => [ 'type' => 'string', 'enum' => [ 'pending', 'failing-over', 'cancelling', ], ], 'FeatureNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'Filter' => [ 'type' => 'structure', 'required' => [ 'Name', 'Values', ], 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Values' => [ 'shape' => 'FilterValueList', ], ], ], 'FilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Filter', 'locationName' => 'Filter', ], ], 'FilterValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'Value', ], ], 'FreeTierRestrictionError' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'FreeTierRestrictionError', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'GlobalCluster' => [ 'type' => 'structure', 'members' => [ 'GlobalClusterIdentifier' => [ 'shape' => 'GlobalClusterIdentifier', ], 'GlobalClusterResourceId' => [ 'shape' => 'String', ], 'GlobalClusterArn' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'EngineLifecycleSupport' => [ 'shape' => 'String', ], 'DatabaseName' => [ 'shape' => 'String', ], 'StorageEncrypted' => [ 'shape' => 'BooleanOptional', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'GlobalClusterMembers' => [ 'shape' => 'GlobalClusterMemberList', ], 'Endpoint' => [ 'shape' => 'String', ], 'FailoverState' => [ 'shape' => 'FailoverState', ], ], 'wrapper' => true, ], 'GlobalClusterAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'GlobalClusterAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'GlobalClusterIdentifier' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => '[A-Za-z][0-9A-Za-z-:._]*', ], 'GlobalClusterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GlobalCluster', 'locationName' => 'GlobalClusterMember', ], ], 'GlobalClusterMember' => [ 'type' => 'structure', 'members' => [ 'DBClusterArn' => [ 'shape' => 'String', ], 'Readers' => [ 'shape' => 'ReadersArnList', ], 'IsWriter' => [ 'shape' => 'Boolean', ], 'GlobalWriteForwardingStatus' => [ 'shape' => 'WriteForwardingStatus', ], 'SynchronizationStatus' => [ 'shape' => 'GlobalClusterMemberSynchronizationStatus', ], ], 'wrapper' => true, ], 'GlobalClusterMemberList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GlobalClusterMember', 'locationName' => 'GlobalClusterMember', ], ], 'GlobalClusterMemberSynchronizationStatus' => [ 'type' => 'string', 'enum' => [ 'connected', 'pending-resync', ], ], 'GlobalClusterNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'GlobalClusterNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'GlobalClusterQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'GlobalClusterQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'GlobalClustersMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'GlobalClusters' => [ 'shape' => 'GlobalClusterList', ], ], ], 'IAMAuthMode' => [ 'type' => 'string', 'enum' => [ 'DISABLED', 'REQUIRED', 'ENABLED', ], ], 'IPRange' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], ], ], 'IPRangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPRange', 'locationName' => 'IPRange', ], ], 'IamRoleMissingPermissionsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'IamRoleMissingPermissions', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'IamRoleNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'IamRoleNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'InstanceQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InstanceQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientAvailableIPsInSubnetFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientAvailableIPsInSubnetFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientDBClusterCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientDBClusterCapacityFault', 'httpStatusCode' => 403, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientDBInstanceCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientDBInstanceCapacity', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientStorageClusterCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientStorageClusterCapacity', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Integer' => [ 'type' => 'integer', ], 'IntegerOptional' => [ 'type' => 'integer', ], 'Integration' => [ 'type' => 'structure', 'members' => [ 'SourceArn' => [ 'shape' => 'SourceArn', ], 'TargetArn' => [ 'shape' => 'Arn', ], 'IntegrationName' => [ 'shape' => 'IntegrationName', ], 'IntegrationArn' => [ 'shape' => 'IntegrationArn', ], 'KMSKeyId' => [ 'shape' => 'String', ], 'AdditionalEncryptionContext' => [ 'shape' => 'EncryptionContextMap', ], 'Status' => [ 'shape' => 'IntegrationStatus', ], 'Tags' => [ 'shape' => 'TagList', ], 'DataFilter' => [ 'shape' => 'DataFilter', ], 'Description' => [ 'shape' => 'IntegrationDescription', ], 'CreateTime' => [ 'shape' => 'TStamp', ], 'Errors' => [ 'shape' => 'IntegrationErrorList', ], ], ], 'IntegrationAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'IntegrationAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'IntegrationArn' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => 'arn:aws[a-z\\-]*:rds(-[a-z]*)?:[a-z0-9\\-]*:[0-9]*:integration:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}', ], 'IntegrationConflictOperationFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'IntegrationConflictOperationFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'IntegrationDescription' => [ 'type' => 'string', 'max' => 1000, 'min' => 0, 'pattern' => '.*', ], 'IntegrationError' => [ 'type' => 'structure', 'required' => [ 'ErrorCode', ], 'members' => [ 'ErrorCode' => [ 'shape' => 'String', ], 'ErrorMessage' => [ 'shape' => 'String', ], ], ], 'IntegrationErrorList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IntegrationError', 'locationName' => 'IntegrationError', ], ], 'IntegrationIdentifier' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => '[a-zA-Z0-9_:\\-\\/]+', ], 'IntegrationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Integration', 'locationName' => 'Integration', ], ], 'IntegrationName' => [ 'type' => 'string', 'max' => 63, 'min' => 1, 'pattern' => '[a-zA-Z](?:-?[a-zA-Z0-9]+)*', ], 'IntegrationNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'IntegrationNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'IntegrationQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'IntegrationQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'IntegrationStatus' => [ 'type' => 'string', 'enum' => [ 'creating', 'active', 'modifying', 'failed', 'deleting', 'syncing', 'needs_attention', ], ], 'InvalidBlueGreenDeploymentStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidBlueGreenDeploymentStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidCustomDBEngineVersionStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidCustomDBEngineVersionStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBClusterAutomatedBackupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBClusterAutomatedBackupStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBClusterCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBClusterCapacityFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBClusterEndpointStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBClusterEndpointStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBClusterSnapshotStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBClusterSnapshotStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBClusterStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBClusterStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBInstanceAutomatedBackupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBInstanceAutomatedBackupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBInstanceStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBInstanceState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBParameterGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBParameterGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBProxyEndpointStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBProxyEndpointStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBProxyStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBProxyStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSecurityGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSecurityGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSnapshotStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSnapshotState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSubnetGroupFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSubnetGroupFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSubnetGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSubnetGroupStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSubnetStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSubnetStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidExportOnlyFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidExportOnly', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidExportSourceStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidExportSourceState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidExportTaskStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidExportTaskStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidGlobalClusterStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidGlobalClusterStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidIntegrationStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidIntegrationStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidOptionGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidOptionGroupStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidResourceStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidResourceStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidRestoreFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidRestoreFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidS3BucketFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidS3BucketFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSubnet' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidSubnet', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidVPCNetworkStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidVPCNetworkStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'IssueDetails' => [ 'type' => 'structure', 'members' => [ 'PerformanceIssueDetails' => [ 'shape' => 'PerformanceIssueDetails', ], ], ], 'KMSKeyNotAccessibleFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'KMSKeyNotAccessibleFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'KeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'KmsKeyIdOrArn' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => '[a-zA-Z0-9_:\\-\\/]+', ], 'LifecycleSupportName' => [ 'type' => 'string', 'enum' => [ 'open-source-rds-standard-support', 'open-source-rds-extended-support', ], ], 'LimitlessDatabase' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'LimitlessDatabaseStatus', ], 'MinRequiredACU' => [ 'shape' => 'DoubleOptional', ], ], ], 'LimitlessDatabaseStatus' => [ 'type' => 'string', 'enum' => [ 'active', 'not-in-use', 'enabled', 'disabled', 'enabling', 'disabling', 'modifying-max-capacity', 'error', ], ], 'ListTagsForResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], ], ], 'LogTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'Long' => [ 'type' => 'long', ], 'LongOptional' => [ 'type' => 'long', ], 'MajorEngineVersion' => [ 'type' => 'string', 'max' => 50, 'min' => 1, ], 'Marker' => [ 'type' => 'string', 'max' => 340, 'min' => 1, ], 'MasterUserSecret' => [ 'type' => 'structure', 'members' => [ 'SecretArn' => [ 'shape' => 'String', ], 'SecretStatus' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'String', ], ], ], 'MaxRecords' => [ 'type' => 'integer', 'max' => 100, 'min' => 20, ], 'Metric' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'References' => [ 'shape' => 'MetricReferenceList', ], 'StatisticsDetails' => [ 'shape' => 'String', ], 'MetricQuery' => [ 'shape' => 'MetricQuery', ], ], ], 'MetricList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Metric', ], ], 'MetricQuery' => [ 'type' => 'structure', 'members' => [ 'PerformanceInsightsMetricQuery' => [ 'shape' => 'PerformanceInsightsMetricQuery', ], ], ], 'MetricReference' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'ReferenceDetails' => [ 'shape' => 'ReferenceDetails', ], ], ], 'MetricReferenceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MetricReference', ], ], 'MinimumEngineVersionPerAllowedValue' => [ 'type' => 'structure', 'members' => [ 'AllowedValue' => [ 'shape' => 'String', ], 'MinimumEngineVersion' => [ 'shape' => 'String', ], ], ], 'MinimumEngineVersionPerAllowedValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MinimumEngineVersionPerAllowedValue', 'locationName' => 'MinimumEngineVersionPerAllowedValue', ], ], 'ModifyActivityStreamRequest' => [ 'type' => 'structure', 'members' => [ 'ResourceArn' => [ 'shape' => 'String', ], 'AuditPolicyState' => [ 'shape' => 'AuditPolicyState', ], ], ], 'ModifyActivityStreamResponse' => [ 'type' => 'structure', 'members' => [ 'KmsKeyId' => [ 'shape' => 'String', ], 'KinesisStreamName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'ActivityStreamStatus', ], 'Mode' => [ 'shape' => 'ActivityStreamMode', ], 'EngineNativeAuditFieldsIncluded' => [ 'shape' => 'BooleanOptional', ], 'PolicyStatus' => [ 'shape' => 'ActivityStreamPolicyStatus', ], ], ], 'ModifyCertificatesMessage' => [ 'type' => 'structure', 'members' => [ 'CertificateIdentifier' => [ 'shape' => 'String', ], 'RemoveCustomerOverride' => [ 'shape' => 'BooleanOptional', ], ], ], 'ModifyCertificatesResult' => [ 'type' => 'structure', 'members' => [ 'Certificate' => [ 'shape' => 'Certificate', ], ], ], 'ModifyCurrentDBClusterCapacityMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'Capacity' => [ 'shape' => 'IntegerOptional', ], 'SecondsBeforeTimeout' => [ 'shape' => 'IntegerOptional', ], 'TimeoutAction' => [ 'shape' => 'String', ], ], ], 'ModifyCustomDBEngineVersionMessage' => [ 'type' => 'structure', 'required' => [ 'Engine', 'EngineVersion', ], 'members' => [ 'Engine' => [ 'shape' => 'CustomEngineName', ], 'EngineVersion' => [ 'shape' => 'CustomEngineVersion', ], 'Description' => [ 'shape' => 'Description', ], 'Status' => [ 'shape' => 'CustomEngineVersionStatus', ], ], ], 'ModifyDBClusterEndpointMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterEndpointIdentifier', ], 'members' => [ 'DBClusterEndpointIdentifier' => [ 'shape' => 'String', ], 'EndpointType' => [ 'shape' => 'String', ], 'StaticMembers' => [ 'shape' => 'StringList', ], 'ExcludedMembers' => [ 'shape' => 'StringList', ], ], ], 'ModifyDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'NewDBClusterIdentifier' => [ 'shape' => 'String', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MasterUserPassword' => [ 'shape' => 'SensitiveString', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'EnableIAMDatabaseAuthentication' => [ 'shape' => 'BooleanOptional', ], 'BacktrackWindow' => [ 'shape' => 'LongOptional', ], 'CloudwatchLogsExportConfiguration' => [ 'shape' => 'CloudwatchLogsExportConfiguration', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AllowMajorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'DBInstanceParameterGroupName' => [ 'shape' => 'String', ], 'Domain' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], 'ScalingConfiguration' => [ 'shape' => 'ScalingConfiguration', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'EnableHttpEndpoint' => [ 'shape' => 'BooleanOptional', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'EnableGlobalWriteForwarding' => [ 'shape' => 'BooleanOptional', ], 'DBClusterInstanceClass' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'StorageType' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'ServerlessV2ScalingConfiguration' => [ 'shape' => 'ServerlessV2ScalingConfiguration', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'EnablePerformanceInsights' => [ 'shape' => 'BooleanOptional', ], 'PerformanceInsightsKMSKeyId' => [ 'shape' => 'String', ], 'PerformanceInsightsRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'ManageMasterUserPassword' => [ 'shape' => 'BooleanOptional', ], 'RotateMasterUserPassword' => [ 'shape' => 'BooleanOptional', ], 'MasterUserSecretKmsKeyId' => [ 'shape' => 'String', ], 'EngineMode' => [ 'shape' => 'String', ], 'AllowEngineModeChange' => [ 'shape' => 'Boolean', ], 'EnableLimitlessDatabase' => [ 'shape' => 'BooleanOptional', ], 'CACertificateIdentifier' => [ 'shape' => 'String', ], ], ], 'ModifyDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', 'Parameters', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ModifyDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'ModifyDBClusterSnapshotAttributeMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterSnapshotIdentifier', 'AttributeName', ], 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'AttributeName' => [ 'shape' => 'String', ], 'ValuesToAdd' => [ 'shape' => 'AttributeValueList', ], 'ValuesToRemove' => [ 'shape' => 'AttributeValueList', ], ], ], 'ModifyDBClusterSnapshotAttributeResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshotAttributesResult' => [ 'shape' => 'DBClusterSnapshotAttributesResult', ], ], ], 'ModifyDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], 'MasterUserPassword' => [ 'shape' => 'SensitiveString', ], 'DBParameterGroupName' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AllowMajorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'StorageThroughput' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'NewDBInstanceIdentifier' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'SensitiveString', ], 'CACertificateIdentifier' => [ 'shape' => 'String', ], 'Domain' => [ 'shape' => 'String', ], 'DomainFqdn' => [ 'shape' => 'String', ], 'DomainOu' => [ 'shape' => 'String', ], 'DomainAuthSecretArn' => [ 'shape' => 'String', ], 'DomainDnsIps' => [ 'shape' => 'StringList', ], 'DisableDomain' => [ 'shape' => 'BooleanOptional', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'DBPortNumber' => [ 'shape' => 'IntegerOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], 'PromotionTier' => [ 'shape' => 'IntegerOptional', ], 'EnableIAMDatabaseAuthentication' => [ 'shape' => 'BooleanOptional', ], 'EnablePerformanceInsights' => [ 'shape' => 'BooleanOptional', ], 'PerformanceInsightsKMSKeyId' => [ 'shape' => 'String', ], 'PerformanceInsightsRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'CloudwatchLogsExportConfiguration' => [ 'shape' => 'CloudwatchLogsExportConfiguration', ], 'ProcessorFeatures' => [ 'shape' => 'ProcessorFeatureList', ], 'UseDefaultProcessorFeatures' => [ 'shape' => 'BooleanOptional', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'MaxAllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'CertificateRotationRestart' => [ 'shape' => 'BooleanOptional', ], 'ReplicaMode' => [ 'shape' => 'ReplicaMode', ], 'AutomationMode' => [ 'shape' => 'AutomationMode', ], 'ResumeFullAutomationModeMinutes' => [ 'shape' => 'IntegerOptional', ], 'EnableCustomerOwnedIp' => [ 'shape' => 'BooleanOptional', ], 'NetworkType' => [ 'shape' => 'String', ], 'AwsBackupRecoveryPointArn' => [ 'shape' => 'AwsBackupRecoveryPointArn', ], 'ManageMasterUserPassword' => [ 'shape' => 'BooleanOptional', ], 'RotateMasterUserPassword' => [ 'shape' => 'BooleanOptional', ], 'MasterUserSecretKmsKeyId' => [ 'shape' => 'String', ], 'MultiTenant' => [ 'shape' => 'BooleanOptional', ], 'DedicatedLogVolume' => [ 'shape' => 'BooleanOptional', ], 'Engine' => [ 'shape' => 'String', ], ], ], 'ModifyDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'ModifyDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', 'Parameters', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ModifyDBProxyEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'DBProxyEndpointName', ], 'members' => [ 'DBProxyEndpointName' => [ 'shape' => 'DBProxyEndpointName', ], 'NewDBProxyEndpointName' => [ 'shape' => 'DBProxyEndpointName', ], 'VpcSecurityGroupIds' => [ 'shape' => 'StringList', ], ], ], 'ModifyDBProxyEndpointResponse' => [ 'type' => 'structure', 'members' => [ 'DBProxyEndpoint' => [ 'shape' => 'DBProxyEndpoint', ], ], ], 'ModifyDBProxyRequest' => [ 'type' => 'structure', 'required' => [ 'DBProxyName', ], 'members' => [ 'DBProxyName' => [ 'shape' => 'DBProxyName', ], 'NewDBProxyName' => [ 'shape' => 'DBProxyName', ], 'Auth' => [ 'shape' => 'UserAuthConfigList', ], 'RequireTLS' => [ 'shape' => 'BooleanOptional', ], 'IdleClientTimeout' => [ 'shape' => 'IntegerOptional', ], 'DebugLogging' => [ 'shape' => 'BooleanOptional', ], 'RoleArn' => [ 'shape' => 'Arn', ], 'SecurityGroups' => [ 'shape' => 'StringList', ], ], ], 'ModifyDBProxyResponse' => [ 'type' => 'structure', 'members' => [ 'DBProxy' => [ 'shape' => 'DBProxy', ], ], ], 'ModifyDBProxyTargetGroupRequest' => [ 'type' => 'structure', 'required' => [ 'TargetGroupName', 'DBProxyName', ], 'members' => [ 'TargetGroupName' => [ 'shape' => 'DBProxyTargetGroupName', ], 'DBProxyName' => [ 'shape' => 'DBProxyName', ], 'ConnectionPoolConfig' => [ 'shape' => 'ConnectionPoolConfiguration', ], 'NewName' => [ 'shape' => 'String', ], ], ], 'ModifyDBProxyTargetGroupResponse' => [ 'type' => 'structure', 'members' => [ 'DBProxyTargetGroup' => [ 'shape' => 'DBProxyTargetGroup', ], ], ], 'ModifyDBRecommendationMessage' => [ 'type' => 'structure', 'required' => [ 'RecommendationId', ], 'members' => [ 'RecommendationId' => [ 'shape' => 'String', ], 'Locale' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'RecommendedActionUpdates' => [ 'shape' => 'RecommendedActionUpdateList', ], ], ], 'ModifyDBShardGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBShardGroupIdentifier', ], 'members' => [ 'DBShardGroupIdentifier' => [ 'shape' => 'DBShardGroupIdentifier', ], 'MaxACU' => [ 'shape' => 'DoubleOptional', ], 'MinACU' => [ 'shape' => 'DoubleOptional', ], ], ], 'ModifyDBSnapshotAttributeMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', 'AttributeName', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'AttributeName' => [ 'shape' => 'String', ], 'ValuesToAdd' => [ 'shape' => 'AttributeValueList', ], 'ValuesToRemove' => [ 'shape' => 'AttributeValueList', ], ], ], 'ModifyDBSnapshotAttributeResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshotAttributesResult' => [ 'shape' => 'DBSnapshotAttributesResult', ], ], ], 'ModifyDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'OptionGroupName' => [ 'shape' => 'String', ], ], ], 'ModifyDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshot' => [ 'shape' => 'DBSnapshot', ], ], ], 'ModifyDBSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSubnetGroupName', 'SubnetIds', ], 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSubnetGroupDescription' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], ], ], 'ModifyDBSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroup' => [ 'shape' => 'DBSubnetGroup', ], ], ], 'ModifyEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Enabled' => [ 'shape' => 'BooleanOptional', ], ], ], 'ModifyEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'ModifyGlobalClusterMessage' => [ 'type' => 'structure', 'required' => [ 'GlobalClusterIdentifier', ], 'members' => [ 'GlobalClusterIdentifier' => [ 'shape' => 'GlobalClusterIdentifier', ], 'NewGlobalClusterIdentifier' => [ 'shape' => 'GlobalClusterIdentifier', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AllowMajorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], ], ], 'ModifyGlobalClusterResult' => [ 'type' => 'structure', 'members' => [ 'GlobalCluster' => [ 'shape' => 'GlobalCluster', ], ], ], 'ModifyIntegrationMessage' => [ 'type' => 'structure', 'required' => [ 'IntegrationIdentifier', ], 'members' => [ 'IntegrationIdentifier' => [ 'shape' => 'IntegrationIdentifier', ], 'IntegrationName' => [ 'shape' => 'IntegrationName', ], 'DataFilter' => [ 'shape' => 'DataFilter', ], 'Description' => [ 'shape' => 'IntegrationDescription', ], ], ], 'ModifyOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'OptionGroupName', ], 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'OptionsToInclude' => [ 'shape' => 'OptionConfigurationList', ], 'OptionsToRemove' => [ 'shape' => 'OptionNamesList', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], ], ], 'ModifyOptionGroupResult' => [ 'type' => 'structure', 'members' => [ 'OptionGroup' => [ 'shape' => 'OptionGroup', ], ], ], 'ModifyTenantDatabaseMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'TenantDBName', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'TenantDBName' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'SensitiveString', ], 'NewTenantDBName' => [ 'shape' => 'String', ], 'ManageMasterUserPassword' => [ 'shape' => 'BooleanOptional', ], 'RotateMasterUserPassword' => [ 'shape' => 'BooleanOptional', ], 'MasterUserSecretKmsKeyId' => [ 'shape' => 'String', ], ], ], 'ModifyTenantDatabaseResult' => [ 'type' => 'structure', 'members' => [ 'TenantDatabase' => [ 'shape' => 'TenantDatabase', ], ], ], 'NetworkTypeNotSupported' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'NetworkTypeNotSupported', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Option' => [ 'type' => 'structure', 'members' => [ 'OptionName' => [ 'shape' => 'String', ], 'OptionDescription' => [ 'shape' => 'String', ], 'Persistent' => [ 'shape' => 'Boolean', ], 'Permanent' => [ 'shape' => 'Boolean', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'OptionVersion' => [ 'shape' => 'String', ], 'OptionSettings' => [ 'shape' => 'OptionSettingConfigurationList', ], 'DBSecurityGroupMemberships' => [ 'shape' => 'DBSecurityGroupMembershipList', ], 'VpcSecurityGroupMemberships' => [ 'shape' => 'VpcSecurityGroupMembershipList', ], ], ], 'OptionConfiguration' => [ 'type' => 'structure', 'required' => [ 'OptionName', ], 'members' => [ 'OptionName' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'OptionVersion' => [ 'shape' => 'String', ], 'DBSecurityGroupMemberships' => [ 'shape' => 'DBSecurityGroupNameList', ], 'VpcSecurityGroupMemberships' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'OptionSettings' => [ 'shape' => 'OptionSettingsList', ], ], ], 'OptionConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionConfiguration', 'locationName' => 'OptionConfiguration', ], ], 'OptionGroup' => [ 'type' => 'structure', 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'OptionGroupDescription' => [ 'shape' => 'String', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'Options' => [ 'shape' => 'OptionsList', ], 'AllowsVpcAndNonVpcInstanceMemberships' => [ 'shape' => 'Boolean', ], 'VpcId' => [ 'shape' => 'String', ], 'OptionGroupArn' => [ 'shape' => 'String', ], 'SourceOptionGroup' => [ 'shape' => 'String', ], 'SourceAccountId' => [ 'shape' => 'String', ], 'CopyTimestamp' => [ 'shape' => 'TStamp', ], ], 'wrapper' => true, ], 'OptionGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'OptionGroupAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'OptionGroupMembership' => [ 'type' => 'structure', 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'OptionGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroupMembership', 'locationName' => 'OptionGroupMembership', ], ], 'OptionGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'OptionGroupNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'OptionGroupOption' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'MinimumRequiredMinorEngineVersion' => [ 'shape' => 'String', ], 'PortRequired' => [ 'shape' => 'Boolean', ], 'DefaultPort' => [ 'shape' => 'IntegerOptional', ], 'OptionsDependedOn' => [ 'shape' => 'OptionsDependedOn', ], 'OptionsConflictsWith' => [ 'shape' => 'OptionsConflictsWith', ], 'Persistent' => [ 'shape' => 'Boolean', ], 'Permanent' => [ 'shape' => 'Boolean', ], 'RequiresAutoMinorEngineVersionUpgrade' => [ 'shape' => 'Boolean', ], 'VpcOnly' => [ 'shape' => 'Boolean', ], 'SupportsOptionVersionDowngrade' => [ 'shape' => 'BooleanOptional', ], 'OptionGroupOptionSettings' => [ 'shape' => 'OptionGroupOptionSettingsList', ], 'OptionGroupOptionVersions' => [ 'shape' => 'OptionGroupOptionVersionsList', ], 'CopyableCrossAccount' => [ 'shape' => 'BooleanOptional', ], ], ], 'OptionGroupOptionSetting' => [ 'type' => 'structure', 'members' => [ 'SettingName' => [ 'shape' => 'String', ], 'SettingDescription' => [ 'shape' => 'String', ], 'DefaultValue' => [ 'shape' => 'String', ], 'ApplyType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'IsRequired' => [ 'shape' => 'Boolean', ], 'MinimumEngineVersionPerAllowedValue' => [ 'shape' => 'MinimumEngineVersionPerAllowedValueList', ], ], ], 'OptionGroupOptionSettingsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroupOptionSetting', 'locationName' => 'OptionGroupOptionSetting', ], ], 'OptionGroupOptionVersionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionVersion', 'locationName' => 'OptionVersion', ], ], 'OptionGroupOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroupOption', 'locationName' => 'OptionGroupOption', ], ], 'OptionGroupOptionsMessage' => [ 'type' => 'structure', 'members' => [ 'OptionGroupOptions' => [ 'shape' => 'OptionGroupOptionsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'OptionGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'OptionGroupQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'OptionGroups' => [ 'type' => 'structure', 'members' => [ 'OptionGroupsList' => [ 'shape' => 'OptionGroupsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'OptionGroupsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroup', 'locationName' => 'OptionGroup', ], ], 'OptionNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'OptionSetting' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'PotentiallySensitiveOptionSettingValue', ], 'DefaultValue' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'ApplyType' => [ 'shape' => 'String', ], 'DataType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'IsCollection' => [ 'shape' => 'Boolean', ], ], ], 'OptionSettingConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionSetting', 'locationName' => 'OptionSetting', ], ], 'OptionSettingsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionSetting', 'locationName' => 'OptionSetting', ], ], 'OptionVersion' => [ 'type' => 'structure', 'members' => [ 'Version' => [ 'shape' => 'String', ], 'IsDefault' => [ 'shape' => 'Boolean', ], ], ], 'OptionsConflictsWith' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'OptionConflictName', ], ], 'OptionsDependedOn' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'OptionName', ], ], 'OptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Option', 'locationName' => 'Option', ], ], 'OrderableDBInstanceOption' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'AvailabilityZoneGroup' => [ 'shape' => 'String', ], 'AvailabilityZones' => [ 'shape' => 'AvailabilityZoneList', ], 'MultiAZCapable' => [ 'shape' => 'Boolean', ], 'ReadReplicaCapable' => [ 'shape' => 'Boolean', ], 'Vpc' => [ 'shape' => 'Boolean', ], 'SupportsStorageEncryption' => [ 'shape' => 'Boolean', ], 'StorageType' => [ 'shape' => 'String', ], 'SupportsIops' => [ 'shape' => 'Boolean', ], 'SupportsStorageThroughput' => [ 'shape' => 'Boolean', ], 'SupportsEnhancedMonitoring' => [ 'shape' => 'Boolean', ], 'SupportsIAMDatabaseAuthentication' => [ 'shape' => 'Boolean', ], 'SupportsPerformanceInsights' => [ 'shape' => 'Boolean', ], 'MinStorageSize' => [ 'shape' => 'IntegerOptional', ], 'MaxStorageSize' => [ 'shape' => 'IntegerOptional', ], 'MinIopsPerDbInstance' => [ 'shape' => 'IntegerOptional', ], 'MaxIopsPerDbInstance' => [ 'shape' => 'IntegerOptional', ], 'MinIopsPerGib' => [ 'shape' => 'DoubleOptional', ], 'MaxIopsPerGib' => [ 'shape' => 'DoubleOptional', ], 'MinStorageThroughputPerDbInstance' => [ 'shape' => 'IntegerOptional', ], 'MaxStorageThroughputPerDbInstance' => [ 'shape' => 'IntegerOptional', ], 'MinStorageThroughputPerIops' => [ 'shape' => 'DoubleOptional', ], 'MaxStorageThroughputPerIops' => [ 'shape' => 'DoubleOptional', ], 'AvailableProcessorFeatures' => [ 'shape' => 'AvailableProcessorFeatureList', ], 'SupportedEngineModes' => [ 'shape' => 'EngineModeList', ], 'SupportsStorageAutoscaling' => [ 'shape' => 'BooleanOptional', ], 'SupportsKerberosAuthentication' => [ 'shape' => 'BooleanOptional', ], 'OutpostCapable' => [ 'shape' => 'Boolean', ], 'SupportedActivityStreamModes' => [ 'shape' => 'ActivityStreamModeList', ], 'SupportsGlobalDatabases' => [ 'shape' => 'Boolean', ], 'SupportedNetworkTypes' => [ 'shape' => 'StringList', ], 'SupportsClusters' => [ 'shape' => 'Boolean', ], 'SupportsDedicatedLogVolume' => [ 'shape' => 'Boolean', ], ], 'wrapper' => true, ], 'OrderableDBInstanceOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OrderableDBInstanceOption', 'locationName' => 'OrderableDBInstanceOption', ], ], 'OrderableDBInstanceOptionsMessage' => [ 'type' => 'structure', 'members' => [ 'OrderableDBInstanceOptions' => [ 'shape' => 'OrderableDBInstanceOptionsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'Outpost' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', ], ], ], 'Parameter' => [ 'type' => 'structure', 'members' => [ 'ParameterName' => [ 'shape' => 'String', ], 'ParameterValue' => [ 'shape' => 'PotentiallySensitiveParameterValue', ], 'Description' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'ApplyType' => [ 'shape' => 'String', ], 'DataType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'MinimumEngineVersion' => [ 'shape' => 'String', ], 'ApplyMethod' => [ 'shape' => 'ApplyMethod', ], 'SupportedEngineModes' => [ 'shape' => 'EngineModeList', ], ], ], 'ParametersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Parameter', 'locationName' => 'Parameter', ], ], 'PendingCloudwatchLogsExports' => [ 'type' => 'structure', 'members' => [ 'LogTypesToEnable' => [ 'shape' => 'LogTypeList', ], 'LogTypesToDisable' => [ 'shape' => 'LogTypeList', ], ], ], 'PendingMaintenanceAction' => [ 'type' => 'structure', 'members' => [ 'Action' => [ 'shape' => 'String', ], 'AutoAppliedAfterDate' => [ 'shape' => 'TStamp', ], 'ForcedApplyDate' => [ 'shape' => 'TStamp', ], 'OptInStatus' => [ 'shape' => 'String', ], 'CurrentApplyDate' => [ 'shape' => 'TStamp', ], 'Description' => [ 'shape' => 'String', ], ], ], 'PendingMaintenanceActionDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'PendingMaintenanceAction', 'locationName' => 'PendingMaintenanceAction', ], ], 'PendingMaintenanceActions' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourcePendingMaintenanceActions', 'locationName' => 'ResourcePendingMaintenanceActions', ], ], 'PendingMaintenanceActionsMessage' => [ 'type' => 'structure', 'members' => [ 'PendingMaintenanceActions' => [ 'shape' => 'PendingMaintenanceActions', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'PendingModifiedValues' => [ 'type' => 'structure', 'members' => [ 'DBInstanceClass' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'MasterUserPassword' => [ 'shape' => 'SensitiveString', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'StorageThroughput' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'CACertificateIdentifier' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'PendingCloudwatchLogsExports' => [ 'shape' => 'PendingCloudwatchLogsExports', ], 'ProcessorFeatures' => [ 'shape' => 'ProcessorFeatureList', ], 'AutomationMode' => [ 'shape' => 'AutomationMode', ], 'ResumeFullAutomationModeTime' => [ 'shape' => 'TStamp', ], 'MultiTenant' => [ 'shape' => 'BooleanOptional', ], 'IAMDatabaseAuthenticationEnabled' => [ 'shape' => 'BooleanOptional', ], 'DedicatedLogVolume' => [ 'shape' => 'BooleanOptional', ], 'Engine' => [ 'shape' => 'String', ], ], ], 'PerformanceInsightsMetricDimensionGroup' => [ 'type' => 'structure', 'members' => [ 'Dimensions' => [ 'shape' => 'StringList', ], 'Group' => [ 'shape' => 'String', ], 'Limit' => [ 'shape' => 'Integer', ], ], ], 'PerformanceInsightsMetricQuery' => [ 'type' => 'structure', 'members' => [ 'GroupBy' => [ 'shape' => 'PerformanceInsightsMetricDimensionGroup', ], 'Metric' => [ 'shape' => 'String', ], ], ], 'PerformanceIssueDetails' => [ 'type' => 'structure', 'members' => [ 'StartTime' => [ 'shape' => 'TStamp', ], 'EndTime' => [ 'shape' => 'TStamp', ], 'Metrics' => [ 'shape' => 'MetricList', ], 'Analysis' => [ 'shape' => 'String', ], ], ], 'PointInTimeRestoreNotEnabledFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'PointInTimeRestoreNotEnabled', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'PotentiallySensitiveOptionSettingValue' => [ 'type' => 'string', 'sensitive' => true, ], 'PotentiallySensitiveParameterValue' => [ 'type' => 'string', ], 'ProcessorFeature' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'ProcessorFeatureList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProcessorFeature', 'locationName' => 'ProcessorFeature', ], ], 'PromoteReadReplicaDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'PromoteReadReplicaDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'PromoteReadReplicaMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], ], ], 'PromoteReadReplicaResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'ProvisionedIopsNotAvailableInAZFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ProvisionedIopsNotAvailableInAZFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'PurchaseReservedDBInstancesOfferingMessage' => [ 'type' => 'structure', 'required' => [ 'ReservedDBInstancesOfferingId', ], 'members' => [ 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'ReservedDBInstanceId' => [ 'shape' => 'String', ], 'DBInstanceCount' => [ 'shape' => 'IntegerOptional', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'PurchaseReservedDBInstancesOfferingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstance' => [ 'shape' => 'ReservedDBInstance', ], ], ], 'Range' => [ 'type' => 'structure', 'members' => [ 'From' => [ 'shape' => 'Integer', ], 'To' => [ 'shape' => 'Integer', ], 'Step' => [ 'shape' => 'IntegerOptional', ], ], ], 'RangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Range', 'locationName' => 'Range', ], ], 'RdsCustomClusterConfiguration' => [ 'type' => 'structure', 'members' => [ 'InterconnectSubnetId' => [ 'shape' => 'String', ], 'TransitGatewayMulticastDomainId' => [ 'shape' => 'String', ], 'ReplicaMode' => [ 'shape' => 'ReplicaMode', ], ], ], 'ReadReplicaDBClusterIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ReadReplicaDBClusterIdentifier', ], ], 'ReadReplicaDBInstanceIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ReadReplicaDBInstanceIdentifier', ], ], 'ReadReplicaIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ReadReplicaIdentifier', ], ], 'ReadersArnList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'RebootDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'RebootDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'RebootDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'ForceFailover' => [ 'shape' => 'BooleanOptional', ], ], ], 'RebootDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'RebootDBShardGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBShardGroupIdentifier', ], 'members' => [ 'DBShardGroupIdentifier' => [ 'shape' => 'DBShardGroupIdentifier', ], ], ], 'RecommendedAction' => [ 'type' => 'structure', 'members' => [ 'ActionId' => [ 'shape' => 'String', ], 'Title' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Operation' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'RecommendedActionParameterList', ], 'ApplyModes' => [ 'shape' => 'StringList', ], 'Status' => [ 'shape' => 'String', ], 'IssueDetails' => [ 'shape' => 'IssueDetails', ], 'ContextAttributes' => [ 'shape' => 'ContextAttributeList', ], ], ], 'RecommendedActionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecommendedAction', ], ], 'RecommendedActionParameter' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'RecommendedActionParameterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecommendedActionParameter', ], ], 'RecommendedActionUpdate' => [ 'type' => 'structure', 'required' => [ 'ActionId', 'Status', ], 'members' => [ 'ActionId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'RecommendedActionUpdateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecommendedActionUpdate', ], ], 'RecurringCharge' => [ 'type' => 'structure', 'members' => [ 'RecurringChargeAmount' => [ 'shape' => 'Double', ], 'RecurringChargeFrequency' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'RecurringChargeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecurringCharge', 'locationName' => 'RecurringCharge', ], ], 'ReferenceDetails' => [ 'type' => 'structure', 'members' => [ 'ScalarReferenceDetails' => [ 'shape' => 'ScalarReferenceDetails', ], ], ], 'RegisterDBProxyTargetsRequest' => [ 'type' => 'structure', 'required' => [ 'DBProxyName', ], 'members' => [ 'DBProxyName' => [ 'shape' => 'DBProxyName', ], 'TargetGroupName' => [ 'shape' => 'DBProxyTargetGroupName', ], 'DBInstanceIdentifiers' => [ 'shape' => 'StringList', ], 'DBClusterIdentifiers' => [ 'shape' => 'StringList', ], ], ], 'RegisterDBProxyTargetsResponse' => [ 'type' => 'structure', 'members' => [ 'DBProxyTargets' => [ 'shape' => 'TargetList', ], ], ], 'RemoveFromGlobalClusterMessage' => [ 'type' => 'structure', 'required' => [ 'GlobalClusterIdentifier', 'DbClusterIdentifier', ], 'members' => [ 'GlobalClusterIdentifier' => [ 'shape' => 'GlobalClusterIdentifier', ], 'DbClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'RemoveFromGlobalClusterResult' => [ 'type' => 'structure', 'members' => [ 'GlobalCluster' => [ 'shape' => 'GlobalCluster', ], ], ], 'RemoveRoleFromDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'RoleArn', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'RoleArn' => [ 'shape' => 'String', ], 'FeatureName' => [ 'shape' => 'String', ], ], ], 'RemoveRoleFromDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'RoleArn', 'FeatureName', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'RoleArn' => [ 'shape' => 'String', ], 'FeatureName' => [ 'shape' => 'String', ], ], ], 'RemoveSourceIdentifierFromSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', 'SourceIdentifier', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SourceIdentifier' => [ 'shape' => 'String', ], ], ], 'RemoveSourceIdentifierFromSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'RemoveTagsFromResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'TagKeys', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'KeyList', ], ], ], 'ReplicaMode' => [ 'type' => 'string', 'enum' => [ 'open-read-only', 'mounted', ], ], 'ReservedDBInstance' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstanceId' => [ 'shape' => 'String', ], 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'CurrencyCode' => [ 'shape' => 'String', ], 'DBInstanceCount' => [ 'shape' => 'Integer', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'Boolean', ], 'State' => [ 'shape' => 'String', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], 'ReservedDBInstanceArn' => [ 'shape' => 'String', ], 'LeaseId' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'ReservedDBInstanceAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstanceAlreadyExists', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedDBInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedDBInstance', 'locationName' => 'ReservedDBInstance', ], ], 'ReservedDBInstanceMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedDBInstances' => [ 'shape' => 'ReservedDBInstanceList', ], ], ], 'ReservedDBInstanceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstanceNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedDBInstanceQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstanceQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ReservedDBInstancesOffering' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'CurrencyCode' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'Boolean', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], ], 'wrapper' => true, ], 'ReservedDBInstancesOfferingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedDBInstancesOffering', 'locationName' => 'ReservedDBInstancesOffering', ], ], 'ReservedDBInstancesOfferingMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedDBInstancesOfferings' => [ 'shape' => 'ReservedDBInstancesOfferingList', ], ], ], 'ReservedDBInstancesOfferingNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstancesOfferingNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ResetDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'ResetAllParameters' => [ 'shape' => 'Boolean', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ResetDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'ResetAllParameters' => [ 'shape' => 'Boolean', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ResourceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ResourceNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ResourcePendingMaintenanceActions' => [ 'type' => 'structure', 'members' => [ 'ResourceIdentifier' => [ 'shape' => 'String', ], 'PendingMaintenanceActionDetails' => [ 'shape' => 'PendingMaintenanceActionDetails', ], ], 'wrapper' => true, ], 'RestoreDBClusterFromS3Message' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'Engine', 'MasterUsername', 'SourceEngine', 'SourceEngineVersion', 'S3BucketName', 'S3IngestionRoleArn', ], 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'DatabaseName' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MasterUsername' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'SensitiveString', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageEncrypted' => [ 'shape' => 'BooleanOptional', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'EnableIAMDatabaseAuthentication' => [ 'shape' => 'BooleanOptional', ], 'SourceEngine' => [ 'shape' => 'String', ], 'SourceEngineVersion' => [ 'shape' => 'String', ], 'S3BucketName' => [ 'shape' => 'String', ], 'S3Prefix' => [ 'shape' => 'String', ], 'S3IngestionRoleArn' => [ 'shape' => 'String', ], 'BacktrackWindow' => [ 'shape' => 'LongOptional', ], 'EnableCloudwatchLogsExports' => [ 'shape' => 'LogTypeList', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'Domain' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'ServerlessV2ScalingConfiguration' => [ 'shape' => 'ServerlessV2ScalingConfiguration', ], 'ManageMasterUserPassword' => [ 'shape' => 'BooleanOptional', ], 'MasterUserSecretKmsKeyId' => [ 'shape' => 'String', ], 'EngineLifecycleSupport' => [ 'shape' => 'String', ], ], ], 'RestoreDBClusterFromS3Result' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'RestoreDBClusterFromSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'SnapshotIdentifier', 'Engine', ], 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DatabaseName' => [ 'shape' => 'String', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'Tags' => [ 'shape' => 'TagList', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'EnableIAMDatabaseAuthentication' => [ 'shape' => 'BooleanOptional', ], 'BacktrackWindow' => [ 'shape' => 'LongOptional', ], 'EnableCloudwatchLogsExports' => [ 'shape' => 'LogTypeList', ], 'EngineMode' => [ 'shape' => 'String', ], 'ScalingConfiguration' => [ 'shape' => 'ScalingConfiguration', ], 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'Domain' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], 'DBClusterInstanceClass' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'ServerlessV2ScalingConfiguration' => [ 'shape' => 'ServerlessV2ScalingConfiguration', ], 'RdsCustomClusterConfiguration' => [ 'shape' => 'RdsCustomClusterConfiguration', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'EnablePerformanceInsights' => [ 'shape' => 'BooleanOptional', ], 'PerformanceInsightsKMSKeyId' => [ 'shape' => 'String', ], 'PerformanceInsightsRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'EngineLifecycleSupport' => [ 'shape' => 'String', ], ], ], 'RestoreDBClusterFromSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'RestoreDBClusterToPointInTimeMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'RestoreType' => [ 'shape' => 'String', ], 'SourceDBClusterIdentifier' => [ 'shape' => 'String', ], 'RestoreToTime' => [ 'shape' => 'TStamp', ], 'UseLatestRestorableTime' => [ 'shape' => 'Boolean', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'Tags' => [ 'shape' => 'TagList', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'EnableIAMDatabaseAuthentication' => [ 'shape' => 'BooleanOptional', ], 'BacktrackWindow' => [ 'shape' => 'LongOptional', ], 'EnableCloudwatchLogsExports' => [ 'shape' => 'LogTypeList', ], 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'Domain' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], 'DBClusterInstanceClass' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'SourceDbClusterResourceId' => [ 'shape' => 'String', ], 'ServerlessV2ScalingConfiguration' => [ 'shape' => 'ServerlessV2ScalingConfiguration', ], 'ScalingConfiguration' => [ 'shape' => 'ScalingConfiguration', ], 'EngineMode' => [ 'shape' => 'String', ], 'RdsCustomClusterConfiguration' => [ 'shape' => 'RdsCustomClusterConfiguration', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'EnablePerformanceInsights' => [ 'shape' => 'BooleanOptional', ], 'PerformanceInsightsKMSKeyId' => [ 'shape' => 'String', ], 'PerformanceInsightsRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'EngineLifecycleSupport' => [ 'shape' => 'String', ], ], ], 'RestoreDBClusterToPointInTimeResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'RestoreDBInstanceFromDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'DBName' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'StorageThroughput' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'SensitiveString', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'Domain' => [ 'shape' => 'String', ], 'DomainFqdn' => [ 'shape' => 'String', ], 'DomainOu' => [ 'shape' => 'String', ], 'DomainAuthSecretArn' => [ 'shape' => 'String', ], 'DomainDnsIps' => [ 'shape' => 'StringList', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], 'EnableIAMDatabaseAuthentication' => [ 'shape' => 'BooleanOptional', ], 'EnableCloudwatchLogsExports' => [ 'shape' => 'LogTypeList', ], 'ProcessorFeatures' => [ 'shape' => 'ProcessorFeatureList', ], 'UseDefaultProcessorFeatures' => [ 'shape' => 'BooleanOptional', ], 'DBParameterGroupName' => [ 'shape' => 'String', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'EnableCustomerOwnedIp' => [ 'shape' => 'BooleanOptional', ], 'NetworkType' => [ 'shape' => 'String', ], 'CustomIamInstanceProfile' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'DedicatedLogVolume' => [ 'shape' => 'BooleanOptional', ], 'EngineLifecycleSupport' => [ 'shape' => 'String', ], 'ManageMasterUserPassword' => [ 'shape' => 'BooleanOptional', ], 'MasterUserSecretKmsKeyId' => [ 'shape' => 'String', ], ], ], 'RestoreDBInstanceFromDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'RestoreDBInstanceFromS3Message' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'DBInstanceClass', 'Engine', 'SourceEngine', 'SourceEngineVersion', 'S3BucketName', 'S3IngestionRoleArn', ], 'members' => [ 'DBName' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'SensitiveString', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'DBParameterGroupName' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'StorageThroughput' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageType' => [ 'shape' => 'String', ], 'StorageEncrypted' => [ 'shape' => 'BooleanOptional', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'EnableIAMDatabaseAuthentication' => [ 'shape' => 'BooleanOptional', ], 'SourceEngine' => [ 'shape' => 'String', ], 'SourceEngineVersion' => [ 'shape' => 'String', ], 'S3BucketName' => [ 'shape' => 'String', ], 'S3Prefix' => [ 'shape' => 'String', ], 'S3IngestionRoleArn' => [ 'shape' => 'String', ], 'EnablePerformanceInsights' => [ 'shape' => 'BooleanOptional', ], 'PerformanceInsightsKMSKeyId' => [ 'shape' => 'String', ], 'PerformanceInsightsRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'EnableCloudwatchLogsExports' => [ 'shape' => 'LogTypeList', ], 'ProcessorFeatures' => [ 'shape' => 'ProcessorFeatureList', ], 'UseDefaultProcessorFeatures' => [ 'shape' => 'BooleanOptional', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'MaxAllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'NetworkType' => [ 'shape' => 'String', ], 'ManageMasterUserPassword' => [ 'shape' => 'BooleanOptional', ], 'MasterUserSecretKmsKeyId' => [ 'shape' => 'String', ], 'DedicatedLogVolume' => [ 'shape' => 'BooleanOptional', ], 'EngineLifecycleSupport' => [ 'shape' => 'String', ], ], ], 'RestoreDBInstanceFromS3Result' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'RestoreDBInstanceToPointInTimeMessage' => [ 'type' => 'structure', 'required' => [ 'TargetDBInstanceIdentifier', ], 'members' => [ 'SourceDBInstanceIdentifier' => [ 'shape' => 'String', ], 'TargetDBInstanceIdentifier' => [ 'shape' => 'String', ], 'RestoreTime' => [ 'shape' => 'TStamp', ], 'UseLatestRestorableTime' => [ 'shape' => 'Boolean', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'DBName' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'StorageThroughput' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'SensitiveString', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'Domain' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], 'DomainFqdn' => [ 'shape' => 'String', ], 'DomainOu' => [ 'shape' => 'String', ], 'DomainAuthSecretArn' => [ 'shape' => 'String', ], 'DomainDnsIps' => [ 'shape' => 'StringList', ], 'EnableIAMDatabaseAuthentication' => [ 'shape' => 'BooleanOptional', ], 'EnableCloudwatchLogsExports' => [ 'shape' => 'LogTypeList', ], 'ProcessorFeatures' => [ 'shape' => 'ProcessorFeatureList', ], 'UseDefaultProcessorFeatures' => [ 'shape' => 'BooleanOptional', ], 'DBParameterGroupName' => [ 'shape' => 'String', ], 'DeletionProtection' => [ 'shape' => 'BooleanOptional', ], 'SourceDbiResourceId' => [ 'shape' => 'String', ], 'MaxAllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'EnableCustomerOwnedIp' => [ 'shape' => 'BooleanOptional', ], 'NetworkType' => [ 'shape' => 'String', ], 'SourceDBInstanceAutomatedBackupsArn' => [ 'shape' => 'String', ], 'CustomIamInstanceProfile' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'DedicatedLogVolume' => [ 'shape' => 'BooleanOptional', ], 'EngineLifecycleSupport' => [ 'shape' => 'String', ], 'ManageMasterUserPassword' => [ 'shape' => 'BooleanOptional', ], 'MasterUserSecretKmsKeyId' => [ 'shape' => 'String', ], ], ], 'RestoreDBInstanceToPointInTimeResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'RestoreWindow' => [ 'type' => 'structure', 'members' => [ 'EarliestTime' => [ 'shape' => 'TStamp', ], 'LatestTime' => [ 'shape' => 'TStamp', ], ], ], 'RevokeDBSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupId' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'RevokeDBSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroup' => [ 'shape' => 'DBSecurityGroup', ], ], ], 'SNSInvalidTopicFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSInvalidTopic', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SNSNoAuthorizationFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSNoAuthorization', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SNSTopicArnNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSTopicArnNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ScalarReferenceDetails' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Double', ], ], ], 'ScalingConfiguration' => [ 'type' => 'structure', 'members' => [ 'MinCapacity' => [ 'shape' => 'IntegerOptional', ], 'MaxCapacity' => [ 'shape' => 'IntegerOptional', ], 'AutoPause' => [ 'shape' => 'BooleanOptional', ], 'SecondsUntilAutoPause' => [ 'shape' => 'IntegerOptional', ], 'TimeoutAction' => [ 'shape' => 'String', ], 'SecondsBeforeTimeout' => [ 'shape' => 'IntegerOptional', ], ], ], 'ScalingConfigurationInfo' => [ 'type' => 'structure', 'members' => [ 'MinCapacity' => [ 'shape' => 'IntegerOptional', ], 'MaxCapacity' => [ 'shape' => 'IntegerOptional', ], 'AutoPause' => [ 'shape' => 'BooleanOptional', ], 'SecondsUntilAutoPause' => [ 'shape' => 'IntegerOptional', ], 'TimeoutAction' => [ 'shape' => 'String', ], 'SecondsBeforeTimeout' => [ 'shape' => 'IntegerOptional', ], ], ], 'SensitiveString' => [ 'type' => 'string', 'sensitive' => true, ], 'ServerlessV2FeaturesSupport' => [ 'type' => 'structure', 'members' => [ 'MinCapacity' => [ 'shape' => 'DoubleOptional', ], 'MaxCapacity' => [ 'shape' => 'DoubleOptional', ], ], ], 'ServerlessV2ScalingConfiguration' => [ 'type' => 'structure', 'members' => [ 'MinCapacity' => [ 'shape' => 'DoubleOptional', ], 'MaxCapacity' => [ 'shape' => 'DoubleOptional', ], 'SecondsUntilAutoPause' => [ 'shape' => 'IntegerOptional', ], ], ], 'ServerlessV2ScalingConfigurationInfo' => [ 'type' => 'structure', 'members' => [ 'MinCapacity' => [ 'shape' => 'DoubleOptional', ], 'MaxCapacity' => [ 'shape' => 'DoubleOptional', ], 'SecondsUntilAutoPause' => [ 'shape' => 'IntegerOptional', ], ], ], 'SharedSnapshotQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SharedSnapshotQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SourceArn' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => 'arn:aws[a-z\\-]*:rds(-[a-z]*)?:[a-z0-9\\-]*:[0-9]*:(cluster|db):[a-z][a-z0-9]*(-[a-z0-9]+)*', ], 'SourceClusterNotSupportedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SourceClusterNotSupportedFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SourceDatabaseNotSupportedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SourceDatabaseNotSupportedFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SourceIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SourceId', ], ], 'SourceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SourceNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SourceRegion' => [ 'type' => 'structure', 'members' => [ 'RegionName' => [ 'shape' => 'String', ], 'Endpoint' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'SupportsDBInstanceAutomatedBackupsReplication' => [ 'shape' => 'Boolean', ], ], ], 'SourceRegionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SourceRegion', 'locationName' => 'SourceRegion', ], ], 'SourceRegionMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'SourceRegions' => [ 'shape' => 'SourceRegionList', ], ], ], 'SourceType' => [ 'type' => 'string', 'enum' => [ 'db-instance', 'db-parameter-group', 'db-security-group', 'db-snapshot', 'db-cluster', 'db-cluster-snapshot', 'custom-engine-version', 'db-proxy', 'blue-green-deployment', 'db-shard-group', 'zero-etl', ], ], 'StartActivityStreamRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', 'Mode', 'KmsKeyId', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'String', ], 'Mode' => [ 'shape' => 'ActivityStreamMode', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'ApplyImmediately' => [ 'shape' => 'BooleanOptional', ], 'EngineNativeAuditFieldsIncluded' => [ 'shape' => 'BooleanOptional', ], ], ], 'StartActivityStreamResponse' => [ 'type' => 'structure', 'members' => [ 'KmsKeyId' => [ 'shape' => 'String', ], 'KinesisStreamName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'ActivityStreamStatus', ], 'Mode' => [ 'shape' => 'ActivityStreamMode', ], 'EngineNativeAuditFieldsIncluded' => [ 'shape' => 'BooleanOptional', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], ], ], 'StartDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'StartDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'StartDBInstanceAutomatedBackupsReplicationMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBInstanceArn', ], 'members' => [ 'SourceDBInstanceArn' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'PreSignedUrl' => [ 'shape' => 'SensitiveString', ], ], ], 'StartDBInstanceAutomatedBackupsReplicationResult' => [ 'type' => 'structure', 'members' => [ 'DBInstanceAutomatedBackup' => [ 'shape' => 'DBInstanceAutomatedBackup', ], ], ], 'StartDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], ], ], 'StartDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'StartExportTaskMessage' => [ 'type' => 'structure', 'required' => [ 'ExportTaskIdentifier', 'SourceArn', 'S3BucketName', 'IamRoleArn', 'KmsKeyId', ], 'members' => [ 'ExportTaskIdentifier' => [ 'shape' => 'String', ], 'SourceArn' => [ 'shape' => 'String', ], 'S3BucketName' => [ 'shape' => 'String', ], 'IamRoleArn' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'S3Prefix' => [ 'shape' => 'String', ], 'ExportOnly' => [ 'shape' => 'StringList', ], ], ], 'StopActivityStreamRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceArn', ], 'members' => [ 'ResourceArn' => [ 'shape' => 'String', ], 'ApplyImmediately' => [ 'shape' => 'BooleanOptional', ], ], ], 'StopActivityStreamResponse' => [ 'type' => 'structure', 'members' => [ 'KmsKeyId' => [ 'shape' => 'String', ], 'KinesisStreamName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'ActivityStreamStatus', ], ], ], 'StopDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'StopDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'StopDBInstanceAutomatedBackupsReplicationMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBInstanceArn', ], 'members' => [ 'SourceDBInstanceArn' => [ 'shape' => 'String', ], ], ], 'StopDBInstanceAutomatedBackupsReplicationResult' => [ 'type' => 'structure', 'members' => [ 'DBInstanceAutomatedBackup' => [ 'shape' => 'DBInstanceAutomatedBackup', ], ], ], 'StopDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'StopDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'StorageQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'StorageQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'StorageTypeNotAvailableFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'StorageTypeNotAvailableFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'StorageTypeNotSupportedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'StorageTypeNotSupported', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'String' => [ 'type' => 'string', ], 'String255' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => '.*', ], 'StringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'Subnet' => [ 'type' => 'structure', 'members' => [ 'SubnetIdentifier' => [ 'shape' => 'String', ], 'SubnetAvailabilityZone' => [ 'shape' => 'AvailabilityZone', ], 'SubnetOutpost' => [ 'shape' => 'Outpost', ], 'SubnetStatus' => [ 'shape' => 'String', ], ], ], 'SubnetAlreadyInUse' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubnetAlreadyInUse', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SubnetIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SubnetIdentifier', ], ], 'SubnetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subnet', 'locationName' => 'Subnet', ], ], 'SubscriptionAlreadyExistFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionAlreadyExist', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionCategoryNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionCategoryNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SupportedCharacterSetsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CharacterSet', 'locationName' => 'CharacterSet', ], ], 'SupportedEngineLifecycle' => [ 'type' => 'structure', 'required' => [ 'LifecycleSupportName', 'LifecycleSupportStartDate', 'LifecycleSupportEndDate', ], 'members' => [ 'LifecycleSupportName' => [ 'shape' => 'LifecycleSupportName', ], 'LifecycleSupportStartDate' => [ 'shape' => 'TStamp', ], 'LifecycleSupportEndDate' => [ 'shape' => 'TStamp', ], ], ], 'SupportedEngineLifecycleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SupportedEngineLifecycle', 'locationName' => 'SupportedEngineLifecycle', ], ], 'SupportedTimezonesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Timezone', 'locationName' => 'Timezone', ], ], 'SwitchoverBlueGreenDeploymentRequest' => [ 'type' => 'structure', 'required' => [ 'BlueGreenDeploymentIdentifier', ], 'members' => [ 'BlueGreenDeploymentIdentifier' => [ 'shape' => 'BlueGreenDeploymentIdentifier', ], 'SwitchoverTimeout' => [ 'shape' => 'SwitchoverTimeout', ], ], ], 'SwitchoverBlueGreenDeploymentResponse' => [ 'type' => 'structure', 'members' => [ 'BlueGreenDeployment' => [ 'shape' => 'BlueGreenDeployment', ], ], ], 'SwitchoverDetail' => [ 'type' => 'structure', 'members' => [ 'SourceMember' => [ 'shape' => 'DatabaseArn', ], 'TargetMember' => [ 'shape' => 'DatabaseArn', ], 'Status' => [ 'shape' => 'SwitchoverDetailStatus', ], ], ], 'SwitchoverDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SwitchoverDetail', ], ], 'SwitchoverDetailStatus' => [ 'type' => 'string', ], 'SwitchoverGlobalClusterMessage' => [ 'type' => 'structure', 'required' => [ 'GlobalClusterIdentifier', 'TargetDbClusterIdentifier', ], 'members' => [ 'GlobalClusterIdentifier' => [ 'shape' => 'GlobalClusterIdentifier', ], 'TargetDbClusterIdentifier' => [ 'shape' => 'DBClusterIdentifier', ], ], ], 'SwitchoverGlobalClusterResult' => [ 'type' => 'structure', 'members' => [ 'GlobalCluster' => [ 'shape' => 'GlobalCluster', ], ], ], 'SwitchoverReadReplicaMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], ], ], 'SwitchoverReadReplicaResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'SwitchoverTimeout' => [ 'type' => 'integer', 'min' => 30, ], 'TStamp' => [ 'type' => 'timestamp', ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'Tag', ], ], 'TagListMessage' => [ 'type' => 'structure', 'members' => [ 'TagList' => [ 'shape' => 'TagList', ], ], ], 'TargetDBClusterParameterGroupName' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => '[A-Za-z](?!.*--)[0-9A-Za-z-]*[^-]|^default(?!.*--)(?!.*\\.\\.)[0-9A-Za-z-.]*[^-]', ], 'TargetDBInstanceClass' => [ 'type' => 'string', 'max' => 20, 'min' => 5, 'pattern' => 'db\\.[0-9a-z]{2,6}\\.[0-9a-z]{4,9}', ], 'TargetDBParameterGroupName' => [ 'type' => 'string', 'max' => 255, 'min' => 1, 'pattern' => '[A-Za-z](?!.*--)[0-9A-Za-z-]*[^-]|^default(?!.*--)(?!.*\\.\\.)[0-9A-Za-z-.]*[^-]', ], 'TargetEngineVersion' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '[0-9A-Za-z-_.]+', ], 'TargetGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBProxyTargetGroup', ], ], 'TargetHealth' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'TargetState', ], 'Reason' => [ 'shape' => 'TargetHealthReason', ], 'Description' => [ 'shape' => 'String', ], ], ], 'TargetHealthReason' => [ 'type' => 'string', 'enum' => [ 'UNREACHABLE', 'CONNECTION_FAILED', 'AUTH_FAILURE', 'PENDING_PROXY_CAPACITY', 'INVALID_REPLICATION_STATE', 'PROMOTED', ], ], 'TargetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBProxyTarget', ], ], 'TargetRole' => [ 'type' => 'string', 'enum' => [ 'READ_WRITE', 'READ_ONLY', 'UNKNOWN', ], ], 'TargetState' => [ 'type' => 'string', 'enum' => [ 'REGISTERING', 'AVAILABLE', 'UNAVAILABLE', 'UNUSED', ], ], 'TargetType' => [ 'type' => 'string', 'enum' => [ 'RDS_INSTANCE', 'RDS_SERVERLESS_ENDPOINT', 'TRACKED_CLUSTER', ], ], 'TenantDatabase' => [ 'type' => 'structure', 'members' => [ 'TenantDatabaseCreateTime' => [ 'shape' => 'TStamp', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'TenantDBName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'DbiResourceId' => [ 'shape' => 'String', ], 'TenantDatabaseResourceId' => [ 'shape' => 'String', ], 'TenantDatabaseARN' => [ 'shape' => 'String', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'NcharCharacterSetName' => [ 'shape' => 'String', ], 'DeletionProtection' => [ 'shape' => 'Boolean', ], 'PendingModifiedValues' => [ 'shape' => 'TenantDatabasePendingModifiedValues', ], 'MasterUserSecret' => [ 'shape' => 'MasterUserSecret', ], 'TagList' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'TenantDatabaseAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TenantDatabaseAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'TenantDatabaseNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TenantDatabaseNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'TenantDatabasePendingModifiedValues' => [ 'type' => 'structure', 'members' => [ 'MasterUserPassword' => [ 'shape' => 'SensitiveString', ], 'TenantDBName' => [ 'shape' => 'String', ], ], ], 'TenantDatabaseQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TenantDatabaseQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'TenantDatabasesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TenantDatabase', 'locationName' => 'TenantDatabase', ], ], 'TenantDatabasesMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'TenantDatabases' => [ 'shape' => 'TenantDatabasesList', ], ], ], 'Timezone' => [ 'type' => 'structure', 'members' => [ 'TimezoneName' => [ 'shape' => 'String', ], ], ], 'UpgradeTarget' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'AutoUpgrade' => [ 'shape' => 'Boolean', ], 'IsMajorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'SupportedEngineModes' => [ 'shape' => 'EngineModeList', ], 'SupportsParallelQuery' => [ 'shape' => 'BooleanOptional', ], 'SupportsGlobalDatabases' => [ 'shape' => 'BooleanOptional', ], 'SupportsBabelfish' => [ 'shape' => 'BooleanOptional', ], 'SupportsLimitlessDatabase' => [ 'shape' => 'BooleanOptional', ], 'SupportsIntegrations' => [ 'shape' => 'BooleanOptional', ], ], ], 'UserAuthConfig' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'Description', ], 'UserName' => [ 'shape' => 'AuthUserName', ], 'AuthScheme' => [ 'shape' => 'AuthScheme', ], 'SecretArn' => [ 'shape' => 'Arn', ], 'IAMAuth' => [ 'shape' => 'IAMAuthMode', ], 'ClientPasswordAuthType' => [ 'shape' => 'ClientPasswordAuthType', ], ], ], 'UserAuthConfigInfo' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'UserName' => [ 'shape' => 'String', ], 'AuthScheme' => [ 'shape' => 'AuthScheme', ], 'SecretArn' => [ 'shape' => 'String', ], 'IAMAuth' => [ 'shape' => 'IAMAuthMode', ], 'ClientPasswordAuthType' => [ 'shape' => 'ClientPasswordAuthType', ], ], ], 'UserAuthConfigInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserAuthConfigInfo', ], ], 'UserAuthConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserAuthConfig', ], 'max' => 200, 'min' => 0, ], 'ValidDBInstanceModificationsMessage' => [ 'type' => 'structure', 'members' => [ 'Storage' => [ 'shape' => 'ValidStorageOptionsList', ], 'ValidProcessorFeatures' => [ 'shape' => 'AvailableProcessorFeatureList', ], 'SupportsDedicatedLogVolume' => [ 'shape' => 'Boolean', ], ], 'wrapper' => true, ], 'ValidStorageOptions' => [ 'type' => 'structure', 'members' => [ 'StorageType' => [ 'shape' => 'String', ], 'StorageSize' => [ 'shape' => 'RangeList', ], 'ProvisionedIops' => [ 'shape' => 'RangeList', ], 'IopsToStorageRatio' => [ 'shape' => 'DoubleRangeList', ], 'ProvisionedStorageThroughput' => [ 'shape' => 'RangeList', ], 'StorageThroughputToIopsRatio' => [ 'shape' => 'DoubleRangeList', ], 'SupportsStorageAutoscaling' => [ 'shape' => 'Boolean', ], ], ], 'ValidStorageOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ValidStorageOptions', 'locationName' => 'ValidStorageOptions', ], ], 'ValidUpgradeTargetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'UpgradeTarget', 'locationName' => 'UpgradeTarget', ], ], 'VpcSecurityGroupIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'VpcSecurityGroupId', ], ], 'VpcSecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'VpcSecurityGroupId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'VpcSecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcSecurityGroupMembership', 'locationName' => 'VpcSecurityGroupMembership', ], ], 'WriteForwardingStatus' => [ 'type' => 'string', 'enum' => [ 'enabled', 'disabled', 'enabling', 'disabling', 'unknown', ], ], ],]; diff --git a/src/data/rds_feature/2014-10-31/docs-2.json b/src/data/rds_feature/2014-10-31/docs-2.json new file mode 100644 index 0000000000..e74b283a90 --- /dev/null +++ b/src/data/rds_feature/2014-10-31/docs-2.json @@ -0,0 +1,5832 @@ +{ + "version": "2.0", + "service": "Amazon Relational Database Service

Amazon Relational Database Service (Amazon RDS) is a web service that makes it easier to set up, operate, and scale a relational database in the cloud. It provides cost-efficient, resizeable capacity for an industry-standard relational database and manages common database administration tasks, freeing up developers to focus on what makes their applications and businesses unique.

Amazon RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, Db2, or Amazon Aurora database server. These capabilities mean that the code, applications, and tools you already use today with your existing databases work with Amazon RDS without modification. Amazon RDS automatically backs up your database and maintains the database software that powers your DB instance. Amazon RDS is flexible: you can scale your DB instance's compute resources and storage capacity to meet your application's demand. As with all Amazon Web Services, there are no up-front investments, and you pay only for the resources you use.

This interface reference for Amazon RDS contains documentation for a programming or command line interface you can use to manage Amazon RDS. Amazon RDS is asynchronous, which means that some interfaces might require techniques such as polling or callback functions to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a command is applied immediately, on the next instance reboot, or during the maintenance window. The reference structure is as follows, and we list following some related topics from the user guide.

Amazon RDS API Reference

Amazon RDS User Guide

", + "operations": { + "AddRoleToDBCluster": "

Associates an Identity and Access Management (IAM) role with a DB cluster.

", + "AddRoleToDBInstance": "

Associates an Amazon Web Services Identity and Access Management (IAM) role with a DB instance.

To add a role to a DB instance, the status of the DB instance must be available.

This command doesn't apply to RDS Custom.

", + "AddSourceIdentifierToSubscription": "

Adds a source identifier to an existing RDS event notification subscription.

", + "AddTagsToResource": "

Adds metadata tags to an Amazon RDS resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon RDS resources, or used in a Condition statement in an IAM policy for Amazon RDS.

For an overview on tagging your relational database resources, see Tagging Amazon RDS Resources or Tagging Amazon Aurora and Amazon RDS Resources.

", + "ApplyPendingMaintenanceAction": "

Applies a pending maintenance action to a resource (for example, to a DB instance).

", + "AuthorizeDBSecurityGroupIngress": "

Enables ingress to a DBSecurityGroup using one of two forms of authorization. First, EC2 or VPC security groups can be added to the DBSecurityGroup if the application using the database is running on EC2 or VPC instances. Second, IP ranges are available if the application accessing your database is running on the internet. Required parameters for this API are one of CIDR range, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId for non-VPC).

You can't authorize ingress from an EC2 security group in one Amazon Web Services Region to an Amazon RDS DB instance in another. You can't authorize ingress from a VPC security group in one VPC to an Amazon RDS DB instance in another.

For an overview of CIDR ranges, go to the Wikipedia Tutorial.

EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.

", + "BacktrackDBCluster": "

Backtracks a DB cluster to a specific time, without creating a new DB cluster.

For more information on backtracking, see Backtracking an Aurora DB Cluster in the Amazon Aurora User Guide.

This action applies only to Aurora MySQL DB clusters.

", + "CancelExportTask": "

Cancels an export task in progress that is exporting a snapshot or cluster to Amazon S3. Any data that has already been written to the S3 bucket isn't removed.

", + "CopyDBClusterParameterGroup": "

Copies the specified DB cluster parameter group.

You can't copy a default DB cluster parameter group. Instead, create a new custom DB cluster parameter group, which copies the default parameters and values for the specified DB cluster parameter group family.

", + "CopyDBClusterSnapshot": "

Copies a snapshot of a DB cluster.

To copy a DB cluster snapshot from a shared manual DB cluster snapshot, SourceDBClusterSnapshotIdentifier must be the Amazon Resource Name (ARN) of the shared DB cluster snapshot.

You can copy an encrypted DB cluster snapshot from another Amazon Web Services Region. In that case, the Amazon Web Services Region where you call the CopyDBClusterSnapshot operation is the destination Amazon Web Services Region for the encrypted DB cluster snapshot to be copied to. To copy an encrypted DB cluster snapshot from another Amazon Web Services Region, you must provide the following values:

  • KmsKeyId - The Amazon Web Services Key Management System (Amazon Web Services KMS) key identifier for the key to use to encrypt the copy of the DB cluster snapshot in the destination Amazon Web Services Region.

  • TargetDBClusterSnapshotIdentifier - The identifier for the new copy of the DB cluster snapshot in the destination Amazon Web Services Region.

  • SourceDBClusterSnapshotIdentifier - The DB cluster snapshot identifier for the encrypted DB cluster snapshot to be copied. This identifier must be in the ARN format for the source Amazon Web Services Region and is the same value as the SourceDBClusterSnapshotIdentifier in the presigned URL.

To cancel the copy operation once it is in progress, delete the target DB cluster snapshot identified by TargetDBClusterSnapshotIdentifier while that DB cluster snapshot is in \"copying\" status.

For more information on copying encrypted Amazon Aurora DB cluster snapshots from one Amazon Web Services Region to another, see Copying a Snapshot in the Amazon Aurora User Guide.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "CopyDBParameterGroup": "

Copies the specified DB parameter group.

You can't copy a default DB parameter group. Instead, create a new custom DB parameter group, which copies the default parameters and values for the specified DB parameter group family.

", + "CopyDBSnapshot": "

Copies the specified DB snapshot. The source DB snapshot must be in the available state.

You can copy a snapshot from one Amazon Web Services Region to another. In that case, the Amazon Web Services Region where you call the CopyDBSnapshot operation is the destination Amazon Web Services Region for the DB snapshot copy.

This command doesn't apply to RDS Custom.

For more information about copying snapshots, see Copying a DB Snapshot in the Amazon RDS User Guide.

", + "CopyOptionGroup": "

Copies the specified option group.

", + "CreateBlueGreenDeployment": "

Creates a blue/green deployment.

A blue/green deployment creates a staging environment that copies the production environment. In a blue/green deployment, the blue environment is the current production environment. The green environment is the staging environment, and it stays in sync with the current production environment.

You can make changes to the databases in the green environment without affecting production workloads. For example, you can upgrade the major or minor DB engine version, change database parameters, or make schema changes in the staging environment. You can thoroughly test changes in the green environment. When ready, you can switch over the environments to promote the green environment to be the new production environment. The switchover typically takes under a minute.

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.

", + "CreateCustomDBEngineVersion": "

Creates a custom DB engine version (CEV).

", + "CreateDBCluster": "

Creates a new Amazon Aurora DB cluster or Multi-AZ DB cluster.

If you create an Aurora DB cluster, the request creates an empty cluster. You must explicitly create the writer instance for your DB cluster using the CreateDBInstance operation. If you create a Multi-AZ DB cluster, the request creates a writer and two reader DB instances for you, each in a different Availability Zone.

You can use the ReplicationSourceIdentifier parameter to create an Amazon Aurora DB cluster as a read replica of another DB cluster or Amazon RDS for MySQL or PostgreSQL DB instance. For more information about Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

You can also use the ReplicationSourceIdentifier parameter to create a Multi-AZ DB cluster read replica with an RDS for MySQL or PostgreSQL DB instance as the source. For more information about Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "CreateDBClusterEndpoint": "

Creates a new custom endpoint and associates it with an Amazon Aurora DB cluster.

This action applies only to Aurora DB clusters.

", + "CreateDBClusterParameterGroup": "

Creates a new DB cluster parameter group.

Parameters in a DB cluster parameter group apply to all of the instances in a DB cluster.

A DB cluster parameter group is initially created with the default parameters for the database engine used by instances in the DB cluster. To provide custom values for any of the parameters, you must modify the group after creating it using ModifyDBClusterParameterGroup. Once you've created a DB cluster parameter group, you need to associate it with your DB cluster using ModifyDBCluster.

When you associate a new DB cluster parameter group with a running Aurora DB cluster, reboot the DB instances in the DB cluster without failover for the new DB cluster parameter group and associated settings to take effect.

When you associate a new DB cluster parameter group with a running Multi-AZ DB cluster, reboot the DB cluster without failover for the new DB cluster parameter group and associated settings to take effect.

After you create a DB cluster parameter group, you should wait at least 5 minutes before creating your first DB cluster that uses that DB cluster parameter group as the default parameter group. This allows Amazon RDS to fully complete the create action before the DB cluster parameter group is used as the default for a new DB cluster. This is especially important for parameters that are critical when creating the default database for a DB cluster, such as the character set for the default database defined by the character_set_database parameter. You can use the Parameter Groups option of the Amazon RDS console or the DescribeDBClusterParameters operation to verify that your DB cluster parameter group has been created or modified.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "CreateDBClusterSnapshot": "

Creates a snapshot of a DB cluster.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "CreateDBInstance": "

Creates a new DB instance.

The new DB instance can be an RDS DB instance, or it can be a DB instance in an Aurora DB cluster. For an Aurora DB cluster, you can call this operation multiple times to add more than one DB instance to the cluster.

For more information about creating an RDS DB instance, see Creating an Amazon RDS DB instance in the Amazon RDS User Guide.

For more information about creating a DB instance in an Aurora DB cluster, see Creating an Amazon Aurora DB cluster in the Amazon Aurora User Guide.

", + "CreateDBInstanceReadReplica": "

Creates a new DB instance that acts as a read replica for an existing source DB instance or Multi-AZ DB cluster. You can create a read replica for a DB instance running MariaDB, MySQL, Oracle, PostgreSQL, or SQL Server. You can create a read replica for a Multi-AZ DB cluster running MySQL or PostgreSQL. For more information, see Working with read replicas and Migrating from a Multi-AZ DB cluster to a DB instance using a read replica in the Amazon RDS User Guide.

Amazon RDS for Db2 supports this operation for standby replicas. To create a standby replica for a DB instance running Db2, you must set ReplicaMode to mounted.

Amazon Aurora doesn't support this operation. To create a DB instance for an Aurora DB cluster, use the CreateDBInstance operation.

RDS creates read replicas with backups disabled. All other attributes (including DB security groups and DB parameter groups) are inherited from the source DB instance or cluster, except as specified.

Your source DB instance or cluster must have backup retention enabled.

", + "CreateDBParameterGroup": "

Creates a new DB parameter group.

A DB parameter group is initially created with the default parameters for the database engine used by the DB instance. To provide custom values for any of the parameters, you must modify the group after creating it using ModifyDBParameterGroup. Once you've created a DB parameter group, you need to associate it with your DB instance using ModifyDBInstance. When you associate a new DB parameter group with a running DB instance, you need to reboot the DB instance without failover for the new DB parameter group and associated settings to take effect.

This command doesn't apply to RDS Custom.

", + "CreateDBProxy": "

Creates a new DB proxy.

", + "CreateDBProxyEndpoint": "

Creates a DBProxyEndpoint. Only applies to proxies that are associated with Aurora DB clusters. You can use DB proxy endpoints to specify read/write or read-only access to the DB cluster. You can also use DB proxy endpoints to access a DB proxy through a different VPC than the proxy's default VPC.

", + "CreateDBSecurityGroup": "

Creates a new DB security group. DB security groups control access to a DB instance.

A DB security group controls access to EC2-Classic DB instances that are not in a VPC.

EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.

", + "CreateDBShardGroup": "

Creates a new DB shard group for Aurora Limitless Database. You must enable Aurora Limitless Database to create a DB shard group.

Valid for: Aurora DB clusters only

", + "CreateDBSnapshot": "

Creates a snapshot of a DB instance. The source DB instance must be in the available or storage-optimization state.

", + "CreateDBSubnetGroup": "

Creates a new DB subnet group. DB subnet groups must contain at least one subnet in at least two AZs in the Amazon Web Services Region.

", + "CreateEventSubscription": "

Creates an RDS event notification subscription. This operation requires a topic Amazon Resource Name (ARN) created by either the RDS console, the SNS console, or the SNS API. To obtain an ARN with SNS, you must create a topic in Amazon SNS and subscribe to the topic. The ARN is displayed in the SNS console.

You can specify the type of source (SourceType) that you want to be notified of and provide a list of RDS sources (SourceIds) that triggers the events. You can also 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 SourceIds = myDBInstance1, you are notified of all the db-instance events for the specified source. If you specify a SourceType but do not specify SourceIds, you receive notice of the events for that source type for all your RDS sources. If you don't specify either the SourceType or the SourceIds, you are notified of events generated from all RDS sources belonging to your customer account.

For more information about subscribing to an event for RDS DB engines, see Subscribing to Amazon RDS event notification in the Amazon RDS User Guide.

For more information about subscribing to an event for Aurora DB engines, see Subscribing to Amazon RDS event notification in the Amazon Aurora User Guide.

", + "CreateGlobalCluster": "

Creates an Aurora global database spread across multiple Amazon Web Services Regions. The global database contains a single primary cluster with read-write capability, and a read-only secondary cluster that receives data from the primary cluster through high-speed replication performed by the Aurora storage subsystem.

You can create a global database that is initially empty, and then create the primary and secondary DB clusters in the global database. Or you can specify an existing Aurora cluster during the create operation, and this cluster becomes the primary cluster of the global database.

This operation applies only to Aurora DB clusters.

", + "CreateIntegration": "

Creates a zero-ETL integration with Amazon Redshift.

", + "CreateOptionGroup": "

Creates a new option group. You can create up to 20 option groups.

This command doesn't apply to RDS Custom.

", + "CreateTenantDatabase": "

Creates a tenant database in a DB instance that uses the multi-tenant configuration. Only RDS for Oracle container database (CDB) instances are supported.

", + "DeleteBlueGreenDeployment": "

Deletes a blue/green deployment.

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.

", + "DeleteCustomDBEngineVersion": "

Deletes a custom engine version. To run this command, make sure you meet the following prerequisites:

  • The CEV must not be the default for RDS Custom. If it is, change the default before running this command.

  • The CEV must not be associated with an RDS Custom DB instance, RDS Custom instance snapshot, or automated backup of your RDS Custom instance.

Typically, deletion takes a few minutes.

The MediaImport service that imports files from Amazon S3 to create CEVs isn't integrated with Amazon Web Services CloudTrail. If you turn on data logging for Amazon RDS in CloudTrail, calls to the DeleteCustomDbEngineVersion event aren't logged. However, you might see calls from the API gateway that accesses your Amazon S3 bucket. These calls originate from the MediaImport service for the DeleteCustomDbEngineVersion event.

For more information, see Deleting a CEV in the Amazon RDS User Guide.

", + "DeleteDBCluster": "

The DeleteDBCluster action deletes a previously provisioned DB cluster. When you delete a DB cluster, all automated backups for that DB cluster are deleted and can't be recovered. Manual DB cluster snapshots of the specified DB cluster are not deleted.

If you're deleting a Multi-AZ DB cluster with read replicas, all cluster members are terminated and read replicas are promoted to standalone instances.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "DeleteDBClusterAutomatedBackup": "

Deletes automated backups using the DbClusterResourceId value of the source DB cluster or the Amazon Resource Name (ARN) of the automated backups.

", + "DeleteDBClusterEndpoint": "

Deletes a custom endpoint and removes it from an Amazon Aurora DB cluster.

This action only applies to Aurora DB clusters.

", + "DeleteDBClusterParameterGroup": "

Deletes a specified DB cluster parameter group. The DB cluster parameter group to be deleted can't be associated with any DB clusters.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "DeleteDBClusterSnapshot": "

Deletes a DB cluster snapshot. If the snapshot is being copied, the copy operation is terminated.

The DB cluster snapshot must be in the available state to be deleted.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "DeleteDBInstance": "

Deletes a previously provisioned DB instance. When you delete a DB instance, all automated backups for that instance are deleted and can't be recovered. However, manual DB snapshots of the DB instance aren't deleted.

If you request a final DB snapshot, the status of the Amazon RDS DB instance is deleting until the DB snapshot is created. This operation can't be canceled or reverted after it begins. To monitor the status of this operation, use DescribeDBInstance.

When a DB instance is in a failure state and has a status of failed, incompatible-restore, or incompatible-network, you can only delete it when you skip creation of the final snapshot with the SkipFinalSnapshot parameter.

If the specified DB instance is part of an Amazon Aurora DB cluster, you can't delete the DB instance if both of the following conditions are true:

  • The DB cluster is a read replica of another Amazon Aurora DB cluster.

  • The DB instance is the only instance in the DB cluster.

To delete a DB instance in this case, first use the PromoteReadReplicaDBCluster operation to promote the DB cluster so that it's no longer a read replica. After the promotion completes, use the DeleteDBInstance operation to delete the final instance in the DB cluster.

For RDS Custom DB instances, deleting the DB instance permanently deletes the EC2 instance and the associated EBS volumes. Make sure that you don't terminate or delete these resources before you delete the DB instance. Otherwise, deleting the DB instance and creation of the final snapshot might fail.

", + "DeleteDBInstanceAutomatedBackup": "

Deletes automated backups using the DbiResourceId value of the source DB instance or the Amazon Resource Name (ARN) of the automated backups.

", + "DeleteDBParameterGroup": "

Deletes a specified DB parameter group. The DB parameter group to be deleted can't be associated with any DB instances.

", + "DeleteDBProxy": "

Deletes an existing DB proxy.

", + "DeleteDBProxyEndpoint": "

Deletes a DBProxyEndpoint. Doing so removes the ability to access the DB proxy using the endpoint that you defined. The endpoint that you delete might have provided capabilities such as read/write or read-only operations, or using a different VPC than the DB proxy's default VPC.

", + "DeleteDBSecurityGroup": "

Deletes a DB security group.

The specified DB security group must not be associated with any DB instances.

EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.

", + "DeleteDBShardGroup": "

Deletes an Aurora Limitless Database DB shard group.

", + "DeleteDBSnapshot": "

Deletes a DB snapshot. If the snapshot is being copied, the copy operation is terminated.

The DB snapshot must be in the available state to be deleted.

", + "DeleteDBSubnetGroup": "

Deletes a DB subnet group.

The specified database subnet group must not be associated with any DB instances.

", + "DeleteEventSubscription": "

Deletes an RDS event notification subscription.

", + "DeleteGlobalCluster": "

Deletes a global database cluster. The primary and secondary clusters must already be detached or destroyed first.

This action only applies to Aurora DB clusters.

", + "DeleteIntegration": "

Deletes a zero-ETL integration with Amazon Redshift.

", + "DeleteOptionGroup": "

Deletes an existing option group.

", + "DeleteTenantDatabase": "

Deletes a tenant database from your DB instance. This command only applies to RDS for Oracle container database (CDB) instances.

You can't delete a tenant database when it is the only tenant in the DB instance.

", + "DeregisterDBProxyTargets": "

Remove the association between one or more DBProxyTarget data structures and a DBProxyTargetGroup.

", + "DescribeAccountAttributes": "

Lists all of the attributes for a customer account. The attributes include Amazon RDS quotas for the account, such as the number of DB instances allowed. The description for a quota includes the quota name, current usage toward that quota, and the quota's maximum value.

This command doesn't take any parameters.

", + "DescribeBlueGreenDeployments": "

Describes one or more blue/green deployments.

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.

", + "DescribeCertificates": "

Lists the set of certificate authority (CA) certificates provided by Amazon RDS for this Amazon Web Services account.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

", + "DescribeDBClusterAutomatedBackups": "

Displays backups for both current and deleted DB clusters. For example, use this operation to find details about automated backups for previously deleted clusters. Current clusters are returned for both the DescribeDBClusterAutomatedBackups and DescribeDBClusters operations.

All parameters are optional.

", + "DescribeDBClusterBacktracks": "

Returns information about backtracks for a DB cluster.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

This action only applies to Aurora MySQL DB clusters.

", + "DescribeDBClusterEndpoints": "

Returns information about endpoints for an Amazon Aurora DB cluster.

This action only applies to Aurora DB clusters.

", + "DescribeDBClusterParameterGroups": "

Returns a list of DBClusterParameterGroup descriptions. If a DBClusterParameterGroupName parameter is specified, the list will contain only the description of the specified DB cluster parameter group.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "DescribeDBClusterParameters": "

Returns the detailed parameter list for a particular DB cluster parameter group.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "DescribeDBClusterSnapshotAttributes": "

Returns a list of DB cluster snapshot attribute names and values for a manual DB cluster snapshot.

When sharing snapshots with other Amazon Web Services accounts, DescribeDBClusterSnapshotAttributes returns the restore attribute and a list of IDs for the Amazon Web Services accounts that are authorized to copy or restore the manual DB cluster snapshot. If all is included in the list of values for the restore attribute, then the manual DB cluster snapshot is public and can be copied or restored by all Amazon Web Services accounts.

To add or remove access for an Amazon Web Services account to copy or restore a manual DB cluster snapshot, or to make the manual DB cluster snapshot public or private, use the ModifyDBClusterSnapshotAttribute API action.

", + "DescribeDBClusterSnapshots": "

Returns information about DB cluster snapshots. This API action supports pagination.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "DescribeDBClusters": "

Describes existing Amazon Aurora DB clusters and Multi-AZ DB clusters. This API supports pagination.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

This operation can also return information for Amazon Neptune DB instances and Amazon DocumentDB instances.

", + "DescribeDBEngineVersions": "

Describes the properties of specific versions of DB engines.

", + "DescribeDBInstanceAutomatedBackups": "

Displays backups for both current and deleted instances. For example, use this operation to find details about automated backups for previously deleted instances. Current instances with retention periods greater than zero (0) are returned for both the DescribeDBInstanceAutomatedBackups and DescribeDBInstances operations.

All parameters are optional.

", + "DescribeDBInstances": "

Describes provisioned RDS instances. This API supports pagination.

This operation can also return information for Amazon Neptune DB instances and Amazon DocumentDB instances.

", + "DescribeDBLogFiles": "

Returns a list of DB log files for the DB instance.

This command doesn't apply to RDS Custom.

", + "DescribeDBMajorEngineVersions": "

Describes the properties of specific major versions of DB engines.

", + "DescribeDBParameterGroups": "

Returns a list of DBParameterGroup descriptions. If a DBParameterGroupName is specified, the list will contain only the description of the specified DB parameter group.

", + "DescribeDBParameters": "

Returns the detailed parameter list for a particular DB parameter group.

", + "DescribeDBProxies": "

Returns information about DB proxies.

", + "DescribeDBProxyEndpoints": "

Returns information about DB proxy endpoints.

", + "DescribeDBProxyTargetGroups": "

Returns information about DB proxy target groups, represented by DBProxyTargetGroup data structures.

", + "DescribeDBProxyTargets": "

Returns information about DBProxyTarget objects. This API supports pagination.

", + "DescribeDBRecommendations": "

Describes the recommendations to resolve the issues for your DB instances, DB clusters, and DB parameter groups.

", + "DescribeDBSecurityGroups": "

Returns a list of DBSecurityGroup descriptions. If a DBSecurityGroupName is specified, the list will contain only the descriptions of the specified DB security group.

EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.

", + "DescribeDBShardGroups": "

Describes existing Aurora Limitless Database DB shard groups.

", + "DescribeDBSnapshotAttributes": "

Returns a list of DB snapshot attribute names and values for a manual DB snapshot.

When sharing snapshots with other Amazon Web Services accounts, DescribeDBSnapshotAttributes returns the restore attribute and a list of IDs for the Amazon Web Services accounts that are authorized to copy or restore the manual DB snapshot. If all is included in the list of values for the restore attribute, then the manual DB snapshot is public and can be copied or restored by all Amazon Web Services accounts.

To add or remove access for an Amazon Web Services account to copy or restore a manual DB snapshot, or to make the manual DB snapshot public or private, use the ModifyDBSnapshotAttribute API action.

", + "DescribeDBSnapshotTenantDatabases": "

Describes the tenant databases that exist in a DB snapshot. This command only applies to RDS for Oracle DB instances in the multi-tenant configuration.

You can use this command to inspect the tenant databases within a snapshot before restoring it. You can't directly interact with the tenant databases in a DB snapshot. If you restore a snapshot that was taken from DB instance using the multi-tenant configuration, you restore all its tenant databases.

", + "DescribeDBSnapshots": "

Returns information about DB snapshots. This API action supports pagination.

", + "DescribeDBSubnetGroups": "

Returns a list of DBSubnetGroup descriptions. If a DBSubnetGroupName is specified, the list will contain only the descriptions of the specified DBSubnetGroup.

For an overview of CIDR ranges, go to the Wikipedia Tutorial.

", + "DescribeEngineDefaultClusterParameters": "

Returns the default engine and system parameter information for the cluster database engine.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

", + "DescribeEngineDefaultParameters": "

Returns the default engine and system parameter information for the specified database engine.

", + "DescribeEventCategories": "

Displays a list of categories for all event source types, or, if specified, for a specified source type. You can also see this list in the \"Amazon RDS event categories and event messages\" section of the Amazon RDS User Guide or the Amazon Aurora User Guide .

", + "DescribeEventSubscriptions": "

Lists all the subscription descriptions for a customer account. The description for a subscription includes SubscriptionName, SNSTopicARN, CustomerID, SourceType, SourceID, CreationTime, and Status.

If you specify a SubscriptionName, lists the description for that subscription.

", + "DescribeEvents": "

Returns events related to DB instances, DB clusters, DB parameter groups, DB security groups, DB snapshots, DB cluster snapshots, and RDS Proxies for the past 14 days. Events specific to a particular DB instance, DB cluster, DB parameter group, DB security group, DB snapshot, DB cluster snapshot group, or RDS Proxy can be obtained by providing the name as a parameter.

For more information on working with events, see Monitoring Amazon RDS events in the Amazon RDS User Guide and Monitoring Amazon Aurora events in the Amazon Aurora User Guide.

By default, RDS returns events that were generated in the past hour.

", + "DescribeExportTasks": "

Returns information about a snapshot or cluster export to Amazon S3. This API operation supports pagination.

", + "DescribeGlobalClusters": "

Returns information about Aurora global database clusters. This API supports pagination.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

This action only applies to Aurora DB clusters.

", + "DescribeIntegrations": "

Describe one or more zero-ETL integrations with Amazon Redshift.

", + "DescribeOptionGroupOptions": "

Describes all available options for the specified engine.

", + "DescribeOptionGroups": "

Describes the available option groups.

", + "DescribeOrderableDBInstanceOptions": "

Describes the orderable DB instance options for a specified DB engine.

", + "DescribePendingMaintenanceActions": "

Returns a list of resources (for example, DB instances) that have at least one pending maintenance action.

This API follows an eventual consistency model. This means that the result of the DescribePendingMaintenanceActions command might not be immediately visible to all subsequent RDS commands. Keep this in mind when you use DescribePendingMaintenanceActions immediately after using a previous API command such as ApplyPendingMaintenanceActions.

", + "DescribeReservedDBInstances": "

Returns information about reserved DB instances for this account, or about a specified reserved DB instance.

", + "DescribeReservedDBInstancesOfferings": "

Lists available reserved DB instance offerings.

", + "DescribeSourceRegions": "

Returns a list of the source Amazon Web Services Regions where the current Amazon Web Services Region can create a read replica, copy a DB snapshot from, or replicate automated backups from.

Use this operation to determine whether cross-Region features are supported between other Regions and your current Region. This operation supports pagination.

To return information about the Regions that are enabled for your account, or all Regions, use the EC2 operation DescribeRegions. For more information, see DescribeRegions in the Amazon EC2 API Reference.

", + "DescribeTenantDatabases": "

Describes the tenant databases in a DB instance that uses the multi-tenant configuration. Only RDS for Oracle CDB instances are supported.

", + "DescribeValidDBInstanceModifications": "

You can call DescribeValidDBInstanceModifications to learn what modifications you can make to your DB instance. You can use this information when you call ModifyDBInstance.

This command doesn't apply to RDS Custom.

", + "DisableHttpEndpoint": "

Disables the HTTP endpoint for the specified DB cluster. Disabling this endpoint disables RDS Data API.

For more information, see Using RDS Data API in the Amazon Aurora User Guide.

This operation applies only to Aurora Serverless v2 and provisioned DB clusters. To disable the HTTP endpoint for Aurora Serverless v1 DB clusters, use the EnableHttpEndpoint parameter of the ModifyDBCluster operation.

", + "DownloadDBLogFilePortion": "

Downloads all or a portion of the specified log file, up to 1 MB in size.

This command doesn't apply to RDS Custom.

This operation uses resources on database instances. Because of this, we recommend publishing database logs to CloudWatch and then using the GetLogEvents operation. For more information, see GetLogEvents in the Amazon CloudWatch Logs API Reference.

", + "EnableHttpEndpoint": "

Enables the HTTP endpoint for the DB cluster. By default, the HTTP endpoint isn't enabled.

When enabled, this endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the Aurora DB cluster. You can also query your database from inside the RDS console with the RDS query editor.

For more information, see Using RDS Data API in the Amazon Aurora User Guide.

This operation applies only to Aurora Serverless v2 and provisioned DB clusters. To enable the HTTP endpoint for Aurora Serverless v1 DB clusters, use the EnableHttpEndpoint parameter of the ModifyDBCluster operation.

", + "FailoverDBCluster": "

Forces a failover for a DB cluster.

For an Aurora DB cluster, failover for a DB cluster promotes one of the Aurora Replicas (read-only instances) in the DB cluster to be the primary DB instance (the cluster writer).

For a Multi-AZ DB cluster, after RDS terminates the primary DB instance, the internal monitoring system detects that the primary DB instance is unhealthy and promotes a readable standby (read-only instances) in the DB cluster to be the primary DB instance (the cluster writer). Failover times are typically less than 35 seconds.

An Amazon Aurora DB cluster automatically fails over to an Aurora Replica, if one exists, when the primary DB instance fails. A Multi-AZ DB cluster automatically fails over to a readable standby DB instance when the primary DB instance fails.

To simulate a failure of a primary instance for testing, you can force a failover. Because each instance in a DB cluster has its own endpoint address, make sure to clean up and re-establish any existing connections that use those endpoint addresses when the failover is complete.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "FailoverGlobalCluster": "

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.

", + "ListTagsForResource": "

Lists all tags on an Amazon RDS resource.

For an overview on tagging an Amazon RDS resource, see Tagging Amazon RDS Resources in the Amazon RDS User Guide or Tagging Amazon Aurora and Amazon RDS Resources in the Amazon Aurora User Guide.

", + "ModifyActivityStream": "

Changes the audit policy state of a database activity stream to either locked (default) or unlocked. A locked policy is read-only, whereas an unlocked policy is read/write. If your activity stream is started and locked, you can unlock it, customize your audit policy, and then lock your activity stream. Restarting the activity stream isn't required. For more information, see Modifying a database activity stream in the Amazon RDS User Guide.

This operation is supported for RDS for Oracle and Microsoft SQL Server.

", + "ModifyCertificates": "

Override the system-default Secure Sockets Layer/Transport Layer Security (SSL/TLS) certificate for Amazon RDS for new DB instances, or remove the override.

By using this operation, you can specify an RDS-approved SSL/TLS certificate for new DB instances that is different from the default certificate provided by RDS. You can also use this operation to remove the override, so that new DB instances use the default certificate provided by RDS.

You might need to override the default certificate in the following situations:

  • You already migrated your applications to support the latest certificate authority (CA) certificate, but the new CA certificate is not yet the RDS default CA certificate for the specified Amazon Web Services Region.

  • RDS has already moved to a new default CA certificate for the specified Amazon Web Services Region, but you are still in the process of supporting the new CA certificate. In this case, you temporarily need additional time to finish your application changes.

For more information about rotating your SSL/TLS certificate for RDS DB engines, see Rotating Your SSL/TLS Certificate in the Amazon RDS User Guide.

For more information about rotating your SSL/TLS certificate for Aurora DB engines, see Rotating Your SSL/TLS Certificate in the Amazon Aurora User Guide.

", + "ModifyCurrentDBClusterCapacity": "

Set the capacity of an Aurora Serverless v1 DB cluster to a specific value.

Aurora Serverless v1 scales seamlessly based on the workload on the DB cluster. In some cases, the capacity might not scale fast enough to meet a sudden change in workload, such as a large number of new transactions. Call ModifyCurrentDBClusterCapacity to set the capacity explicitly.

After this call sets the DB cluster capacity, Aurora Serverless v1 can automatically scale the DB cluster based on the cooldown period for scaling up and the cooldown period for scaling down.

For more information about Aurora Serverless v1, see Using Amazon Aurora Serverless v1 in the Amazon Aurora User Guide.

If you call ModifyCurrentDBClusterCapacity with the default TimeoutAction, connections that prevent Aurora Serverless v1 from finding a scaling point might be dropped. For more information about scaling points, see Autoscaling for Aurora Serverless v1 in the Amazon Aurora User Guide.

This operation only applies to Aurora Serverless v1 DB clusters.

", + "ModifyCustomDBEngineVersion": "

Modifies the status of a custom engine version (CEV). You can find CEVs to modify by calling DescribeDBEngineVersions.

The MediaImport service that imports files from Amazon S3 to create CEVs isn't integrated with Amazon Web Services CloudTrail. If you turn on data logging for Amazon RDS in CloudTrail, calls to the ModifyCustomDbEngineVersion event aren't logged. However, you might see calls from the API gateway that accesses your Amazon S3 bucket. These calls originate from the MediaImport service for the ModifyCustomDbEngineVersion event.

For more information, see Modifying CEV status in the Amazon RDS User Guide.

", + "ModifyDBCluster": "

Modifies the settings of an Amazon Aurora DB cluster or a Multi-AZ DB cluster. You can change one or more settings by specifying these parameters and the new values in the request.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "ModifyDBClusterEndpoint": "

Modifies the properties of an endpoint in an Amazon Aurora DB cluster.

This operation only applies to Aurora DB clusters.

", + "ModifyDBClusterParameterGroup": "

Modifies the parameters of a DB cluster parameter group. To modify more than one parameter, submit a list of the following: ParameterName, ParameterValue, and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

After you create a DB cluster parameter group, you should wait at least 5 minutes before creating your first DB cluster that uses that DB cluster parameter group as the default parameter group. This allows Amazon RDS to fully complete the create operation before the parameter group is used as the default for a new DB cluster. This is especially important for parameters that are critical when creating the default database for a DB cluster, such as the character set for the default database defined by the character_set_database parameter. You can use the Parameter Groups option of the Amazon RDS console or the DescribeDBClusterParameters operation to verify that your DB cluster parameter group has been created or modified.

If the modified DB cluster parameter group is used by an Aurora Serverless v1 cluster, Aurora applies the update immediately. The cluster restart might interrupt your workload. In that case, your application must reopen any connections and retry any transactions that were active when the parameter changes took effect.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "ModifyDBClusterSnapshotAttribute": "

Adds an attribute and values to, or removes an attribute and values from, a manual DB cluster snapshot.

To share a manual DB cluster snapshot with other Amazon Web Services accounts, specify restore as the AttributeName and use the ValuesToAdd parameter to add a list of IDs of the Amazon Web Services accounts that are authorized to restore the manual DB cluster snapshot. Use the value all to make the manual DB cluster snapshot public, which means that it can be copied or restored by all Amazon Web Services accounts.

Don't add the all value for any manual DB cluster snapshots that contain private information that you don't want available to all Amazon Web Services accounts.

If a manual DB cluster snapshot is encrypted, it can be shared, but only by specifying a list of authorized Amazon Web Services account IDs for the ValuesToAdd parameter. You can't use all as a value for that parameter in this case.

To view which Amazon Web Services accounts have access to copy or restore a manual DB cluster snapshot, or whether a manual DB cluster snapshot is public or private, use the DescribeDBClusterSnapshotAttributes API operation. The accounts are returned as values for the restore attribute.

", + "ModifyDBInstance": "

Modifies settings for a DB instance. You can change one or more database configuration parameters by specifying these parameters and the new values in the request. To learn what modifications you can make to your DB instance, call DescribeValidDBInstanceModifications before you call ModifyDBInstance.

", + "ModifyDBParameterGroup": "

Modifies the parameters of a DB parameter group. To modify more than one parameter, submit a list of the following: ParameterName, ParameterValue, and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

After you modify a DB parameter group, you should wait at least 5 minutes before creating your first DB instance that uses that DB parameter group as the default parameter group. This allows Amazon RDS to fully complete the modify operation before the parameter group is used as the default for a new DB instance. This is especially important for parameters that are critical when creating the default database for a DB instance, such as the character set for the default database defined by the character_set_database parameter. You can use the Parameter Groups option of the Amazon RDS console or the DescribeDBParameters command to verify that your DB parameter group has been created or modified.

", + "ModifyDBProxy": "

Changes the settings for an existing DB proxy.

", + "ModifyDBProxyEndpoint": "

Changes the settings for an existing DB proxy endpoint.

", + "ModifyDBProxyTargetGroup": "

Modifies the properties of a DBProxyTargetGroup.

", + "ModifyDBRecommendation": "

Updates the recommendation status and recommended action status for the specified recommendation.

", + "ModifyDBShardGroup": "

Modifies the settings of an Aurora Limitless Database DB shard group. You can change one or more settings by specifying these parameters and the new values in the request.

", + "ModifyDBSnapshot": "

Updates a manual DB snapshot with a new engine version. The snapshot can be encrypted or unencrypted, but not shared or public.

Amazon RDS supports upgrading DB snapshots for MySQL, PostgreSQL, and Oracle. This operation doesn't apply to RDS Custom or RDS for Db2.

", + "ModifyDBSnapshotAttribute": "

Adds an attribute and values to, or removes an attribute and values from, a manual DB snapshot.

To share a manual DB snapshot with other Amazon Web Services accounts, specify restore as the AttributeName and use the ValuesToAdd parameter to add a list of IDs of the Amazon Web Services accounts that are authorized to restore the manual DB snapshot. Uses the value all to make the manual DB snapshot public, which means it can be copied or restored by all Amazon Web Services accounts.

Don't add the all value for any manual DB snapshots that contain private information that you don't want available to all Amazon Web Services accounts.

If the manual DB snapshot is encrypted, it can be shared, but only by specifying a list of authorized Amazon Web Services account IDs for the ValuesToAdd parameter. You can't use all as a value for that parameter in this case.

To view which Amazon Web Services accounts have access to copy or restore a manual DB snapshot, or whether a manual DB snapshot public or private, use the DescribeDBSnapshotAttributes API operation. The accounts are returned as values for the restore attribute.

", + "ModifyDBSubnetGroup": "

Modifies an existing DB subnet group. DB subnet groups must contain at least one subnet in at least two AZs in the Amazon Web Services Region.

", + "ModifyEventSubscription": "

Modifies an existing RDS event notification subscription. You can't modify the source identifiers using this call. To change source identifiers for a subscription, use the AddSourceIdentifierToSubscription and RemoveSourceIdentifierFromSubscription calls.

You can see a list of the event categories for a given source type (SourceType) in Events in the Amazon RDS User Guide or by using the DescribeEventCategories operation.

", + "ModifyGlobalCluster": "

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.

", + "ModifyIntegration": "

Modifies a zero-ETL integration with Amazon Redshift.

", + "ModifyOptionGroup": "

Modifies an existing option group.

", + "ModifyTenantDatabase": "

Modifies an existing tenant database in a DB instance. You can change the tenant database name or the master user password. This operation is supported only for RDS for Oracle CDB instances using the multi-tenant configuration.

", + "PromoteReadReplica": "

Promotes a read replica DB instance to a standalone DB instance.

  • Backup duration is a function of the amount of changes to the database since the previous backup. If you plan to promote a read replica to a standalone instance, we recommend that you enable backups and complete at least one backup prior to promotion. In addition, a read replica cannot be promoted to a standalone instance when it is in the backing-up status. If you have enabled backups on your read replica, configure the automated backup window so that daily backups do not interfere with read replica promotion.

  • This command doesn't apply to Aurora MySQL, Aurora PostgreSQL, or RDS Custom.

", + "PromoteReadReplicaDBCluster": "

Promotes a read replica DB cluster to a standalone DB cluster.

", + "PurchaseReservedDBInstancesOffering": "

Purchases a reserved DB instance offering.

", + "RebootDBCluster": "

You might need to reboot your DB cluster, usually for maintenance reasons. For example, if you make certain modifications, or if you change the DB cluster parameter group associated with the DB cluster, reboot the DB cluster for the changes to take effect.

Rebooting a DB cluster restarts the database engine service. Rebooting a DB cluster results in a momentary outage, during which the DB cluster status is set to rebooting.

Use this operation only for a non-Aurora Multi-AZ DB cluster.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "RebootDBInstance": "

You might need to reboot your DB instance, usually for maintenance reasons. For example, if you make certain modifications, or if you change the DB parameter group associated with the DB instance, you must reboot the instance for the changes to take effect.

Rebooting a DB instance restarts the database engine service. Rebooting a DB instance results in a momentary outage, during which the DB instance status is set to rebooting.

For more information about rebooting, see Rebooting a DB Instance in the Amazon RDS User Guide.

This command doesn't apply to RDS Custom.

If your DB instance is part of a Multi-AZ DB cluster, you can reboot the DB cluster with the RebootDBCluster operation.

", + "RebootDBShardGroup": "

You might need to reboot your DB shard group, usually for maintenance reasons. For example, if you make certain modifications, reboot the DB shard group for the changes to take effect.

This operation applies only to Aurora Limitless Database DBb shard groups.

", + "RegisterDBProxyTargets": "

Associate one or more DBProxyTarget data structures with a DBProxyTargetGroup.

", + "RemoveFromGlobalCluster": "

Detaches an Aurora secondary cluster from an Aurora global database cluster. The cluster becomes a standalone cluster with read-write capability instead of being read-only and receiving data from a primary cluster in a different Region.

This operation only applies to Aurora DB clusters.

", + "RemoveRoleFromDBCluster": "

Removes the asssociation of an Amazon Web Services Identity and Access Management (IAM) role from a DB cluster.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "RemoveRoleFromDBInstance": "

Disassociates an Amazon Web Services Identity and Access Management (IAM) role from a DB instance.

", + "RemoveSourceIdentifierFromSubscription": "

Removes a source identifier from an existing RDS event notification subscription.

", + "RemoveTagsFromResource": "

Removes metadata tags from an Amazon RDS resource.

For an overview on tagging an Amazon RDS resource, see Tagging Amazon RDS Resources in the Amazon RDS User Guide or Tagging Amazon Aurora and Amazon RDS Resources in the Amazon Aurora User Guide.

", + "ResetDBClusterParameterGroup": "

Modifies the parameters of a DB cluster parameter group to the default value. To reset specific parameters submit a list of the following: ParameterName and ApplyMethod. To reset the entire DB cluster parameter group, specify the DBClusterParameterGroupName and ResetAllParameters parameters.

When resetting the entire group, dynamic parameters are updated immediately and static parameters are set to pending-reboot to take effect on the next DB instance restart or RebootDBInstance request. You must call RebootDBInstance for every DB instance in your DB cluster that you want the updated static parameter to apply to.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "ResetDBParameterGroup": "

Modifies the parameters of a DB parameter group to the engine/system default value. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. When resetting the entire group, dynamic parameters are updated immediately and static parameters are set to pending-reboot to take effect on the next DB instance restart or RebootDBInstance request.

", + "RestoreDBClusterFromS3": "

Creates an Amazon Aurora DB cluster from MySQL data stored in an Amazon S3 bucket. Amazon RDS must be authorized to access the Amazon S3 bucket and the data must be created using the Percona XtraBackup utility as described in Migrating Data from MySQL by Using an Amazon S3 Bucket in the Amazon Aurora User Guide.

This operation only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance operation to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterFromS3 operation has completed and the DB cluster is available.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

This operation only applies to Aurora DB clusters. The source DB engine must be MySQL.

", + "RestoreDBClusterFromSnapshot": "

Creates a new DB cluster from a DB snapshot or DB cluster snapshot.

The target DB cluster is created from the source snapshot with a default configuration. If you don't specify a security group, the new DB cluster is associated with the default security group.

This operation only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance operation to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterFromSnapshot operation has completed and the DB cluster is available.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "RestoreDBClusterToPointInTime": "

Restores a DB cluster to an arbitrary point in time. Users can restore to any point in time before LatestRestorableTime for up to BackupRetentionPeriod days. The target DB cluster is created from the source DB cluster with the same configuration as the original DB cluster, except that the new DB cluster is created with the default DB security group. Unless the RestoreType is set to copy-on-write, the restore may occur in a different Availability Zone (AZ) from the original DB cluster. The AZ where RDS restores the DB cluster depends on the AZs in the specified subnet group.

For Aurora, this operation only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance operation to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterToPointInTime operation has completed and the DB cluster is available.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

", + "RestoreDBInstanceFromDBSnapshot": "

Creates a new DB instance from a DB snapshot. The target database is created from the source database restore point with most of the source's original configuration, including the default security group and DB parameter group. By default, the new DB instance is created as a Single-AZ deployment, except when the instance is a SQL Server instance that has an option group associated with mirroring. In this case, the instance becomes a Multi-AZ deployment, not a Single-AZ deployment.

If you want to replace your original DB instance with the new, restored DB instance, then rename your original DB instance before you call the RestoreDBInstanceFromDBSnapshot operation. RDS doesn't allow two DB instances with the same name. After you have renamed your original DB instance with a different identifier, then you can pass the original name of the DB instance as the DBInstanceIdentifier in the call to the RestoreDBInstanceFromDBSnapshot operation. The result is that you replace the original DB instance with the DB instance created from the snapshot.

If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier must be the ARN of the shared DB snapshot.

To restore from a DB snapshot with an unsupported engine version, you must first upgrade the engine version of the snapshot. For more information about upgrading a RDS for MySQL DB snapshot engine version, see Upgrading a MySQL DB snapshot engine version. For more information about upgrading a RDS for PostgreSQL DB snapshot engine version, Upgrading a PostgreSQL DB snapshot engine version.

This command doesn't apply to Aurora MySQL and Aurora PostgreSQL. For Aurora, use RestoreDBClusterFromSnapshot.

", + "RestoreDBInstanceFromS3": "

Amazon Relational Database Service (Amazon RDS) supports importing MySQL databases by using backup files. You can create a backup of your on-premises database, store it on Amazon Simple Storage Service (Amazon S3), and then restore the backup file onto a new Amazon RDS DB instance running MySQL. For more information, see Importing Data into an Amazon RDS MySQL DB Instance in the Amazon RDS User Guide.

This operation doesn't apply to RDS Custom.

", + "RestoreDBInstanceToPointInTime": "

Restores a DB instance to an arbitrary point in time. You can restore to any point in time before the time identified by the LatestRestorableTime property. You can restore to a point up to the number of days specified by the BackupRetentionPeriod property.

The target database is created with most of the original configuration, but in a system-selected Availability Zone, with the default security group, the default subnet group, and the default DB parameter group. By default, the new DB instance is created as a single-AZ deployment except when the instance is a SQL Server instance that has an option group that is associated with mirroring; in this case, the instance becomes a mirrored deployment and not a single-AZ deployment.

This operation doesn't apply to Aurora MySQL and Aurora PostgreSQL. For Aurora, use RestoreDBClusterToPointInTime.

", + "RevokeDBSecurityGroupIngress": "

Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 or VPC security groups. Required parameters for this API are one of CIDRIP, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId).

EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.

", + "StartActivityStream": "

Starts a database activity stream to monitor activity on the database. For more information, see Monitoring Amazon Aurora with Database Activity Streams in the Amazon Aurora User Guide or Monitoring Amazon RDS with Database Activity Streams in the Amazon RDS User Guide.

", + "StartDBCluster": "

Starts an Amazon Aurora DB cluster that was stopped using the Amazon Web Services console, the stop-db-cluster CLI command, or the StopDBCluster operation.

For more information, see Stopping and Starting an Aurora Cluster in the Amazon Aurora User Guide.

This operation only applies to Aurora DB clusters.

", + "StartDBInstance": "

Starts an Amazon RDS DB instance that was stopped using the Amazon Web Services console, the stop-db-instance CLI command, or the StopDBInstance operation.

For more information, see Starting an Amazon RDS DB instance That Was Previously Stopped in the Amazon RDS User Guide.

This command doesn't apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL. For Aurora DB clusters, use StartDBCluster instead.

", + "StartDBInstanceAutomatedBackupsReplication": "

Enables replication of automated backups to a different Amazon Web Services Region.

This command doesn't apply to RDS Custom.

For more information, see Replicating Automated Backups to Another Amazon Web Services Region in the Amazon RDS User Guide.

", + "StartExportTask": "

Starts an export of DB snapshot or DB cluster data to Amazon S3. The provided IAM role must have access to the S3 bucket.

You can't export snapshot data from RDS Custom DB instances. For more information, see Supported Regions and DB engines for exporting snapshots to S3 in Amazon RDS.

For more information on exporting DB snapshot data, see Exporting DB snapshot data to Amazon S3 in the Amazon RDS User Guide or Exporting DB cluster snapshot data to Amazon S3 in the Amazon Aurora User Guide.

For more information on exporting DB cluster data, see Exporting DB cluster data to Amazon S3 in the Amazon Aurora User Guide.

", + "StopActivityStream": "

Stops a database activity stream that was started using the Amazon Web Services console, the start-activity-stream CLI command, or the StartActivityStream operation.

For more information, see Monitoring Amazon Aurora with Database Activity Streams in the Amazon Aurora User Guide or Monitoring Amazon RDS with Database Activity Streams in the Amazon RDS User Guide.

", + "StopDBCluster": "

Stops an Amazon Aurora DB cluster. When you stop a DB cluster, Aurora retains the DB cluster's metadata, including its endpoints and DB parameter groups. Aurora also retains the transaction logs so you can do a point-in-time restore if necessary.

For more information, see Stopping and Starting an Aurora Cluster in the Amazon Aurora User Guide.

This operation only applies to Aurora DB clusters.

", + "StopDBInstance": "

Stops an Amazon RDS DB instance temporarily. When you stop a DB instance, Amazon RDS retains the DB instance's metadata, including its endpoint, DB parameter group, and option group membership. Amazon RDS also retains the transaction logs so you can do a point-in-time restore if necessary. The instance restarts automatically after 7 days.

For more information, see Stopping an Amazon RDS DB Instance Temporarily in the Amazon RDS User Guide.

This command doesn't apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL. For Aurora clusters, use StopDBCluster instead.

", + "StopDBInstanceAutomatedBackupsReplication": "

Stops automated backup replication for a DB instance.

This command doesn't apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL.

For more information, see Replicating Automated Backups to Another Amazon Web Services Region in the Amazon RDS User Guide.

", + "SwitchoverBlueGreenDeployment": "

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.

", + "SwitchoverGlobalCluster": "

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.

", + "SwitchoverReadReplica": "

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.

" + }, + "shapes": { + "AccountAttributesMessage": { + "base": "

Data returned by the DescribeAccountAttributes action.

", + "refs": {} + }, + "AccountQuota": { + "base": "

Describes a quota for an Amazon Web Services account.

The following are account quotas:

  • AllocatedStorage - The total allocated storage per account, in GiB. The used value is the total allocated storage in the account, in GiB.

  • AuthorizationsPerDBSecurityGroup - The number of ingress rules per DB security group. The used value is the highest number of ingress rules in a DB security group in the account. Other DB security groups in the account might have a lower number of ingress rules.

  • CustomEndpointsPerDBCluster - The number of custom endpoints per DB cluster. The used value is the highest number of custom endpoints in a DB clusters in the account. Other DB clusters in the account might have a lower number of custom endpoints.

  • DBClusterParameterGroups - The number of DB cluster parameter groups per account, excluding default parameter groups. The used value is the count of nondefault DB cluster parameter groups in the account.

  • DBClusterRoles - The number of associated Amazon Web Services Identity and Access Management (IAM) roles per DB cluster. The used value is the highest number of associated IAM roles for a DB cluster in the account. Other DB clusters in the account might have a lower number of associated IAM roles.

  • DBClusters - The number of DB clusters per account. The used value is the count of DB clusters in the account.

  • DBInstanceRoles - The number of associated IAM roles per DB instance. The used value is the highest number of associated IAM roles for a DB instance in the account. Other DB instances in the account might have a lower number of associated IAM roles.

  • DBInstances - The number of DB instances per account. The used value is the count of the DB instances in the account.

    Amazon RDS DB instances, Amazon Aurora DB instances, Amazon Neptune instances, and Amazon DocumentDB instances apply to this quota.

  • DBParameterGroups - The number of DB parameter groups per account, excluding default parameter groups. The used value is the count of nondefault DB parameter groups in the account.

  • DBSecurityGroups - The number of DB security groups (not VPC security groups) per account, excluding the default security group. The used value is the count of nondefault DB security groups in the account.

  • DBSubnetGroups - The number of DB subnet groups per account. The used value is the count of the DB subnet groups in the account.

  • EventSubscriptions - The number of event subscriptions per account. The used value is the count of the event subscriptions in the account.

  • ManualClusterSnapshots - The number of manual DB cluster snapshots per account. The used value is the count of the manual DB cluster snapshots in the account.

  • ManualSnapshots - The number of manual DB instance snapshots per account. The used value is the count of the manual DB instance snapshots in the account.

  • OptionGroups - The number of DB option groups per account, excluding default option groups. The used value is the count of nondefault DB option groups in the account.

  • ReadReplicasPerMaster - The number of read replicas per DB instance. The used value is the highest number of read replicas for a DB instance in the account. Other DB instances in the account might have a lower number of read replicas.

  • ReservedDBInstances - The number of reserved DB instances per account. The used value is the count of the active reserved DB instances in the account.

  • SubnetsPerDBSubnetGroup - The number of subnets per DB subnet group. The used value is highest number of subnets for a DB subnet group in the account. Other DB subnet groups in the account might have a lower number of subnets.

For more information, see Quotas for Amazon RDS in the Amazon RDS User Guide and Quotas for Amazon Aurora in the Amazon Aurora User Guide.

", + "refs": { + "AccountQuotaList$member": null + } + }, + "AccountQuotaList": { + "base": null, + "refs": { + "AccountAttributesMessage$AccountQuotas": "

A list of AccountQuota objects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.

" + } + }, + "ActivityStreamMode": { + "base": null, + "refs": { + "DBCluster$ActivityStreamMode": "

The mode of the database activity stream. Database events such as a change or access generate an activity stream event. The database session can handle these events either synchronously or asynchronously.

", + "DBInstance$ActivityStreamMode": "

The mode of the database activity stream. Database events such as a change or access generate an activity stream event. RDS for Oracle always handles these events asynchronously.

", + "ModifyActivityStreamResponse$Mode": "

The mode of the database activity stream.

", + "StartActivityStreamRequest$Mode": "

Specifies the mode of the database activity stream. Database events such as a change or access generate an activity stream event. The database session can handle these events either synchronously or asynchronously.

", + "StartActivityStreamResponse$Mode": "

The mode of the database activity stream.

" + } + }, + "ActivityStreamModeList": { + "base": null, + "refs": { + "OrderableDBInstanceOption$SupportedActivityStreamModes": "

The list of supported modes for Database Activity Streams. Aurora PostgreSQL returns the value [sync, async]. Aurora MySQL and RDS for Oracle return [async] only. If Database Activity Streams isn't supported, the return value is an empty list.

" + } + }, + "ActivityStreamPolicyStatus": { + "base": null, + "refs": { + "ModifyActivityStreamResponse$PolicyStatus": "

The status of the modification to the policy state of the database activity stream.

" + } + }, + "ActivityStreamStatus": { + "base": null, + "refs": { + "DBCluster$ActivityStreamStatus": "

The status of the database activity stream.

", + "DBInstance$ActivityStreamStatus": "

The status of the database activity stream.

", + "ModifyActivityStreamResponse$Status": "

The status of the modification to the database activity stream.

", + "StartActivityStreamResponse$Status": "

The status of the database activity stream.

", + "StopActivityStreamResponse$Status": "

The status of the database activity stream.

" + } + }, + "AddRoleToDBClusterMessage": { + "base": null, + "refs": {} + }, + "AddRoleToDBInstanceMessage": { + "base": null, + "refs": {} + }, + "AddSourceIdentifierToSubscriptionMessage": { + "base": "

", + "refs": {} + }, + "AddSourceIdentifierToSubscriptionResult": { + "base": null, + "refs": {} + }, + "AddTagsToResourceMessage": { + "base": "

", + "refs": {} + }, + "ApplyMethod": { + "base": null, + "refs": { + "Parameter$ApplyMethod": "

Indicates when to apply parameter updates.

" + } + }, + "ApplyPendingMaintenanceActionMessage": { + "base": "

", + "refs": {} + }, + "ApplyPendingMaintenanceActionResult": { + "base": null, + "refs": {} + }, + "Arn": { + "base": null, + "refs": { + "CreateDBProxyRequest$RoleArn": "

The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access secrets in Amazon Web Services Secrets Manager.

", + "CreateIntegrationMessage$TargetArn": "

The ARN of the Redshift data warehouse to use as the target for replication.

", + "Integration$TargetArn": "

The ARN of the Redshift data warehouse used as the target for replication.

", + "ModifyDBProxyRequest$RoleArn": "

The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access secrets in Amazon Web Services Secrets Manager.

", + "UserAuthConfig$SecretArn": "

The Amazon Resource Name (ARN) representing the secret that the proxy uses to authenticate to the RDS DB instance or Aurora DB cluster. These secrets are stored within Amazon Secrets Manager.

" + } + }, + "AttributeValueList": { + "base": null, + "refs": { + "DBClusterSnapshotAttribute$AttributeValues": "

The value(s) for the manual DB cluster snapshot attribute.

If the AttributeName field is set to restore, then this element returns a list of IDs of the Amazon Web Services accounts that are authorized to copy or restore the manual DB cluster snapshot. If a value of all is in the list, then the manual DB cluster snapshot is public and available for any Amazon Web Services account to copy or restore.

", + "DBSnapshotAttribute$AttributeValues": "

The value or values for the manual DB snapshot attribute.

If the AttributeName field is set to restore, then this element returns a list of IDs of the Amazon Web Services accounts that are authorized to copy or restore the manual DB snapshot. If a value of all is in the list, then the manual DB snapshot is public and available for any Amazon Web Services account to copy or restore.

", + "ModifyDBClusterSnapshotAttributeMessage$ValuesToAdd": "

A list of DB cluster snapshot attributes to add to the attribute specified by AttributeName.

To authorize other Amazon Web Services accounts to copy or restore a manual DB cluster snapshot, set this list to include one or more Amazon Web Services account IDs, or all to make the manual DB cluster snapshot restorable by any Amazon Web Services account. Do not add the all value for any manual DB cluster snapshots that contain private information that you don't want available to all Amazon Web Services accounts.

", + "ModifyDBClusterSnapshotAttributeMessage$ValuesToRemove": "

A list of DB cluster snapshot attributes to remove from the attribute specified by AttributeName.

To remove authorization for other Amazon Web Services accounts to copy or restore a manual DB cluster snapshot, set this list to include one or more Amazon Web Services account identifiers, or all to remove authorization for any Amazon Web Services account to copy or restore the DB cluster snapshot. If you specify all, an Amazon Web Services account whose account ID is explicitly added to the restore attribute can still copy or restore a manual DB cluster snapshot.

", + "ModifyDBSnapshotAttributeMessage$ValuesToAdd": "

A list of DB snapshot attributes to add to the attribute specified by AttributeName.

To authorize other Amazon Web Services accounts to copy or restore a manual snapshot, set this list to include one or more Amazon Web Services account IDs, or all to make the manual DB snapshot restorable by any Amazon Web Services account. Do not add the all value for any manual DB snapshots that contain private information that you don't want available to all Amazon Web Services accounts.

", + "ModifyDBSnapshotAttributeMessage$ValuesToRemove": "

A list of DB snapshot attributes to remove from the attribute specified by AttributeName.

To remove authorization for other Amazon Web Services accounts to copy or restore a manual snapshot, set this list to include one or more Amazon Web Services account identifiers, or all to remove authorization for any Amazon Web Services account to copy or restore the DB snapshot. If you specify all, an Amazon Web Services account whose account ID is explicitly added to the restore attribute can still copy or restore the manual DB snapshot.

" + } + }, + "AuditPolicyState": { + "base": null, + "refs": { + "ModifyActivityStreamRequest$AuditPolicyState": "

The audit policy state. When a policy is unlocked, it is read/write. When it is locked, it is read-only. You can edit your audit policy only when the activity stream is unlocked or stopped.

" + } + }, + "AuthScheme": { + "base": null, + "refs": { + "UserAuthConfig$AuthScheme": "

The type of authentication that the proxy uses for connections from the proxy to the underlying database.

", + "UserAuthConfigInfo$AuthScheme": "

The type of authentication that the proxy uses for connections from the proxy to the underlying database.

" + } + }, + "AuthUserName": { + "base": null, + "refs": { + "UserAuthConfig$UserName": "

The name of the database user to which the proxy connects.

" + } + }, + "AuthorizationAlreadyExistsFault": { + "base": "

The specified CIDR IP range or Amazon EC2 security group is already authorized for the specified DB security group.

", + "refs": {} + }, + "AuthorizationNotFoundFault": { + "base": "

The specified CIDR IP range or Amazon EC2 security group might not be authorized for the specified DB security group.

Or, RDS might not be authorized to perform necessary actions using IAM on your behalf.

", + "refs": {} + }, + "AuthorizationQuotaExceededFault": { + "base": "

The DB security group authorization quota has been reached.

", + "refs": {} + }, + "AuthorizeDBSecurityGroupIngressMessage": { + "base": "

", + "refs": {} + }, + "AuthorizeDBSecurityGroupIngressResult": { + "base": null, + "refs": {} + }, + "AutomationMode": { + "base": null, + "refs": { + "DBInstance$AutomationMode": "

The automation mode of the RDS Custom DB instance: full or all paused. If full, the DB instance automates monitoring and instance recovery. If all paused, the instance pauses automation for the duration set by --resume-full-automation-mode-minutes.

", + "ModifyDBInstanceMessage$AutomationMode": "

The automation mode of the RDS Custom DB instance. If full, the DB instance automates monitoring and instance recovery. If all paused, the instance pauses automation for the duration set by ResumeFullAutomationModeMinutes.

", + "PendingModifiedValues$AutomationMode": "

The automation mode of the RDS Custom DB instance: full or all-paused. If full, the DB instance automates monitoring and instance recovery. If all-paused, the instance pauses automation for the duration set by --resume-full-automation-mode-minutes.

" + } + }, + "AvailabilityZone": { + "base": "

Contains Availability Zone information.

This data type is used as an element in the OrderableDBInstanceOption data type.

", + "refs": { + "AvailabilityZoneList$member": null, + "Subnet$SubnetAvailabilityZone": null + } + }, + "AvailabilityZoneList": { + "base": null, + "refs": { + "OrderableDBInstanceOption$AvailabilityZones": "

A list of Availability Zones for a DB instance.

" + } + }, + "AvailabilityZones": { + "base": null, + "refs": { + "CreateDBClusterMessage$AvailabilityZones": "

A list of Availability Zones (AZs) where you specifically want to create DB instances in the DB cluster.

For information on AZs, see Availability Zones in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters only

Constraints:

  • Can't specify more than three AZs.

", + "DBCluster$AvailabilityZones": "

The list of Availability Zones (AZs) where instances in the DB cluster can be created.

", + "DBClusterAutomatedBackup$AvailabilityZones": "

The Availability Zones where instances in the DB cluster can be created. For information on Amazon Web Services Regions and Availability Zones, see Regions and Availability Zones.

", + "DBClusterSnapshot$AvailabilityZones": "

The list of Availability Zones (AZs) where instances in the DB cluster snapshot can be restored.

", + "RestoreDBClusterFromS3Message$AvailabilityZones": "

A list of Availability Zones (AZs) where instances in the restored DB cluster can be created.

", + "RestoreDBClusterFromSnapshotMessage$AvailabilityZones": "

Provides the list of Availability Zones (AZs) where instances in the restored DB cluster can be created.

Valid for: Aurora DB clusters only

" + } + }, + "AvailableProcessorFeature": { + "base": "

Contains the available processor feature information for the DB instance class of a DB instance.

For more information, see Configuring the Processor of the DB Instance Class in the Amazon RDS User Guide.

", + "refs": { + "AvailableProcessorFeatureList$member": null + } + }, + "AvailableProcessorFeatureList": { + "base": null, + "refs": { + "OrderableDBInstanceOption$AvailableProcessorFeatures": "

A list of the available processor features for the DB instance class of a DB instance.

", + "ValidDBInstanceModificationsMessage$ValidProcessorFeatures": "

Valid processor features for your DB instance.

" + } + }, + "AwsBackupRecoveryPointArn": { + "base": null, + "refs": { + "ModifyDBInstanceMessage$AwsBackupRecoveryPointArn": "

The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services Backup.

This setting doesn't apply to RDS Custom DB instances.

" + } + }, + "BacktrackDBClusterMessage": { + "base": "

", + "refs": {} + }, + "BackupPolicyNotFoundFault": { + "base": null, + "refs": {} + }, + "BlueGreenDeployment": { + "base": "

Details about a blue/green deployment.

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.

", + "refs": { + "BlueGreenDeploymentList$member": null, + "CreateBlueGreenDeploymentResponse$BlueGreenDeployment": null, + "DeleteBlueGreenDeploymentResponse$BlueGreenDeployment": null, + "SwitchoverBlueGreenDeploymentResponse$BlueGreenDeployment": null + } + }, + "BlueGreenDeploymentAlreadyExistsFault": { + "base": "

A blue/green deployment with the specified name already exists.

", + "refs": {} + }, + "BlueGreenDeploymentIdentifier": { + "base": null, + "refs": { + "BlueGreenDeployment$BlueGreenDeploymentIdentifier": "

The unique identifier of the blue/green deployment.

", + "DeleteBlueGreenDeploymentRequest$BlueGreenDeploymentIdentifier": "

The unique identifier of the blue/green deployment to delete. This parameter isn't case-sensitive.

Constraints:

  • Must match an existing blue/green deployment identifier.

", + "DescribeBlueGreenDeploymentsRequest$BlueGreenDeploymentIdentifier": "

The blue/green deployment identifier. If you specify this parameter, the response only includes information about the specific blue/green deployment. This parameter isn't case-sensitive.

Constraints:

  • Must match an existing blue/green deployment identifier.

", + "SwitchoverBlueGreenDeploymentRequest$BlueGreenDeploymentIdentifier": "

The resource ID of the blue/green deployment.

Constraints:

  • Must match an existing blue/green deployment resource ID.

" + } + }, + "BlueGreenDeploymentList": { + "base": null, + "refs": { + "DescribeBlueGreenDeploymentsResponse$BlueGreenDeployments": "

A list of blue/green deployments in the current account and Amazon Web Services Region.

" + } + }, + "BlueGreenDeploymentName": { + "base": null, + "refs": { + "BlueGreenDeployment$BlueGreenDeploymentName": "

The user-supplied name of the blue/green deployment.

", + "CreateBlueGreenDeploymentRequest$BlueGreenDeploymentName": "

The name of the blue/green deployment.

Constraints:

  • Can't be the same as an existing blue/green deployment name in the same account and Amazon Web Services Region.

" + } + }, + "BlueGreenDeploymentNotFoundFault": { + "base": "

BlueGreenDeploymentIdentifier doesn't refer to an existing blue/green deployment.

", + "refs": {} + }, + "BlueGreenDeploymentStatus": { + "base": null, + "refs": { + "BlueGreenDeployment$Status": "

The status of the blue/green deployment.

Valid Values:

  • PROVISIONING - Resources are being created in the green environment.

  • AVAILABLE - Resources are available in the green environment.

  • SWITCHOVER_IN_PROGRESS - The deployment is being switched from the blue environment to the green environment.

  • SWITCHOVER_COMPLETED - Switchover from the blue environment to the green environment is complete.

  • INVALID_CONFIGURATION - Resources in the green environment are invalid, so switchover isn't possible.

  • SWITCHOVER_FAILED - Switchover was attempted but failed.

  • DELETING - The blue/green deployment is being deleted.

" + } + }, + "BlueGreenDeploymentStatusDetails": { + "base": null, + "refs": { + "BlueGreenDeployment$StatusDetails": "

Additional information about the status of the blue/green deployment.

" + } + }, + "BlueGreenDeploymentTask": { + "base": "

Details about a task for a blue/green deployment.

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.

", + "refs": { + "BlueGreenDeploymentTaskList$member": null + } + }, + "BlueGreenDeploymentTaskList": { + "base": null, + "refs": { + "BlueGreenDeployment$Tasks": "

Either tasks to be performed or tasks that have been completed on the target database before switchover.

" + } + }, + "BlueGreenDeploymentTaskName": { + "base": null, + "refs": { + "BlueGreenDeploymentTask$Name": "

The name of the blue/green deployment task.

" + } + }, + "BlueGreenDeploymentTaskStatus": { + "base": null, + "refs": { + "BlueGreenDeploymentTask$Status": "

The status of the blue/green deployment task.

Valid Values:

  • PENDING - The resource is being prepared for deployment.

  • IN_PROGRESS - The resource is being deployed.

  • COMPLETED - The resource has been deployed.

  • FAILED - Deployment of the resource failed.

" + } + }, + "Boolean": { + "base": null, + "refs": { + "CreateDBProxyRequest$RequireTLS": "

Specifies whether Transport Layer Security (TLS) encryption is required for connections to the proxy. By enabling this setting, you can enforce encrypted TLS connections to the proxy.

", + "CreateDBProxyRequest$DebugLogging": "

Specifies whether the proxy includes detailed information about SQL statements in its logs. This information helps you to debug issues involving SQL behavior or the performance and scalability of the proxy connections. The debug information includes the text of SQL statements that you submit through the proxy. Thus, only enable this setting when needed for debugging, and only when you have security measures in place to safeguard any sensitive information that appears in the logs.

", + "DBCluster$StorageEncrypted": "

Indicates whether the DB cluster is encrypted.

", + "DBCluster$AutoMinorVersionUpgrade": "

Indicates whether minor version patches are applied automatically.

This setting is for Aurora DB clusters and Multi-AZ DB clusters.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

", + "DBClusterAutomatedBackup$IAMDatabaseAuthenticationEnabled": "

Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

", + "DBClusterAutomatedBackup$StorageEncrypted": "

Indicates whether the source DB cluster is encrypted.

", + "DBClusterMember$IsClusterWriter": "

Indicates whether the cluster member is the primary DB instance for the DB cluster.

", + "DBClusterSnapshot$StorageEncrypted": "

Indicates whether the DB cluster snapshot is encrypted.

", + "DBClusterSnapshot$IAMDatabaseAuthenticationEnabled": "

Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

", + "DBClusterStatusInfo$Normal": "

Reserved for future use.

", + "DBEngineVersion$SupportsLogExportsToCloudwatchLogs": "

Indicates whether the engine version supports exporting the log types specified by ExportableLogTypes to CloudWatch Logs.

", + "DBEngineVersion$SupportsReadReplica": "

Indicates whether the database engine version supports read replicas.

", + "DBEngineVersion$SupportsParallelQuery": "

Indicates whether you can use Aurora parallel query with a specific DB engine version.

", + "DBEngineVersion$SupportsGlobalDatabases": "

Indicates whether you can use Aurora global databases with a specific DB engine version.

", + "DBEngineVersion$SupportsBabelfish": "

Indicates whether the engine version supports Babelfish for Aurora PostgreSQL.

", + "DBEngineVersion$SupportsLimitlessDatabase": "

Indicates whether the DB engine version supports Aurora Limitless Database.

", + "DBEngineVersion$SupportsIntegrations": "

Indicates whether the DB engine version supports zero-ETL integrations with Amazon Redshift.

", + "DBInstance$MultiAZ": "

Indicates whether the DB instance is a Multi-AZ deployment. This setting doesn't apply to RDS Custom DB instances.

", + "DBInstance$AutoMinorVersionUpgrade": "

Indicates whether minor version patches are applied automatically.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

", + "DBInstance$PubliclyAccessible": "

Indicates whether the DB instance is publicly accessible.

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 cluster is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.

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.

For more information, see CreateDBInstance.

", + "DBInstance$StorageEncrypted": "

Indicates whether the DB instance is encrypted.

", + "DBInstance$CopyTagsToSnapshot": "

Indicates whether tags are copied from the DB instance to snapshots of the DB instance.

This setting doesn't apply to Amazon Aurora DB instances. Copying tags to snapshots is managed by the DB cluster. Setting this value for an Aurora DB instance has no effect on the DB cluster setting. For more information, see DBCluster.

", + "DBInstance$IAMDatabaseAuthenticationEnabled": "

Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled for the DB instance.

For a list of engine versions that support IAM database authentication, see IAM database authentication in the Amazon RDS User Guide and IAM database authentication in Aurora in the Amazon Aurora User Guide.

", + "DBInstance$DeletionProtection": "

Indicates whether the DB instance has deletion protection enabled. The database can't be deleted when deletion protection is enabled. For more information, see Deleting a DB Instance.

", + "DBInstance$DedicatedLogVolume": "

Indicates whether the DB instance has a dedicated log volume (DLV) enabled.

", + "DBInstanceAutomatedBackup$Encrypted": "

Indicates whether the automated backup is encrypted.

", + "DBInstanceAutomatedBackup$IAMDatabaseAuthenticationEnabled": "

True if mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.

", + "DBInstanceStatusInfo$Normal": "

Indicates whether the instance is operating normally (TRUE) or is in an error state (FALSE).

", + "DBProxy$RequireTLS": "

Indicates whether Transport Layer Security (TLS) encryption is required for connections to the proxy.

", + "DBProxy$DebugLogging": "

Indicates whether the proxy includes detailed information about SQL statements in its logs. This information helps you to debug issues involving SQL behavior or the performance and scalability of the proxy connections. The debug information includes the text of SQL statements that you submit through the proxy. Thus, only enable this setting when needed for debugging, and only when you have security measures in place to safeguard any sensitive information that appears in the logs.

", + "DBProxyEndpoint$IsDefault": "

Indicates whether this endpoint is the default endpoint for the associated DB proxy. Default DB proxy endpoints always have read/write capability. Other endpoints that you associate with the DB proxy can be either read/write or read-only.

", + "DBProxyTargetGroup$IsDefault": "

Indicates whether this target group is the first one used for connection requests by the associated proxy. Because each proxy is currently associated with a single target group, currently this setting is always true.

", + "DBSnapshot$Encrypted": "

Indicates whether the DB snapshot is encrypted.

", + "DBSnapshot$IAMDatabaseAuthenticationEnabled": "

Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

", + "DBSnapshot$DedicatedLogVolume": "

Indicates whether the DB instance has a dedicated log volume (DLV) enabled.

", + "DeleteDBClusterMessage$SkipFinalSnapshot": "

Specifies whether to skip the creation of a final DB cluster snapshot before RDS deletes the DB cluster. If you set this value to true, RDS doesn't create a final DB cluster snapshot. If you set this value to false or don't specify it, RDS creates a DB cluster snapshot before it deletes the DB cluster. By default, this parameter is disabled, so RDS creates a final DB cluster snapshot.

If SkipFinalSnapshot is disabled, you must specify a value for the FinalDBSnapshotIdentifier parameter.

", + "DeleteDBInstanceMessage$SkipFinalSnapshot": "

Specifies whether to skip the creation of a final DB snapshot before deleting the instance. If you enable this parameter, RDS doesn't create a DB snapshot. If you don't enable this parameter, RDS creates a DB snapshot before the DB instance is deleted. By default, skip isn't enabled, and the DB snapshot is created.

If you don't enable this parameter, you must specify the FinalDBSnapshotIdentifier parameter.

When a DB instance is in a failure state and has a status of failed, incompatible-restore, or incompatible-network, RDS can delete the instance only if you enable this parameter.

If you delete a read replica or an RDS Custom instance, you must enable this setting.

This setting is required for RDS Custom.

", + "DeleteTenantDatabaseMessage$SkipFinalSnapshot": "

Specifies whether to skip the creation of a final DB snapshot before removing the tenant database from your DB instance. If you enable this parameter, RDS doesn't create a DB snapshot. If you don't enable this parameter, RDS creates a DB snapshot before it deletes the tenant database. By default, RDS doesn't skip the final snapshot. If you don't enable this parameter, you must specify the FinalDBSnapshotIdentifier parameter.

", + "DescribeDBClusterSnapshotsMessage$IncludeShared": "

Specifies whether to include shared manual DB cluster snapshots from other Amazon Web Services accounts that this Amazon Web Services account has been given permission to copy or restore. By default, these snapshots are not included.

You can give an Amazon Web Services account permission to restore a manual DB cluster snapshot from another Amazon Web Services account by the ModifyDBClusterSnapshotAttribute API action.

", + "DescribeDBClusterSnapshotsMessage$IncludePublic": "

Specifies whether to include manual DB cluster snapshots that are public and can be copied or restored by any Amazon Web Services account. By default, the public snapshots are not included.

You can share a manual DB cluster snapshot as public by using the ModifyDBClusterSnapshotAttribute API action.

", + "DescribeDBClustersMessage$IncludeShared": "

Specifies whether the output includes information about clusters shared from other Amazon Web Services accounts.

", + "DescribeDBEngineVersionsMessage$DefaultOnly": "

Specifies whether to return only the default version of the specified engine or the engine and major version combination.

", + "DescribeDBSnapshotsMessage$IncludeShared": "

Specifies whether to include shared manual DB cluster snapshots from other Amazon Web Services accounts that this Amazon Web Services account has been given permission to copy or restore. By default, these snapshots are not included.

You can give an Amazon Web Services account permission to restore a manual DB snapshot from another Amazon Web Services account by using the ModifyDBSnapshotAttribute API action.

This setting doesn't apply to RDS Custom.

", + "DescribeDBSnapshotsMessage$IncludePublic": "

Specifies whether to include manual DB cluster snapshots that are public and can be copied or restored by any Amazon Web Services account. By default, the public snapshots are not included.

You can share a manual DB snapshot as public by using the ModifyDBSnapshotAttribute API.

This setting doesn't apply to RDS Custom.

", + "DisableHttpEndpointResponse$HttpEndpointEnabled": "

Indicates whether the HTTP endpoint is enabled or disabled for the DB cluster.

", + "DownloadDBLogFilePortionDetails$AdditionalDataPending": "

A Boolean value that, if true, indicates there is more data to be downloaded.

", + "EnableHttpEndpointResponse$HttpEndpointEnabled": "

Indicates whether the HTTP endpoint is enabled or disabled for the DB cluster.

", + "EventSubscription$Enabled": "

Specifies whether the subscription is enabled. True indicates the subscription is enabled.

", + "FailoverState$IsDataLossAllowed": "

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.

", + "GlobalClusterMember$IsWriter": "

Indicates whether the Aurora DB cluster is the primary cluster (that is, has read-write capability) for the global cluster with which it is associated.

", + "ModifyDBClusterMessage$ApplyImmediately": "

Specifies whether the modifications in this request are asynchronously applied as soon as possible, regardless of the PreferredMaintenanceWindow setting for the DB cluster. If this parameter is disabled, changes to the DB cluster are applied during the next maintenance window.

Most modifications can be applied immediately or during the next scheduled maintenance window. Some modifications, such as turning on deletion protection and changing the master password, are applied immediately—regardless of when you choose to apply them.

By default, this parameter is disabled.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "ModifyDBClusterMessage$AllowMajorVersionUpgrade": "

Specifies whether major version upgrades are allowed.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • You must allow major version upgrades when specifying a value for the EngineVersion parameter that is a different major version than the DB cluster's current version.

", + "ModifyDBClusterMessage$AllowEngineModeChange": "

Specifies whether engine mode changes from serverless to provisioned are allowed.

Valid for Cluster Type: Aurora Serverless v1 DB clusters only

Constraints:

  • You must allow engine mode changes when specifying a different value for the EngineMode parameter from the DB cluster's current engine mode.

", + "ModifyDBInstanceMessage$ApplyImmediately": "

Specifies whether the modifications in this request and any pending modifications are asynchronously applied as soon as possible, regardless of the PreferredMaintenanceWindow setting for the DB instance. By default, this parameter is disabled.

If this parameter is disabled, changes to the DB instance are applied during the next maintenance window. Some parameter changes can cause an outage and are applied on the next call to RebootDBInstance, or the next failure reboot. Review the table of parameters in Modifying a DB Instance in the Amazon RDS User Guide to see the impact of enabling or disabling ApplyImmediately for each modified parameter and to determine when the changes are applied.

", + "ModifyDBInstanceMessage$AllowMajorVersionUpgrade": "

Specifies whether major version upgrades are allowed. Changing this parameter doesn't result in an outage and the change is asynchronously applied as soon as possible.

This setting doesn't apply to RDS Custom DB instances.

Constraints:

  • Major version upgrades must be allowed when specifying a value for the EngineVersion parameter that's a different major version than the DB instance's current version.

", + "ModifyOptionGroupMessage$ApplyImmediately": "

Specifies whether to apply the change immediately or during the next maintenance window for each instance associated with the option group.

", + "Option$Persistent": "

Indicates whether this option is persistent.

", + "Option$Permanent": "

Indicates whether this option is permanent.

", + "OptionGroup$AllowsVpcAndNonVpcInstanceMemberships": "

Indicates whether this option group can be applied to both VPC and non-VPC instances. The value true indicates the option group can be applied to both VPC and non-VPC instances.

", + "OptionGroupOption$PortRequired": "

Indicates whether the option requires a port.

", + "OptionGroupOption$Persistent": "

Persistent options can't be removed from an option group while DB instances are associated with the option group. If you disassociate all DB instances from the option group, your can remove the persistent option from the option group.

", + "OptionGroupOption$Permanent": "

Permanent options can never be removed from an option group. An option group containing a permanent option can't be removed from a DB instance.

", + "OptionGroupOption$RequiresAutoMinorEngineVersionUpgrade": "

If true, you must enable the Auto Minor Version Upgrade setting for your DB instance before you can use this option. You can enable Auto Minor Version Upgrade when you first create your DB instance, or by modifying your DB instance later.

", + "OptionGroupOption$VpcOnly": "

If true, you can only use this option with a DB instance that is in a VPC.

", + "OptionGroupOptionSetting$IsModifiable": "

Indicates whether this option group option can be changed from the default value.

", + "OptionGroupOptionSetting$IsRequired": "

Indicates whether a value must be specified for this option setting of the option group option.

", + "OptionSetting$IsModifiable": "

Indicates whether the option setting can be modified from the default.

", + "OptionSetting$IsCollection": "

Indicates whether the option setting is part of a collection.

", + "OptionVersion$IsDefault": "

Indicates whether the version is the default version of the option.

", + "OrderableDBInstanceOption$MultiAZCapable": "

Indicates whether a DB instance is Multi-AZ capable.

", + "OrderableDBInstanceOption$ReadReplicaCapable": "

Indicates whether a DB instance can have a read replica.

", + "OrderableDBInstanceOption$Vpc": "

Indicates whether a DB instance is in a VPC.

", + "OrderableDBInstanceOption$SupportsStorageEncryption": "

Indicates whether a DB instance supports encrypted storage.

", + "OrderableDBInstanceOption$SupportsIops": "

Indicates whether a DB instance supports provisioned IOPS.

", + "OrderableDBInstanceOption$SupportsStorageThroughput": "

Indicates whether a DB instance supports storage throughput.

", + "OrderableDBInstanceOption$SupportsEnhancedMonitoring": "

Indicates whether a DB instance supports Enhanced Monitoring at intervals from 1 to 60 seconds.

", + "OrderableDBInstanceOption$SupportsIAMDatabaseAuthentication": "

Indicates whether a DB instance supports IAM database authentication.

", + "OrderableDBInstanceOption$SupportsPerformanceInsights": "

Indicates whether a DB instance supports Performance Insights.

", + "OrderableDBInstanceOption$OutpostCapable": "

Indicates whether a DB instance supports RDS on Outposts.

For more information about RDS on Outposts, see Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

", + "OrderableDBInstanceOption$SupportsGlobalDatabases": "

Indicates whether you can use Aurora global databases with a specific combination of other DB engine attributes.

", + "OrderableDBInstanceOption$SupportsClusters": "

Indicates whether DB instances can be configured as a Multi-AZ DB cluster.

For more information on Multi-AZ DB clusters, see Multi-AZ deployments with two readable standby DB instances in the Amazon RDS User Guide.

", + "OrderableDBInstanceOption$SupportsDedicatedLogVolume": "

Indicates whether a DB instance supports using a dedicated log volume (DLV).

", + "Parameter$IsModifiable": "

Indicates whether (true) or not (false) the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.

", + "ReservedDBInstance$MultiAZ": "

Indicates whether the reservation applies to Multi-AZ deployments.

", + "ReservedDBInstancesOffering$MultiAZ": "

Indicates whether the offering applies to Multi-AZ deployments.

", + "ResetDBClusterParameterGroupMessage$ResetAllParameters": "

Specifies whether to reset all parameters in the DB cluster parameter group to their default values. You can't use this parameter if there is a list of parameter names specified for the Parameters parameter.

", + "ResetDBParameterGroupMessage$ResetAllParameters": "

Specifies whether to reset all parameters in the DB parameter group to default values. By default, all parameters in the DB parameter group are reset to default values.

", + "RestoreDBClusterToPointInTimeMessage$UseLatestRestorableTime": "

Specifies whether to restore the DB cluster to the latest restorable backup time. By default, the DB cluster isn't restored to the latest restorable backup time.

Constraints: Can't be specified if RestoreToTime parameter is provided.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBInstanceToPointInTimeMessage$UseLatestRestorableTime": "

Specifies whether the DB instance is restored from the latest backup time. By default, the DB instance isn't restored from the latest backup time.

Constraints:

  • Can't be specified if the RestoreTime parameter is provided.

", + "SourceRegion$SupportsDBInstanceAutomatedBackupsReplication": "

Indicates whether the source Amazon Web Services Region supports replicating automated backups to the current Amazon Web Services Region.

", + "StartActivityStreamResponse$ApplyImmediately": "

Indicates whether or not the database activity stream will start as soon as possible, regardless of the maintenance window for the database.

", + "TenantDatabase$DeletionProtection": "

Specifies whether deletion protection is enabled for the DB instance.

", + "UpgradeTarget$AutoUpgrade": "

Indicates whether the target version is applied to any source DB instances that have AutoMinorVersionUpgrade set to true.

This parameter is dynamic, and is set by RDS.

", + "UpgradeTarget$IsMajorVersionUpgrade": "

Indicates whether upgrading to the target version requires upgrading the major version of the database engine.

", + "ValidDBInstanceModificationsMessage$SupportsDedicatedLogVolume": "

Indicates whether a DB instance supports using a dedicated log volume (DLV).

", + "ValidStorageOptions$SupportsStorageAutoscaling": "

Indicates whether or not Amazon RDS can automatically scale storage for DB instances that use the new instance class.

" + } + }, + "BooleanOptional": { + "base": null, + "refs": { + "BacktrackDBClusterMessage$Force": "

Specifies whether to force the DB cluster to backtrack when binary logging is enabled. Otherwise, an error occurs when binary logging is enabled.

", + "BacktrackDBClusterMessage$UseEarliestTimeOnPointInTimeUnavailable": "

Specifies whether to backtrack the DB cluster to the earliest possible backtrack time when BacktrackTo is set to a timestamp earlier than the earliest backtrack time. When this parameter is disabled and BacktrackTo is set to a timestamp earlier than the earliest backtrack time, an error occurs.

", + "Certificate$CustomerOverride": "

Indicates whether there is an override for the default certificate identifier.

", + "ClusterPendingModifiedValues$IAMDatabaseAuthenticationEnabled": "

Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

", + "CopyDBClusterSnapshotMessage$CopyTags": "

Specifies whether to copy all tags from the source DB cluster snapshot to the target DB cluster snapshot. By default, tags are not copied.

", + "CopyDBSnapshotMessage$CopyTags": "

Specifies whether to copy all tags from the source DB snapshot to the target DB snapshot. By default, tags aren't copied.

", + "CopyDBSnapshotMessage$CopyOptionGroup": "

Specifies whether to copy the DB option group associated with the source DB snapshot to the target Amazon Web Services account and associate with the target DB snapshot. The associated option group can be copied only with cross-account snapshot copy calls.

", + "CreateBlueGreenDeploymentRequest$UpgradeTargetStorageConfig": "

Whether to upgrade the storage file system configuration on the green database. This option migrates the green DB instance from the older 32-bit file system to the preferred configuration. For more information, see Upgrading the storage file system for a DB instance.

", + "CreateDBClusterMessage$StorageEncrypted": "

Specifies whether the DB cluster is encrypted.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "CreateDBClusterMessage$EnableIAMDatabaseAuthentication": "

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn't enabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide or IAM database authentication for MariaDB, MySQL, and PostgreSQL in the Amazon RDS User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "CreateDBClusterMessage$PubliclyAccessible": "

Specifies whether the DB cluster is publicly accessible.

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 ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.

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.

Valid for Cluster Type: Multi-AZ DB clusters only

Default: The default behavior varies depending on whether DBSubnetGroupName is specified.

If DBSubnetGroupName isn't specified, and PubliclyAccessible isn't specified, the following applies:

  • If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB cluster is private.

  • If the default VPC in the target Region has an internet gateway attached to it, the DB cluster is public.

If DBSubnetGroupName is specified, and PubliclyAccessible isn't specified, the following applies:

  • If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.

  • If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.

", + "CreateDBClusterMessage$AutoMinorVersionUpgrade": "

Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window. By default, minor engine upgrades are applied automatically.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

", + "CreateDBClusterMessage$DeletionProtection": "

Specifies whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection isn't enabled.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "CreateDBClusterMessage$EnableHttpEndpoint": "

Specifies whether to enable the HTTP endpoint for the DB cluster. By default, the HTTP endpoint isn't enabled.

When enabled, the HTTP endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the DB cluster. You can also query your database from inside the RDS console with the RDS query editor.

For more information, see Using RDS Data API in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters only

", + "CreateDBClusterMessage$CopyTagsToSnapshot": "

Specifies whether to copy all tags from the DB cluster to snapshots of the DB cluster. The default is not to copy them.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "CreateDBClusterMessage$EnableGlobalWriteForwarding": "

Specifies whether to enable this DB cluster to forward write operations to the primary cluster of a global cluster (Aurora global database). By default, write operations are not allowed on Aurora DB clusters that are secondary clusters in an Aurora global database.

You can set this value only on Aurora DB clusters that are members of an Aurora global database. With this parameter enabled, a secondary cluster can forward writes to the current primary cluster, and the resulting changes are replicated back to this cluster. For the primary DB cluster of an Aurora global database, this value is used immediately if the primary is demoted by a global cluster API operation, but it does nothing until then.

Valid for Cluster Type: Aurora DB clusters only

", + "CreateDBClusterMessage$EnablePerformanceInsights": "

Specifies whether to turn on Performance Insights for the DB cluster.

For more information, see Using Amazon Performance Insights in the Amazon RDS User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "CreateDBClusterMessage$EnableLimitlessDatabase": "

Specifies whether to enable Aurora Limitless Database. You must enable Aurora Limitless Database to create a DB shard group.

Valid for: Aurora DB clusters only

This setting is no longer used. Instead use the ClusterScalabilityType setting.

", + "CreateDBClusterMessage$ManageMasterUserPassword": "

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide and Password management with Amazon Web Services Secrets Manager in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • Can't manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.

", + "CreateDBInstanceMessage$MultiAZ": "

Specifies whether the DB instance is a Multi-AZ deployment. You can't set the AvailabilityZone parameter if the DB instance is a Multi-AZ deployment.

This setting doesn't apply to Amazon Aurora because the DB instance Availability Zones (AZs) are managed by the DB cluster.

", + "CreateDBInstanceMessage$AutoMinorVersionUpgrade": "

Specifies whether minor engine upgrades are applied automatically to the DB instance during the maintenance window. By default, minor engine upgrades are applied automatically.

If you create an RDS Custom DB instance, you must set AutoMinorVersionUpgrade to false.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

", + "CreateDBInstanceMessage$PubliclyAccessible": "

Specifies whether the DB instance is publicly accessible.

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 ultimately controlled by the security group it uses. That public access is not permitted if the security group assigned to the DB instance doesn't permit it.

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.

Default: The default behavior varies depending on whether DBSubnetGroupName is specified.

If DBSubnetGroupName isn't specified, and PubliclyAccessible isn't specified, the following applies:

  • If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB instance is private.

  • If the default VPC in the target Region has an internet gateway attached to it, the DB instance is public.

If DBSubnetGroupName is specified, and PubliclyAccessible isn't specified, the following applies:

  • If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB instance is private.

  • If the subnets are part of a VPC that has an internet gateway attached to it, the DB instance is public.

", + "CreateDBInstanceMessage$StorageEncrypted": "

Specifes whether the DB instance is encrypted. By default, it isn't encrypted.

For RDS Custom DB instances, either enable this setting or leave it unset. Otherwise, Amazon RDS reports an error.

This setting doesn't apply to Amazon Aurora DB instances. The encryption for DB instances is managed by the DB cluster.

", + "CreateDBInstanceMessage$CopyTagsToSnapshot": "

Specifies whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied.

This setting doesn't apply to Amazon Aurora DB instances. Copying tags to snapshots is managed by the DB cluster. Setting this value for an Aurora DB instance has no effect on the DB cluster setting.

", + "CreateDBInstanceMessage$EnableIAMDatabaseAuthentication": "

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn't enabled.

For more information, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

This setting doesn't apply to the following DB instances:

  • Amazon Aurora (Mapping Amazon Web Services IAM accounts to database accounts is managed by the DB cluster.)

  • RDS Custom

", + "CreateDBInstanceMessage$EnablePerformanceInsights": "

Specifies whether to enable Performance Insights for the DB instance. For more information, see Using Amazon Performance Insights in the Amazon RDS User Guide.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceMessage$DeletionProtection": "

Specifies whether the DB instance has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection isn't enabled. For more information, see Deleting a DB Instance.

This setting doesn't apply to Amazon Aurora DB instances. You can enable or disable deletion protection for the DB cluster. For more information, see CreateDBCluster. DB instances in a DB cluster can be deleted even when deletion protection is enabled for the DB cluster.

", + "CreateDBInstanceMessage$EnableCustomerOwnedIp": "

Specifies whether to enable a customer-owned IP address (CoIP) for an RDS on Outposts DB instance.

A CoIP provides local or external connectivity to resources in your Outpost subnets through your on-premises network. For some use cases, a CoIP can provide lower latency for connections to the DB instance from outside of its virtual private cloud (VPC) on your local network.

For more information about RDS on Outposts, see Working with Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

For more information about CoIPs, see Customer-owned IP addresses in the Amazon Web Services Outposts User Guide.

", + "CreateDBInstanceMessage$ManageMasterUserPassword": "

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • Can't manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.

", + "CreateDBInstanceMessage$MultiTenant": "

Specifies whether to use the multi-tenant configuration or the single-tenant configuration (default). This parameter only applies to RDS for Oracle container database (CDB) engines.

Note the following restrictions:

  • The DB engine that you specify in the request must support the multi-tenant configuration. If you attempt to enable the multi-tenant configuration on a DB engine that doesn't support it, the request fails.

  • If you specify the multi-tenant configuration when you create your DB instance, you can't later modify this DB instance to use the single-tenant configuration.

", + "CreateDBInstanceMessage$DedicatedLogVolume": "

Indicates whether the DB instance has a dedicated log volume (DLV) enabled.

", + "CreateDBInstanceReadReplicaMessage$MultiAZ": "

Specifies whether the read replica is in a Multi-AZ deployment.

You can create a read replica as a Multi-AZ DB instance. RDS creates a standby of your replica in another Availability Zone for failover support for the replica. Creating your read replica as a Multi-AZ DB instance is independent of whether the source is a Multi-AZ DB instance or a Multi-AZ DB cluster.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceReadReplicaMessage$AutoMinorVersionUpgrade": "

Specifies whether to automatically apply minor engine upgrades to the read replica during the maintenance window.

This setting doesn't apply to RDS Custom DB instances.

Default: Inherits the value from the source DB instance.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

", + "CreateDBInstanceReadReplicaMessage$PubliclyAccessible": "

Specifies whether the DB instance is publicly accessible.

When the DB cluster is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB cluster's virtual private cloud (VPC). It resolves to the public IP address from outside of the DB cluster's VPC. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.

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.

For more information, see CreateDBInstance.

", + "CreateDBInstanceReadReplicaMessage$CopyTagsToSnapshot": "

Specifies whether to copy all tags from the read replica to snapshots of the read replica. By default, tags aren't copied.

", + "CreateDBInstanceReadReplicaMessage$EnableIAMDatabaseAuthentication": "

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn't enabled.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceReadReplicaMessage$EnablePerformanceInsights": "

Specifies whether to enable Performance Insights for the read replica.

For more information, see Using Amazon Performance Insights in the Amazon RDS User Guide.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceReadReplicaMessage$UseDefaultProcessorFeatures": "

Specifies whether the DB instance class of the DB instance uses its default processor features.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceReadReplicaMessage$DeletionProtection": "

Specifies whether to enable deletion protection for the DB instance. The database can't be deleted when deletion protection is enabled. By default, deletion protection isn't enabled. For more information, see Deleting a DB Instance.

", + "CreateDBInstanceReadReplicaMessage$DedicatedLogVolume": "

Indicates whether the DB instance has a dedicated log volume (DLV) enabled.

", + "CreateDBInstanceReadReplicaMessage$UpgradeStorageConfig": "

Whether to upgrade the storage file system configuration on the read replica. This option migrates the read replica from the old storage file system layout to the preferred layout.

", + "CreateDBShardGroupMessage$PubliclyAccessible": "

Specifies whether the DB shard group is publicly accessible.

When the DB shard group is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB shard group's virtual private cloud (VPC). It resolves to the public IP address from outside of the DB shard group's VPC. Access to the DB shard group is ultimately controlled by the security group it uses. That public access is not permitted if the security group assigned to the DB shard group doesn't permit it.

When the DB shard group isn't publicly accessible, it is an internal DB shard group with a DNS name that resolves to a private IP address.

Default: The default behavior varies depending on whether DBSubnetGroupName is specified.

If DBSubnetGroupName isn't specified, and PubliclyAccessible isn't specified, the following applies:

  • If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB shard group is private.

  • If the default VPC in the target Region has an internet gateway attached to it, the DB shard group is public.

If DBSubnetGroupName is specified, and PubliclyAccessible isn't specified, the following applies:

  • If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB shard group is private.

  • If the subnets are part of a VPC that has an internet gateway attached to it, the DB shard group is public.

", + "CreateEventSubscriptionMessage$Enabled": "

Specifies whether to activate the subscription. If the event notification subscription isn't activated, the subscription is created but not active.

", + "CreateGlobalClusterMessage$DeletionProtection": "

Specifies whether to enable deletion protection for the new global database cluster. The global database can't be deleted when deletion protection is enabled.

", + "CreateGlobalClusterMessage$StorageEncrypted": "

Specifies whether to enable storage encryption for the new global database cluster.

Constraints:

  • Can't be specified if SourceDBClusterIdentifier is specified. In this case, Amazon Aurora uses the setting from the source DB cluster.

", + "CreateTenantDatabaseMessage$ManageMasterUserPassword": "

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • Can't manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.

", + "DBCluster$MultiAZ": "

Indicates whether the DB cluster has instances in multiple Availability Zones.

", + "DBCluster$IAMDatabaseAuthenticationEnabled": "

Indicates whether the mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

", + "DBCluster$PubliclyAccessible": "

Indicates whether the DB cluster is publicly accessible.

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 ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.

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.

For more information, see CreateDBCluster.

This setting is only for non-Aurora Multi-AZ DB clusters.

", + "DBCluster$DeletionProtection": "

Indicates whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled.

", + "DBCluster$HttpEndpointEnabled": "

Indicates whether the HTTP endpoint is enabled for an Aurora DB cluster.

When enabled, the HTTP endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the DB cluster. You can also query your database from inside the RDS console with the RDS query editor.

For more information, see Using RDS Data API in the Amazon Aurora User Guide.

", + "DBCluster$CopyTagsToSnapshot": "

Indicates whether tags are copied from the DB cluster to snapshots of the DB cluster.

", + "DBCluster$CrossAccountClone": "

Indicates whether the DB cluster is a clone of a DB cluster owned by a different Amazon Web Services account.

", + "DBCluster$GlobalWriteForwardingRequested": "

Indicates whether write forwarding is enabled for a secondary cluster in an Aurora global database. Because write forwarding takes time to enable, check the value of GlobalWriteForwardingStatus to confirm that the request has completed before using the write forwarding feature for this cluster.

", + "DBCluster$PerformanceInsightsEnabled": "

Indicates whether Performance Insights is enabled for the DB cluster.

This setting is only for Aurora DB clusters and Multi-AZ DB clusters.

", + "DBEngineVersion$SupportsCertificateRotationWithoutRestart": "

Indicates whether the engine version supports rotating the server certificate without rebooting the DB instance.

", + "DBInstance$PerformanceInsightsEnabled": "

Indicates whether Performance Insights is enabled for the DB instance.

", + "DBInstance$CustomerOwnedIpEnabled": "

Indicates whether a customer-owned IP address (CoIP) is enabled for an RDS on Outposts DB instance.

A CoIP provides local or external connectivity to resources in your Outpost subnets through your on-premises network. For some use cases, a CoIP can provide lower latency for connections to the DB instance from outside of its virtual private cloud (VPC) on your local network.

For more information about RDS on Outposts, see Working with Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

For more information about CoIPs, see Customer-owned IP addresses in the Amazon Web Services Outposts User Guide.

", + "DBInstance$ActivityStreamEngineNativeAuditFieldsIncluded": "

Indicates whether engine-native audit fields are included in the database activity stream.

", + "DBInstance$MultiTenant": "

Specifies whether the DB instance is in the multi-tenant configuration (TRUE) or the single-tenant configuration (FALSE).

", + "DBInstance$IsStorageConfigUpgradeAvailable": "

Indicates whether an upgrade is recommended for the storage file system configuration on the DB instance. To migrate to the preferred configuration, you can either create a blue/green deployment, or create a read replica from the DB instance. For more information, see Upgrading the storage file system for a DB instance.

", + "DBInstanceAutomatedBackup$MultiTenant": "

Specifies whether the automatic backup is for a DB instance in the multi-tenant configuration (TRUE) or the single-tenant configuration (FALSE).

", + "DBInstanceAutomatedBackup$DedicatedLogVolume": "

Indicates whether the DB instance has a dedicated log volume (DLV) enabled.

", + "DBShardGroup$PubliclyAccessible": "

Indicates whether the DB shard group is publicly accessible.

When the DB shard group is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB shard group's virtual private cloud (VPC). It resolves to the public IP address from outside of the DB shard group's VPC. Access to the DB shard group is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB shard group doesn't permit it.

When the DB shard group isn't publicly accessible, it is an internal DB shard group with a DNS name that resolves to a private IP address.

For more information, see CreateDBShardGroup.

This setting is only for Aurora Limitless Database.

", + "DBSnapshot$MultiTenant": "

Indicates whether the snapshot is of a DB instance using the multi-tenant configuration (TRUE) or the single-tenant configuration (FALSE).

", + "DeleteBlueGreenDeploymentRequest$DeleteTarget": "

Specifies whether to delete the resources in the green environment. You can't specify this option if the blue/green deployment status is SWITCHOVER_COMPLETED.

", + "DeleteDBClusterMessage$DeleteAutomatedBackups": "

Specifies whether to remove automated backups immediately after the DB cluster is deleted. This parameter isn't case-sensitive. The default is to remove automated backups immediately after the DB cluster is deleted, unless the Amazon Web Services Backup policy specifies a point-in-time restore rule.

", + "DeleteDBInstanceMessage$DeleteAutomatedBackups": "

Specifies whether to remove automated backups immediately after the DB instance is deleted. This parameter isn't case-sensitive. The default is to remove automated backups immediately after the DB instance is deleted.

", + "DescribeDBEngineVersionsMessage$ListSupportedCharacterSets": "

Specifies whether to list the supported character sets for each engine version.

If this parameter is enabled and the requested engine supports the CharacterSetName parameter for CreateDBInstance, the response includes a list of supported character sets for each engine version.

For RDS Custom, the default is not to list supported character sets. If you enable this parameter, RDS Custom returns no results.

", + "DescribeDBEngineVersionsMessage$ListSupportedTimezones": "

Specifies whether to list the supported time zones for each engine version.

If this parameter is enabled and the requested engine supports the TimeZone parameter for CreateDBInstance, the response includes a list of supported time zones for each engine version.

For RDS Custom, the default is not to list supported time zones. If you enable this parameter, RDS Custom returns no results.

", + "DescribeDBEngineVersionsMessage$IncludeAll": "

Specifies whether to also list the engine versions that aren't available. The default is to list only available engine versions.

", + "DescribeOrderableDBInstanceOptionsMessage$Vpc": "

Specifies whether to show only VPC or non-VPC offerings. RDS Custom supports only VPC offerings.

RDS Custom supports only VPC offerings. If you describe non-VPC offerings for RDS Custom, the output shows VPC offerings.

", + "DescribeReservedDBInstancesMessage$MultiAZ": "

Specifies whether to show only those reservations that support Multi-AZ.

", + "DescribeReservedDBInstancesOfferingsMessage$MultiAZ": "

Specifies whether to show only those reservations that support Multi-AZ.

", + "FailoverGlobalClusterMessage$AllowDataLoss": "

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.

", + "FailoverGlobalClusterMessage$Switchover": "

Specifies whether to switch over this global database cluster.

Constraints:

  • Can't be specified together with the AllowDataLoss parameter.

", + "GlobalCluster$StorageEncrypted": "

The storage encryption setting for the global database cluster.

", + "GlobalCluster$DeletionProtection": "

The deletion protection setting for the new global database cluster.

", + "ModifyActivityStreamResponse$EngineNativeAuditFieldsIncluded": "

Indicates whether engine-native audit fields are included in the database activity stream.

", + "ModifyCertificatesMessage$RemoveCustomerOverride": "

Specifies whether to remove the override for the default certificate. If the override is removed, the default certificate is the system default.

", + "ModifyDBClusterMessage$EnableIAMDatabaseAuthentication": "

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn't enabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide or IAM database authentication for MariaDB, MySQL, and PostgreSQL in the Amazon RDS User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "ModifyDBClusterMessage$DeletionProtection": "

Specifies whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection isn't enabled.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "ModifyDBClusterMessage$EnableHttpEndpoint": "

Specifies whether to enable the HTTP endpoint for an Aurora Serverless v1 DB cluster. By default, the HTTP endpoint isn't enabled.

When enabled, the HTTP endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the Aurora Serverless v1 DB cluster. You can also query your database from inside the RDS console with the RDS query editor.

For more information, see Using RDS Data API in the Amazon Aurora User Guide.

This parameter applies only to Aurora Serverless v1 DB clusters. To enable or disable the HTTP endpoint for an Aurora Serverless v2 or provisioned DB cluster, use the EnableHttpEndpoint and DisableHttpEndpoint operations.

Valid for Cluster Type: Aurora DB clusters only

", + "ModifyDBClusterMessage$CopyTagsToSnapshot": "

Specifies whether to copy all tags from the DB cluster to snapshots of the DB cluster. The default is not to copy them.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "ModifyDBClusterMessage$EnableGlobalWriteForwarding": "

Specifies whether to enable this DB cluster to forward write operations to the primary cluster of a global cluster (Aurora global database). By default, write operations are not allowed on Aurora DB clusters that are secondary clusters in an Aurora global database.

You can set this value only on Aurora DB clusters that are members of an Aurora global database. With this parameter enabled, a secondary cluster can forward writes to the current primary cluster, and the resulting changes are replicated back to this cluster. For the primary DB cluster of an Aurora global database, this value is used immediately if the primary is demoted by a global cluster API operation, but it does nothing until then.

Valid for Cluster Type: Aurora DB clusters only

", + "ModifyDBClusterMessage$AutoMinorVersionUpgrade": "

Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window. By default, minor engine upgrades are applied automatically.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

", + "ModifyDBClusterMessage$EnablePerformanceInsights": "

Specifies whether to turn on Performance Insights for the DB cluster.

For more information, see Using Amazon Performance Insights in the Amazon RDS User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "ModifyDBClusterMessage$ManageMasterUserPassword": "

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

If the DB cluster doesn't manage the master user password with Amazon Web Services Secrets Manager, you can turn on this management. In this case, you can't specify MasterUserPassword.

If the DB cluster already manages the master user password with Amazon Web Services Secrets Manager, and you specify that the master user password is not managed with Amazon Web Services Secrets Manager, then you must specify MasterUserPassword. In this case, RDS deletes the secret and uses the new password for the master user specified by MasterUserPassword.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide and Password management with Amazon Web Services Secrets Manager in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "ModifyDBClusterMessage$RotateMasterUserPassword": "

Specifies whether to rotate the secret managed by Amazon Web Services Secrets Manager for the master user password.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB cluster. The secret value contains the updated password.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide and Password management with Amazon Web Services Secrets Manager in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • You must apply the change immediately when rotating the master user password.

", + "ModifyDBClusterMessage$EnableLimitlessDatabase": "

Specifies whether to enable Aurora Limitless Database. You must enable Aurora Limitless Database to create a DB shard group.

Valid for: Aurora DB clusters only

This setting is no longer used. Instead use the ClusterScalabilityType setting when you create your Aurora Limitless Database DB cluster.

", + "ModifyDBInstanceMessage$MultiAZ": "

Specifies whether the DB instance is a Multi-AZ deployment. Changing this parameter doesn't result in an outage. The change is applied during the next maintenance window unless the ApplyImmediately parameter is enabled for this request.

This setting doesn't apply to RDS Custom DB instances.

", + "ModifyDBInstanceMessage$AutoMinorVersionUpgrade": "

Specifies whether minor version upgrades are applied automatically to the DB instance during the maintenance window. An outage occurs when all the following conditions are met:

  • The automatic upgrade is enabled for the maintenance window.

  • A newer minor version is available.

  • RDS has enabled automatic patching for the engine version.

If any of the preceding conditions isn't met, Amazon RDS applies the change as soon as possible and doesn't cause an outage.

For an RDS Custom DB instance, don't enable this setting. Otherwise, the operation returns an error.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

", + "ModifyDBInstanceMessage$DisableDomain": "

Specifies whether to remove the DB instance from the Active Directory domain.

", + "ModifyDBInstanceMessage$CopyTagsToSnapshot": "

Specifies whether to copy all tags from the DB instance to snapshots of the DB instance. By default, tags aren't copied.

This setting doesn't apply to Amazon Aurora DB instances. Copying tags to snapshots is managed by the DB cluster. Setting this value for an Aurora DB instance has no effect on the DB cluster setting. For more information, see ModifyDBCluster.

", + "ModifyDBInstanceMessage$PubliclyAccessible": "

Specifies whether the DB instance is publicly accessible.

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 ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB instance doesn't permit it.

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.

PubliclyAccessible only applies to DB instances in a VPC. The DB instance must be part of a public subnet and PubliclyAccessible must be enabled for it to be publicly accessible.

Changes to the PubliclyAccessible parameter are applied immediately regardless of the value of the ApplyImmediately parameter.

", + "ModifyDBInstanceMessage$EnableIAMDatabaseAuthentication": "

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn't enabled.

This setting doesn't apply to Amazon Aurora. Mapping Amazon Web Services IAM accounts to database accounts is managed by the DB cluster.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

This setting doesn't apply to RDS Custom DB instances.

", + "ModifyDBInstanceMessage$EnablePerformanceInsights": "

Specifies whether to enable Performance Insights for the DB instance.

For more information, see Using Amazon Performance Insights in the Amazon RDS User Guide.

This setting doesn't apply to RDS Custom DB instances.

", + "ModifyDBInstanceMessage$UseDefaultProcessorFeatures": "

Specifies whether the DB instance class of the DB instance uses its default processor features.

This setting doesn't apply to RDS Custom DB instances.

", + "ModifyDBInstanceMessage$DeletionProtection": "

Specifies whether the DB instance has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection isn't enabled. For more information, see Deleting a DB Instance.

This setting doesn't apply to Amazon Aurora DB instances. You can enable or disable deletion protection for the DB cluster. For more information, see ModifyDBCluster. DB instances in a DB cluster can be deleted even when deletion protection is enabled for the DB cluster.

", + "ModifyDBInstanceMessage$CertificateRotationRestart": "

Specifies whether the DB instance is restarted when you rotate your SSL/TLS certificate.

By default, the DB instance is restarted when you rotate your SSL/TLS certificate. The certificate is not updated until the DB instance is restarted.

Set this parameter only if you are not using SSL/TLS to connect to the DB instance.

If you are using SSL/TLS to connect to the DB instance, follow the appropriate instructions for your DB engine to rotate your SSL/TLS certificate:

This setting doesn't apply to RDS Custom DB instances.

", + "ModifyDBInstanceMessage$EnableCustomerOwnedIp": "

Specifies whether to enable a customer-owned IP address (CoIP) for an RDS on Outposts DB instance.

A CoIP provides local or external connectivity to resources in your Outpost subnets through your on-premises network. For some use cases, a CoIP can provide lower latency for connections to the DB instance from outside of its virtual private cloud (VPC) on your local network.

For more information about RDS on Outposts, see Working with Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

For more information about CoIPs, see Customer-owned IP addresses in the Amazon Web Services Outposts User Guide.

", + "ModifyDBInstanceMessage$ManageMasterUserPassword": "

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

If the DB instance doesn't manage the master user password with Amazon Web Services Secrets Manager, you can turn on this management. In this case, you can't specify MasterUserPassword.

If the DB instance already manages the master user password with Amazon Web Services Secrets Manager, and you specify that the master user password is not managed with Amazon Web Services Secrets Manager, then you must specify MasterUserPassword. In this case, Amazon RDS deletes the secret and uses the new password for the master user specified by MasterUserPassword.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • Can't manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.

  • Can't specify for RDS for Oracle CDB instances in the multi-tenant configuration. Use ModifyTenantDatabase instead.

  • Can't specify the parameters ManageMasterUserPassword and MultiTenant in the same operation.

", + "ModifyDBInstanceMessage$RotateMasterUserPassword": "

Specifies whether to rotate the secret managed by Amazon Web Services Secrets Manager for the master user password.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance. The secret value contains the updated password.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • You must apply the change immediately when rotating the master user password.

", + "ModifyDBInstanceMessage$MultiTenant": "

Specifies whether the to convert your DB instance from the single-tenant configuration to the multi-tenant configuration. This parameter is supported only for RDS for Oracle CDB instances.

During the conversion, RDS creates an initial tenant database and associates the DB name, master user name, character set, and national character set metadata with this database. The tags associated with the instance also propagate to the initial tenant database. You can add more tenant databases to your DB instance by using the CreateTenantDatabase operation.

The conversion to the multi-tenant configuration is permanent and irreversible, so you can't later convert back to the single-tenant configuration. When you specify this parameter, you must also specify ApplyImmediately.

", + "ModifyDBInstanceMessage$DedicatedLogVolume": "

Indicates whether the DB instance has a dedicated log volume (DLV) enabled.

", + "ModifyDBProxyRequest$RequireTLS": "

Whether Transport Layer Security (TLS) encryption is required for connections to the proxy. By enabling this setting, you can enforce encrypted TLS connections to the proxy, even if the associated database doesn't use TLS.

", + "ModifyDBProxyRequest$DebugLogging": "

Whether the proxy includes detailed information about SQL statements in its logs. This information helps you to debug issues involving SQL behavior or the performance and scalability of the proxy connections. The debug information includes the text of SQL statements that you submit through the proxy. Thus, only enable this setting when needed for debugging, and only when you have security measures in place to safeguard any sensitive information that appears in the logs.

", + "ModifyEventSubscriptionMessage$Enabled": "

Specifies whether to activate the subscription.

", + "ModifyGlobalClusterMessage$DeletionProtection": "

Specifies whether to enable deletion protection for the global database cluster. The global database cluster can't be deleted when deletion protection is enabled.

", + "ModifyGlobalClusterMessage$AllowMajorVersionUpgrade": "

Specifies whether to allow major version upgrades.

Constraints: Must be enabled if you specify a value for the EngineVersion parameter that's a different major version than the global cluster's current version.

If you upgrade the major version of a global database, the cluster and DB instance parameter groups are set to the default parameter groups for the new version. Apply any custom parameter groups after completing the upgrade.

", + "ModifyTenantDatabaseMessage$ManageMasterUserPassword": "

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

If the tenant database doesn't manage the master user password with Amazon Web Services Secrets Manager, you can turn on this management. In this case, you can't specify MasterUserPassword.

If the tenant database already manages the master user password with Amazon Web Services Secrets Manager, and you specify that the master user password is not managed with Amazon Web Services Secrets Manager, then you must specify MasterUserPassword. In this case, Amazon RDS deletes the secret and uses the new password for the master user specified by MasterUserPassword.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • Can't manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.

", + "ModifyTenantDatabaseMessage$RotateMasterUserPassword": "

Specifies whether to rotate the secret managed by Amazon Web Services Secrets Manager for the master user password.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance. The secret value contains the updated password.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • You must apply the change immediately when rotating the master user password.

", + "OptionGroupOption$SupportsOptionVersionDowngrade": "

If true, you can change the option to an earlier version of the option. This only applies to options that have different versions available.

", + "OptionGroupOption$CopyableCrossAccount": "

Indicates whether the option can be copied across Amazon Web Services accounts.

", + "OrderableDBInstanceOption$SupportsStorageAutoscaling": "

Indicates whether Amazon RDS can automatically scale storage for DB instances that use the specified DB instance class.

", + "OrderableDBInstanceOption$SupportsKerberosAuthentication": "

Indicates whether a DB instance supports Kerberos Authentication.

", + "PendingModifiedValues$MultiAZ": "

Indicates whether the Single-AZ DB instance will change to a Multi-AZ deployment.

", + "PendingModifiedValues$MultiTenant": "

Indicates whether the DB instance will change to the multi-tenant configuration (TRUE) or the single-tenant configuration (FALSE).

", + "PendingModifiedValues$IAMDatabaseAuthenticationEnabled": "

Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

", + "PendingModifiedValues$DedicatedLogVolume": "

Indicates whether the DB instance has a dedicated log volume (DLV) enabled.>

", + "RebootDBInstanceMessage$ForceFailover": "

Specifies whether the reboot is conducted through a Multi-AZ failover.

Constraint: You can't enable force failover if the instance isn't configured for Multi-AZ.

", + "RestoreDBClusterFromS3Message$StorageEncrypted": "

Specifies whether the restored DB cluster is encrypted.

", + "RestoreDBClusterFromS3Message$EnableIAMDatabaseAuthentication": "

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn't enabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide.

", + "RestoreDBClusterFromS3Message$DeletionProtection": "

Specifies whether to enable deletion protection for the DB cluster. The database can't be deleted when deletion protection is enabled. By default, deletion protection isn't enabled.

", + "RestoreDBClusterFromS3Message$CopyTagsToSnapshot": "

Specifies whether to copy all tags from the restored DB cluster to snapshots of the restored DB cluster. The default is not to copy them.

", + "RestoreDBClusterFromS3Message$ManageMasterUserPassword": "

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide and Password management with Amazon Web Services Secrets Manager in the Amazon Aurora User Guide.

Constraints:

  • Can't manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.

", + "RestoreDBClusterFromSnapshotMessage$EnableIAMDatabaseAuthentication": "

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn't enabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide or IAM database authentication for MariaDB, MySQL, and PostgreSQL in the Amazon RDS User Guide.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$DeletionProtection": "

Specifies whether to enable deletion protection for the DB cluster. The database can't be deleted when deletion protection is enabled. By default, deletion protection isn't enabled.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$CopyTagsToSnapshot": "

Specifies whether to copy all tags from the restored DB cluster to snapshots of the restored DB cluster. The default is not to copy them.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$PubliclyAccessible": "

Specifies whether the DB cluster is publicly accessible.

When the DB cluster is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB cluster's virtual private cloud (VPC). It resolves to the public IP address from outside of the DB cluster's VPC. Access to the DB cluster is ultimately controlled by the security group it uses. That public access is not permitted if the security group assigned to the DB cluster doesn't permit it.

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.

Default: The default behavior varies depending on whether DBSubnetGroupName is specified.

If DBSubnetGroupName isn't specified, and PubliclyAccessible isn't specified, the following applies:

  • If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB cluster is private.

  • If the default VPC in the target Region has an internet gateway attached to it, the DB cluster is public.

If DBSubnetGroupName is specified, and PubliclyAccessible isn't specified, the following applies:

  • If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.

  • If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$EnablePerformanceInsights": "

Specifies whether to turn on Performance Insights for the DB cluster.

", + "RestoreDBClusterToPointInTimeMessage$EnableIAMDatabaseAuthentication": "

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn't enabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide or IAM database authentication for MariaDB, MySQL, and PostgreSQL in the Amazon RDS User Guide.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterToPointInTimeMessage$DeletionProtection": "

Specifies whether to enable deletion protection for the DB cluster. The database can't be deleted when deletion protection is enabled. By default, deletion protection isn't enabled.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterToPointInTimeMessage$CopyTagsToSnapshot": "

Specifies whether to copy all tags from the restored DB cluster to snapshots of the restored DB cluster. The default is not to copy them.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterToPointInTimeMessage$PubliclyAccessible": "

Specifies whether the DB cluster is publicly accessible.

When the DB cluster is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB cluster's virtual private cloud (VPC). It resolves to the public IP address from outside of the DB cluster's VPC. Access to the DB cluster is ultimately controlled by the security group it uses. That public access is not permitted if the security group assigned to the DB cluster doesn't permit it.

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.

Default: The default behavior varies depending on whether DBSubnetGroupName is specified.

If DBSubnetGroupName isn't specified, and PubliclyAccessible isn't specified, the following applies:

  • If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB cluster is private.

  • If the default VPC in the target Region has an internet gateway attached to it, the DB cluster is public.

If DBSubnetGroupName is specified, and PubliclyAccessible isn't specified, the following applies:

  • If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.

  • If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.

Valid for: Multi-AZ DB clusters only

", + "RestoreDBClusterToPointInTimeMessage$EnablePerformanceInsights": "

Specifies whether to turn on Performance Insights for the DB cluster.

", + "RestoreDBInstanceFromDBSnapshotMessage$MultiAZ": "

Specifies whether the DB instance is a Multi-AZ deployment.

This setting doesn't apply to RDS Custom.

Constraint: You can't specify the AvailabilityZone parameter if the DB instance is a Multi-AZ deployment.

", + "RestoreDBInstanceFromDBSnapshotMessage$PubliclyAccessible": "

Specifies whether the DB instance is publicly accessible.

When the DB instance is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB instance's virtual private cloud (VPC). It resolves to the public IP address from outside of the DB instance's VPC. Access to the DB instance is ultimately controlled by the security group it uses. That public access is not permitted if the security group assigned to the DB instance doesn't permit it.

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.

For more information, see CreateDBInstance.

", + "RestoreDBInstanceFromDBSnapshotMessage$AutoMinorVersionUpgrade": "

Specifies whether to automatically apply minor version upgrades to the DB instance during the maintenance window.

If you restore an RDS Custom DB instance, you must disable this parameter.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

", + "RestoreDBInstanceFromDBSnapshotMessage$CopyTagsToSnapshot": "

Specifies whether to copy all tags from the restored DB instance to snapshots of the DB instance.

In most cases, tags aren't copied by default. However, when you restore a DB instance from a DB snapshot, RDS checks whether you specify new tags. If yes, the new tags are added to the restored DB instance. If there are no new tags, RDS looks for the tags from the source DB instance for the DB snapshot, and then adds those tags to the restored DB instance.

For more information, see Copying tags to DB instance snapshots in the Amazon RDS User Guide.

", + "RestoreDBInstanceFromDBSnapshotMessage$EnableIAMDatabaseAuthentication": "

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

This setting doesn't apply to RDS Custom.

", + "RestoreDBInstanceFromDBSnapshotMessage$UseDefaultProcessorFeatures": "

Specifies whether the DB instance class of the DB instance uses its default processor features.

This setting doesn't apply to RDS Custom.

", + "RestoreDBInstanceFromDBSnapshotMessage$DeletionProtection": "

Specifies whether to enable deletion protection for the DB instance. The database can't be deleted when deletion protection is enabled. By default, deletion protection isn't enabled. For more information, see Deleting a DB Instance.

", + "RestoreDBInstanceFromDBSnapshotMessage$EnableCustomerOwnedIp": "

Specifies whether to enable a customer-owned IP address (CoIP) for an RDS on Outposts DB instance.

A CoIP provides local or external connectivity to resources in your Outpost subnets through your on-premises network. For some use cases, a CoIP can provide lower latency for connections to the DB instance from outside of its virtual private cloud (VPC) on your local network.

This setting doesn't apply to RDS Custom.

For more information about RDS on Outposts, see Working with Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

For more information about CoIPs, see Customer-owned IP addresses in the Amazon Web Services Outposts User Guide.

", + "RestoreDBInstanceFromDBSnapshotMessage$DedicatedLogVolume": "

Specifies whether to enable a dedicated log volume (DLV) for the DB instance.

", + "RestoreDBInstanceFromDBSnapshotMessage$ManageMasterUserPassword": "

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager in the restored DB instance.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • Applies to RDS for Oracle only.

", + "RestoreDBInstanceFromS3Message$MultiAZ": "

Specifies whether the DB instance is a Multi-AZ deployment. If the DB instance is a Multi-AZ deployment, you can't set the AvailabilityZone parameter.

", + "RestoreDBInstanceFromS3Message$AutoMinorVersionUpgrade": "

Specifies whether to automatically apply minor engine upgrades to the DB instance during the maintenance window. By default, minor engine upgrades are not applied automatically.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

", + "RestoreDBInstanceFromS3Message$PubliclyAccessible": "

Specifies whether the DB instance is publicly accessible.

When the DB instance is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB instance's virtual private cloud (VPC). It resolves to the public IP address from outside of the DB instance's VPC. Access to the DB instance is ultimately controlled by the security group it uses. That public access is not permitted if the security group assigned to the DB instance doesn't permit it.

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.

For more information, see CreateDBInstance.

", + "RestoreDBInstanceFromS3Message$StorageEncrypted": "

Specifies whether the new DB instance is encrypted or not.

", + "RestoreDBInstanceFromS3Message$CopyTagsToSnapshot": "

Specifies whether to copy all tags from the DB instance to snapshots of the DB instance. By default, tags are not copied.

", + "RestoreDBInstanceFromS3Message$EnableIAMDatabaseAuthentication": "

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn't enabled.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

", + "RestoreDBInstanceFromS3Message$EnablePerformanceInsights": "

Specifies whether to enable Performance Insights for the DB instance.

For more information, see Using Amazon Performance Insights in the Amazon RDS User Guide.

", + "RestoreDBInstanceFromS3Message$UseDefaultProcessorFeatures": "

Specifies whether the DB instance class of the DB instance uses its default processor features.

", + "RestoreDBInstanceFromS3Message$DeletionProtection": "

Specifies whether to enable deletion protection for the DB instance. The database can't be deleted when deletion protection is enabled. By default, deletion protection isn't enabled. For more information, see Deleting a DB Instance.

", + "RestoreDBInstanceFromS3Message$ManageMasterUserPassword": "

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • Can't manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.

", + "RestoreDBInstanceFromS3Message$DedicatedLogVolume": "

Specifies whether to enable a dedicated log volume (DLV) for the DB instance.

", + "RestoreDBInstanceToPointInTimeMessage$MultiAZ": "

Secifies whether the DB instance is a Multi-AZ deployment.

This setting doesn't apply to RDS Custom.

Constraints:

  • You can't specify the AvailabilityZone parameter if the DB instance is a Multi-AZ deployment.

", + "RestoreDBInstanceToPointInTimeMessage$PubliclyAccessible": "

Specifies whether the DB instance is publicly accessible.

When the DB cluster is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB cluster's virtual private cloud (VPC). It resolves to the public IP address from outside of the DB cluster's VPC. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.

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.

For more information, see CreateDBInstance.

", + "RestoreDBInstanceToPointInTimeMessage$AutoMinorVersionUpgrade": "

Specifies whether minor version upgrades are applied automatically to the DB instance during the maintenance window.

This setting doesn't apply to RDS Custom.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

", + "RestoreDBInstanceToPointInTimeMessage$CopyTagsToSnapshot": "

Specifies whether to copy all tags from the restored DB instance to snapshots of the DB instance. By default, tags are not copied.

", + "RestoreDBInstanceToPointInTimeMessage$EnableIAMDatabaseAuthentication": "

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn't enabled.

This setting doesn't apply to RDS Custom.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

", + "RestoreDBInstanceToPointInTimeMessage$UseDefaultProcessorFeatures": "

Specifies whether the DB instance class of the DB instance uses its default processor features.

This setting doesn't apply to RDS Custom.

", + "RestoreDBInstanceToPointInTimeMessage$DeletionProtection": "

Specifies whether the DB instance has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection isn't enabled. For more information, see Deleting a DB Instance.

", + "RestoreDBInstanceToPointInTimeMessage$EnableCustomerOwnedIp": "

Specifies whether to enable a customer-owned IP address (CoIP) for an RDS on Outposts DB instance.

A CoIP provides local or external connectivity to resources in your Outpost subnets through your on-premises network. For some use cases, a CoIP can provide lower latency for connections to the DB instance from outside of its virtual private cloud (VPC) on your local network.

This setting doesn't apply to RDS Custom.

For more information about RDS on Outposts, see Working with Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

For more information about CoIPs, see Customer-owned IP addresses in the Amazon Web Services Outposts User Guide.

", + "RestoreDBInstanceToPointInTimeMessage$DedicatedLogVolume": "

Specifies whether to enable a dedicated log volume (DLV) for the DB instance.

", + "RestoreDBInstanceToPointInTimeMessage$ManageMasterUserPassword": "

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager in the restored DB instance.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • Applies to RDS for Oracle only.

", + "ScalingConfiguration$AutoPause": "

Indicates whether to allow or disallow automatic pause for an Aurora DB cluster in serverless DB engine mode. A DB cluster can be paused only when it's idle (it has no connections).

If a DB cluster is paused for more than seven days, the DB cluster might be backed up with a snapshot. In this case, the DB cluster is restored when there is a request to connect to it.

", + "ScalingConfigurationInfo$AutoPause": "

Indicates whether automatic pause is allowed for the Aurora DB cluster in serverless DB engine mode.

When the value is set to false for an Aurora Serverless v1 DB cluster, the DB cluster automatically resumes.

", + "StartActivityStreamRequest$ApplyImmediately": "

Specifies whether or not the database activity stream is to start as soon as possible, regardless of the maintenance window for the database.

", + "StartActivityStreamRequest$EngineNativeAuditFieldsIncluded": "

Specifies whether the database activity stream includes engine-native audit fields. This option applies to an Oracle or Microsoft SQL Server DB instance. By default, no engine-native audit fields are included.

", + "StartActivityStreamResponse$EngineNativeAuditFieldsIncluded": "

Indicates whether engine-native audit fields are included in the database activity stream.

", + "StopActivityStreamRequest$ApplyImmediately": "

Specifies whether or not the database activity stream is to stop as soon as possible, regardless of the maintenance window for the database.

", + "UpgradeTarget$SupportsParallelQuery": "

Indicates whether you can use Aurora parallel query with the target engine version.

", + "UpgradeTarget$SupportsGlobalDatabases": "

Indicates whether you can use Aurora global databases with the target engine version.

", + "UpgradeTarget$SupportsBabelfish": "

Indicates whether you can use Babelfish for Aurora PostgreSQL with the target engine version.

", + "UpgradeTarget$SupportsLimitlessDatabase": "

Indicates whether the DB engine version supports Aurora Limitless Database.

", + "UpgradeTarget$SupportsIntegrations": "

Indicates whether the DB engine version supports zero-ETL integrations with Amazon Redshift.

" + } + }, + "BucketName": { + "base": null, + "refs": { + "CreateCustomDBEngineVersionMessage$DatabaseInstallationFilesS3BucketName": "

The name of an Amazon S3 bucket that contains database installation files for your CEV. For example, a valid bucket name is my-custom-installation-files.

" + } + }, + "CACertificateIdentifiersList": { + "base": null, + "refs": { + "DBEngineVersion$SupportedCACertificateIdentifiers": "

A list of the supported CA certificate identifiers.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

" + } + }, + "CancelExportTaskMessage": { + "base": null, + "refs": {} + }, + "Certificate": { + "base": "

A CA certificate for an Amazon Web Services account.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

", + "refs": { + "CertificateList$member": null, + "ModifyCertificatesResult$Certificate": null + } + }, + "CertificateDetails": { + "base": "

The details of the DB instance’s server certificate.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

", + "refs": { + "ClusterPendingModifiedValues$CertificateDetails": null, + "DBCluster$CertificateDetails": null, + "DBInstance$CertificateDetails": "

The details of the DB instance's server certificate.

" + } + }, + "CertificateList": { + "base": null, + "refs": { + "CertificateMessage$Certificates": "

The list of Certificate objects for the Amazon Web Services account.

" + } + }, + "CertificateMessage": { + "base": "

Data returned by the DescribeCertificates action.

", + "refs": {} + }, + "CertificateNotFoundFault": { + "base": "

CertificateIdentifier doesn't refer to an existing certificate.

", + "refs": {} + }, + "CharacterSet": { + "base": "

This data type is used as a response element in the action DescribeDBEngineVersions.

", + "refs": { + "DBEngineVersion$DefaultCharacterSet": "

The default character set for new instances of this engine version, if the CharacterSetName parameter of the CreateDBInstance API isn't specified.

", + "SupportedCharacterSetsList$member": null + } + }, + "ClientPasswordAuthType": { + "base": null, + "refs": { + "UserAuthConfig$ClientPasswordAuthType": "

The type of authentication the proxy uses for connections from clients. The following values are defaults for the corresponding engines:

  • RDS for MySQL: MYSQL_CACHING_SHA2_PASSWORD

  • RDS for SQL Server: SQL_SERVER_AUTHENTICATION

  • RDS for PostgreSQL: POSTGRES_SCRAM_SHA2_256

", + "UserAuthConfigInfo$ClientPasswordAuthType": "

The type of authentication the proxy uses for connections from clients.

" + } + }, + "CloudwatchLogsExportConfiguration": { + "base": "

The configuration setting for the log types to be enabled for export to CloudWatch Logs for a specific DB instance or DB cluster.

The EnableLogTypes and DisableLogTypes arrays determine which logs will be exported (or not exported) to CloudWatch Logs. The values within these arrays depend on the DB engine being used.

For more information about exporting CloudWatch Logs for Amazon RDS DB instances, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora DB clusters, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.

", + "refs": { + "ModifyDBClusterMessage$CloudwatchLogsExportConfiguration": "

The configuration setting for the log types to be enabled for export to CloudWatch Logs for a specific DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

The following values are valid for each DB engine:

  • Aurora MySQL - audit | error | general | instance | slowquery | iam-db-auth-error

  • Aurora PostgreSQL - instance | postgresql | iam-db-auth-error

  • RDS for MySQL - error | general | slowquery | iam-db-auth-error

  • RDS for PostgreSQL - postgresql | upgrade | iam-db-auth-error

For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.

", + "ModifyDBInstanceMessage$CloudwatchLogsExportConfiguration": "

The log types to be enabled for export to CloudWatch Logs for a specific DB instance.

A change to the CloudwatchLogsExportConfiguration parameter is always applied to the DB instance immediately. Therefore, the ApplyImmediately parameter has no effect.

This setting doesn't apply to RDS Custom DB instances.

The following values are valid for each DB engine:

  • Aurora MySQL - audit | error | general | slowquery | iam-db-auth-error

  • Aurora PostgreSQL - postgresql | iam-db-auth-error

  • RDS for MySQL - error | general | slowquery | iam-db-auth-error

  • RDS for PostgreSQL - postgresql | upgrade | iam-db-auth-error

For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.

" + } + }, + "ClusterPendingModifiedValues": { + "base": "

This data type is used as a response element in the ModifyDBCluster operation and contains changes that will be applied during the next maintenance window.

", + "refs": { + "DBCluster$PendingModifiedValues": "

Information about pending changes to the DB cluster. This information is returned only when there are pending changes. Specific changes are identified by subelements.

" + } + }, + "ClusterScalabilityType": { + "base": null, + "refs": { + "CreateDBClusterMessage$ClusterScalabilityType": "

Specifies the scalability mode of the Aurora DB cluster. When set to limitless, the cluster operates as an Aurora Limitless Database. When set to standard (the default), the cluster uses normal DB instance creation.

Valid for: Aurora DB clusters only

You can't modify this setting after you create the DB cluster.

", + "DBCluster$ClusterScalabilityType": "

The scalability mode of the Aurora DB cluster. When set to limitless, the cluster operates as an Aurora Limitless Database. When set to standard (the default), the cluster uses normal DB instance creation.

" + } + }, + "ConnectionPoolConfiguration": { + "base": "

Specifies the settings that control the size and behavior of the connection pool associated with a DBProxyTargetGroup.

", + "refs": { + "ModifyDBProxyTargetGroupRequest$ConnectionPoolConfig": "

The settings that determine the size and behavior of the connection pool for the target group.

" + } + }, + "ConnectionPoolConfigurationInfo": { + "base": "

Displays the settings that control the size and behavior of the connection pool associated with a DBProxyTarget.

", + "refs": { + "DBProxyTargetGroup$ConnectionPoolConfig": "

The settings that determine the size and behavior of the connection pool for the target group.

" + } + }, + "ContextAttribute": { + "base": "

The additional attributes of RecommendedAction data type.

", + "refs": { + "ContextAttributeList$member": null + } + }, + "ContextAttributeList": { + "base": null, + "refs": { + "RecommendedAction$ContextAttributes": "

The supporting attributes to explain the recommended action.

" + } + }, + "CopyDBClusterParameterGroupMessage": { + "base": null, + "refs": {} + }, + "CopyDBClusterParameterGroupResult": { + "base": null, + "refs": {} + }, + "CopyDBClusterSnapshotMessage": { + "base": "

", + "refs": {} + }, + "CopyDBClusterSnapshotResult": { + "base": null, + "refs": {} + }, + "CopyDBParameterGroupMessage": { + "base": "

", + "refs": {} + }, + "CopyDBParameterGroupResult": { + "base": null, + "refs": {} + }, + "CopyDBSnapshotMessage": { + "base": "

", + "refs": {} + }, + "CopyDBSnapshotResult": { + "base": null, + "refs": {} + }, + "CopyOptionGroupMessage": { + "base": "

", + "refs": {} + }, + "CopyOptionGroupResult": { + "base": null, + "refs": {} + }, + "CreateBlueGreenDeploymentRequest": { + "base": null, + "refs": {} + }, + "CreateBlueGreenDeploymentResponse": { + "base": null, + "refs": {} + }, + "CreateCustomDBEngineVersionFault": { + "base": "

An error occurred while trying to create the CEV.

", + "refs": {} + }, + "CreateCustomDBEngineVersionMessage": { + "base": null, + "refs": {} + }, + "CreateDBClusterEndpointMessage": { + "base": null, + "refs": {} + }, + "CreateDBClusterMessage": { + "base": "

", + "refs": {} + }, + "CreateDBClusterParameterGroupMessage": { + "base": "

", + "refs": {} + }, + "CreateDBClusterParameterGroupResult": { + "base": null, + "refs": {} + }, + "CreateDBClusterResult": { + "base": null, + "refs": {} + }, + "CreateDBClusterSnapshotMessage": { + "base": "

", + "refs": {} + }, + "CreateDBClusterSnapshotResult": { + "base": null, + "refs": {} + }, + "CreateDBInstanceMessage": { + "base": "

", + "refs": {} + }, + "CreateDBInstanceReadReplicaMessage": { + "base": null, + "refs": {} + }, + "CreateDBInstanceReadReplicaResult": { + "base": null, + "refs": {} + }, + "CreateDBInstanceResult": { + "base": null, + "refs": {} + }, + "CreateDBParameterGroupMessage": { + "base": "

", + "refs": {} + }, + "CreateDBParameterGroupResult": { + "base": null, + "refs": {} + }, + "CreateDBProxyEndpointRequest": { + "base": null, + "refs": {} + }, + "CreateDBProxyEndpointResponse": { + "base": null, + "refs": {} + }, + "CreateDBProxyRequest": { + "base": null, + "refs": {} + }, + "CreateDBProxyResponse": { + "base": null, + "refs": {} + }, + "CreateDBSecurityGroupMessage": { + "base": "

", + "refs": {} + }, + "CreateDBSecurityGroupResult": { + "base": null, + "refs": {} + }, + "CreateDBShardGroupMessage": { + "base": null, + "refs": {} + }, + "CreateDBSnapshotMessage": { + "base": "

", + "refs": {} + }, + "CreateDBSnapshotResult": { + "base": null, + "refs": {} + }, + "CreateDBSubnetGroupMessage": { + "base": "

", + "refs": {} + }, + "CreateDBSubnetGroupResult": { + "base": null, + "refs": {} + }, + "CreateEventSubscriptionMessage": { + "base": "

", + "refs": {} + }, + "CreateEventSubscriptionResult": { + "base": null, + "refs": {} + }, + "CreateGlobalClusterMessage": { + "base": null, + "refs": {} + }, + "CreateGlobalClusterResult": { + "base": null, + "refs": {} + }, + "CreateIntegrationMessage": { + "base": null, + "refs": {} + }, + "CreateOptionGroupMessage": { + "base": "

", + "refs": {} + }, + "CreateOptionGroupResult": { + "base": null, + "refs": {} + }, + "CreateTenantDatabaseMessage": { + "base": null, + "refs": {} + }, + "CreateTenantDatabaseResult": { + "base": null, + "refs": {} + }, + "CustomAvailabilityZoneNotFoundFault": { + "base": "

CustomAvailabilityZoneId doesn't refer to an existing custom Availability Zone identifier.

", + "refs": {} + }, + "CustomDBEngineVersionAMI": { + "base": "

A value that indicates the AMI information.

", + "refs": { + "DBEngineVersion$Image": "

The EC2 image

" + } + }, + "CustomDBEngineVersionAlreadyExistsFault": { + "base": "

A CEV with the specified name already exists.

", + "refs": {} + }, + "CustomDBEngineVersionManifest": { + "base": null, + "refs": { + "CreateCustomDBEngineVersionMessage$Manifest": "

The CEV manifest, which is a JSON document that describes the installation .zip files stored in Amazon S3. Specify the name/value pairs in a file or a quoted string. RDS Custom applies the patches in the order in which they are listed.

The following JSON fields are valid:

MediaImportTemplateVersion

Version of the CEV manifest. The date is in the format YYYY-MM-DD.

databaseInstallationFileNames

Ordered list of installation files for the CEV.

opatchFileNames

Ordered list of OPatch installers used for the Oracle DB engine.

psuRuPatchFileNames

The PSU and RU patches for this CEV.

OtherPatchFileNames

The patches that are not in the list of PSU and RU patches. Amazon RDS applies these patches after applying the PSU and RU patches.

For more information, see Creating the CEV manifest in the Amazon RDS User Guide.

", + "DBEngineVersion$CustomDBEngineVersionManifest": "

JSON string that lists the installation files and parameters that RDS Custom uses to create a custom engine version (CEV). RDS Custom applies the patches in the order in which they're listed in the manifest. You can set the Oracle home, Oracle base, and UNIX/Linux user and group using the installation parameters. For more information, see JSON fields in the CEV manifest in the Amazon RDS User Guide.

" + } + }, + "CustomDBEngineVersionNotFoundFault": { + "base": "

The specified CEV was not found.

", + "refs": {} + }, + "CustomDBEngineVersionQuotaExceededFault": { + "base": "

You have exceeded your CEV quota.

", + "refs": {} + }, + "CustomEngineName": { + "base": null, + "refs": { + "CreateCustomDBEngineVersionMessage$Engine": "

The database engine. RDS Custom for Oracle supports the following values:

  • custom-oracle-ee

  • custom-oracle-ee-cdb

  • custom-oracle-se2

  • custom-oracle-se2-cdb

", + "DeleteCustomDBEngineVersionMessage$Engine": "

The database engine. RDS Custom for Oracle supports the following values:

  • custom-oracle-ee

  • custom-oracle-ee-cdb

  • custom-oracle-se2

  • custom-oracle-se2-cdb

", + "ModifyCustomDBEngineVersionMessage$Engine": "

The database engine. RDS Custom for Oracle supports the following values:

  • custom-oracle-ee

  • custom-oracle-ee-cdb

  • custom-oracle-se2

  • custom-oracle-se2-cdb

" + } + }, + "CustomEngineVersion": { + "base": null, + "refs": { + "CreateCustomDBEngineVersionMessage$EngineVersion": "

The name of your CEV. The name format is 19.customized_string. For example, a valid CEV name is 19.my_cev1. This setting is required for RDS Custom for Oracle, but optional for Amazon RDS. The combination of Engine and EngineVersion is unique per customer per Region.

", + "DeleteCustomDBEngineVersionMessage$EngineVersion": "

The custom engine version (CEV) for your DB instance. This option is required for RDS Custom, but optional for Amazon RDS. The combination of Engine and EngineVersion is unique per customer per Amazon Web Services Region.

", + "ModifyCustomDBEngineVersionMessage$EngineVersion": "

The custom engine version (CEV) that you want to modify. This option is required for RDS Custom for Oracle, but optional for Amazon RDS. The combination of Engine and EngineVersion is unique per customer per Amazon Web Services Region.

" + } + }, + "CustomEngineVersionStatus": { + "base": null, + "refs": { + "ModifyCustomDBEngineVersionMessage$Status": "

The availability status to be assigned to the CEV. Valid values are as follows:

available

You can use this CEV to create a new RDS Custom DB instance.

inactive

You can create a new RDS Custom instance by restoring a DB snapshot with this CEV. You can't patch or create new instances with this CEV.

You can change any status to any status. A typical reason to change status is to prevent the accidental use of a CEV, or to make a deprecated CEV eligible for use again. For example, you might change the status of your CEV from available to inactive, and from inactive back to available. To change the availability status of the CEV, it must not currently be in use by an RDS Custom instance, snapshot, or automated backup.

" + } + }, + "DBCluster": { + "base": "

Contains the details of an Amazon Aurora DB cluster or Multi-AZ DB cluster.

For an Amazon Aurora DB cluster, this data type is used as a response element in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster, ModifyDBCluster, PromoteReadReplicaDBCluster, RestoreDBClusterFromS3, RestoreDBClusterFromSnapshot, RestoreDBClusterToPointInTime, StartDBCluster, and StopDBCluster.

For a Multi-AZ DB cluster, this data type is used as a response element in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster, ModifyDBCluster, RebootDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ deployments with two readable standby DB instances in the Amazon RDS User Guide.

", + "refs": { + "CreateDBClusterResult$DBCluster": null, + "DBClusterList$member": null, + "DeleteDBClusterResult$DBCluster": null, + "FailoverDBClusterResult$DBCluster": null, + "ModifyDBClusterResult$DBCluster": null, + "PromoteReadReplicaDBClusterResult$DBCluster": null, + "RebootDBClusterResult$DBCluster": null, + "RestoreDBClusterFromS3Result$DBCluster": null, + "RestoreDBClusterFromSnapshotResult$DBCluster": null, + "RestoreDBClusterToPointInTimeResult$DBCluster": null, + "StartDBClusterResult$DBCluster": null, + "StopDBClusterResult$DBCluster": null + } + }, + "DBClusterAlreadyExistsFault": { + "base": "

The user already has a DB cluster with the given identifier.

", + "refs": {} + }, + "DBClusterAutomatedBackup": { + "base": "

An automated backup of a DB cluster. It consists of system backups, transaction logs, and the database cluster properties that existed at the time you deleted the source cluster.

", + "refs": { + "DBClusterAutomatedBackupList$member": null, + "DeleteDBClusterAutomatedBackupResult$DBClusterAutomatedBackup": null + } + }, + "DBClusterAutomatedBackupList": { + "base": null, + "refs": { + "DBClusterAutomatedBackupMessage$DBClusterAutomatedBackups": "

A list of DBClusterAutomatedBackup backups.

" + } + }, + "DBClusterAutomatedBackupMessage": { + "base": null, + "refs": {} + }, + "DBClusterAutomatedBackupNotFoundFault": { + "base": "

No automated backup for this DB cluster was found.

", + "refs": {} + }, + "DBClusterAutomatedBackupQuotaExceededFault": { + "base": "

The quota for retained automated backups was exceeded. This prevents you from retaining any additional automated backups. The retained automated backups quota is the same as your DB cluster quota.

", + "refs": {} + }, + "DBClusterBacktrack": { + "base": "

This data type is used as a response element in the DescribeDBClusterBacktracks action.

", + "refs": { + "DBClusterBacktrackList$member": null + } + }, + "DBClusterBacktrackList": { + "base": null, + "refs": { + "DBClusterBacktrackMessage$DBClusterBacktracks": "

Contains a list of backtracks for the user.

" + } + }, + "DBClusterBacktrackMessage": { + "base": "

Contains the result of a successful invocation of the DescribeDBClusterBacktracks action.

", + "refs": {} + }, + "DBClusterBacktrackNotFoundFault": { + "base": "

BacktrackIdentifier doesn't refer to an existing backtrack.

", + "refs": {} + }, + "DBClusterCapacityInfo": { + "base": null, + "refs": {} + }, + "DBClusterEndpoint": { + "base": "

This data type represents the information you need to connect to an Amazon Aurora DB cluster. This data type is used as a response element in the following actions:

  • CreateDBClusterEndpoint

  • DescribeDBClusterEndpoints

  • ModifyDBClusterEndpoint

  • DeleteDBClusterEndpoint

For the data structure that represents Amazon RDS DB instance endpoints, see Endpoint.

", + "refs": { + "DBClusterEndpointList$member": null + } + }, + "DBClusterEndpointAlreadyExistsFault": { + "base": "

The specified custom endpoint can't be created because it already exists.

", + "refs": {} + }, + "DBClusterEndpointList": { + "base": null, + "refs": { + "DBClusterEndpointMessage$DBClusterEndpoints": "

Contains the details of the endpoints associated with the cluster and matching any filter conditions.

" + } + }, + "DBClusterEndpointMessage": { + "base": null, + "refs": {} + }, + "DBClusterEndpointNotFoundFault": { + "base": "

The specified custom endpoint doesn't exist.

", + "refs": {} + }, + "DBClusterEndpointQuotaExceededFault": { + "base": "

The cluster already has the maximum number of custom endpoints.

", + "refs": {} + }, + "DBClusterIdentifier": { + "base": null, + "refs": { + "FailoverGlobalClusterMessage$TargetDbClusterIdentifier": "

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.

", + "SwitchoverGlobalClusterMessage$TargetDbClusterIdentifier": "

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.

" + } + }, + "DBClusterList": { + "base": null, + "refs": { + "DBClusterMessage$DBClusters": "

Contains a list of DB clusters for the user.

" + } + }, + "DBClusterMember": { + "base": "

Contains information about an instance that is part of a DB cluster.

", + "refs": { + "DBClusterMemberList$member": null + } + }, + "DBClusterMemberList": { + "base": null, + "refs": { + "DBCluster$DBClusterMembers": "

The list of DB instances that make up the DB cluster.

" + } + }, + "DBClusterMessage": { + "base": "

Contains the result of a successful invocation of the DescribeDBClusters action.

", + "refs": {} + }, + "DBClusterNotFoundFault": { + "base": "

DBClusterIdentifier doesn't refer to an existing DB cluster.

", + "refs": {} + }, + "DBClusterOptionGroupMemberships": { + "base": null, + "refs": { + "DBCluster$DBClusterOptionGroupMemberships": "

The list of option group memberships for this DB cluster.

" + } + }, + "DBClusterOptionGroupStatus": { + "base": "

Contains status information for a DB cluster option group.

", + "refs": { + "DBClusterOptionGroupMemberships$member": null + } + }, + "DBClusterParameterGroup": { + "base": "

Contains the details of an Amazon RDS DB cluster parameter group.

This data type is used as a response element in the DescribeDBClusterParameterGroups action.

", + "refs": { + "CopyDBClusterParameterGroupResult$DBClusterParameterGroup": null, + "CreateDBClusterParameterGroupResult$DBClusterParameterGroup": null, + "DBClusterParameterGroupList$member": null + } + }, + "DBClusterParameterGroupDetails": { + "base": "

Provides details about a DB cluster parameter group including the parameters in the DB cluster parameter group.

", + "refs": {} + }, + "DBClusterParameterGroupList": { + "base": null, + "refs": { + "DBClusterParameterGroupsMessage$DBClusterParameterGroups": "

A list of DB cluster parameter groups.

" + } + }, + "DBClusterParameterGroupNameMessage": { + "base": "

", + "refs": {} + }, + "DBClusterParameterGroupNotFoundFault": { + "base": "

DBClusterParameterGroupName doesn't refer to an existing DB cluster parameter group.

", + "refs": {} + }, + "DBClusterParameterGroupsMessage": { + "base": "

", + "refs": {} + }, + "DBClusterQuotaExceededFault": { + "base": "

The user attempted to create a new DB cluster and the user has already reached the maximum allowed DB cluster quota.

", + "refs": {} + }, + "DBClusterRole": { + "base": "

Describes an Amazon Web Services Identity and Access Management (IAM) role that is associated with a DB cluster.

", + "refs": { + "DBClusterRoles$member": null + } + }, + "DBClusterRoleAlreadyExistsFault": { + "base": "

The specified IAM role Amazon Resource Name (ARN) is already associated with the specified DB cluster.

", + "refs": {} + }, + "DBClusterRoleNotFoundFault": { + "base": "

The specified IAM role Amazon Resource Name (ARN) isn't associated with the specified DB cluster.

", + "refs": {} + }, + "DBClusterRoleQuotaExceededFault": { + "base": "

You have exceeded the maximum number of IAM roles that can be associated with the specified DB cluster.

", + "refs": {} + }, + "DBClusterRoles": { + "base": null, + "refs": { + "DBCluster$AssociatedRoles": "

A list of the Amazon Web Services Identity and Access Management (IAM) roles that are associated with the DB cluster. IAM roles that are associated with a DB cluster grant permission for the DB cluster to access other Amazon Web Services on your behalf.

" + } + }, + "DBClusterSnapshot": { + "base": "

Contains the details for an Amazon RDS DB cluster snapshot

This data type is used as a response element in the DescribeDBClusterSnapshots action.

", + "refs": { + "CopyDBClusterSnapshotResult$DBClusterSnapshot": null, + "CreateDBClusterSnapshotResult$DBClusterSnapshot": null, + "DBClusterSnapshotList$member": null, + "DeleteDBClusterSnapshotResult$DBClusterSnapshot": null + } + }, + "DBClusterSnapshotAlreadyExistsFault": { + "base": "

The user already has a DB cluster snapshot with the given identifier.

", + "refs": {} + }, + "DBClusterSnapshotAttribute": { + "base": "

Contains the name and values of a manual DB cluster snapshot attribute.

Manual DB cluster snapshot attributes are used to authorize other Amazon Web Services accounts to restore a manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

", + "refs": { + "DBClusterSnapshotAttributeList$member": null + } + }, + "DBClusterSnapshotAttributeList": { + "base": null, + "refs": { + "DBClusterSnapshotAttributesResult$DBClusterSnapshotAttributes": "

The list of attributes and values for the manual DB cluster snapshot.

" + } + }, + "DBClusterSnapshotAttributesResult": { + "base": "

Contains the results of a successful call to the DescribeDBClusterSnapshotAttributes API action.

Manual DB cluster snapshot attributes are used to authorize other Amazon Web Services accounts to copy or restore a manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

", + "refs": { + "DescribeDBClusterSnapshotAttributesResult$DBClusterSnapshotAttributesResult": null, + "ModifyDBClusterSnapshotAttributeResult$DBClusterSnapshotAttributesResult": null + } + }, + "DBClusterSnapshotList": { + "base": null, + "refs": { + "DBClusterSnapshotMessage$DBClusterSnapshots": "

Provides a list of DB cluster snapshots for the user.

" + } + }, + "DBClusterSnapshotMessage": { + "base": "

Provides a list of DB cluster snapshots for the user as the result of a call to the DescribeDBClusterSnapshots action.

", + "refs": {} + }, + "DBClusterSnapshotNotFoundFault": { + "base": "

DBClusterSnapshotIdentifier doesn't refer to an existing DB cluster snapshot.

", + "refs": {} + }, + "DBClusterStatusInfo": { + "base": "

Reserved for future use.

", + "refs": { + "DBClusterStatusInfoList$member": null + } + }, + "DBClusterStatusInfoList": { + "base": null, + "refs": { + "DBCluster$StatusInfos": "

Reserved for future use.

" + } + }, + "DBEngineVersion": { + "base": "

This data type is used as a response element in the action DescribeDBEngineVersions.

", + "refs": { + "DBEngineVersionList$member": null + } + }, + "DBEngineVersionList": { + "base": null, + "refs": { + "DBEngineVersionMessage$DBEngineVersions": "

A list of DBEngineVersion elements.

" + } + }, + "DBEngineVersionMessage": { + "base": "

Contains the result of a successful invocation of the DescribeDBEngineVersions action.

", + "refs": {} + }, + "DBInstance": { + "base": "

Contains the details of an Amazon RDS DB instance.

This data type is used as a response element in the operations CreateDBInstance, CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance, PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3, RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.

", + "refs": { + "CreateDBInstanceReadReplicaResult$DBInstance": null, + "CreateDBInstanceResult$DBInstance": null, + "DBInstanceList$member": null, + "DeleteDBInstanceResult$DBInstance": null, + "ModifyDBInstanceResult$DBInstance": null, + "PromoteReadReplicaResult$DBInstance": null, + "RebootDBInstanceResult$DBInstance": null, + "RestoreDBInstanceFromDBSnapshotResult$DBInstance": null, + "RestoreDBInstanceFromS3Result$DBInstance": null, + "RestoreDBInstanceToPointInTimeResult$DBInstance": null, + "StartDBInstanceResult$DBInstance": null, + "StopDBInstanceResult$DBInstance": null, + "SwitchoverReadReplicaResult$DBInstance": null + } + }, + "DBInstanceAlreadyExistsFault": { + "base": "

The user already has a DB instance with the given identifier.

", + "refs": {} + }, + "DBInstanceAutomatedBackup": { + "base": "

An automated backup of a DB instance. It consists of system backups, transaction logs, and the database instance properties that existed at the time you deleted the source instance.

", + "refs": { + "DBInstanceAutomatedBackupList$member": null, + "DeleteDBInstanceAutomatedBackupResult$DBInstanceAutomatedBackup": null, + "StartDBInstanceAutomatedBackupsReplicationResult$DBInstanceAutomatedBackup": null, + "StopDBInstanceAutomatedBackupsReplicationResult$DBInstanceAutomatedBackup": null + } + }, + "DBInstanceAutomatedBackupList": { + "base": null, + "refs": { + "DBInstanceAutomatedBackupMessage$DBInstanceAutomatedBackups": "

A list of DBInstanceAutomatedBackup instances.

" + } + }, + "DBInstanceAutomatedBackupMessage": { + "base": "

Contains the result of a successful invocation of the DescribeDBInstanceAutomatedBackups action.

", + "refs": {} + }, + "DBInstanceAutomatedBackupNotFoundFault": { + "base": "

No automated backup for this DB instance was found.

", + "refs": {} + }, + "DBInstanceAutomatedBackupQuotaExceededFault": { + "base": "

The quota for retained automated backups was exceeded. This prevents you from retaining any additional automated backups. The retained automated backups quota is the same as your DB instance quota.

", + "refs": {} + }, + "DBInstanceAutomatedBackupsReplication": { + "base": "

Automated backups of a DB instance replicated to another Amazon Web Services Region. They consist of system backups, transaction logs, and database instance properties.

", + "refs": { + "DBInstanceAutomatedBackupsReplicationList$member": null + } + }, + "DBInstanceAutomatedBackupsReplicationList": { + "base": null, + "refs": { + "DBInstance$DBInstanceAutomatedBackupsReplications": "

The list of replicated automated backups associated with the DB instance.

", + "DBInstanceAutomatedBackup$DBInstanceAutomatedBackupsReplications": "

The list of replications to different Amazon Web Services Regions associated with the automated backup.

" + } + }, + "DBInstanceList": { + "base": null, + "refs": { + "DBInstanceMessage$DBInstances": "

A list of DBInstance instances.

" + } + }, + "DBInstanceMessage": { + "base": "

Contains the result of a successful invocation of the DescribeDBInstances action.

", + "refs": {} + }, + "DBInstanceNotFoundFault": { + "base": "

DBInstanceIdentifier doesn't refer to an existing DB instance.

", + "refs": {} + }, + "DBInstanceNotReadyFault": { + "base": "

An attempt to download or examine log files didn't succeed because an Aurora Serverless v2 instance was paused.

", + "refs": {} + }, + "DBInstanceRole": { + "base": "

Information about an Amazon Web Services Identity and Access Management (IAM) role that is associated with a DB instance.

", + "refs": { + "DBInstanceRoles$member": null + } + }, + "DBInstanceRoleAlreadyExistsFault": { + "base": "

The specified RoleArn or FeatureName value is already associated with the DB instance.

", + "refs": {} + }, + "DBInstanceRoleNotFoundFault": { + "base": "

The specified RoleArn value doesn't match the specified feature for the DB instance.

", + "refs": {} + }, + "DBInstanceRoleQuotaExceededFault": { + "base": "

You can't associate any more Amazon Web Services Identity and Access Management (IAM) roles with the DB instance because the quota has been reached.

", + "refs": {} + }, + "DBInstanceRoles": { + "base": null, + "refs": { + "DBInstance$AssociatedRoles": "

The Amazon Web Services Identity and Access Management (IAM) roles associated with the DB instance.

" + } + }, + "DBInstanceStatusInfo": { + "base": "

Provides a list of status information for a DB instance.

", + "refs": { + "DBInstanceStatusInfoList$member": null + } + }, + "DBInstanceStatusInfoList": { + "base": null, + "refs": { + "DBInstance$StatusInfos": "

The status of a read replica. If the DB instance isn't a read replica, the value is blank.

" + } + }, + "DBLogFileNotFoundFault": { + "base": "

LogFileName doesn't refer to an existing DB log file.

", + "refs": {} + }, + "DBMajorEngineVersion": { + "base": "

This data type is used as a response element in the operation DescribeDBMajorEngineVersions.

", + "refs": { + "DBMajorEngineVersionsList$member": null + } + }, + "DBMajorEngineVersionsList": { + "base": null, + "refs": { + "DescribeDBMajorEngineVersionsResponse$DBMajorEngineVersions": "

A list of DBMajorEngineVersion elements.

" + } + }, + "DBParameterGroup": { + "base": "

Contains the details of an Amazon RDS DB parameter group.

This data type is used as a response element in the DescribeDBParameterGroups action.

", + "refs": { + "CopyDBParameterGroupResult$DBParameterGroup": null, + "CreateDBParameterGroupResult$DBParameterGroup": null, + "DBParameterGroupList$member": null + } + }, + "DBParameterGroupAlreadyExistsFault": { + "base": "

A DB parameter group with the same name exists.

", + "refs": {} + }, + "DBParameterGroupDetails": { + "base": "

Contains the result of a successful invocation of the DescribeDBParameters action.

", + "refs": {} + }, + "DBParameterGroupList": { + "base": null, + "refs": { + "DBParameterGroupsMessage$DBParameterGroups": "

A list of DBParameterGroup instances.

" + } + }, + "DBParameterGroupNameMessage": { + "base": "

Contains the result of a successful invocation of the ModifyDBParameterGroup or ResetDBParameterGroup operation.

", + "refs": {} + }, + "DBParameterGroupNotFoundFault": { + "base": "

DBParameterGroupName doesn't refer to an existing DB parameter group.

", + "refs": {} + }, + "DBParameterGroupQuotaExceededFault": { + "base": "

The request would result in the user exceeding the allowed number of DB parameter groups.

", + "refs": {} + }, + "DBParameterGroupStatus": { + "base": "

The status of the DB parameter group.

This data type is used as a response element in the following actions:

  • CreateDBInstance

  • CreateDBInstanceReadReplica

  • DeleteDBInstance

  • ModifyDBInstance

  • RebootDBInstance

  • RestoreDBInstanceFromDBSnapshot

", + "refs": { + "DBParameterGroupStatusList$member": null + } + }, + "DBParameterGroupStatusList": { + "base": null, + "refs": { + "DBInstance$DBParameterGroups": "

The list of DB parameter groups applied to this DB instance.

" + } + }, + "DBParameterGroupsMessage": { + "base": "

Contains the result of a successful invocation of the DescribeDBParameterGroups action.

", + "refs": {} + }, + "DBProxy": { + "base": "

The data structure representing a proxy managed by the RDS Proxy.

This data type is used as a response element in the DescribeDBProxies action.

", + "refs": { + "CreateDBProxyResponse$DBProxy": "

The DBProxy structure corresponding to the new proxy.

", + "DBProxyList$member": null, + "DeleteDBProxyResponse$DBProxy": "

The data structure representing the details of the DB proxy that you delete.

", + "ModifyDBProxyResponse$DBProxy": "

The DBProxy object representing the new settings for the proxy.

" + } + }, + "DBProxyAlreadyExistsFault": { + "base": "

The specified proxy name must be unique for all proxies owned by your Amazon Web Services account in the specified Amazon Web Services Region.

", + "refs": {} + }, + "DBProxyEndpoint": { + "base": "

The data structure representing an endpoint associated with a DB proxy. RDS automatically creates one endpoint for each DB proxy. For Aurora DB clusters, you can associate additional endpoints with the same DB proxy. These endpoints can be read/write or read-only. They can also reside in different VPCs than the associated DB proxy.

This data type is used as a response element in the DescribeDBProxyEndpoints operation.

", + "refs": { + "CreateDBProxyEndpointResponse$DBProxyEndpoint": "

The DBProxyEndpoint object that is created by the API operation. The DB proxy endpoint that you create might provide capabilities such as read/write or read-only operations, or using a different VPC than the proxy's default VPC.

", + "DBProxyEndpointList$member": null, + "DeleteDBProxyEndpointResponse$DBProxyEndpoint": "

The data structure representing the details of the DB proxy endpoint that you delete.

", + "ModifyDBProxyEndpointResponse$DBProxyEndpoint": "

The DBProxyEndpoint object representing the new settings for the DB proxy endpoint.

" + } + }, + "DBProxyEndpointAlreadyExistsFault": { + "base": "

The specified DB proxy endpoint name must be unique for all DB proxy endpoints owned by your Amazon Web Services account in the specified Amazon Web Services Region.

", + "refs": {} + }, + "DBProxyEndpointList": { + "base": null, + "refs": { + "DescribeDBProxyEndpointsResponse$DBProxyEndpoints": "

The list of ProxyEndpoint objects returned by the API operation.

" + } + }, + "DBProxyEndpointName": { + "base": null, + "refs": { + "CreateDBProxyEndpointRequest$DBProxyEndpointName": "

The name of the DB proxy endpoint to create.

", + "DeleteDBProxyEndpointRequest$DBProxyEndpointName": "

The name of the DB proxy endpoint to delete.

", + "DescribeDBProxyEndpointsRequest$DBProxyEndpointName": "

The name of a DB proxy endpoint to describe. If you omit this parameter, the output includes information about all DB proxy endpoints associated with the specified proxy.

", + "ModifyDBProxyEndpointRequest$DBProxyEndpointName": "

The name of the DB proxy sociated with the DB proxy endpoint that you want to modify.

", + "ModifyDBProxyEndpointRequest$NewDBProxyEndpointName": "

The new identifier for the DBProxyEndpoint. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.

" + } + }, + "DBProxyEndpointNotFoundFault": { + "base": "

The DB proxy endpoint doesn't exist.

", + "refs": {} + }, + "DBProxyEndpointQuotaExceededFault": { + "base": "

The DB proxy already has the maximum number of endpoints.

", + "refs": {} + }, + "DBProxyEndpointStatus": { + "base": null, + "refs": { + "DBProxyEndpoint$Status": "

The current status of this DB proxy endpoint. A status of available means the endpoint is ready to handle requests. Other values indicate that you must wait for the endpoint to be ready, or take some action to resolve an issue.

" + } + }, + "DBProxyEndpointTargetRole": { + "base": null, + "refs": { + "CreateDBProxyEndpointRequest$TargetRole": "

The role of the DB proxy endpoint. The role determines whether the endpoint can be used for read/write or only read operations. The default is READ_WRITE. The only role that proxies for RDS for Microsoft SQL Server support is READ_WRITE.

", + "DBProxyEndpoint$TargetRole": "

A value that indicates whether the DB proxy endpoint can be used for read/write or read-only operations.

" + } + }, + "DBProxyList": { + "base": null, + "refs": { + "DescribeDBProxiesResponse$DBProxies": "

A return value representing an arbitrary number of DBProxy data structures.

" + } + }, + "DBProxyName": { + "base": null, + "refs": { + "CreateDBProxyEndpointRequest$DBProxyName": "

The name of the DB proxy associated with the DB proxy endpoint that you create.

", + "CreateDBProxyRequest$DBProxyName": "

The identifier for the proxy. This name must be unique for all proxies owned by your Amazon Web Services account in the specified Amazon Web Services Region. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.

", + "DeleteDBProxyRequest$DBProxyName": "

The name of the DB proxy to delete.

", + "DeregisterDBProxyTargetsRequest$DBProxyName": "

The identifier of the DBProxy that is associated with the DBProxyTargetGroup.

", + "DescribeDBProxiesRequest$DBProxyName": "

The name of the DB proxy. If you omit this parameter, the output includes information about all DB proxies owned by your Amazon Web Services account ID.

", + "DescribeDBProxyEndpointsRequest$DBProxyName": "

The name of the DB proxy whose endpoints you want to describe. If you omit this parameter, the output includes information about all DB proxy endpoints associated with all your DB proxies.

", + "DescribeDBProxyTargetGroupsRequest$DBProxyName": "

The identifier of the DBProxy associated with the target group.

", + "DescribeDBProxyTargetsRequest$DBProxyName": "

The identifier of the DBProxyTarget to describe.

", + "ModifyDBProxyRequest$DBProxyName": "

The identifier for the DBProxy to modify.

", + "ModifyDBProxyRequest$NewDBProxyName": "

The new identifier for the DBProxy. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.

", + "ModifyDBProxyTargetGroupRequest$DBProxyName": "

The name of the proxy.

", + "RegisterDBProxyTargetsRequest$DBProxyName": "

The identifier of the DBProxy that is associated with the DBProxyTargetGroup.

" + } + }, + "DBProxyNotFoundFault": { + "base": "

The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

", + "refs": {} + }, + "DBProxyQuotaExceededFault": { + "base": "

Your Amazon Web Services account already has the maximum number of proxies in the specified Amazon Web Services Region.

", + "refs": {} + }, + "DBProxyStatus": { + "base": null, + "refs": { + "DBProxy$Status": "

The current status of this proxy. A status of available means the proxy is ready to handle requests. Other values indicate that you must wait for the proxy to be ready, or take some action to resolve an issue.

" + } + }, + "DBProxyTarget": { + "base": "

Contains the details for an RDS Proxy target. It represents an RDS DB instance or Aurora DB cluster that the proxy can connect to. One or more targets are associated with an RDS Proxy target group.

This data type is used as a response element in the DescribeDBProxyTargets action.

", + "refs": { + "TargetList$member": null + } + }, + "DBProxyTargetAlreadyRegisteredFault": { + "base": "

The proxy is already associated with the specified RDS DB instance or Aurora DB cluster.

", + "refs": {} + }, + "DBProxyTargetGroup": { + "base": "

Represents a set of RDS DB instances, Aurora DB clusters, or both that a proxy can connect to. Currently, each target group is associated with exactly one RDS DB instance or Aurora DB cluster.

This data type is used as a response element in the DescribeDBProxyTargetGroups action.

", + "refs": { + "ModifyDBProxyTargetGroupResponse$DBProxyTargetGroup": "

The settings of the modified DBProxyTarget.

", + "TargetGroupList$member": null + } + }, + "DBProxyTargetGroupName": { + "base": null, + "refs": { + "DeregisterDBProxyTargetsRequest$TargetGroupName": "

The identifier of the DBProxyTargetGroup.

", + "DescribeDBProxyTargetGroupsRequest$TargetGroupName": "

The identifier of the DBProxyTargetGroup to describe.

", + "DescribeDBProxyTargetsRequest$TargetGroupName": "

The identifier of the DBProxyTargetGroup to describe.

", + "ModifyDBProxyTargetGroupRequest$TargetGroupName": "

The name of the target group to modify.

", + "RegisterDBProxyTargetsRequest$TargetGroupName": "

The identifier of the DBProxyTargetGroup.

" + } + }, + "DBProxyTargetGroupNotFoundFault": { + "base": "

The specified target group isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

", + "refs": {} + }, + "DBProxyTargetNotFoundFault": { + "base": "

The specified RDS DB instance or Aurora DB cluster isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

", + "refs": {} + }, + "DBRecommendation": { + "base": "

The recommendation for your DB instances, DB clusters, and DB parameter groups.

", + "refs": { + "DBRecommendationList$member": null, + "DBRecommendationMessage$DBRecommendation": null + } + }, + "DBRecommendationList": { + "base": null, + "refs": { + "DBRecommendationsMessage$DBRecommendations": "

A list of recommendations which is returned from DescribeDBRecommendations API request.

" + } + }, + "DBRecommendationMessage": { + "base": null, + "refs": {} + }, + "DBRecommendationsMessage": { + "base": null, + "refs": {} + }, + "DBSecurityGroup": { + "base": "

Contains the details for an Amazon RDS DB security group.

This data type is used as a response element in the DescribeDBSecurityGroups action.

", + "refs": { + "AuthorizeDBSecurityGroupIngressResult$DBSecurityGroup": null, + "CreateDBSecurityGroupResult$DBSecurityGroup": null, + "DBSecurityGroups$member": null, + "RevokeDBSecurityGroupIngressResult$DBSecurityGroup": null + } + }, + "DBSecurityGroupAlreadyExistsFault": { + "base": "

A DB security group with the name specified in DBSecurityGroupName already exists.

", + "refs": {} + }, + "DBSecurityGroupMembership": { + "base": "

This data type is used as a response element in the following actions:

  • ModifyDBInstance

  • RebootDBInstance

  • RestoreDBInstanceFromDBSnapshot

  • RestoreDBInstanceToPointInTime

", + "refs": { + "DBSecurityGroupMembershipList$member": null + } + }, + "DBSecurityGroupMembershipList": { + "base": null, + "refs": { + "DBInstance$DBSecurityGroups": "

A list of DB security group elements containing DBSecurityGroup.Name and DBSecurityGroup.Status subelements.

", + "Option$DBSecurityGroupMemberships": "

If the option requires access to a port, then this DB security group allows access to the port.

" + } + }, + "DBSecurityGroupMessage": { + "base": "

Contains the result of a successful invocation of the DescribeDBSecurityGroups action.

", + "refs": {} + }, + "DBSecurityGroupNameList": { + "base": null, + "refs": { + "CreateDBInstanceMessage$DBSecurityGroups": "

A list of DB security groups to associate with this DB instance.

This setting applies to the legacy EC2-Classic platform, which is no longer used to create new DB instances. Use the VpcSecurityGroupIds setting instead.

", + "ModifyDBInstanceMessage$DBSecurityGroups": "

A list of DB security groups to authorize on this DB instance. Changing this setting doesn't result in an outage and the change is asynchronously applied as soon as possible.

This setting doesn't apply to RDS Custom DB instances.

Constraints:

  • If supplied, must match existing DB security groups.

", + "OptionConfiguration$DBSecurityGroupMemberships": "

A list of DB security groups used for this option.

", + "RestoreDBInstanceFromS3Message$DBSecurityGroups": "

A list of DB security groups to associate with this DB instance.

Default: The default DB security group for the database engine.

" + } + }, + "DBSecurityGroupNotFoundFault": { + "base": "

DBSecurityGroupName doesn't refer to an existing DB security group.

", + "refs": {} + }, + "DBSecurityGroupNotSupportedFault": { + "base": "

A DB security group isn't allowed for this action.

", + "refs": {} + }, + "DBSecurityGroupQuotaExceededFault": { + "base": "

The request would result in the user exceeding the allowed number of DB security groups.

", + "refs": {} + }, + "DBSecurityGroups": { + "base": null, + "refs": { + "DBSecurityGroupMessage$DBSecurityGroups": "

A list of DBSecurityGroup instances.

" + } + }, + "DBShardGroup": { + "base": "

Contains the details for an Amazon RDS DB shard group.

", + "refs": { + "DBShardGroupsList$member": null + } + }, + "DBShardGroupIdentifier": { + "base": null, + "refs": { + "DBShardGroup$DBShardGroupIdentifier": "

The name of the DB shard group.

", + "DeleteDBShardGroupMessage$DBShardGroupIdentifier": "

The name of the DB shard group to delete.

", + "DescribeDBShardGroupsMessage$DBShardGroupIdentifier": "

The user-supplied DB shard group identifier. If this parameter is specified, information for only the specific DB shard group is returned. This parameter isn't case-sensitive.

Constraints:

  • If supplied, must match an existing DB shard group identifier.

", + "ModifyDBShardGroupMessage$DBShardGroupIdentifier": "

The name of the DB shard group to modify.

", + "RebootDBShardGroupMessage$DBShardGroupIdentifier": "

The name of the DB shard group to reboot.

" + } + }, + "DBShardGroupsList": { + "base": null, + "refs": { + "DescribeDBShardGroupsResponse$DBShardGroups": "

Contains a list of DB shard groups for the user.

" + } + }, + "DBSnapshot": { + "base": "

Contains the details of an Amazon RDS DB snapshot.

This data type is used as a response element in the DescribeDBSnapshots action.

", + "refs": { + "CopyDBSnapshotResult$DBSnapshot": null, + "CreateDBSnapshotResult$DBSnapshot": null, + "DBSnapshotList$member": null, + "DeleteDBSnapshotResult$DBSnapshot": null, + "ModifyDBSnapshotResult$DBSnapshot": null + } + }, + "DBSnapshotAlreadyExistsFault": { + "base": "

DBSnapshotIdentifier is already used by an existing snapshot.

", + "refs": {} + }, + "DBSnapshotAttribute": { + "base": "

Contains the name and values of a manual DB snapshot attribute

Manual DB snapshot attributes are used to authorize other Amazon Web Services accounts to restore a manual DB snapshot. For more information, see the ModifyDBSnapshotAttribute API.

", + "refs": { + "DBSnapshotAttributeList$member": null + } + }, + "DBSnapshotAttributeList": { + "base": null, + "refs": { + "DBSnapshotAttributesResult$DBSnapshotAttributes": "

The list of attributes and values for the manual DB snapshot.

" + } + }, + "DBSnapshotAttributesResult": { + "base": "

Contains the results of a successful call to the DescribeDBSnapshotAttributes API action.

Manual DB snapshot attributes are used to authorize other Amazon Web Services accounts to copy or restore a manual DB snapshot. For more information, see the ModifyDBSnapshotAttribute API action.

", + "refs": { + "DescribeDBSnapshotAttributesResult$DBSnapshotAttributesResult": null, + "ModifyDBSnapshotAttributeResult$DBSnapshotAttributesResult": null + } + }, + "DBSnapshotList": { + "base": null, + "refs": { + "DBSnapshotMessage$DBSnapshots": "

A list of DBSnapshot instances.

" + } + }, + "DBSnapshotMessage": { + "base": "

Contains the result of a successful invocation of the DescribeDBSnapshots action.

", + "refs": {} + }, + "DBSnapshotNotFoundFault": { + "base": "

DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

", + "refs": {} + }, + "DBSnapshotTenantDatabase": { + "base": "

Contains the details of a tenant database in a snapshot of a DB instance.

", + "refs": { + "DBSnapshotTenantDatabasesList$member": null + } + }, + "DBSnapshotTenantDatabaseNotFoundFault": { + "base": "

The specified snapshot tenant database wasn't found.

", + "refs": {} + }, + "DBSnapshotTenantDatabasesList": { + "base": null, + "refs": { + "DBSnapshotTenantDatabasesMessage$DBSnapshotTenantDatabases": "

A list of DB snapshot tenant databases.

" + } + }, + "DBSnapshotTenantDatabasesMessage": { + "base": null, + "refs": {} + }, + "DBSubnetGroup": { + "base": "

Contains the details of an Amazon RDS DB subnet group.

This data type is used as a response element in the DescribeDBSubnetGroups action.

", + "refs": { + "CreateDBSubnetGroupResult$DBSubnetGroup": null, + "DBInstance$DBSubnetGroup": "

Information about the subnet group associated with the DB instance, including the name, description, and subnets in the subnet group.

", + "DBSubnetGroups$member": null, + "ModifyDBSubnetGroupResult$DBSubnetGroup": null + } + }, + "DBSubnetGroupAlreadyExistsFault": { + "base": "

DBSubnetGroupName is already used by an existing DB subnet group.

", + "refs": {} + }, + "DBSubnetGroupDoesNotCoverEnoughAZs": { + "base": "

Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

", + "refs": {} + }, + "DBSubnetGroupMessage": { + "base": "

Contains the result of a successful invocation of the DescribeDBSubnetGroups action.

", + "refs": {} + }, + "DBSubnetGroupNotAllowedFault": { + "base": "

The DBSubnetGroup shouldn't be specified while creating read replicas that lie in the same region as the source instance.

", + "refs": {} + }, + "DBSubnetGroupNotFoundFault": { + "base": "

DBSubnetGroupName doesn't refer to an existing DB subnet group.

", + "refs": {} + }, + "DBSubnetGroupQuotaExceededFault": { + "base": "

The request would result in the user exceeding the allowed number of DB subnet groups.

", + "refs": {} + }, + "DBSubnetGroups": { + "base": null, + "refs": { + "DBSubnetGroupMessage$DBSubnetGroups": "

A list of DBSubnetGroup instances.

" + } + }, + "DBSubnetQuotaExceededFault": { + "base": "

The request would result in the user exceeding the allowed number of subnets in a DB subnet groups.

", + "refs": {} + }, + "DBUpgradeDependencyFailureFault": { + "base": "

The DB upgrade failed because a resource the DB depends on can't be modified.

", + "refs": {} + }, + "DataFilter": { + "base": null, + "refs": { + "CreateIntegrationMessage$DataFilter": "

Data filtering options for the integration. For more information, see Data filtering for Aurora zero-ETL integrations with Amazon Redshift or Data filtering for Amazon RDS zero-ETL integrations with Amazon Redshift.

", + "Integration$DataFilter": "

Data filters for the integration. These filters determine which tables from the source database are sent to the target Amazon Redshift data warehouse.

", + "ModifyIntegrationMessage$DataFilter": "

A new data filter for the integration. For more information, see Data filtering for Aurora zero-ETL integrations with Amazon Redshift or Data filtering for Amazon RDS zero-ETL integrations with Amazon Redshift.

" + } + }, + "DatabaseArn": { + "base": null, + "refs": { + "BlueGreenDeployment$Source": "

The source database for the blue/green deployment.

Before switchover, the source database is the production database in the blue environment.

", + "BlueGreenDeployment$Target": "

The target database for the blue/green deployment.

Before switchover, the target database is the clone database in the green environment.

", + "CreateBlueGreenDeploymentRequest$Source": "

The Amazon Resource Name (ARN) of the source production database.

Specify the database that you want to clone. The blue/green deployment creates this database in the green environment. You can make updates to the database in the green environment, such as an engine version upgrade. When you are ready, you can switch the database in the green environment to be the production database.

", + "SwitchoverDetail$SourceMember": "

The Amazon Resource Name (ARN) of a resource in the blue environment.

", + "SwitchoverDetail$TargetMember": "

The Amazon Resource Name (ARN) of a resource in the green environment.

" + } + }, + "DeleteBlueGreenDeploymentRequest": { + "base": null, + "refs": {} + }, + "DeleteBlueGreenDeploymentResponse": { + "base": null, + "refs": {} + }, + "DeleteCustomDBEngineVersionMessage": { + "base": null, + "refs": {} + }, + "DeleteDBClusterAutomatedBackupMessage": { + "base": null, + "refs": {} + }, + "DeleteDBClusterAutomatedBackupResult": { + "base": null, + "refs": {} + }, + "DeleteDBClusterEndpointMessage": { + "base": null, + "refs": {} + }, + "DeleteDBClusterMessage": { + "base": "

", + "refs": {} + }, + "DeleteDBClusterParameterGroupMessage": { + "base": "

", + "refs": {} + }, + "DeleteDBClusterResult": { + "base": null, + "refs": {} + }, + "DeleteDBClusterSnapshotMessage": { + "base": "

", + "refs": {} + }, + "DeleteDBClusterSnapshotResult": { + "base": null, + "refs": {} + }, + "DeleteDBInstanceAutomatedBackupMessage": { + "base": "

Parameter input for the DeleteDBInstanceAutomatedBackup operation.

", + "refs": {} + }, + "DeleteDBInstanceAutomatedBackupResult": { + "base": null, + "refs": {} + }, + "DeleteDBInstanceMessage": { + "base": "

", + "refs": {} + }, + "DeleteDBInstanceResult": { + "base": null, + "refs": {} + }, + "DeleteDBParameterGroupMessage": { + "base": "

", + "refs": {} + }, + "DeleteDBProxyEndpointRequest": { + "base": null, + "refs": {} + }, + "DeleteDBProxyEndpointResponse": { + "base": null, + "refs": {} + }, + "DeleteDBProxyRequest": { + "base": null, + "refs": {} + }, + "DeleteDBProxyResponse": { + "base": null, + "refs": {} + }, + "DeleteDBSecurityGroupMessage": { + "base": "

", + "refs": {} + }, + "DeleteDBShardGroupMessage": { + "base": null, + "refs": {} + }, + "DeleteDBSnapshotMessage": { + "base": "

", + "refs": {} + }, + "DeleteDBSnapshotResult": { + "base": null, + "refs": {} + }, + "DeleteDBSubnetGroupMessage": { + "base": "

", + "refs": {} + }, + "DeleteEventSubscriptionMessage": { + "base": "

", + "refs": {} + }, + "DeleteEventSubscriptionResult": { + "base": null, + "refs": {} + }, + "DeleteGlobalClusterMessage": { + "base": null, + "refs": {} + }, + "DeleteGlobalClusterResult": { + "base": null, + "refs": {} + }, + "DeleteIntegrationMessage": { + "base": null, + "refs": {} + }, + "DeleteOptionGroupMessage": { + "base": "

", + "refs": {} + }, + "DeleteTenantDatabaseMessage": { + "base": null, + "refs": {} + }, + "DeleteTenantDatabaseResult": { + "base": null, + "refs": {} + }, + "DeregisterDBProxyTargetsRequest": { + "base": null, + "refs": {} + }, + "DeregisterDBProxyTargetsResponse": { + "base": null, + "refs": {} + }, + "DescribeAccountAttributesMessage": { + "base": "

", + "refs": {} + }, + "DescribeBlueGreenDeploymentsRequest": { + "base": null, + "refs": {} + }, + "DescribeBlueGreenDeploymentsResponse": { + "base": null, + "refs": {} + }, + "DescribeCertificatesMessage": { + "base": "

", + "refs": {} + }, + "DescribeDBClusterAutomatedBackupsMessage": { + "base": null, + "refs": {} + }, + "DescribeDBClusterBacktracksMessage": { + "base": "

", + "refs": {} + }, + "DescribeDBClusterEndpointsMessage": { + "base": null, + "refs": {} + }, + "DescribeDBClusterParameterGroupsMessage": { + "base": "

", + "refs": {} + }, + "DescribeDBClusterParametersMessage": { + "base": "

", + "refs": {} + }, + "DescribeDBClusterSnapshotAttributesMessage": { + "base": "

", + "refs": {} + }, + "DescribeDBClusterSnapshotAttributesResult": { + "base": null, + "refs": {} + }, + "DescribeDBClusterSnapshotsMessage": { + "base": "

", + "refs": {} + }, + "DescribeDBClustersMessage": { + "base": "

", + "refs": {} + }, + "DescribeDBEngineVersionsMessage": { + "base": null, + "refs": {} + }, + "DescribeDBInstanceAutomatedBackupsMessage": { + "base": "

Parameter input for DescribeDBInstanceAutomatedBackups.

", + "refs": {} + }, + "DescribeDBInstancesMessage": { + "base": "

", + "refs": {} + }, + "DescribeDBLogFilesDetails": { + "base": "

This data type is used as a response element to DescribeDBLogFiles.

", + "refs": { + "DescribeDBLogFilesList$member": null + } + }, + "DescribeDBLogFilesList": { + "base": null, + "refs": { + "DescribeDBLogFilesResponse$DescribeDBLogFiles": "

The DB log files returned.

" + } + }, + "DescribeDBLogFilesMessage": { + "base": "

", + "refs": {} + }, + "DescribeDBLogFilesResponse": { + "base": "

The response from a call to DescribeDBLogFiles.

", + "refs": {} + }, + "DescribeDBMajorEngineVersionsRequest": { + "base": null, + "refs": {} + }, + "DescribeDBMajorEngineVersionsResponse": { + "base": null, + "refs": {} + }, + "DescribeDBParameterGroupsMessage": { + "base": "

", + "refs": {} + }, + "DescribeDBParametersMessage": { + "base": null, + "refs": {} + }, + "DescribeDBProxiesRequest": { + "base": null, + "refs": {} + }, + "DescribeDBProxiesResponse": { + "base": null, + "refs": {} + }, + "DescribeDBProxyEndpointsRequest": { + "base": null, + "refs": {} + }, + "DescribeDBProxyEndpointsResponse": { + "base": null, + "refs": {} + }, + "DescribeDBProxyTargetGroupsRequest": { + "base": null, + "refs": {} + }, + "DescribeDBProxyTargetGroupsResponse": { + "base": null, + "refs": {} + }, + "DescribeDBProxyTargetsRequest": { + "base": null, + "refs": {} + }, + "DescribeDBProxyTargetsResponse": { + "base": null, + "refs": {} + }, + "DescribeDBRecommendationsMessage": { + "base": null, + "refs": {} + }, + "DescribeDBSecurityGroupsMessage": { + "base": "

", + "refs": {} + }, + "DescribeDBShardGroupsMessage": { + "base": null, + "refs": {} + }, + "DescribeDBShardGroupsResponse": { + "base": null, + "refs": {} + }, + "DescribeDBSnapshotAttributesMessage": { + "base": "

", + "refs": {} + }, + "DescribeDBSnapshotAttributesResult": { + "base": null, + "refs": {} + }, + "DescribeDBSnapshotTenantDatabasesMessage": { + "base": null, + "refs": {} + }, + "DescribeDBSnapshotsMessage": { + "base": "

", + "refs": {} + }, + "DescribeDBSubnetGroupsMessage": { + "base": "

", + "refs": {} + }, + "DescribeEngineDefaultClusterParametersMessage": { + "base": "

", + "refs": {} + }, + "DescribeEngineDefaultClusterParametersResult": { + "base": null, + "refs": {} + }, + "DescribeEngineDefaultParametersMessage": { + "base": "

", + "refs": {} + }, + "DescribeEngineDefaultParametersResult": { + "base": null, + "refs": {} + }, + "DescribeEventCategoriesMessage": { + "base": "

", + "refs": {} + }, + "DescribeEventSubscriptionsMessage": { + "base": "

", + "refs": {} + }, + "DescribeEventsMessage": { + "base": "

", + "refs": {} + }, + "DescribeExportTasksMessage": { + "base": null, + "refs": {} + }, + "DescribeGlobalClustersMessage": { + "base": null, + "refs": {} + }, + "DescribeIntegrationsMessage": { + "base": null, + "refs": {} + }, + "DescribeIntegrationsResponse": { + "base": null, + "refs": {} + }, + "DescribeOptionGroupOptionsMessage": { + "base": "

", + "refs": {} + }, + "DescribeOptionGroupsMessage": { + "base": "

", + "refs": {} + }, + "DescribeOrderableDBInstanceOptionsMessage": { + "base": "

", + "refs": {} + }, + "DescribePendingMaintenanceActionsMessage": { + "base": "

", + "refs": {} + }, + "DescribeReservedDBInstancesMessage": { + "base": "

", + "refs": {} + }, + "DescribeReservedDBInstancesOfferingsMessage": { + "base": "

", + "refs": {} + }, + "DescribeSourceRegionsMessage": { + "base": "

", + "refs": {} + }, + "DescribeTenantDatabasesMessage": { + "base": null, + "refs": {} + }, + "DescribeValidDBInstanceModificationsMessage": { + "base": "

", + "refs": {} + }, + "DescribeValidDBInstanceModificationsResult": { + "base": null, + "refs": {} + }, + "Description": { + "base": null, + "refs": { + "CreateCustomDBEngineVersionMessage$Description": "

An optional description of your CEV.

", + "ModifyCustomDBEngineVersionMessage$Description": "

An optional description of your CEV.

", + "UserAuthConfig$Description": "

A user-specified description about the authentication used by a proxy to log in as a specific database user.

" + } + }, + "DisableHttpEndpointRequest": { + "base": null, + "refs": {} + }, + "DisableHttpEndpointResponse": { + "base": null, + "refs": {} + }, + "DocLink": { + "base": "

A link to documentation that provides additional information for a recommendation.

", + "refs": { + "DocLinkList$member": null + } + }, + "DocLinkList": { + "base": null, + "refs": { + "DBRecommendation$Links": "

A link to documentation that provides additional information about the recommendation.

" + } + }, + "DomainMembership": { + "base": "

An Active Directory Domain membership record associated with the DB instance or cluster.

", + "refs": { + "DomainMembershipList$member": null + } + }, + "DomainMembershipList": { + "base": null, + "refs": { + "DBCluster$DomainMemberships": "

The Active Directory Domain membership records associated with the DB cluster.

", + "DBInstance$DomainMemberships": "

The Active Directory Domain membership records associated with the DB instance.

" + } + }, + "DomainNotFoundFault": { + "base": "

Domain doesn't refer to an existing Active Directory domain.

", + "refs": {} + }, + "Double": { + "base": null, + "refs": { + "DoubleRange$From": "

The minimum value in the range.

", + "DoubleRange$To": "

The maximum value in the range.

", + "RecurringCharge$RecurringChargeAmount": "

The amount of the recurring charge.

", + "ReservedDBInstance$FixedPrice": "

The fixed price charged for this reserved DB instance.

", + "ReservedDBInstance$UsagePrice": "

The hourly price charged for this reserved DB instance.

", + "ReservedDBInstancesOffering$FixedPrice": "

The fixed price charged for this offering.

", + "ReservedDBInstancesOffering$UsagePrice": "

The hourly price charged for this offering.

", + "ScalarReferenceDetails$Value": "

The value of a scalar reference.

" + } + }, + "DoubleOptional": { + "base": null, + "refs": { + "CreateDBShardGroupMessage$MaxACU": "

The maximum capacity of the DB shard group in Aurora capacity units (ACUs).

", + "CreateDBShardGroupMessage$MinACU": "

The minimum capacity of the DB shard group in Aurora capacity units (ACUs).

", + "DBShardGroup$MaxACU": "

The maximum capacity of the DB shard group in Aurora capacity units (ACUs).

", + "DBShardGroup$MinACU": "

The minimum capacity of the DB shard group in Aurora capacity units (ACUs).

", + "LimitlessDatabase$MinRequiredACU": "

The minimum required capacity for Aurora Limitless Database in Aurora capacity units (ACUs).

", + "ModifyDBShardGroupMessage$MaxACU": "

The maximum capacity of the DB shard group in Aurora capacity units (ACUs).

", + "ModifyDBShardGroupMessage$MinACU": "

The minimum capacity of the DB shard group in Aurora capacity units (ACUs).

", + "OrderableDBInstanceOption$MinIopsPerGib": "

Minimum provisioned IOPS per GiB for a DB instance.

", + "OrderableDBInstanceOption$MaxIopsPerGib": "

Maximum provisioned IOPS per GiB for a DB instance.

", + "OrderableDBInstanceOption$MinStorageThroughputPerIops": "

Minimum storage throughput to provisioned IOPS ratio for a DB instance.

", + "OrderableDBInstanceOption$MaxStorageThroughputPerIops": "

Maximum storage throughput to provisioned IOPS ratio for a DB instance.

", + "ServerlessV2FeaturesSupport$MinCapacity": "

If the minimum capacity is 0 ACUs, the engine version supports the automatic pause/resume feature of Aurora Serverless v2.

", + "ServerlessV2FeaturesSupport$MaxCapacity": "

Specifies the upper Aurora Serverless v2 capacity limit for a particular engine version. Depending on the engine version, the maximum capacity for an Aurora Serverless v2 cluster might be 256 or 128.

", + "ServerlessV2ScalingConfiguration$MinCapacity": "

The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 8, 8.5, 9, and so on. For Aurora versions that support the Aurora Serverless v2 auto-pause feature, the smallest value that you can use is 0. For versions that don't support Aurora Serverless v2 auto-pause, the smallest value that you can use is 0.5.

", + "ServerlessV2ScalingConfiguration$MaxCapacity": "

The maximum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 32, 32.5, 33, and so on. The largest value that you can use is 256 for recent Aurora versions, or 128 for older versions.

", + "ServerlessV2ScalingConfigurationInfo$MinCapacity": "

The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 8, 8.5, 9, and so on. For Aurora versions that support the Aurora Serverless v2 auto-pause feature, the smallest value that you can use is 0. For versions that don't support Aurora Serverless v2 auto-pause, the smallest value that you can use is 0.5.

", + "ServerlessV2ScalingConfigurationInfo$MaxCapacity": "

The maximum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 32, 32.5, 33, and so on. The largest value that you can use is 256 for recent Aurora versions, or 128 for older versions.

" + } + }, + "DoubleRange": { + "base": "

A range of double values.

", + "refs": { + "DoubleRangeList$member": null + } + }, + "DoubleRangeList": { + "base": null, + "refs": { + "ValidStorageOptions$IopsToStorageRatio": "

The valid range of Provisioned IOPS to gibibytes of storage multiplier. For example, 3-10, which means that provisioned IOPS can be between 3 and 10 times storage.

", + "ValidStorageOptions$StorageThroughputToIopsRatio": "

The valid range of storage throughput to provisioned IOPS ratios. For example, 0-0.25.

" + } + }, + "DownloadDBLogFilePortionDetails": { + "base": "

This data type is used as a response element to DownloadDBLogFilePortion.

", + "refs": {} + }, + "DownloadDBLogFilePortionMessage": { + "base": "

", + "refs": {} + }, + "EC2SecurityGroup": { + "base": "

This data type is used as a response element in the following actions:

  • AuthorizeDBSecurityGroupIngress

  • DescribeDBSecurityGroups

  • RevokeDBSecurityGroupIngress

", + "refs": { + "EC2SecurityGroupList$member": null + } + }, + "EC2SecurityGroupList": { + "base": null, + "refs": { + "DBSecurityGroup$EC2SecurityGroups": "

Contains a list of EC2SecurityGroup elements.

" + } + }, + "Ec2ImagePropertiesNotSupportedFault": { + "base": "

The AMI configuration prerequisite has not been met.

", + "refs": {} + }, + "EnableHttpEndpointRequest": { + "base": null, + "refs": {} + }, + "EnableHttpEndpointResponse": { + "base": null, + "refs": {} + }, + "EncryptionContextMap": { + "base": null, + "refs": { + "CreateIntegrationMessage$AdditionalEncryptionContext": "

An optional set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see Encryption context in the Amazon Web Services Key Management Service Developer Guide.

You can only include this parameter if you specify the KMSKeyId parameter.

", + "Integration$AdditionalEncryptionContext": "

The encryption context for the integration. For more information, see Encryption context in the Amazon Web Services Key Management Service Developer Guide.

" + } + }, + "Endpoint": { + "base": "

This data type represents the information you need to connect to an Amazon RDS DB instance. This data type is used as a response element in the following actions:

  • CreateDBInstance

  • DescribeDBInstances

  • DeleteDBInstance

For the data structure that represents Amazon Aurora DB cluster endpoints, see DBClusterEndpoint.

", + "refs": { + "DBInstance$Endpoint": "

The connection endpoint for the DB instance.

The endpoint might not be shown for instances with the status of creating.

", + "DBInstance$ListenerEndpoint": "

The listener connection endpoint for SQL Server Always On.

" + } + }, + "Engine": { + "base": null, + "refs": { + "DescribeDBMajorEngineVersionsRequest$Engine": "

The database engine to return major version details for.

Valid Values:

  • aurora-mysql

  • aurora-postgresql

  • custom-sqlserver-ee

  • custom-sqlserver-se

  • custom-sqlserver-web

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

" + } + }, + "EngineDefaults": { + "base": "

Contains the result of a successful invocation of the DescribeEngineDefaultParameters action.

", + "refs": { + "DescribeEngineDefaultClusterParametersResult$EngineDefaults": null, + "DescribeEngineDefaultParametersResult$EngineDefaults": null + } + }, + "EngineFamily": { + "base": null, + "refs": { + "CreateDBProxyRequest$EngineFamily": "

The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. For Aurora MySQL, RDS for MariaDB, and RDS for MySQL databases, specify MYSQL. For Aurora PostgreSQL and RDS for PostgreSQL databases, specify POSTGRESQL. For RDS for Microsoft SQL Server, specify SQLSERVER.

" + } + }, + "EngineModeList": { + "base": null, + "refs": { + "DBEngineVersion$SupportedEngineModes": "

A list of the supported DB engine modes.

", + "OrderableDBInstanceOption$SupportedEngineModes": "

A list of the supported DB engine modes.

", + "Parameter$SupportedEngineModes": "

The valid DB engine modes.

", + "UpgradeTarget$SupportedEngineModes": "

A list of the supported DB engine modes for the target engine version.

" + } + }, + "Event": { + "base": "

This data type is used as a response element in the DescribeEvents action.

", + "refs": { + "EventList$member": null + } + }, + "EventCategoriesList": { + "base": null, + "refs": { + "CreateEventSubscriptionMessage$EventCategories": "

A list of event categories for a particular source type (SourceType) that you want to subscribe to. You can see a list of the categories for a given source type in the \"Amazon RDS event categories and event messages\" section of the Amazon RDS User Guide or the Amazon Aurora User Guide . You can also see this list by using the DescribeEventCategories operation.

", + "DescribeEventsMessage$EventCategories": "

A list of event categories that trigger notifications for a event notification subscription.

", + "Event$EventCategories": "

Specifies the category for the event.

", + "EventCategoriesMap$EventCategories": "

The event categories for the specified source type

", + "EventSubscription$EventCategoriesList": "

A list of event categories for the RDS event notification subscription.

", + "ModifyEventSubscriptionMessage$EventCategories": "

A list of event categories for a source type (SourceType) that you want to subscribe to. You can see a list of the categories for a given source type in Events in the Amazon RDS User Guide or by using the DescribeEventCategories operation.

" + } + }, + "EventCategoriesMap": { + "base": "

Contains the results of a successful invocation of the DescribeEventCategories operation.

", + "refs": { + "EventCategoriesMapList$member": null + } + }, + "EventCategoriesMapList": { + "base": null, + "refs": { + "EventCategoriesMessage$EventCategoriesMapList": "

A list of EventCategoriesMap data types.

" + } + }, + "EventCategoriesMessage": { + "base": "

Data returned from the DescribeEventCategories operation.

", + "refs": {} + }, + "EventList": { + "base": null, + "refs": { + "EventsMessage$Events": "

A list of Event instances.

" + } + }, + "EventSubscription": { + "base": "

Contains the results of a successful invocation of the DescribeEventSubscriptions action.

", + "refs": { + "AddSourceIdentifierToSubscriptionResult$EventSubscription": null, + "CreateEventSubscriptionResult$EventSubscription": null, + "DeleteEventSubscriptionResult$EventSubscription": null, + "EventSubscriptionsList$member": null, + "ModifyEventSubscriptionResult$EventSubscription": null, + "RemoveSourceIdentifierFromSubscriptionResult$EventSubscription": null + } + }, + "EventSubscriptionQuotaExceededFault": { + "base": "

You have reached the maximum number of event subscriptions.

", + "refs": {} + }, + "EventSubscriptionsList": { + "base": null, + "refs": { + "EventSubscriptionsMessage$EventSubscriptionsList": "

A list of EventSubscriptions data types.

" + } + }, + "EventSubscriptionsMessage": { + "base": "

Data returned by the DescribeEventSubscriptions action.

", + "refs": {} + }, + "EventsMessage": { + "base": "

Contains the result of a successful invocation of the DescribeEvents action.

", + "refs": {} + }, + "ExportSourceType": { + "base": null, + "refs": { + "DescribeExportTasksMessage$SourceType": "

The type of source for the export.

", + "ExportTask$SourceType": "

The type of source for the export.

" + } + }, + "ExportTask": { + "base": "

Contains the details of a snapshot or cluster export to Amazon S3.

This data type is used as a response element in the DescribeExportTasks operation.

", + "refs": { + "ExportTasksList$member": null + } + }, + "ExportTaskAlreadyExistsFault": { + "base": "

You can't start an export task that's already running.

", + "refs": {} + }, + "ExportTaskNotFoundFault": { + "base": "

The export task doesn't exist.

", + "refs": {} + }, + "ExportTasksList": { + "base": null, + "refs": { + "ExportTasksMessage$ExportTasks": "

Information about an export of a snapshot or cluster to Amazon S3.

" + } + }, + "ExportTasksMessage": { + "base": null, + "refs": {} + }, + "FailoverDBClusterMessage": { + "base": "

", + "refs": {} + }, + "FailoverDBClusterResult": { + "base": null, + "refs": {} + }, + "FailoverGlobalClusterMessage": { + "base": null, + "refs": {} + }, + "FailoverGlobalClusterResult": { + "base": null, + "refs": {} + }, + "FailoverState": { + "base": "

Contains the state of scheduled or in-process operations on a global cluster (Aurora global database). This data type is empty unless a switchover or failover operation is scheduled or is in progress on the Aurora global database.

", + "refs": { + "GlobalCluster$FailoverState": "

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.

" + } + }, + "FailoverStatus": { + "base": null, + "refs": { + "FailoverState$Status": "

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 – Aurora is promoting the chosen secondary Aurora DB cluster to become the new primary DB cluster to fail over the global cluster.

  • 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.

  • switching-over – This status covers the range of Aurora internal operations that take place during the switchover process, such as demoting the primary Aurora DB cluster, promoting the secondary Aurora DB cluster, and synchronizing replicas.

" + } + }, + "FeatureNameList": { + "base": null, + "refs": { + "DBEngineVersion$SupportedFeatureNames": "

A list of features supported by the DB engine.

The supported features vary by DB engine and DB engine version.

To determine the supported features for a specific DB engine and DB engine version using the CLI, use the following command:

aws rds describe-db-engine-versions --engine <engine_name> --engine-version <engine_version>

For example, to determine the supported features for RDS for PostgreSQL version 13.3 using the CLI, use the following command:

aws rds describe-db-engine-versions --engine postgres --engine-version 13.3

The supported features are listed under SupportedFeatureNames in the output.

" + } + }, + "Filter": { + "base": "

A filter name and value pair that is used to return a more specific list of results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as IDs. The filters supported by a describe operation are documented with the describe operation.

Currently, wildcards are not supported in filters.

The following actions can be filtered:

  • DescribeDBClusterBacktracks

  • DescribeDBClusterEndpoints

  • DescribeDBClusters

  • DescribeDBInstances

  • DescribeDBRecommendations

  • DescribeDBShardGroups

  • DescribePendingMaintenanceActions

", + "refs": { + "FilterList$member": null + } + }, + "FilterList": { + "base": null, + "refs": { + "DescribeBlueGreenDeploymentsRequest$Filters": "

A filter that specifies one or more blue/green deployments to describe.

Valid Values:

  • blue-green-deployment-identifier - Accepts system-generated identifiers for blue/green deployments. The results list only includes information about the blue/green deployments with the specified identifiers.

  • blue-green-deployment-name - Accepts user-supplied names for blue/green deployments. The results list only includes information about the blue/green deployments with the specified names.

  • source - Accepts source databases for a blue/green deployment. The results list only includes information about the blue/green deployments with the specified source databases.

  • target - Accepts target databases for a blue/green deployment. The results list only includes information about the blue/green deployments with the specified target databases.

", + "DescribeCertificatesMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeDBClusterAutomatedBackupsMessage$Filters": "

A filter that specifies which resources to return based on status.

Supported filters are the following:

  • status

    • retained - Automated backups for deleted clusters and after backup replication is stopped.

  • db-cluster-id - Accepts DB cluster identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB cluster automated backups identified by these ARNs.

  • db-cluster-resource-id - Accepts DB resource identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB cluster resources identified by these ARNs.

Returns all resources by default. The status for each resource is specified in the response.

", + "DescribeDBClusterBacktracksMessage$Filters": "

A filter that specifies one or more DB clusters to describe. Supported filters include the following:

  • db-cluster-backtrack-id - Accepts backtrack identifiers. The results list includes information about only the backtracks identified by these identifiers.

  • db-cluster-backtrack-status - Accepts any of the following backtrack status values:

    • applying

    • completed

    • failed

    • pending

    The results list includes information about only the backtracks identified by these values.

", + "DescribeDBClusterEndpointsMessage$Filters": "

A set of name-value pairs that define which endpoints to include in the output. The filters are specified as name-value pairs, in the format Name=endpoint_type,Values=endpoint_type1,endpoint_type2,.... Name can be one of: db-cluster-endpoint-type, db-cluster-endpoint-custom-type, db-cluster-endpoint-id, db-cluster-endpoint-status. Values for the db-cluster-endpoint-type filter can be one or more of: reader, writer, custom. Values for the db-cluster-endpoint-custom-type filter can be one or more of: reader, any. Values for the db-cluster-endpoint-status filter can be one or more of: available, creating, deleting, inactive, modifying.

", + "DescribeDBClusterParameterGroupsMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeDBClusterParametersMessage$Filters": "

A filter that specifies one or more DB cluster parameters to describe.

The only supported filter is parameter-name. The results list only includes information about the DB cluster parameters with these names.

", + "DescribeDBClusterSnapshotsMessage$Filters": "

A filter that specifies one or more DB cluster snapshots to describe.

Supported filters:

  • db-cluster-id - Accepts DB cluster identifiers and DB cluster Amazon Resource Names (ARNs).

  • db-cluster-snapshot-id - Accepts DB cluster snapshot identifiers.

  • snapshot-type - Accepts types of DB cluster snapshots.

  • engine - Accepts names of database engines.

", + "DescribeDBClustersMessage$Filters": "

A filter that specifies one or more DB clusters to describe.

Supported Filters:

  • clone-group-id - Accepts clone group identifiers. The results list only includes information about the DB clusters associated with these clone groups.

  • db-cluster-id - Accepts DB cluster identifiers and DB cluster Amazon Resource Names (ARNs). The results list only includes information about the DB clusters identified by these ARNs.

  • db-cluster-resource-id - Accepts DB cluster resource identifiers. The results list will only include information about the DB clusters identified by these DB cluster resource identifiers.

  • domain - Accepts Active Directory directory IDs. The results list only includes information about the DB clusters associated with these domains.

  • engine - Accepts engine names. The results list only includes information about the DB clusters for these engines.

", + "DescribeDBEngineVersionsMessage$Filters": "

A filter that specifies one or more DB engine versions to describe.

Supported filters:

  • db-parameter-group-family - Accepts parameter groups family names. The results list only includes information about the DB engine versions for these parameter group families.

  • engine - Accepts engine names. The results list only includes information about the DB engine versions for these engines.

  • engine-mode - Accepts DB engine modes. The results list only includes information about the DB engine versions for these engine modes. Valid DB engine modes are the following:

    • global

    • multimaster

    • parallelquery

    • provisioned

    • serverless

  • engine-version - Accepts engine versions. The results list only includes information about the DB engine versions for these engine versions.

  • status - Accepts engine version statuses. The results list only includes information about the DB engine versions for these statuses. Valid statuses are the following:

    • available

    • deprecated

", + "DescribeDBInstanceAutomatedBackupsMessage$Filters": "

A filter that specifies which resources to return based on status.

Supported filters are the following:

  • status

    • active - Automated backups for current instances.

    • creating - Automated backups that are waiting for the first automated snapshot to be available.

    • retained - Automated backups for deleted instances and after backup replication is stopped.

  • db-instance-id - Accepts DB instance identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB instance automated backups identified by these ARNs.

  • dbi-resource-id - Accepts DB resource identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB instance resources identified by these ARNs.

Returns all resources by default. The status for each resource is specified in the response.

", + "DescribeDBInstancesMessage$Filters": "

A filter that specifies one or more DB instances to describe.

Supported Filters:

  • db-cluster-id - Accepts DB cluster identifiers and DB cluster Amazon Resource Names (ARNs). The results list only includes information about the DB instances associated with the DB clusters identified by these ARNs.

  • db-instance-id - Accepts DB instance identifiers and DB instance Amazon Resource Names (ARNs). The results list only includes information about the DB instances identified by these ARNs.

  • dbi-resource-id - Accepts DB instance resource identifiers. The results list only includes information about the DB instances identified by these DB instance resource identifiers.

  • domain - Accepts Active Directory directory IDs. The results list only includes information about the DB instances associated with these domains.

  • engine - Accepts engine names. The results list only includes information about the DB instances for these engines.

", + "DescribeDBLogFilesMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeDBParameterGroupsMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeDBParametersMessage$Filters": "

A filter that specifies one or more DB parameters to describe.

The only supported filter is parameter-name. The results list only includes information about the DB parameters with these names.

", + "DescribeDBProxiesRequest$Filters": "

This parameter is not currently supported.

", + "DescribeDBProxyEndpointsRequest$Filters": "

This parameter is not currently supported.

", + "DescribeDBProxyTargetGroupsRequest$Filters": "

This parameter is not currently supported.

", + "DescribeDBProxyTargetsRequest$Filters": "

This parameter is not currently supported.

", + "DescribeDBRecommendationsMessage$Filters": "

A filter that specifies one or more recommendations to describe.

Supported Filters:

  • recommendation-id - Accepts a list of recommendation identifiers. The results list only includes the recommendations whose identifier is one of the specified filter values.

  • status - Accepts a list of recommendation statuses.

    Valid values:

    • active - The recommendations which are ready for you to apply.

    • pending - The applied or scheduled recommendations which are in progress.

    • resolved - The recommendations which are completed.

    • dismissed - The recommendations that you dismissed.

    The results list only includes the recommendations whose status is one of the specified filter values.

  • severity - Accepts a list of recommendation severities. The results list only includes the recommendations whose severity is one of the specified filter values.

    Valid values:

    • high

    • medium

    • low

    • informational

  • type-id - Accepts a list of recommendation type identifiers. The results list only includes the recommendations whose type is one of the specified filter values.

  • dbi-resource-id - Accepts a list of database resource identifiers. The results list only includes the recommendations that generated for the specified databases.

  • cluster-resource-id - Accepts a list of cluster resource identifiers. The results list only includes the recommendations that generated for the specified clusters.

  • pg-arn - Accepts a list of parameter group ARNs. The results list only includes the recommendations that generated for the specified parameter groups.

  • cluster-pg-arn - Accepts a list of cluster parameter group ARNs. The results list only includes the recommendations that generated for the specified cluster parameter groups.

", + "DescribeDBSecurityGroupsMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeDBShardGroupsMessage$Filters": "

A filter that specifies one or more DB shard groups to describe.

", + "DescribeDBSnapshotTenantDatabasesMessage$Filters": "

A filter that specifies one or more tenant databases to describe.

Supported filters:

  • tenant-db-name - Tenant database names. The results list only includes information about the tenant databases that match these tenant DB names.

  • tenant-database-resource-id - Tenant database resource identifiers. The results list only includes information about the tenant databases contained within the DB snapshots.

  • dbi-resource-id - DB instance resource identifiers. The results list only includes information about snapshots containing tenant databases contained within the DB instances identified by these resource identifiers.

  • db-instance-id - Accepts DB instance identifiers and DB instance Amazon Resource Names (ARNs).

  • db-snapshot-id - Accepts DB snapshot identifiers.

  • snapshot-type - Accepts types of DB snapshots.

", + "DescribeDBSnapshotsMessage$Filters": "

A filter that specifies one or more DB snapshots to describe.

Supported filters:

  • db-instance-id - Accepts DB instance identifiers and DB instance Amazon Resource Names (ARNs).

  • db-snapshot-id - Accepts DB snapshot identifiers.

  • dbi-resource-id - Accepts identifiers of source DB instances.

  • snapshot-type - Accepts types of DB snapshots.

  • engine - Accepts names of database engines.

", + "DescribeDBSubnetGroupsMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeEngineDefaultClusterParametersMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeEngineDefaultParametersMessage$Filters": "

A filter that specifies one or more parameters to describe.

The only supported filter is parameter-name. The results list only includes information about the parameters with these names.

", + "DescribeEventCategoriesMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeEventSubscriptionsMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeEventsMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeExportTasksMessage$Filters": "

Filters specify one or more snapshot or cluster exports to describe. The filters are specified as name-value pairs that define what to include in the output. Filter names and values are case-sensitive.

Supported filters include the following:

  • export-task-identifier - An identifier for the snapshot or cluster export task.

  • s3-bucket - The Amazon S3 bucket the data is exported to.

  • source-arn - The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon S3.

  • status - The status of the export task. Must be lowercase. Valid statuses are the following:

    • canceled

    • canceling

    • complete

    • failed

    • in_progress

    • starting

", + "DescribeGlobalClustersMessage$Filters": "

A filter that specifies one or more global database clusters to describe. This parameter is case-sensitive.

Currently, the only supported filter is region.

If used, the request returns information about any global cluster with at least one member (primary or secondary) in the specified Amazon Web Services Regions.

", + "DescribeIntegrationsMessage$Filters": "

A filter that specifies one or more resources to return.

", + "DescribeOptionGroupOptionsMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeOptionGroupsMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeOrderableDBInstanceOptionsMessage$Filters": "

This parameter isn't currently supported.

", + "DescribePendingMaintenanceActionsMessage$Filters": "

A filter that specifies one or more resources to return pending maintenance actions for.

Supported filters:

  • db-cluster-id - Accepts DB cluster identifiers and DB cluster Amazon Resource Names (ARNs). The results list only includes pending maintenance actions for the DB clusters identified by these ARNs.

  • db-instance-id - Accepts DB instance identifiers and DB instance ARNs. The results list only includes pending maintenance actions for the DB instances identified by these ARNs.

", + "DescribeReservedDBInstancesMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeReservedDBInstancesOfferingsMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeSourceRegionsMessage$Filters": "

This parameter isn't currently supported.

", + "DescribeTenantDatabasesMessage$Filters": "

A filter that specifies one or more database tenants to describe.

Supported filters:

  • tenant-db-name - Tenant database names. The results list only includes information about the tenant databases that match these tenant DB names.

  • tenant-database-resource-id - Tenant database resource identifiers.

  • dbi-resource-id - DB instance resource identifiers. The results list only includes information about the tenants contained within the DB instances identified by these resource identifiers.

", + "ListTagsForResourceMessage$Filters": "

This parameter isn't currently supported.

" + } + }, + "FilterValueList": { + "base": null, + "refs": { + "Filter$Values": "

One or more filter values. Filter values are case-sensitive.

" + } + }, + "FreeTierRestrictionError": { + "base": null, + "refs": {} + }, + "GlobalCluster": { + "base": "

A data type representing an Aurora global database.

", + "refs": { + "CreateGlobalClusterResult$GlobalCluster": null, + "DeleteGlobalClusterResult$GlobalCluster": null, + "FailoverGlobalClusterResult$GlobalCluster": null, + "GlobalClusterList$member": null, + "ModifyGlobalClusterResult$GlobalCluster": null, + "RemoveFromGlobalClusterResult$GlobalCluster": null, + "SwitchoverGlobalClusterResult$GlobalCluster": null + } + }, + "GlobalClusterAlreadyExistsFault": { + "base": "

The GlobalClusterIdentifier already exists. Specify a new global database identifier (unique name) to create a new global database cluster or to rename an existing one.

", + "refs": {} + }, + "GlobalClusterIdentifier": { + "base": null, + "refs": { + "CreateDBClusterMessage$GlobalClusterIdentifier": "

The global cluster ID of an Aurora cluster that becomes the primary cluster in the new global database cluster.

Valid for Cluster Type: Aurora DB clusters only

", + "CreateGlobalClusterMessage$GlobalClusterIdentifier": "

The cluster identifier for this global database cluster. This parameter is stored as a lowercase string.

", + "DeleteGlobalClusterMessage$GlobalClusterIdentifier": "

The cluster identifier of the global database cluster being deleted.

", + "DescribeGlobalClustersMessage$GlobalClusterIdentifier": "

The user-supplied DB cluster identifier. If this parameter is specified, information from only the specific DB cluster is returned. This parameter isn't case-sensitive.

Constraints:

  • If supplied, must match an existing DBClusterIdentifier.

", + "FailoverGlobalClusterMessage$GlobalClusterIdentifier": "

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.

", + "GlobalCluster$GlobalClusterIdentifier": "

Contains a user-supplied global database cluster identifier. This identifier is the unique key that identifies a global database cluster.

", + "ModifyGlobalClusterMessage$GlobalClusterIdentifier": "

The cluster identifier for the global cluster to modify. This parameter isn't case-sensitive.

Constraints:

  • Must match the identifier of an existing global database cluster.

", + "ModifyGlobalClusterMessage$NewGlobalClusterIdentifier": "

The new cluster identifier for the global database cluster. This value is stored as a lowercase string.

Constraints:

  • 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

", + "RemoveFromGlobalClusterMessage$GlobalClusterIdentifier": "

The cluster identifier to detach from the Aurora global database cluster.

", + "SwitchoverGlobalClusterMessage$GlobalClusterIdentifier": "

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).

" + } + }, + "GlobalClusterList": { + "base": null, + "refs": { + "GlobalClustersMessage$GlobalClusters": "

The list of global clusters returned by this request.

" + } + }, + "GlobalClusterMember": { + "base": "

A data structure with information about any primary and secondary clusters associated with a global cluster (Aurora global database).

", + "refs": { + "GlobalClusterMemberList$member": null + } + }, + "GlobalClusterMemberList": { + "base": null, + "refs": { + "GlobalCluster$GlobalClusterMembers": "

The list of primary and secondary clusters within the global database cluster.

" + } + }, + "GlobalClusterMemberSynchronizationStatus": { + "base": null, + "refs": { + "GlobalClusterMember$SynchronizationStatus": "

The status of synchronization of each Aurora DB cluster in the global cluster.

" + } + }, + "GlobalClusterNotFoundFault": { + "base": "

The GlobalClusterIdentifier doesn't refer to an existing global database cluster.

", + "refs": {} + }, + "GlobalClusterQuotaExceededFault": { + "base": "

The number of global database clusters for this account is already at the maximum allowed.

", + "refs": {} + }, + "GlobalClustersMessage": { + "base": null, + "refs": {} + }, + "IAMAuthMode": { + "base": null, + "refs": { + "UserAuthConfig$IAMAuth": "

A value that indicates whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy. The ENABLED value is valid only for proxies with RDS for Microsoft SQL Server.

", + "UserAuthConfigInfo$IAMAuth": "

Whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy.

" + } + }, + "IPRange": { + "base": "

This data type is used as a response element in the DescribeDBSecurityGroups action.

", + "refs": { + "IPRangeList$member": null + } + }, + "IPRangeList": { + "base": null, + "refs": { + "DBSecurityGroup$IPRanges": "

Contains a list of IPRange elements.

" + } + }, + "IamRoleMissingPermissionsFault": { + "base": "

The IAM role requires additional permissions to export to an Amazon S3 bucket.

", + "refs": {} + }, + "IamRoleNotFoundFault": { + "base": "

The IAM role is missing for exporting to an Amazon S3 bucket.

", + "refs": {} + }, + "InstanceQuotaExceededFault": { + "base": "

The request would result in the user exceeding the allowed number of DB instances.

", + "refs": {} + }, + "InsufficientAvailableIPsInSubnetFault": { + "base": "

The requested operation can't be performed because there aren't enough available IP addresses in the proxy's subnets. Add more CIDR blocks to the VPC or remove IP address that aren't required from the subnets.

", + "refs": {} + }, + "InsufficientDBClusterCapacityFault": { + "base": "

The DB cluster doesn't have enough capacity for the current operation.

", + "refs": {} + }, + "InsufficientDBInstanceCapacityFault": { + "base": "

The specified DB instance class isn't available in the specified Availability Zone.

", + "refs": {} + }, + "InsufficientStorageClusterCapacityFault": { + "base": "

There is insufficient storage available for the current action. You might be able to resolve this error by updating your subnet group to use different Availability Zones that have more storage available.

", + "refs": {} + }, + "Integer": { + "base": null, + "refs": { + "ConnectionPoolConfigurationInfo$MaxConnectionsPercent": "

The maximum size of the connection pool for each target in a target group. The value is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group.

", + "ConnectionPoolConfigurationInfo$MaxIdleConnectionsPercent": "

Controls how actively the proxy closes idle database connections in the connection pool. The value is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group. With a high value, the proxy leaves a high percentage of idle database connections open. A low value causes the proxy to close more idle connections and return them to the database.

", + "ConnectionPoolConfigurationInfo$ConnectionBorrowTimeout": "

The number of seconds for a proxy to wait for a connection to become available in the connection pool. Only applies when the proxy has opened its maximum number of connections and all connections are busy with client sessions.

", + "DBClusterAutomatedBackup$AllocatedStorage": "

For all database engines except Amazon Aurora, AllocatedStorage specifies the allocated storage size in gibibytes (GiB). For Aurora, AllocatedStorage always returns 1, because Aurora DB cluster storage size isn't fixed, but instead automatically adjusts as needed.

", + "DBClusterAutomatedBackup$Port": "

The port number that the automated backup used for connections.

Default: Inherits from the source DB cluster

Valid Values: 1150-65535

", + "DBClusterSnapshot$AllocatedStorage": "

The allocated storage size of the DB cluster snapshot in gibibytes (GiB).

", + "DBClusterSnapshot$Port": "

The port that the DB cluster was listening on at the time of the snapshot.

", + "DBClusterSnapshot$PercentProgress": "

The percentage of the estimated data that has been transferred.

", + "DBInstance$AllocatedStorage": "

The amount of storage in gibibytes (GiB) allocated for the DB instance.

", + "DBInstance$BackupRetentionPeriod": "

The number of days for which automatic DB snapshots are retained.

", + "DBInstance$DbInstancePort": "

The port that the DB instance listens on. If the DB instance is part of a DB cluster, this can be a different port than the DB cluster port.

", + "DBInstanceAutomatedBackup$AllocatedStorage": "

The allocated storage size for the the automated backup in gibibytes (GiB).

", + "DBInstanceAutomatedBackup$Port": "

The port number that the automated backup used for connections.

Default: Inherits from the source DB instance

Valid Values: 1150-65535

", + "DBProxy$IdleClientTimeout": "

The number of seconds a connection to the proxy can have no activity before the proxy drops the client connection. The proxy keeps the underlying database connection open and puts it back into the connection pool for reuse by later connection requests.

Default: 1800 (30 minutes)

Constraints: 1 to 28,800

", + "DBProxyTarget$Port": "

The port that the RDS Proxy uses to connect to the target RDS DB instance or Aurora DB cluster.

", + "DBSnapshot$AllocatedStorage": "

Specifies the allocated storage size in gibibytes (GiB).

", + "DBSnapshot$Port": "

Specifies the port that the database engine was listening on at the time of the snapshot.

", + "DBSnapshot$PercentProgress": "

The percentage of the estimated data that has been transferred.

", + "DownloadDBLogFilePortionMessage$NumberOfLines": "

The number of lines to download. If the number of lines specified results in a file over 1 MB in size, the file is truncated at 1 MB in size.

If the NumberOfLines parameter is specified, then the block of lines returned can be from the beginning or the end of the log file, depending on the value of the Marker parameter.

  • If neither Marker or NumberOfLines are specified, the entire log file is returned up to a maximum of 10000 lines, starting with the most recent log entries first.

  • If NumberOfLines is specified and Marker isn't specified, then the most recent lines from the end of the log file are returned.

  • If Marker is specified as \"0\", then the specified number of lines from the beginning of the log file are returned.

  • You can download the log file in blocks of lines by specifying the size of the block using the NumberOfLines parameter, and by specifying a value of \"0\" for the Marker parameter in your first request. Include the Marker value returned in the response as the Marker value for the next request, continuing until the AdditionalDataPending response element returns false.

", + "Endpoint$Port": "

Specifies the port that the database engine is listening on.

", + "ExportTask$PercentProgress": "

The progress of the snapshot or cluster export task as a percentage.

", + "ExportTask$TotalExtractedDataInGB": "

The total amount of data exported, in gigabytes.

", + "PerformanceInsightsMetricDimensionGroup$Limit": "

The maximum number of items to fetch for this dimension group.

", + "Range$From": "

The minimum value in the range.

", + "Range$To": "

The maximum value in the range.

", + "ReservedDBInstance$Duration": "

The duration of the reservation in seconds.

", + "ReservedDBInstance$DBInstanceCount": "

The number of reserved DB instances.

", + "ReservedDBInstancesOffering$Duration": "

The duration of the offering in seconds.

" + } + }, + "IntegerOptional": { + "base": null, + "refs": { + "ClusterPendingModifiedValues$BackupRetentionPeriod": "

The number of days for which automatic DB snapshots are retained.

", + "ClusterPendingModifiedValues$AllocatedStorage": "

The allocated storage size in gibibytes (GiB) for all database engines except Amazon Aurora. For Aurora, AllocatedStorage always returns 1, because Aurora DB cluster storage size isn't fixed, but instead automatically adjusts as needed.

", + "ClusterPendingModifiedValues$Iops": "

The Provisioned IOPS (I/O operations per second) value. This setting is only for non-Aurora Multi-AZ DB clusters.

", + "ConnectionPoolConfiguration$MaxConnectionsPercent": "

The maximum size of the connection pool for each target in a target group. The value is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group.

If you specify MaxIdleConnectionsPercent, then you must also include a value for this parameter.

Default: 10 for RDS for Microsoft SQL Server, and 100 for all other engines

Constraints:

  • Must be between 1 and 100.

", + "ConnectionPoolConfiguration$MaxIdleConnectionsPercent": "

A value that controls how actively the proxy closes idle database connections in the connection pool. The value is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group. With a high value, the proxy leaves a high percentage of idle database connections open. A low value causes the proxy to close more idle connections and return them to the database.

If you specify this parameter, then you must also include a value for MaxConnectionsPercent.

Default: The default value is half of the value of MaxConnectionsPercent. For example, if MaxConnectionsPercent is 80, then the default value of MaxIdleConnectionsPercent is 40. If the value of MaxConnectionsPercent isn't specified, then for SQL Server, MaxIdleConnectionsPercent is 5, and for all other engines, the default is 50.

Constraints:

  • Must be between 0 and the value of MaxConnectionsPercent.

", + "ConnectionPoolConfiguration$ConnectionBorrowTimeout": "

The number of seconds for a proxy to wait for a connection to become available in the connection pool. This setting only applies when the proxy has opened its maximum number of connections and all connections are busy with client sessions.

Default: 120

Constraints:

  • Must be between 0 and 300.

", + "CreateDBClusterMessage$BackupRetentionPeriod": "

The number of days for which automated backups are retained.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Default: 1

Constraints:

  • Must be a value from 1 to 35.

", + "CreateDBClusterMessage$Port": "

The port number on which the instances in the DB cluster accept connections.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values: 1150-65535

Default:

  • RDS for MySQL and Aurora MySQL - 3306

  • RDS for PostgreSQL and Aurora PostgreSQL - 5432

", + "CreateDBClusterMessage$AllocatedStorage": "

The amount of storage in gibibytes (GiB) to allocate to each DB instance in the Multi-AZ DB cluster.

Valid for Cluster Type: Multi-AZ DB clusters only

This setting is required to create a Multi-AZ DB cluster.

", + "CreateDBClusterMessage$Iops": "

The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for each DB instance in the Multi-AZ DB cluster.

For information about valid IOPS values, see Provisioned IOPS storage in the Amazon RDS User Guide.

This setting is required to create a Multi-AZ DB cluster.

Valid for Cluster Type: Multi-AZ DB clusters only

Constraints:

  • Must be a multiple between .5 and 50 of the storage amount for the DB cluster.

", + "CreateDBClusterMessage$MonitoringInterval": "

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0.

If MonitoringRoleArn is specified, also set MonitoringInterval to a value other than 0.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60

Default: 0

", + "CreateDBClusterMessage$PerformanceInsightsRetentionPeriod": "

The number of days to retain Performance Insights data.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

If you specify a retention period that isn't valid, such as 94, Amazon RDS issues an error.

", + "CreateDBInstanceMessage$AllocatedStorage": "

The amount of storage in gibibytes (GiB) to allocate for the DB instance.

This setting doesn't apply to Amazon Aurora DB instances. Aurora cluster volumes automatically grow as the amount of data in your database increases, though you are only charged for the space that you use in an Aurora cluster volume.

Amazon RDS Custom

Constraints to the amount of storage for each storage type are the following:

  • General Purpose (SSD) storage (gp2, gp3): Must be an integer from 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server.

  • Provisioned IOPS storage (io1, io2): Must be an integer from 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server.

RDS for Db2

Constraints to the amount of storage for each storage type are the following:

  • General Purpose (SSD) storage (gp3): Must be an integer from 20 to 65536.

  • Provisioned IOPS storage (io1, io2): Must be an integer from 100 to 65536.

RDS for MariaDB

Constraints to the amount of storage for each storage type are the following:

  • General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20 to 65536.

  • Provisioned IOPS storage (io1, io2): Must be an integer from 100 to 65536.

  • Magnetic storage (standard): Must be an integer from 5 to 3072.

RDS for MySQL

Constraints to the amount of storage for each storage type are the following:

  • General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20 to 65536.

  • Provisioned IOPS storage (io1, io2): Must be an integer from 100 to 65536.

  • Magnetic storage (standard): Must be an integer from 5 to 3072.

RDS for Oracle

Constraints to the amount of storage for each storage type are the following:

  • General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20 to 65536.

  • Provisioned IOPS storage (io1, io2): Must be an integer from 100 to 65536.

  • Magnetic storage (standard): Must be an integer from 10 to 3072.

RDS for PostgreSQL

Constraints to the amount of storage for each storage type are the following:

  • General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20 to 65536.

  • Provisioned IOPS storage (io1, io2): Must be an integer from 100 to 65536.

  • Magnetic storage (standard): Must be an integer from 5 to 3072.

RDS for SQL Server

Constraints to the amount of storage for each storage type are the following:

  • General Purpose (SSD) storage (gp2, gp3):

    • Enterprise and Standard editions: Must be an integer from 20 to 16384.

    • Web and Express editions: Must be an integer from 20 to 16384.

  • Provisioned IOPS storage (io1, io2):

    • Enterprise and Standard editions: Must be an integer from 100 to 16384.

    • Web and Express editions: Must be an integer from 100 to 16384.

  • Magnetic storage (standard):

    • Enterprise and Standard editions: Must be an integer from 20 to 1024.

    • Web and Express editions: Must be an integer from 20 to 1024.

", + "CreateDBInstanceMessage$BackupRetentionPeriod": "

The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups.

This setting doesn't apply to Amazon Aurora DB instances. The retention period for automated backups is managed by the DB cluster.

Default: 1

Constraints:

  • Must be a value from 0 to 35.

  • Can't be set to 0 if the DB instance is a source to read replicas.

  • Can't be set to 0 for an RDS Custom for Oracle DB instance.

", + "CreateDBInstanceMessage$Port": "

The port number on which the database accepts connections.

This setting doesn't apply to Aurora DB instances. The port number is managed by the cluster.

Valid Values: 1150-65535

Default:

  • RDS for Db2 - 50000

  • RDS for MariaDB - 3306

  • RDS for Microsoft SQL Server - 1433

  • RDS for MySQL - 3306

  • RDS for Oracle - 1521

  • RDS for PostgreSQL - 5432

Constraints:

  • For RDS for Microsoft SQL Server, the value can't be 1234, 1434, 3260, 3343, 3389, 47001, or 49152-49156.

", + "CreateDBInstanceMessage$Iops": "

The amount of Provisioned IOPS (input/output operations per second) to initially allocate for the DB instance. For information about valid IOPS values, see Amazon RDS DB instance storage in the Amazon RDS User Guide.

This setting doesn't apply to Amazon Aurora DB instances. Storage is managed by the DB cluster.

Constraints:

  • For RDS for Db2, MariaDB, MySQL, Oracle, and PostgreSQL - Must be a multiple between .5 and 50 of the storage amount for the DB instance.

  • For RDS for SQL Server - Must be a multiple between 1 and 50 of the storage amount for the DB instance.

", + "CreateDBInstanceMessage$StorageThroughput": "

The storage throughput value, in mebibyte per second (MiBps), for the DB instance.

This setting applies only to the gp3 storage type.

This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.

", + "CreateDBInstanceMessage$MonitoringInterval": "

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To disable collection of Enhanced Monitoring metrics, specify 0.

If MonitoringRoleArn is specified, then you must set MonitoringInterval to a value other than 0.

This setting doesn't apply to RDS Custom DB instances.

Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60

Default: 0

", + "CreateDBInstanceMessage$PromotionTier": "

The order of priority in which an Aurora Replica is promoted to the primary instance after a failure of the existing primary instance. For more information, see Fault Tolerance for an Aurora DB Cluster in the Amazon Aurora User Guide.

This setting doesn't apply to RDS Custom DB instances.

Default: 1

Valid Values: 0 - 15

", + "CreateDBInstanceMessage$PerformanceInsightsRetentionPeriod": "

The number of days to retain Performance Insights data.

This setting doesn't apply to RDS Custom DB instances.

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

If you specify a retention period that isn't valid, such as 94, Amazon RDS returns an error.

", + "CreateDBInstanceMessage$MaxAllocatedStorage": "

The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance.

For more information about this setting, including limitations that apply to it, see Managing capacity automatically with Amazon RDS storage autoscaling in the Amazon RDS User Guide.

This setting doesn't apply to the following DB instances:

  • Amazon Aurora (Storage is managed by the DB cluster.)

  • RDS Custom

", + "CreateDBInstanceReadReplicaMessage$Port": "

The port number that the DB instance uses for connections.

Valid Values: 1150-65535

Default: Inherits the value from the source DB instance.

", + "CreateDBInstanceReadReplicaMessage$Iops": "

The amount of Provisioned IOPS (input/output operations per second) to initially allocate for the DB instance.

", + "CreateDBInstanceReadReplicaMessage$StorageThroughput": "

Specifies the storage throughput value for the read replica.

This setting doesn't apply to RDS Custom or Amazon Aurora DB instances.

", + "CreateDBInstanceReadReplicaMessage$MonitoringInterval": "

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the read replica. To disable collection of Enhanced Monitoring metrics, specify 0. The default is 0.

If MonitoringRoleArn is specified, then you must set MonitoringInterval to a value other than 0.

This setting doesn't apply to RDS Custom DB instances.

Valid Values: 0, 1, 5, 10, 15, 30, 60

Default: 0

", + "CreateDBInstanceReadReplicaMessage$PerformanceInsightsRetentionPeriod": "

The number of days to retain Performance Insights data.

This setting doesn't apply to RDS Custom DB instances.

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

If you specify a retention period that isn't valid, such as 94, Amazon RDS returns an error.

", + "CreateDBInstanceReadReplicaMessage$MaxAllocatedStorage": "

The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance.

For more information about this setting, including limitations that apply to it, see Managing capacity automatically with Amazon RDS storage autoscaling in the Amazon RDS User Guide.

", + "CreateDBInstanceReadReplicaMessage$AllocatedStorage": "

The amount of storage (in gibibytes) to allocate initially for the read replica. Follow the allocation rules specified in CreateDBInstance.

This setting isn't valid for RDS for SQL Server.

Be sure to allocate enough storage for your read replica so that the create operation can succeed. You can also allocate additional storage for future growth.

", + "CreateDBProxyRequest$IdleClientTimeout": "

The number of seconds that a connection to the proxy can be inactive before the proxy disconnects it. You can set this value higher or lower than the connection timeout limit for the associated database.

", + "CreateDBShardGroupMessage$ComputeRedundancy": "

Specifies whether to create standby standby DB data access shard for the DB shard group. Valid values are the following:

  • 0 - Creates a DB shard group without a standby DB data access shard. This is the default value.

  • 1 - Creates a DB shard group with a standby DB data access shard in a different Availability Zone (AZ).

  • 2 - Creates a DB shard group with two standby DB data access shard in two different AZs.

", + "DBCluster$AllocatedStorage": "

AllocatedStorage specifies the allocated storage size in gibibytes (GiB). For Aurora, AllocatedStorage can vary because Aurora DB cluster storage size adjusts as needed.

", + "DBCluster$BackupRetentionPeriod": "

The number of days for which automatic DB snapshots are retained.

", + "DBCluster$Port": "

The port that the database engine is listening on.

", + "DBCluster$Capacity": "

The current capacity of an Aurora Serverless v1 DB cluster. The capacity is 0 (zero) when the cluster is paused.

For more information about Aurora Serverless v1, see Using Amazon Aurora Serverless v1 in the Amazon Aurora User Guide.

", + "DBCluster$Iops": "

The Provisioned IOPS (I/O operations per second) value.

This setting is only for non-Aurora Multi-AZ DB clusters.

", + "DBCluster$StorageThroughput": "

The storage throughput for the DB cluster. The throughput is automatically set based on the IOPS that you provision, and is not configurable.

This setting is only for non-Aurora Multi-AZ DB clusters.

", + "DBCluster$MonitoringInterval": "

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster.

This setting is only for -Aurora DB clusters and Multi-AZ DB clusters.

", + "DBCluster$PerformanceInsightsRetentionPeriod": "

The number of days to retain Performance Insights data.

This setting is only for Aurora DB clusters and Multi-AZ DB clusters.

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

", + "DBClusterAutomatedBackup$BackupRetentionPeriod": "

The retention period for the automated backups.

", + "DBClusterAutomatedBackup$Iops": "

The IOPS (I/O operations per second) value for the automated backup.

This setting is only for non-Aurora Multi-AZ DB clusters.

", + "DBClusterAutomatedBackup$StorageThroughput": "

The storage throughput for the automated backup. The throughput is automatically set based on the IOPS that you provision, and is not configurable.

This setting is only for non-Aurora Multi-AZ DB clusters.

", + "DBClusterCapacityInfo$PendingCapacity": "

A value that specifies the capacity that the DB cluster scales to next.

", + "DBClusterCapacityInfo$CurrentCapacity": "

The current capacity of the DB cluster.

", + "DBClusterCapacityInfo$SecondsBeforeTimeout": "

The number of seconds before a call to ModifyCurrentDBClusterCapacity times out.

", + "DBClusterMember$PromotionTier": "

A value that specifies the order in which an Aurora Replica is promoted to the primary instance after a failure of the existing primary instance. For more information, see Fault Tolerance for an Aurora DB Cluster in the Amazon Aurora User Guide.

", + "DBClusterSnapshot$StorageThroughput": "

The storage throughput for the DB cluster snapshot. The throughput is automatically set based on the IOPS that you provision, and is not configurable.

This setting is only for non-Aurora Multi-AZ DB clusters.

", + "DBInstance$Iops": "

The Provisioned IOPS (I/O operations per second) value for the DB instance.

", + "DBInstance$StorageThroughput": "

The storage throughput for the DB instance.

This setting applies only to the gp3 storage type.

", + "DBInstance$MonitoringInterval": "

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance.

", + "DBInstance$PromotionTier": "

The order of priority in which an Aurora Replica is promoted to the primary instance after a failure of the existing primary instance. For more information, see Fault Tolerance for an Aurora DB Cluster in the Amazon Aurora User Guide.

", + "DBInstance$PerformanceInsightsRetentionPeriod": "

The number of days to retain Performance Insights data.

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

", + "DBInstance$MaxAllocatedStorage": "

The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance.

", + "DBInstanceAutomatedBackup$Iops": "

The IOPS (I/O operations per second) value for the automated backup.

", + "DBInstanceAutomatedBackup$StorageThroughput": "

The storage throughput for the automated backup.

", + "DBInstanceAutomatedBackup$BackupRetentionPeriod": "

The retention period for the automated backups.

", + "DBShardGroup$ComputeRedundancy": "

Specifies whether to create standby DB shard groups for the DB shard group. Valid values are the following:

  • 0 - Creates a DB shard group without a standby DB shard group. This is the default value.

  • 1 - Creates a DB shard group with a standby DB shard group in a different Availability Zone (AZ).

  • 2 - Creates a DB shard group with two standby DB shard groups in two different AZs.

", + "DBSnapshot$Iops": "

Specifies the Provisioned IOPS (I/O operations per second) value of the DB instance at the time of the snapshot.

", + "DBSnapshot$StorageThroughput": "

Specifies the storage throughput for the DB snapshot.

", + "DescribeCertificatesMessage$MaxRecords": "

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBClusterAutomatedBackupsMessage$MaxRecords": "

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.

", + "DescribeDBClusterBacktracksMessage$MaxRecords": "

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBClusterEndpointsMessage$MaxRecords": "

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBClusterParameterGroupsMessage$MaxRecords": "

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBClusterParametersMessage$MaxRecords": "

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBClusterSnapshotsMessage$MaxRecords": "

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBClustersMessage$MaxRecords": "

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100

", + "DescribeDBEngineVersionsMessage$MaxRecords": "

The maximum number of records to include in the response. If more than the MaxRecords value is available, a pagination token called a marker is included in the response so you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBInstanceAutomatedBackupsMessage$MaxRecords": "

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.

", + "DescribeDBInstancesMessage$MaxRecords": "

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.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBLogFilesMessage$MaxRecords": "

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 you can retrieve the remaining results.

", + "DescribeDBParameterGroupsMessage$MaxRecords": "

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.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBParametersMessage$MaxRecords": "

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.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBRecommendationsMessage$MaxRecords": "

The maximum number of recommendations 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.

", + "DescribeDBSecurityGroupsMessage$MaxRecords": "

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.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBSnapshotTenantDatabasesMessage$MaxRecords": "

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.

", + "DescribeDBSnapshotsMessage$MaxRecords": "

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.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBSubnetGroupsMessage$MaxRecords": "

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.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeEngineDefaultClusterParametersMessage$MaxRecords": "

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeEngineDefaultParametersMessage$MaxRecords": "

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeEventSubscriptionsMessage$MaxRecords": "

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.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeEventsMessage$Duration": "

The number of minutes to retrieve events for.

Default: 60

", + "DescribeEventsMessage$MaxRecords": "

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.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeGlobalClustersMessage$MaxRecords": "

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.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeIntegrationsMessage$MaxRecords": "

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.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeOptionGroupOptionsMessage$MaxRecords": "

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.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeOptionGroupsMessage$MaxRecords": "

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.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeOrderableDBInstanceOptionsMessage$MaxRecords": "

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.

Default: 100

Constraints: Minimum 20, maximum 1000.

", + "DescribePendingMaintenanceActionsMessage$MaxRecords": "

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.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeReservedDBInstancesMessage$MaxRecords": "

The maximum number of records to include in the response. If more than the MaxRecords value is available, a pagination token called a marker is included in the response so you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeReservedDBInstancesOfferingsMessage$MaxRecords": "

The maximum number of records to include in the response. If more than the MaxRecords value is available, a pagination token called a marker is included in the response so you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeSourceRegionsMessage$MaxRecords": "

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeTenantDatabasesMessage$MaxRecords": "

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.

", + "ModifyCurrentDBClusterCapacityMessage$Capacity": "

The DB cluster capacity.

When you change the capacity of a paused Aurora Serverless v1 DB cluster, it automatically resumes.

Constraints:

  • For Aurora MySQL, valid capacity values are 1, 2, 4, 8, 16, 32, 64, 128, and 256.

  • For Aurora PostgreSQL, valid capacity values are 2, 4, 8, 16, 32, 64, 192, and 384.

", + "ModifyCurrentDBClusterCapacityMessage$SecondsBeforeTimeout": "

The amount of time, in seconds, that Aurora Serverless v1 tries to find a scaling point to perform seamless scaling before enforcing the timeout action. The default is 300.

Specify a value between 10 and 600 seconds.

", + "ModifyDBClusterMessage$BackupRetentionPeriod": "

The number of days for which automated backups are retained. Specify a minimum value of 1.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Default: 1

Constraints:

  • Must be a value from 1 to 35.

", + "ModifyDBClusterMessage$Port": "

The port number on which the DB cluster accepts connections.

Valid for Cluster Type: Aurora DB clusters only

Valid Values: 1150-65535

Default: The same port as the original DB cluster.

", + "ModifyDBClusterMessage$AllocatedStorage": "

The amount of storage in gibibytes (GiB) to allocate to each DB instance in the Multi-AZ DB cluster.

Valid for Cluster Type: Multi-AZ DB clusters only

", + "ModifyDBClusterMessage$Iops": "

The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for each DB instance in the Multi-AZ DB cluster.

For information about valid IOPS values, see Amazon RDS Provisioned IOPS storage in the Amazon RDS User Guide.

Valid for Cluster Type: Multi-AZ DB clusters only

Constraints:

  • Must be a multiple between .5 and 50 of the storage amount for the DB cluster.

", + "ModifyDBClusterMessage$MonitoringInterval": "

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0.

If MonitoringRoleArn is specified, also set MonitoringInterval to a value other than 0.

Valid for Cluster Type: Multi-AZ DB clusters only

Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60

Default: 0

", + "ModifyDBClusterMessage$PerformanceInsightsRetentionPeriod": "

The number of days to retain Performance Insights data.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

If you specify a retention period that isn't valid, such as 94, Amazon RDS issues an error.

", + "ModifyDBInstanceMessage$AllocatedStorage": "

The new amount of storage in gibibytes (GiB) to allocate for the DB instance.

For RDS for Db2, MariaDB, RDS for MySQL, RDS for Oracle, and RDS for PostgreSQL, the value supplied must be at least 10% greater than the current value. Values that are not at least 10% greater than the existing value are rounded up so that they are 10% greater than the current value.

For the valid values for allocated storage for each engine, see CreateDBInstance.

Constraints:

  • When you increase the allocated storage for a DB instance that uses Provisioned IOPS (gp3, io1, or io2 storage type), you must also specify the Iops parameter. You can use the current value for Iops.

", + "ModifyDBInstanceMessage$BackupRetentionPeriod": "

The number of days to retain automated backups. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups.

Enabling and disabling backups can result in a brief I/O suspension that lasts from a few seconds to a few minutes, depending on the size and class of your DB instance.

These changes are applied during the next maintenance window unless the ApplyImmediately parameter is enabled for this request. If you change the parameter from one non-zero value to another non-zero value, the change is asynchronously applied as soon as possible.

This setting doesn't apply to Amazon Aurora DB instances. The retention period for automated backups is managed by the DB cluster. For more information, see ModifyDBCluster.

Default: Uses existing setting

Constraints:

  • Must be a value from 0 to 35.

  • Can't be set to 0 if the DB instance is a source to read replicas.

  • Can't be set to 0 for an RDS Custom for Oracle DB instance.

", + "ModifyDBInstanceMessage$Iops": "

The new Provisioned IOPS (I/O operations per second) value for the RDS instance.

Changing this setting doesn't result in an outage and the change is applied during the next maintenance window unless the ApplyImmediately parameter is enabled for this request. If you are migrating from Provisioned IOPS to standard storage, set this value to 0. The DB instance will require a reboot for the change in storage type to take effect.

If you choose to migrate your DB instance from using standard storage to Provisioned IOPS (io1), or from Provisioned IOPS to standard storage, the process can take time. The duration of the migration depends on several factors such as database load, storage size, storage type (standard or Provisioned IOPS), amount of IOPS provisioned (if any), and the number of prior scale storage operations. Typical migration times are under 24 hours, but the process can take up to several days in some cases. During the migration, the DB instance is available for use, but might experience performance degradation. While the migration takes place, nightly backups for the instance are suspended. No other Amazon RDS operations can take place for the instance, including modifying the instance, rebooting the instance, deleting the instance, creating a read replica for the instance, and creating a DB snapshot of the instance.

Constraints:

  • For RDS for MariaDB, RDS for MySQL, RDS for Oracle, and RDS for PostgreSQL - The value supplied must be at least 10% greater than the current value. Values that are not at least 10% greater than the existing value are rounded up so that they are 10% greater than the current value.

  • When you increase the Provisioned IOPS, you must also specify the AllocatedStorage parameter. You can use the current value for AllocatedStorage.

Default: Uses existing setting

", + "ModifyDBInstanceMessage$StorageThroughput": "

The storage throughput value for the DB instance.

This setting applies only to the gp3 storage type.

This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.

", + "ModifyDBInstanceMessage$MonitoringInterval": "

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To disable collection of Enhanced Monitoring metrics, specify 0.

If MonitoringRoleArn is specified, set MonitoringInterval to a value other than 0.

This setting doesn't apply to RDS Custom DB instances.

Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60

Default: 0

", + "ModifyDBInstanceMessage$DBPortNumber": "

The port number on which the database accepts connections.

The value of the DBPortNumber parameter must not match any of the port values specified for options in the option group for the DB instance.

If you change the DBPortNumber value, your database restarts regardless of the value of the ApplyImmediately parameter.

This setting doesn't apply to RDS Custom DB instances.

Valid Values: 1150-65535

Default:

  • Amazon Aurora - 3306

  • RDS for Db2 - 50000

  • RDS for MariaDB - 3306

  • RDS for Microsoft SQL Server - 1433

  • RDS for MySQL - 3306

  • RDS for Oracle - 1521

  • RDS for PostgreSQL - 5432

Constraints:

  • For RDS for Microsoft SQL Server, the value can't be 1234, 1434, 3260, 3343, 3389, 47001, or 49152-49156.

", + "ModifyDBInstanceMessage$PromotionTier": "

The order of priority in which an Aurora Replica is promoted to the primary instance after a failure of the existing primary instance. For more information, see Fault Tolerance for an Aurora DB Cluster in the Amazon Aurora User Guide.

This setting doesn't apply to RDS Custom DB instances.

Default: 1

Valid Values: 0 - 15

", + "ModifyDBInstanceMessage$PerformanceInsightsRetentionPeriod": "

The number of days to retain Performance Insights data.

This setting doesn't apply to RDS Custom DB instances.

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

If you specify a retention period that isn't valid, such as 94, Amazon RDS returns an error.

", + "ModifyDBInstanceMessage$MaxAllocatedStorage": "

The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance.

For more information about this setting, including limitations that apply to it, see Managing capacity automatically with Amazon RDS storage autoscaling in the Amazon RDS User Guide.

This setting doesn't apply to RDS Custom DB instances.

", + "ModifyDBInstanceMessage$ResumeFullAutomationModeMinutes": "

The number of minutes to pause the automation. When the time period ends, RDS Custom resumes full automation.

Default: 60

Constraints:

  • Must be at least 60.

  • Must be no more than 1,440.

", + "ModifyDBProxyRequest$IdleClientTimeout": "

The number of seconds that a connection to the proxy can be inactive before the proxy disconnects it. You can set this value higher or lower than the connection timeout limit for the associated database.

", + "Option$Port": "

If required, the port configured for this option to use.

", + "OptionConfiguration$Port": "

The optional port for the option.

", + "OptionGroupOption$DefaultPort": "

If the option requires a port, specifies the default port for the option.

", + "OrderableDBInstanceOption$MinStorageSize": "

Minimum storage size for a DB instance.

", + "OrderableDBInstanceOption$MaxStorageSize": "

Maximum storage size for a DB instance.

", + "OrderableDBInstanceOption$MinIopsPerDbInstance": "

Minimum total provisioned IOPS for a DB instance.

", + "OrderableDBInstanceOption$MaxIopsPerDbInstance": "

Maximum total provisioned IOPS for a DB instance.

", + "OrderableDBInstanceOption$MinStorageThroughputPerDbInstance": "

Minimum storage throughput for a DB instance.

", + "OrderableDBInstanceOption$MaxStorageThroughputPerDbInstance": "

Maximum storage throughput for a DB instance.

", + "PendingModifiedValues$AllocatedStorage": "

The allocated storage size for the DB instance specified in gibibytes (GiB).

", + "PendingModifiedValues$Port": "

The port for the DB instance.

", + "PendingModifiedValues$BackupRetentionPeriod": "

The number of days for which automated backups are retained.

", + "PendingModifiedValues$Iops": "

The Provisioned IOPS value for the DB instance.

", + "PendingModifiedValues$StorageThroughput": "

The storage throughput of the DB instance.

", + "PromoteReadReplicaMessage$BackupRetentionPeriod": "

The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups.

Default: 1

Constraints:

  • Must be a value from 0 to 35.

  • Can't be set to 0 if the DB instance is a source to read replicas.

", + "PurchaseReservedDBInstancesOfferingMessage$DBInstanceCount": "

The number of instances to reserve.

Default: 1

", + "Range$Step": "

The step value for the range. For example, if you have a range of 5,000 to 10,000, with a step value of 1,000, the valid values start at 5,000 and step up by 1,000. Even though 7,500 is within the range, it isn't a valid value for the range. The valid values are 5,000, 6,000, 7,000, 8,000...

", + "RestoreDBClusterFromS3Message$BackupRetentionPeriod": "

The number of days for which automated backups of the restored DB cluster are retained. You must specify a minimum value of 1.

Default: 1

Constraints:

  • Must be a value from 1 to 35

", + "RestoreDBClusterFromS3Message$Port": "

The port number on which the instances in the restored DB cluster accept connections.

Default: 3306

", + "RestoreDBClusterFromSnapshotMessage$Port": "

The port number on which the new DB cluster accepts connections.

Constraints: This value must be 1150-65535

Default: The same port as the original DB cluster.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$Iops": "

The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for each DB instance in the Multi-AZ DB cluster.

For information about valid IOPS values, see Amazon RDS Provisioned IOPS storage in the Amazon RDS User Guide.

Constraints: Must be a multiple between .5 and 50 of the storage amount for the DB instance.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$MonitoringInterval": "

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0.

If MonitoringRoleArn is specified, also set MonitoringInterval to a value other than 0.

Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60

Default: 0

", + "RestoreDBClusterFromSnapshotMessage$PerformanceInsightsRetentionPeriod": "

The number of days to retain Performance Insights data.

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

If you specify a retention period that isn't valid, such as 94, Amazon RDS issues an error.

", + "RestoreDBClusterToPointInTimeMessage$Port": "

The port number on which the new DB cluster accepts connections.

Constraints: A value from 1150-65535.

Default: The default port for the engine.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterToPointInTimeMessage$Iops": "

The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for each DB instance in the Multi-AZ DB cluster.

For information about valid IOPS values, see Amazon RDS Provisioned IOPS storage in the Amazon RDS User Guide.

Constraints: Must be a multiple between .5 and 50 of the storage amount for the DB instance.

Valid for: Multi-AZ DB clusters only

", + "RestoreDBClusterToPointInTimeMessage$MonitoringInterval": "

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0.

If MonitoringRoleArn is specified, also set MonitoringInterval to a value other than 0.

Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60

Default: 0

", + "RestoreDBClusterToPointInTimeMessage$PerformanceInsightsRetentionPeriod": "

The number of days to retain Performance Insights data.

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

If you specify a retention period that isn't valid, such as 94, Amazon RDS issues an error.

", + "RestoreDBInstanceFromDBSnapshotMessage$Port": "

The port number on which the database accepts connections.

Default: The same port as the original DB instance

Constraints: Value must be 1150-65535

", + "RestoreDBInstanceFromDBSnapshotMessage$Iops": "

Specifies the amount of provisioned IOPS for the DB instance, expressed in I/O operations per second. If this parameter isn't specified, the IOPS value is taken from the backup. If this parameter is set to 0, the new instance is converted to a non-PIOPS instance. The conversion takes additional time, though your DB instance is available for connections before the conversion starts.

The provisioned IOPS value must follow the requirements for your database engine. For more information, see Amazon RDS Provisioned IOPS storage in the Amazon RDS User Guide.

Constraints: Must be an integer greater than 1000.

", + "RestoreDBInstanceFromDBSnapshotMessage$StorageThroughput": "

Specifies the storage throughput value for the DB instance.

This setting doesn't apply to RDS Custom or Amazon Aurora.

", + "RestoreDBInstanceFromDBSnapshotMessage$AllocatedStorage": "

The amount of storage (in gibibytes) to allocate initially for the DB instance. Follow the allocation rules specified in CreateDBInstance.

This setting isn't valid for RDS for SQL Server.

Be sure to allocate enough storage for your new DB instance so that the restore operation can succeed. You can also allocate additional storage for future growth.

", + "RestoreDBInstanceFromS3Message$AllocatedStorage": "

The amount of storage (in gibibytes) to allocate initially for the DB instance. Follow the allocation rules specified in CreateDBInstance.

This setting isn't valid for RDS for SQL Server.

Be sure to allocate enough storage for your new DB instance so that the restore operation can succeed. You can also allocate additional storage for future growth.

", + "RestoreDBInstanceFromS3Message$BackupRetentionPeriod": "

The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. For more information, see CreateDBInstance.

", + "RestoreDBInstanceFromS3Message$Port": "

The port number on which the database accepts connections.

Type: Integer

Valid Values: 1150-65535

Default: 3306

", + "RestoreDBInstanceFromS3Message$Iops": "

The amount of Provisioned IOPS (input/output operations per second) to allocate initially for the DB instance. For information about valid IOPS values, see Amazon RDS Provisioned IOPS storage in the Amazon RDS User Guide.

", + "RestoreDBInstanceFromS3Message$StorageThroughput": "

Specifies the storage throughput value for the DB instance.

This setting doesn't apply to RDS Custom or Amazon Aurora.

", + "RestoreDBInstanceFromS3Message$MonitoringInterval": "

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To disable collecting Enhanced Monitoring metrics, specify 0.

If MonitoringRoleArn is specified, then you must also set MonitoringInterval to a value other than 0.

Valid Values: 0, 1, 5, 10, 15, 30, 60

Default: 0

", + "RestoreDBInstanceFromS3Message$PerformanceInsightsRetentionPeriod": "

The number of days to retain Performance Insights data. The default is 7 days. The following values are valid:

  • 7

  • month * 31, where month is a number of months from 1-23

  • 731

For example, the following values are valid:

  • 93 (3 months * 31)

  • 341 (11 months * 31)

  • 589 (19 months * 31)

  • 731

If you specify a retention period such as 94, which isn't a valid value, RDS issues an error.

", + "RestoreDBInstanceFromS3Message$MaxAllocatedStorage": "

The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance.

For more information about this setting, including limitations that apply to it, see Managing capacity automatically with Amazon RDS storage autoscaling in the Amazon RDS User Guide.

", + "RestoreDBInstanceToPointInTimeMessage$Port": "

The port number on which the database accepts connections.

Default: The same port as the original DB instance.

Constraints:

  • The value must be 1150-65535.

", + "RestoreDBInstanceToPointInTimeMessage$Iops": "

The amount of Provisioned IOPS (input/output operations per second) to initially allocate for the DB instance.

This setting doesn't apply to SQL Server.

Constraints:

  • Must be an integer greater than 1000.

", + "RestoreDBInstanceToPointInTimeMessage$StorageThroughput": "

The storage throughput value for the DB instance.

This setting doesn't apply to RDS Custom or Amazon Aurora.

", + "RestoreDBInstanceToPointInTimeMessage$MaxAllocatedStorage": "

The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance.

For more information about this setting, including limitations that apply to it, see Managing capacity automatically with Amazon RDS storage autoscaling in the Amazon RDS User Guide.

This setting doesn't apply to RDS Custom.

", + "RestoreDBInstanceToPointInTimeMessage$AllocatedStorage": "

The amount of storage (in gibibytes) to allocate initially for the DB instance. Follow the allocation rules specified in CreateDBInstance.

This setting isn't valid for RDS for SQL Server.

Be sure to allocate enough storage for your new DB instance so that the restore operation can succeed. You can also allocate additional storage for future growth.

", + "ScalingConfiguration$MinCapacity": "

The minimum capacity for an Aurora DB cluster in serverless DB engine mode.

For Aurora MySQL, valid capacity values are 1, 2, 4, 8, 16, 32, 64, 128, and 256.

For Aurora PostgreSQL, valid capacity values are 2, 4, 8, 16, 32, 64, 192, and 384.

The minimum capacity must be less than or equal to the maximum capacity.

", + "ScalingConfiguration$MaxCapacity": "

The maximum capacity for an Aurora DB cluster in serverless DB engine mode.

For Aurora MySQL, valid capacity values are 1, 2, 4, 8, 16, 32, 64, 128, and 256.

For Aurora PostgreSQL, valid capacity values are 2, 4, 8, 16, 32, 64, 192, and 384.

The maximum capacity must be greater than or equal to the minimum capacity.

", + "ScalingConfiguration$SecondsUntilAutoPause": "

The time, in seconds, before an Aurora DB cluster in serverless mode is paused.

Specify a value between 300 and 86,400 seconds.

", + "ScalingConfiguration$SecondsBeforeTimeout": "

The amount of time, in seconds, that Aurora Serverless v1 tries to find a scaling point to perform seamless scaling before enforcing the timeout action. The default is 300.

Specify a value between 60 and 600 seconds.

", + "ScalingConfigurationInfo$MinCapacity": "

The minimum capacity for an Aurora DB cluster in serverless DB engine mode.

", + "ScalingConfigurationInfo$MaxCapacity": "

The maximum capacity for an Aurora DB cluster in serverless DB engine mode.

", + "ScalingConfigurationInfo$SecondsUntilAutoPause": "

The remaining amount of time, in seconds, before the Aurora DB cluster in serverless mode is paused. A DB cluster can be paused only when it's idle (it has no connections).

", + "ScalingConfigurationInfo$SecondsBeforeTimeout": "

The number of seconds before scaling times out. What happens when an attempted scaling action times out is determined by the TimeoutAction setting.

", + "ServerlessV2ScalingConfiguration$SecondsUntilAutoPause": "

Specifies the number of seconds an Aurora Serverless v2 DB instance must be idle before Aurora attempts to automatically pause it.

Specify a value between 300 seconds (five minutes) and 86,400 seconds (one day). The default is 300 seconds.

", + "ServerlessV2ScalingConfigurationInfo$SecondsUntilAutoPause": "

The number of seconds an Aurora Serverless v2 DB instance must be idle before Aurora attempts to automatically pause it. This property is only shown when the minimum capacity for the cluster is set to 0 ACUs. Changing the minimum capacity to a nonzero value removes this property. If you later change the minimum capacity back to 0 ACUs, this property is reset to its default value unless you specify it again.

This value ranges between 300 seconds (five minutes) and 86,400 seconds (one day). The default is 300 seconds.

", + "StartDBInstanceAutomatedBackupsReplicationMessage$BackupRetentionPeriod": "

The retention period for the replicated automated backups.

" + } + }, + "Integration": { + "base": "

A zero-ETL integration with Amazon Redshift.

", + "refs": { + "IntegrationList$member": null + } + }, + "IntegrationAlreadyExistsFault": { + "base": "

The integration you are trying to create already exists.

", + "refs": {} + }, + "IntegrationArn": { + "base": null, + "refs": { + "Integration$IntegrationArn": "

The ARN of the integration.

" + } + }, + "IntegrationConflictOperationFault": { + "base": "

A conflicting conditional operation is currently in progress against this resource. Typically occurs when there are multiple requests being made to the same resource at the same time, and these requests conflict with each other.

", + "refs": {} + }, + "IntegrationDescription": { + "base": null, + "refs": { + "CreateIntegrationMessage$Description": "

A description of the integration.

", + "Integration$Description": "

A description of the integration.

", + "ModifyIntegrationMessage$Description": "

A new description for the integration.

" + } + }, + "IntegrationError": { + "base": "

An error associated with a zero-ETL integration with Amazon Redshift.

", + "refs": { + "IntegrationErrorList$member": null + } + }, + "IntegrationErrorList": { + "base": null, + "refs": { + "Integration$Errors": "

Any errors associated with the integration.

" + } + }, + "IntegrationIdentifier": { + "base": null, + "refs": { + "DeleteIntegrationMessage$IntegrationIdentifier": "

The unique identifier of the integration.

", + "DescribeIntegrationsMessage$IntegrationIdentifier": "

The unique identifier of the integration.

", + "ModifyIntegrationMessage$IntegrationIdentifier": "

The unique identifier of the integration to modify.

" + } + }, + "IntegrationList": { + "base": null, + "refs": { + "DescribeIntegrationsResponse$Integrations": "

A list of integrations.

" + } + }, + "IntegrationName": { + "base": null, + "refs": { + "CreateIntegrationMessage$IntegrationName": "

The name of the integration.

", + "Integration$IntegrationName": "

The name of the integration.

", + "ModifyIntegrationMessage$IntegrationName": "

A new name for the integration.

" + } + }, + "IntegrationNotFoundFault": { + "base": "

The specified integration could not be found.

", + "refs": {} + }, + "IntegrationQuotaExceededFault": { + "base": "

You can't crate any more zero-ETL integrations because the quota has been reached.

", + "refs": {} + }, + "IntegrationStatus": { + "base": null, + "refs": { + "Integration$Status": "

The current status of the integration.

" + } + }, + "InvalidBlueGreenDeploymentStateFault": { + "base": "

The blue/green deployment can't be switched over or deleted because there is an invalid configuration in the green environment.

", + "refs": {} + }, + "InvalidCustomDBEngineVersionStateFault": { + "base": "

You can't delete the CEV.

", + "refs": {} + }, + "InvalidDBClusterAutomatedBackupStateFault": { + "base": "

The automated backup is in an invalid state. For example, this automated backup is associated with an active cluster.

", + "refs": {} + }, + "InvalidDBClusterCapacityFault": { + "base": "

Capacity isn't a valid Aurora Serverless DB cluster capacity. Valid capacity values are 2, 4, 8, 16, 32, 64, 128, and 256.

", + "refs": {} + }, + "InvalidDBClusterEndpointStateFault": { + "base": "

The requested operation can't be performed on the endpoint while the endpoint is in this state.

", + "refs": {} + }, + "InvalidDBClusterSnapshotStateFault": { + "base": "

The supplied value isn't a valid DB cluster snapshot state.

", + "refs": {} + }, + "InvalidDBClusterStateFault": { + "base": "

The requested operation can't be performed while the cluster is in this state.

", + "refs": {} + }, + "InvalidDBInstanceAutomatedBackupStateFault": { + "base": "

The automated backup is in an invalid state. For example, this automated backup is associated with an active instance.

", + "refs": {} + }, + "InvalidDBInstanceStateFault": { + "base": "

The DB instance isn't in a valid state.

", + "refs": {} + }, + "InvalidDBParameterGroupStateFault": { + "base": "

The DB parameter group is in use or is in an invalid state. If you are attempting to delete the parameter group, you can't delete it when the parameter group is in this state.

", + "refs": {} + }, + "InvalidDBProxyEndpointStateFault": { + "base": "

You can't perform this operation while the DB proxy endpoint is in a particular state.

", + "refs": {} + }, + "InvalidDBProxyStateFault": { + "base": "

The requested operation can't be performed while the proxy is in this state.

", + "refs": {} + }, + "InvalidDBSecurityGroupStateFault": { + "base": "

The state of the DB security group doesn't allow deletion.

", + "refs": {} + }, + "InvalidDBSnapshotStateFault": { + "base": "

The state of the DB snapshot doesn't allow deletion.

", + "refs": {} + }, + "InvalidDBSubnetGroupFault": { + "base": "

The DBSubnetGroup doesn't belong to the same VPC as that of an existing cross-region read replica of the same source instance.

", + "refs": {} + }, + "InvalidDBSubnetGroupStateFault": { + "base": "

The DB subnet group cannot be deleted because it's in use.

", + "refs": {} + }, + "InvalidDBSubnetStateFault": { + "base": "

The DB subnet isn't in the available state.

", + "refs": {} + }, + "InvalidExportOnlyFault": { + "base": "

The export is invalid for exporting to an Amazon S3 bucket.

", + "refs": {} + }, + "InvalidExportSourceStateFault": { + "base": "

The state of the export snapshot is invalid for exporting to an Amazon S3 bucket.

", + "refs": {} + }, + "InvalidExportTaskStateFault": { + "base": "

You can't cancel an export task that has completed.

", + "refs": {} + }, + "InvalidGlobalClusterStateFault": { + "base": "

The global cluster is in an invalid state and can't perform the requested operation.

", + "refs": {} + }, + "InvalidIntegrationStateFault": { + "base": "

The integration is in an invalid state and can't perform the requested operation.

", + "refs": {} + }, + "InvalidOptionGroupStateFault": { + "base": "

The option group isn't in the available state.

", + "refs": {} + }, + "InvalidResourceStateFault": { + "base": "

The operation can't be performed because another operation is in progress.

", + "refs": {} + }, + "InvalidRestoreFault": { + "base": "

Cannot restore from VPC backup to non-VPC DB instance.

", + "refs": {} + }, + "InvalidS3BucketFault": { + "base": "

The specified Amazon S3 bucket name can't be found or Amazon RDS isn't authorized to access the specified Amazon S3 bucket. Verify the SourceS3BucketName and S3IngestionRoleArn values and try again.

", + "refs": {} + }, + "InvalidSubnet": { + "base": "

The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

", + "refs": {} + }, + "InvalidVPCNetworkStateFault": { + "base": "

The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

", + "refs": {} + }, + "IssueDetails": { + "base": "

The details of an issue with your DB instances, DB clusters, and DB parameter groups.

", + "refs": { + "DBRecommendation$IssueDetails": "

Details of the issue that caused the recommendation.

", + "RecommendedAction$IssueDetails": "

The details of the issue.

" + } + }, + "KMSKeyNotAccessibleFault": { + "base": "

An error occurred accessing an Amazon Web Services KMS key.

", + "refs": {} + }, + "KeyList": { + "base": null, + "refs": { + "RemoveTagsFromResourceMessage$TagKeys": "

The tag key (name) of the tag to be removed.

" + } + }, + "KmsKeyIdOrArn": { + "base": null, + "refs": { + "CreateCustomDBEngineVersionMessage$KMSKeyId": "

The Amazon Web Services KMS key identifier for an encrypted CEV. A symmetric encryption KMS key is required for RDS Custom, but optional for Amazon RDS.

If you have an existing symmetric encryption KMS key in your account, you can use it with RDS Custom. No further action is necessary. If you don't already have a symmetric encryption KMS key in your account, follow the instructions in Creating a symmetric encryption KMS key in the Amazon Web Services Key Management Service Developer Guide.

You can choose the same symmetric encryption key when you create a CEV and a DB instance, or choose different keys.

" + } + }, + "LifecycleSupportName": { + "base": null, + "refs": { + "SupportedEngineLifecycle$LifecycleSupportName": "

The type of lifecycle support that the engine version is in.

This parameter returns the following values:

  • open-source-rds-standard-support - Indicates RDS standard support or Aurora standard support.

  • open-source-rds-extended-support - Indicates Amazon RDS Extended Support.

For Amazon RDS for MySQL, Amazon RDS for PostgreSQL, Aurora MySQL, and Aurora PostgreSQL, this parameter returns both open-source-rds-standard-support and open-source-rds-extended-support.

For Amazon RDS for MariaDB, this parameter only returns the value open-source-rds-standard-support.

For information about Amazon RDS Extended Support, see Amazon RDS Extended Support with Amazon RDS in the Amazon RDS User Guide and Amazon RDS Extended Support with Amazon Aurora in the Amazon Aurora User Guide.

" + } + }, + "LimitlessDatabase": { + "base": "

Contains details for Aurora Limitless Database.

", + "refs": { + "DBCluster$LimitlessDatabase": "

The details for Aurora Limitless Database.

" + } + }, + "LimitlessDatabaseStatus": { + "base": null, + "refs": { + "LimitlessDatabase$Status": "

The status of Aurora Limitless Database.

" + } + }, + "ListTagsForResourceMessage": { + "base": "

", + "refs": {} + }, + "LogTypeList": { + "base": null, + "refs": { + "CloudwatchLogsExportConfiguration$EnableLogTypes": "

The list of log types to enable.

The following values are valid for each DB engine:

  • Aurora MySQL - audit | error | general | slowquery

  • Aurora PostgreSQL - postgresql

  • RDS for MySQL - error | general | slowquery

  • RDS for PostgreSQL - postgresql | upgrade

", + "CloudwatchLogsExportConfiguration$DisableLogTypes": "

The list of log types to disable.

The following values are valid for each DB engine:

  • Aurora MySQL - audit | error | general | slowquery

  • Aurora PostgreSQL - postgresql

  • RDS for MySQL - error | general | slowquery

  • RDS for PostgreSQL - postgresql | upgrade

", + "CreateDBClusterMessage$EnableCloudwatchLogsExports": "

The list of log types that need to be enabled for exporting to CloudWatch Logs.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

The following values are valid for each DB engine:

  • Aurora MySQL - audit | error | general | instance | slowquery | iam-db-auth-error

  • Aurora PostgreSQL - instance | postgresql | iam-db-auth-error

  • RDS for MySQL - error | general | slowquery | iam-db-auth-error

  • RDS for PostgreSQL - postgresql | upgrade | iam-db-auth-error

For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.

", + "CreateDBInstanceMessage$EnableCloudwatchLogsExports": "

The list of log types to enable for exporting to CloudWatch Logs. For more information, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

This setting doesn't apply to the following DB instances:

  • Amazon Aurora (CloudWatch Logs exports are managed by the DB cluster.)

  • RDS Custom

The following values are valid for each DB engine:

  • RDS for Db2 - diag.log | notify.log | iam-db-auth-error

  • RDS for MariaDB - audit | error | general | slowquery | iam-db-auth-error

  • RDS for Microsoft SQL Server - agent | error

  • RDS for MySQL - audit | error | general | slowquery | iam-db-auth-error

  • RDS for Oracle - alert | audit | listener | trace | oemagent

  • RDS for PostgreSQL - postgresql | upgrade | iam-db-auth-error

", + "CreateDBInstanceReadReplicaMessage$EnableCloudwatchLogsExports": "

The list of logs that the new DB instance is to export to CloudWatch Logs. The values in the list depend on the DB engine being used. For more information, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

This setting doesn't apply to RDS Custom DB instances.

", + "DBCluster$EnabledCloudwatchLogsExports": "

A list of log types that this DB cluster is configured to export to CloudWatch Logs.

Log types vary by DB engine. For information about the log types for each DB engine, see Amazon RDS Database Log Files in the Amazon Aurora User Guide.

", + "DBEngineVersion$ExportableLogTypes": "

The types of logs that the database engine has available for export to CloudWatch Logs.

", + "DBInstance$EnabledCloudwatchLogsExports": "

A list of log types that this DB instance is configured to export to CloudWatch Logs.

Log types vary by DB engine. For information about the log types for each DB engine, see Monitoring Amazon RDS log files in the Amazon RDS User Guide.

", + "PendingCloudwatchLogsExports$LogTypesToEnable": "

Log types that are in the process of being deactivated. After they are deactivated, these log types aren't exported to CloudWatch Logs.

", + "PendingCloudwatchLogsExports$LogTypesToDisable": "

Log types that are in the process of being enabled. After they are enabled, these log types are exported to CloudWatch Logs.

", + "RestoreDBClusterFromS3Message$EnableCloudwatchLogsExports": "

The list of logs that the restored DB cluster is to export to CloudWatch Logs. The values in the list depend on the DB engine being used.

Aurora MySQL

Possible values are audit, error, general, instance, slowquery, and iam-db-auth-error.

Aurora PostgreSQL

Possible value are instance, postgresql, and iam-db-auth-error.

For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.

", + "RestoreDBClusterFromSnapshotMessage$EnableCloudwatchLogsExports": "

The list of logs that the restored DB cluster is to export to Amazon CloudWatch Logs. The values in the list depend on the DB engine being used.

RDS for MySQL

Possible values are error, general, slowquery, and iam-db-auth-error.

RDS for PostgreSQL

Possible values are postgresql, upgrade, and iam-db-auth-error.

Aurora MySQL

Possible values are audit, error, general, instance, slowquery, and iam-db-auth-error.

Aurora PostgreSQL

Possible value are instance, postgresql, and iam-db-auth-error.

For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterToPointInTimeMessage$EnableCloudwatchLogsExports": "

The list of logs that the restored DB cluster is to export to CloudWatch Logs. The values in the list depend on the DB engine being used.

RDS for MySQL

Possible values are error, general, slowquery, and iam-db-auth-error.

RDS for PostgreSQL

Possible values are postgresql, upgrade, and iam-db-auth-error.

Aurora MySQL

Possible values are audit, error, general, instance, slowquery, and iam-db-auth-error.

Aurora PostgreSQL

Possible value are instance, postgresql, and iam-db-auth-error.

For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBInstanceFromDBSnapshotMessage$EnableCloudwatchLogsExports": "

The list of logs for the restored DB instance to export to CloudWatch Logs. The values in the list depend on the DB engine. For more information, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

This setting doesn't apply to RDS Custom.

", + "RestoreDBInstanceFromS3Message$EnableCloudwatchLogsExports": "

The list of logs that the restored DB instance is to export to CloudWatch Logs. The values in the list depend on the DB engine being used. For more information, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

", + "RestoreDBInstanceToPointInTimeMessage$EnableCloudwatchLogsExports": "

The list of logs that the restored DB instance is to export to CloudWatch Logs. The values in the list depend on the DB engine being used. For more information, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

This setting doesn't apply to RDS Custom.

" + } + }, + "Long": { + "base": null, + "refs": { + "AccountQuota$Used": "

The amount currently used toward the quota maximum.

", + "AccountQuota$Max": "

The maximum allowed value for the quota.

", + "DescribeDBLogFilesDetails$LastWritten": "

A POSIX timestamp when the last log entry was written.

", + "DescribeDBLogFilesDetails$Size": "

The size, in bytes, of the log file for the specified DB instance.

", + "DescribeDBLogFilesMessage$FileLastWritten": "

Filters the available log files for files written since the specified date, in POSIX timestamp format with milliseconds.

", + "DescribeDBLogFilesMessage$FileSize": "

Filters the available log files for files larger than the specified size.

" + } + }, + "LongOptional": { + "base": null, + "refs": { + "CreateDBClusterMessage$BacktrackWindow": "

The target backtrack window, in seconds. To disable backtracking, set this value to 0.

Valid for Cluster Type: Aurora MySQL DB clusters only

Default: 0

Constraints:

  • If specified, this value must be set to a number from 0 to 259,200 (72 hours).

", + "DBCluster$BacktrackWindow": "

The target backtrack window, in seconds. If this value is set to 0, backtracking is disabled for the DB cluster. Otherwise, backtracking is enabled.

", + "DBCluster$BacktrackConsumedChangeRecords": "

The number of change records stored for Backtrack.

", + "ModifyDBClusterMessage$BacktrackWindow": "

The target backtrack window, in seconds. To disable backtracking, set this value to 0.

Valid for Cluster Type: Aurora MySQL DB clusters only

Default: 0

Constraints:

  • If specified, this value must be set to a number from 0 to 259,200 (72 hours).

", + "RestoreDBClusterFromS3Message$BacktrackWindow": "

The target backtrack window, in seconds. To disable backtracking, set this value to 0.

Currently, Backtrack is only supported for Aurora MySQL DB clusters.

Default: 0

Constraints:

  • If specified, this value must be set to a number from 0 to 259,200 (72 hours).

", + "RestoreDBClusterFromSnapshotMessage$BacktrackWindow": "

The target backtrack window, in seconds. To disable backtracking, set this value to 0.

Currently, Backtrack is only supported for Aurora MySQL DB clusters.

Default: 0

Constraints:

  • If specified, this value must be set to a number from 0 to 259,200 (72 hours).

Valid for: Aurora DB clusters only

", + "RestoreDBClusterToPointInTimeMessage$BacktrackWindow": "

The target backtrack window, in seconds. To disable backtracking, set this value to 0.

Default: 0

Constraints:

  • If specified, this value must be set to a number from 0 to 259,200 (72 hours).

Valid for: Aurora MySQL DB clusters only

" + } + }, + "MajorEngineVersion": { + "base": null, + "refs": { + "DescribeDBMajorEngineVersionsRequest$MajorEngineVersion": "

A specific database major engine version to return details for.

Example: 8.4

" + } + }, + "Marker": { + "base": null, + "refs": { + "DescribeDBMajorEngineVersionsRequest$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeIntegrationsMessage$Marker": "

An optional pagination token provided by a previous DescribeIntegrations request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeIntegrationsResponse$Marker": "

A pagination token that can be used in a later DescribeIntegrations request.

" + } + }, + "MasterUserSecret": { + "base": "

Contains the secret managed by RDS in Amazon Web Services Secrets Manager for the master user password.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide and Password management with Amazon Web Services Secrets Manager in the Amazon Aurora User Guide.

", + "refs": { + "DBCluster$MasterUserSecret": "

The secret managed by RDS in Amazon Web Services Secrets Manager for the master user password.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide and Password management with Amazon Web Services Secrets Manager in the Amazon Aurora User Guide.

", + "DBInstance$MasterUserSecret": "

The secret managed by RDS in Amazon Web Services Secrets Manager for the master user password.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

", + "TenantDatabase$MasterUserSecret": null + } + }, + "MaxRecords": { + "base": null, + "refs": { + "DescribeBlueGreenDeploymentsRequest$MaxRecords": "

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 you can retrieve the remaining results.

Default: 100

Constraints:

  • Must be a minimum of 20.

  • Can't exceed 100.

", + "DescribeDBMajorEngineVersionsRequest$MaxRecords": "

The maximum number of records to include in the response. If more than the MaxRecords value is available, a pagination token called a marker is included in the response so you can retrieve the remaining results.

Default: 100

", + "DescribeDBProxiesRequest$MaxRecords": "

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 the remaining results can be retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBProxyEndpointsRequest$MaxRecords": "

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 the remaining results can be retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBProxyTargetGroupsRequest$MaxRecords": "

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 the remaining results can be retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBProxyTargetsRequest$MaxRecords": "

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 the remaining results can be retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

", + "DescribeDBShardGroupsMessage$MaxRecords": "

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100

", + "DescribeExportTasksMessage$MaxRecords": "

The maximum number of records to include in the response. If more records exist than the specified value, a pagination token called a marker is included in the response. You can use the marker in a later DescribeExportTasks request to retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

" + } + }, + "Metric": { + "base": "

The representation of a metric.

", + "refs": { + "MetricList$member": null + } + }, + "MetricList": { + "base": null, + "refs": { + "PerformanceIssueDetails$Metrics": "

The metrics that are relevant to the performance issue.

" + } + }, + "MetricQuery": { + "base": "

The query to retrieve metric data points.

", + "refs": { + "Metric$MetricQuery": "

The query to retrieve metric data points.

" + } + }, + "MetricReference": { + "base": "

The reference (threshold) for a metric.

", + "refs": { + "MetricReferenceList$member": null + } + }, + "MetricReferenceList": { + "base": null, + "refs": { + "Metric$References": "

A list of metric references (thresholds).

" + } + }, + "MinimumEngineVersionPerAllowedValue": { + "base": "

The minimum DB engine version required for each corresponding allowed value for an option setting.

", + "refs": { + "MinimumEngineVersionPerAllowedValueList$member": null + } + }, + "MinimumEngineVersionPerAllowedValueList": { + "base": null, + "refs": { + "OptionGroupOptionSetting$MinimumEngineVersionPerAllowedValue": "

The minimum DB engine version required for the corresponding allowed value for this option setting.

" + } + }, + "ModifyActivityStreamRequest": { + "base": null, + "refs": {} + }, + "ModifyActivityStreamResponse": { + "base": null, + "refs": {} + }, + "ModifyCertificatesMessage": { + "base": null, + "refs": {} + }, + "ModifyCertificatesResult": { + "base": null, + "refs": {} + }, + "ModifyCurrentDBClusterCapacityMessage": { + "base": null, + "refs": {} + }, + "ModifyCustomDBEngineVersionMessage": { + "base": null, + "refs": {} + }, + "ModifyDBClusterEndpointMessage": { + "base": null, + "refs": {} + }, + "ModifyDBClusterMessage": { + "base": "

", + "refs": {} + }, + "ModifyDBClusterParameterGroupMessage": { + "base": "

", + "refs": {} + }, + "ModifyDBClusterResult": { + "base": null, + "refs": {} + }, + "ModifyDBClusterSnapshotAttributeMessage": { + "base": "

", + "refs": {} + }, + "ModifyDBClusterSnapshotAttributeResult": { + "base": null, + "refs": {} + }, + "ModifyDBInstanceMessage": { + "base": "

", + "refs": {} + }, + "ModifyDBInstanceResult": { + "base": null, + "refs": {} + }, + "ModifyDBParameterGroupMessage": { + "base": "

", + "refs": {} + }, + "ModifyDBProxyEndpointRequest": { + "base": null, + "refs": {} + }, + "ModifyDBProxyEndpointResponse": { + "base": null, + "refs": {} + }, + "ModifyDBProxyRequest": { + "base": null, + "refs": {} + }, + "ModifyDBProxyResponse": { + "base": null, + "refs": {} + }, + "ModifyDBProxyTargetGroupRequest": { + "base": null, + "refs": {} + }, + "ModifyDBProxyTargetGroupResponse": { + "base": null, + "refs": {} + }, + "ModifyDBRecommendationMessage": { + "base": null, + "refs": {} + }, + "ModifyDBShardGroupMessage": { + "base": null, + "refs": {} + }, + "ModifyDBSnapshotAttributeMessage": { + "base": "

", + "refs": {} + }, + "ModifyDBSnapshotAttributeResult": { + "base": null, + "refs": {} + }, + "ModifyDBSnapshotMessage": { + "base": null, + "refs": {} + }, + "ModifyDBSnapshotResult": { + "base": null, + "refs": {} + }, + "ModifyDBSubnetGroupMessage": { + "base": "

", + "refs": {} + }, + "ModifyDBSubnetGroupResult": { + "base": null, + "refs": {} + }, + "ModifyEventSubscriptionMessage": { + "base": "

", + "refs": {} + }, + "ModifyEventSubscriptionResult": { + "base": null, + "refs": {} + }, + "ModifyGlobalClusterMessage": { + "base": null, + "refs": {} + }, + "ModifyGlobalClusterResult": { + "base": null, + "refs": {} + }, + "ModifyIntegrationMessage": { + "base": null, + "refs": {} + }, + "ModifyOptionGroupMessage": { + "base": "

", + "refs": {} + }, + "ModifyOptionGroupResult": { + "base": null, + "refs": {} + }, + "ModifyTenantDatabaseMessage": { + "base": null, + "refs": {} + }, + "ModifyTenantDatabaseResult": { + "base": null, + "refs": {} + }, + "NetworkTypeNotSupported": { + "base": "

The network type is invalid for the DB instance. Valid nework type values are IPV4 and DUAL.

", + "refs": {} + }, + "Option": { + "base": "

The details of an option.

", + "refs": { + "OptionsList$member": null + } + }, + "OptionConfiguration": { + "base": "

A list of all available options for an option group.

", + "refs": { + "OptionConfigurationList$member": null + } + }, + "OptionConfigurationList": { + "base": null, + "refs": { + "ModifyOptionGroupMessage$OptionsToInclude": "

Options in this list are added to the option group or, if already present, the specified configuration is used to update the existing configuration.

" + } + }, + "OptionGroup": { + "base": "

", + "refs": { + "CopyOptionGroupResult$OptionGroup": null, + "CreateOptionGroupResult$OptionGroup": null, + "ModifyOptionGroupResult$OptionGroup": null, + "OptionGroupsList$member": null + } + }, + "OptionGroupAlreadyExistsFault": { + "base": "

The option group you are trying to create already exists.

", + "refs": {} + }, + "OptionGroupMembership": { + "base": "

Provides information on the option groups the DB instance is a member of.

", + "refs": { + "OptionGroupMembershipList$member": null + } + }, + "OptionGroupMembershipList": { + "base": null, + "refs": { + "DBInstance$OptionGroupMemberships": "

The list of option group memberships for this DB instance.

" + } + }, + "OptionGroupNotFoundFault": { + "base": "

The specified option group could not be found.

", + "refs": {} + }, + "OptionGroupOption": { + "base": "

Available option.

", + "refs": { + "OptionGroupOptionsList$member": null + } + }, + "OptionGroupOptionSetting": { + "base": "

Option group option settings are used to display settings available for each option with their default values and other information. These values are used with the DescribeOptionGroupOptions action.

", + "refs": { + "OptionGroupOptionSettingsList$member": null + } + }, + "OptionGroupOptionSettingsList": { + "base": null, + "refs": { + "OptionGroupOption$OptionGroupOptionSettings": "

The option settings that are available (and the default value) for each option in an option group.

" + } + }, + "OptionGroupOptionVersionsList": { + "base": null, + "refs": { + "OptionGroupOption$OptionGroupOptionVersions": "

The versions that are available for the option.

" + } + }, + "OptionGroupOptionsList": { + "base": "

List of available option group options.

", + "refs": { + "OptionGroupOptionsMessage$OptionGroupOptions": null + } + }, + "OptionGroupOptionsMessage": { + "base": "

", + "refs": {} + }, + "OptionGroupQuotaExceededFault": { + "base": "

The quota of 20 option groups was exceeded for this Amazon Web Services account.

", + "refs": {} + }, + "OptionGroups": { + "base": "

List of option groups.

", + "refs": {} + }, + "OptionGroupsList": { + "base": null, + "refs": { + "OptionGroups$OptionGroupsList": "

List of option groups.

" + } + }, + "OptionNamesList": { + "base": null, + "refs": { + "ModifyOptionGroupMessage$OptionsToRemove": "

Options in this list are removed from the option group.

" + } + }, + "OptionSetting": { + "base": "

Option settings are the actual settings being applied or configured for that option. It is used when you modify an option group or describe option groups. For example, the NATIVE_NETWORK_ENCRYPTION option has a setting called SQLNET.ENCRYPTION_SERVER that can have several different values.

", + "refs": { + "OptionSettingConfigurationList$member": null, + "OptionSettingsList$member": null + } + }, + "OptionSettingConfigurationList": { + "base": null, + "refs": { + "Option$OptionSettings": "

The option settings for this option.

" + } + }, + "OptionSettingsList": { + "base": null, + "refs": { + "OptionConfiguration$OptionSettings": "

The option settings to include in an option group.

" + } + }, + "OptionVersion": { + "base": "

The version for an option. Option group option versions are returned by the DescribeOptionGroupOptions action.

", + "refs": { + "OptionGroupOptionVersionsList$member": null + } + }, + "OptionsConflictsWith": { + "base": null, + "refs": { + "OptionGroupOption$OptionsConflictsWith": "

The options that conflict with this option.

" + } + }, + "OptionsDependedOn": { + "base": null, + "refs": { + "OptionGroupOption$OptionsDependedOn": "

The options that are prerequisites for this option.

" + } + }, + "OptionsList": { + "base": null, + "refs": { + "OptionGroup$Options": "

Indicates what options are available in the option group.

" + } + }, + "OrderableDBInstanceOption": { + "base": "

Contains a list of available options for a DB instance.

This data type is used as a response element in the DescribeOrderableDBInstanceOptions action.

", + "refs": { + "OrderableDBInstanceOptionsList$member": null + } + }, + "OrderableDBInstanceOptionsList": { + "base": null, + "refs": { + "OrderableDBInstanceOptionsMessage$OrderableDBInstanceOptions": "

An OrderableDBInstanceOption structure containing information about orderable options for the DB instance.

" + } + }, + "OrderableDBInstanceOptionsMessage": { + "base": "

Contains the result of a successful invocation of the DescribeOrderableDBInstanceOptions action.

", + "refs": {} + }, + "Outpost": { + "base": "

A data type that represents an Outpost.

For more information about RDS on Outposts, see Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

", + "refs": { + "Subnet$SubnetOutpost": "

If the subnet is associated with an Outpost, this value specifies the Outpost.

For more information about RDS on Outposts, see Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

" + } + }, + "Parameter": { + "base": "

This data type is used as a request parameter in the ModifyDBParameterGroup and ResetDBParameterGroup actions.

This data type is used as a response element in the DescribeEngineDefaultParameters and DescribeDBParameters actions.

", + "refs": { + "ParametersList$member": null + } + }, + "ParametersList": { + "base": null, + "refs": { + "DBClusterParameterGroupDetails$Parameters": "

Provides a list of parameters for the DB cluster parameter group.

", + "DBParameterGroupDetails$Parameters": "

A list of Parameter values.

", + "EngineDefaults$Parameters": "

Contains a list of engine default parameters.

", + "ModifyDBClusterParameterGroupMessage$Parameters": "

A list of parameters in the DB cluster parameter group to modify.

Valid Values (for the application method): immediate | pending-reboot

You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters.

When the application method is immediate, changes to dynamic parameters are applied immediately to the DB clusters associated with the parameter group. When the application method is pending-reboot, changes to dynamic and static parameters are applied after a reboot without failover to the DB clusters associated with the parameter group.

", + "ModifyDBParameterGroupMessage$Parameters": "

An array of parameter names, values, and the application methods for the parameter update. At least one parameter name, value, and application method must be supplied; later arguments are optional. A maximum of 20 parameters can be modified in a single request.

Valid Values (for the application method): immediate | pending-reboot

You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters.

When the application method is immediate, changes to dynamic parameters are applied immediately to the DB instances associated with the parameter group.

When the application method is pending-reboot, changes to dynamic and static parameters are applied after a reboot without failover to the DB instances associated with the parameter group.

You can't use pending-reboot with dynamic parameters on RDS for SQL Server DB instances. Use immediate.

For more information on modifying DB parameters, see Working with DB parameter groups in the Amazon RDS User Guide.

", + "ResetDBClusterParameterGroupMessage$Parameters": "

A list of parameter names in the DB cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is enabled.

", + "ResetDBParameterGroupMessage$Parameters": "

To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

MySQL

Valid Values (for Apply method): immediate | pending-reboot

You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters, and changes are applied when DB instance reboots.

MariaDB

Valid Values (for Apply method): immediate | pending-reboot

You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters, and changes are applied when DB instance reboots.

Oracle

Valid Values (for Apply method): pending-reboot

" + } + }, + "PendingCloudwatchLogsExports": { + "base": "

A list of the log types whose configuration is still pending. In other words, these log types are in the process of being activated or deactivated.

", + "refs": { + "ClusterPendingModifiedValues$PendingCloudwatchLogsExports": null, + "PendingModifiedValues$PendingCloudwatchLogsExports": null + } + }, + "PendingMaintenanceAction": { + "base": "

Provides information about a pending maintenance action for a resource.

", + "refs": { + "PendingMaintenanceActionDetails$member": null + } + }, + "PendingMaintenanceActionDetails": { + "base": null, + "refs": { + "ResourcePendingMaintenanceActions$PendingMaintenanceActionDetails": "

A list that provides details about the pending maintenance actions for the resource.

" + } + }, + "PendingMaintenanceActions": { + "base": null, + "refs": { + "PendingMaintenanceActionsMessage$PendingMaintenanceActions": "

A list of the pending maintenance actions for the resource.

" + } + }, + "PendingMaintenanceActionsMessage": { + "base": "

Data returned from the DescribePendingMaintenanceActions action.

", + "refs": {} + }, + "PendingModifiedValues": { + "base": "

This data type is used as a response element in the ModifyDBInstance operation and contains changes that will be applied during the next maintenance window.

", + "refs": { + "DBInstance$PendingModifiedValues": "

Information about pending changes to the DB instance. This information is returned only when there are pending changes. Specific changes are identified by subelements.

" + } + }, + "PerformanceInsightsMetricDimensionGroup": { + "base": "

A logical grouping of Performance Insights metrics for a related subject area. For example, the db.sql dimension group consists of the following dimensions:

  • db.sql.id - The hash of a running SQL statement, generated by Performance Insights.

  • db.sql.db_id - Either the SQL ID generated by the database engine, or a value generated by Performance Insights that begins with pi-.

  • db.sql.statement - The full text of the SQL statement that is running, for example, SELECT * FROM employees.

  • db.sql_tokenized.id - The hash of the SQL digest generated by Performance Insights.

Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned.

", + "refs": { + "PerformanceInsightsMetricQuery$GroupBy": "

A specification for how to aggregate the data points from a query result. You must specify a valid dimension group. Performance Insights will return all of the dimensions within that group, unless you provide the names of specific dimensions within that group. You can also request that Performance Insights return a limited number of values for a dimension.

" + } + }, + "PerformanceInsightsMetricQuery": { + "base": "

A single Performance Insights metric query to process. You must provide the metric to the query. If other parameters aren't specified, Performance Insights returns all data points for the specified metric. Optionally, you can request the data points to be aggregated by dimension group (GroupBy) and return only those data points that match your criteria (Filter).

Constraints:

  • Must be a valid Performance Insights query.

", + "refs": { + "MetricQuery$PerformanceInsightsMetricQuery": "

The Performance Insights query that you can use to retrieve Performance Insights metric data points.

" + } + }, + "PerformanceIssueDetails": { + "base": "

Details of the performance issue.

", + "refs": { + "IssueDetails$PerformanceIssueDetails": "

A detailed description of the issue when the recommendation category is performance.

" + } + }, + "PointInTimeRestoreNotEnabledFault": { + "base": "

SourceDBInstanceIdentifier refers to a DB instance with BackupRetentionPeriod equal to 0.

", + "refs": {} + }, + "PotentiallySensitiveOptionSettingValue": { + "base": null, + "refs": { + "OptionSetting$Value": "

The current value of the option setting.

" + } + }, + "PotentiallySensitiveParameterValue": { + "base": null, + "refs": { + "Parameter$ParameterValue": "

The value of the parameter.

" + } + }, + "ProcessorFeature": { + "base": "

Contains the processor features of a DB instance class.

To specify the number of CPU cores, use the coreCount feature name for the Name parameter. To specify the number of threads per core, use the threadsPerCore feature name for the Name parameter.

You can set the processor features of the DB instance class for a DB instance when you call one of the following actions:

  • CreateDBInstance

  • ModifyDBInstance

  • RestoreDBInstanceFromDBSnapshot

  • RestoreDBInstanceFromS3

  • RestoreDBInstanceToPointInTime

You can view the valid processor values for a particular instance class by calling the DescribeOrderableDBInstanceOptions action and specifying the instance class for the DBInstanceClass parameter.

In addition, you can use the following actions for DB instance class processor information:

  • DescribeDBInstances

  • DescribeDBSnapshots

  • DescribeValidDBInstanceModifications

If you call DescribeDBInstances, ProcessorFeature returns non-null values only if the following conditions are met:

  • You are accessing an Oracle DB instance.

  • Your Oracle DB instance class supports configuring the number of CPU cores and threads per core.

  • The current number CPU cores and threads is set to a non-default value.

For more information, see Configuring the processor for a DB instance class in RDS for Oracle in the Amazon RDS User Guide.

", + "refs": { + "ProcessorFeatureList$member": null + } + }, + "ProcessorFeatureList": { + "base": null, + "refs": { + "CreateDBInstanceMessage$ProcessorFeatures": "

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.

", + "CreateDBInstanceReadReplicaMessage$ProcessorFeatures": "

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

This setting doesn't apply to RDS Custom DB instances.

", + "DBInstance$ProcessorFeatures": "

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

", + "DBSnapshot$ProcessorFeatures": "

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance when the DB snapshot was created.

", + "ModifyDBInstanceMessage$ProcessorFeatures": "

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

This setting doesn't apply to RDS Custom DB instances.

", + "PendingModifiedValues$ProcessorFeatures": "

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

", + "RestoreDBInstanceFromDBSnapshotMessage$ProcessorFeatures": "

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

This setting doesn't apply to RDS Custom.

", + "RestoreDBInstanceFromS3Message$ProcessorFeatures": "

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

", + "RestoreDBInstanceToPointInTimeMessage$ProcessorFeatures": "

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

This setting doesn't apply to RDS Custom.

" + } + }, + "PromoteReadReplicaDBClusterMessage": { + "base": "

", + "refs": {} + }, + "PromoteReadReplicaDBClusterResult": { + "base": null, + "refs": {} + }, + "PromoteReadReplicaMessage": { + "base": "

", + "refs": {} + }, + "PromoteReadReplicaResult": { + "base": null, + "refs": {} + }, + "ProvisionedIopsNotAvailableInAZFault": { + "base": "

Provisioned IOPS not available in the specified Availability Zone.

", + "refs": {} + }, + "PurchaseReservedDBInstancesOfferingMessage": { + "base": "

", + "refs": {} + }, + "PurchaseReservedDBInstancesOfferingResult": { + "base": null, + "refs": {} + }, + "Range": { + "base": "

A range of integer values.

", + "refs": { + "RangeList$member": null + } + }, + "RangeList": { + "base": null, + "refs": { + "ValidStorageOptions$StorageSize": "

The valid range of storage in gibibytes (GiB). For example, 100 to 16,384.

", + "ValidStorageOptions$ProvisionedIops": "

The valid range of provisioned IOPS. For example, 1000-256,000.

", + "ValidStorageOptions$ProvisionedStorageThroughput": "

The valid range of provisioned storage throughput. For example, 500-4,000 mebibytes per second (MiBps).

" + } + }, + "RdsCustomClusterConfiguration": { + "base": "

Reserved for future use.

", + "refs": { + "ClusterPendingModifiedValues$RdsCustomClusterConfiguration": "

Reserved for future use.

", + "CreateDBClusterMessage$RdsCustomClusterConfiguration": "

Reserved for future use.

", + "DBCluster$RdsCustomClusterConfiguration": "

Reserved for future use.

", + "RestoreDBClusterFromSnapshotMessage$RdsCustomClusterConfiguration": "

Reserved for future use.

", + "RestoreDBClusterToPointInTimeMessage$RdsCustomClusterConfiguration": "

Reserved for future use.

" + } + }, + "ReadReplicaDBClusterIdentifierList": { + "base": null, + "refs": { + "DBInstance$ReadReplicaDBClusterIdentifiers": "

The identifiers of Aurora DB clusters to which the RDS DB instance is replicated as a read replica. For example, when you create an Aurora read replica of an RDS for MySQL DB instance, the Aurora MySQL DB cluster for the Aurora read replica is shown. This output doesn't contain information about cross-Region Aurora read replicas.

Currently, each RDS DB instance can have only one Aurora read replica.

" + } + }, + "ReadReplicaDBInstanceIdentifierList": { + "base": null, + "refs": { + "DBInstance$ReadReplicaDBInstanceIdentifiers": "

The identifiers of the read replicas associated with this DB instance.

" + } + }, + "ReadReplicaIdentifierList": { + "base": null, + "refs": { + "DBCluster$ReadReplicaIdentifiers": "

Contains one or more identifiers of the read replicas associated with this DB cluster.

" + } + }, + "ReadersArnList": { + "base": null, + "refs": { + "GlobalClusterMember$Readers": "

The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the global cluster.

" + } + }, + "RebootDBClusterMessage": { + "base": null, + "refs": {} + }, + "RebootDBClusterResult": { + "base": null, + "refs": {} + }, + "RebootDBInstanceMessage": { + "base": "

", + "refs": {} + }, + "RebootDBInstanceResult": { + "base": null, + "refs": {} + }, + "RebootDBShardGroupMessage": { + "base": null, + "refs": {} + }, + "RecommendedAction": { + "base": "

The recommended actions to apply to resolve the issues associated with your DB instances, DB clusters, and DB parameter groups.

", + "refs": { + "RecommendedActionList$member": null + } + }, + "RecommendedActionList": { + "base": null, + "refs": { + "DBRecommendation$RecommendedActions": "

A list of recommended actions.

" + } + }, + "RecommendedActionParameter": { + "base": "

A single parameter to use with the RecommendedAction API operation to apply the action.

", + "refs": { + "RecommendedActionParameterList$member": null + } + }, + "RecommendedActionParameterList": { + "base": null, + "refs": { + "RecommendedAction$Parameters": "

The parameters for the API operation.

" + } + }, + "RecommendedActionUpdate": { + "base": "

The recommended status to update for the specified recommendation action ID.

", + "refs": { + "RecommendedActionUpdateList$member": null + } + }, + "RecommendedActionUpdateList": { + "base": null, + "refs": { + "ModifyDBRecommendationMessage$RecommendedActionUpdates": "

The list of recommended action status to update. You can update multiple recommended actions at one time.

" + } + }, + "RecurringCharge": { + "base": "

This data type is used as a response element in the DescribeReservedDBInstances and DescribeReservedDBInstancesOfferings actions.

", + "refs": { + "RecurringChargeList$member": null + } + }, + "RecurringChargeList": { + "base": null, + "refs": { + "ReservedDBInstance$RecurringCharges": "

The recurring price charged to run this reserved DB instance.

", + "ReservedDBInstancesOffering$RecurringCharges": "

The recurring price charged to run this reserved DB instance.

" + } + }, + "ReferenceDetails": { + "base": "

The reference details of a metric.

", + "refs": { + "MetricReference$ReferenceDetails": "

The details of a performance issue.

" + } + }, + "RegisterDBProxyTargetsRequest": { + "base": null, + "refs": {} + }, + "RegisterDBProxyTargetsResponse": { + "base": null, + "refs": {} + }, + "RemoveFromGlobalClusterMessage": { + "base": null, + "refs": {} + }, + "RemoveFromGlobalClusterResult": { + "base": null, + "refs": {} + }, + "RemoveRoleFromDBClusterMessage": { + "base": null, + "refs": {} + }, + "RemoveRoleFromDBInstanceMessage": { + "base": null, + "refs": {} + }, + "RemoveSourceIdentifierFromSubscriptionMessage": { + "base": "

", + "refs": {} + }, + "RemoveSourceIdentifierFromSubscriptionResult": { + "base": null, + "refs": {} + }, + "RemoveTagsFromResourceMessage": { + "base": "

", + "refs": {} + }, + "ReplicaMode": { + "base": null, + "refs": { + "CreateDBInstanceReadReplicaMessage$ReplicaMode": "

The open mode of the replica database.

This parameter is only supported for Db2 DB instances and Oracle DB instances.

Db2

Standby DB replicas are included in Db2 Advanced Edition (AE) and Db2 Standard Edition (SE). The main use case for standby replicas is cross-Region disaster recovery. Because it doesn't accept user connections, a standby replica can't serve a read-only workload.

You can create a combination of standby and read-only DB replicas for the same primary DB instance. For more information, see Working with read replicas for Amazon RDS for Db2 in the Amazon RDS User Guide.

To create standby DB replicas for RDS for Db2, set this parameter to mounted.

Oracle

Mounted DB replicas are included in Oracle Database Enterprise Edition. The main use case for mounted replicas is cross-Region disaster recovery. The primary database doesn't use Active Data Guard to transmit information to the mounted replica. Because it doesn't accept user connections, a mounted replica can't serve a read-only workload.

You can create a combination of mounted and read-only DB replicas for the same primary DB instance. For more information, see Working with read replicas for Amazon RDS for Oracle in the Amazon RDS User Guide.

For RDS Custom, you must specify this parameter and set it to mounted. The value won't be set by default. After replica creation, you can manage the open mode manually.

", + "DBInstance$ReplicaMode": "

The open mode of a Db2 or an Oracle read replica. The default is open-read-only. For more information, see Working with read replicas for Amazon RDS for Db2 and Working with read replicas for Amazon RDS for Oracle in the Amazon RDS User Guide.

This attribute is only supported in RDS for Db2, RDS for Oracle, and RDS Custom for Oracle.

", + "ModifyDBInstanceMessage$ReplicaMode": "

The open mode of a replica database.

This parameter is only supported for Db2 DB instances and Oracle DB instances.

Db2

Standby DB replicas are included in Db2 Advanced Edition (AE) and Db2 Standard Edition (SE). The main use case for standby replicas is cross-Region disaster recovery. Because it doesn't accept user connections, a standby replica can't serve a read-only workload.

You can create a combination of standby and read-only DB replicas for the same primary DB instance. For more information, see Working with read replicas for Amazon RDS for Db2 in the Amazon RDS User Guide.

To create standby DB replicas for RDS for Db2, set this parameter to mounted.

Oracle

Mounted DB replicas are included in Oracle Database Enterprise Edition. The main use case for mounted replicas is cross-Region disaster recovery. The primary database doesn't use Active Data Guard to transmit information to the mounted replica. Because it doesn't accept user connections, a mounted replica can't serve a read-only workload.

You can create a combination of mounted and read-only DB replicas for the same primary DB instance. For more information, see Working with read replicas for Amazon RDS for Oracle in the Amazon RDS User Guide.

For RDS Custom, you must specify this parameter and set it to mounted. The value won't be set by default. After replica creation, you can manage the open mode manually.

", + "RdsCustomClusterConfiguration$ReplicaMode": "

Reserved for future use.

" + } + }, + "ReservedDBInstance": { + "base": "

This data type is used as a response element in the DescribeReservedDBInstances and PurchaseReservedDBInstancesOffering actions.

", + "refs": { + "PurchaseReservedDBInstancesOfferingResult$ReservedDBInstance": null, + "ReservedDBInstanceList$member": null + } + }, + "ReservedDBInstanceAlreadyExistsFault": { + "base": "

User already has a reservation with the given identifier.

", + "refs": {} + }, + "ReservedDBInstanceList": { + "base": null, + "refs": { + "ReservedDBInstanceMessage$ReservedDBInstances": "

A list of reserved DB instances.

" + } + }, + "ReservedDBInstanceMessage": { + "base": "

Contains the result of a successful invocation of the DescribeReservedDBInstances action.

", + "refs": {} + }, + "ReservedDBInstanceNotFoundFault": { + "base": "

The specified reserved DB Instance not found.

", + "refs": {} + }, + "ReservedDBInstanceQuotaExceededFault": { + "base": "

Request would exceed the user's DB Instance quota.

", + "refs": {} + }, + "ReservedDBInstancesOffering": { + "base": "

This data type is used as a response element in the DescribeReservedDBInstancesOfferings action.

", + "refs": { + "ReservedDBInstancesOfferingList$member": null + } + }, + "ReservedDBInstancesOfferingList": { + "base": null, + "refs": { + "ReservedDBInstancesOfferingMessage$ReservedDBInstancesOfferings": "

A list of reserved DB instance offerings.

" + } + }, + "ReservedDBInstancesOfferingMessage": { + "base": "

Contains the result of a successful invocation of the DescribeReservedDBInstancesOfferings action.

", + "refs": {} + }, + "ReservedDBInstancesOfferingNotFoundFault": { + "base": "

Specified offering does not exist.

", + "refs": {} + }, + "ResetDBClusterParameterGroupMessage": { + "base": "

", + "refs": {} + }, + "ResetDBParameterGroupMessage": { + "base": "

", + "refs": {} + }, + "ResourceNotFoundFault": { + "base": "

The specified resource ID was not found.

", + "refs": {} + }, + "ResourcePendingMaintenanceActions": { + "base": "

Describes the pending maintenance actions for a resource.

", + "refs": { + "ApplyPendingMaintenanceActionResult$ResourcePendingMaintenanceActions": null, + "PendingMaintenanceActions$member": null + } + }, + "RestoreDBClusterFromS3Message": { + "base": null, + "refs": {} + }, + "RestoreDBClusterFromS3Result": { + "base": null, + "refs": {} + }, + "RestoreDBClusterFromSnapshotMessage": { + "base": "

", + "refs": {} + }, + "RestoreDBClusterFromSnapshotResult": { + "base": null, + "refs": {} + }, + "RestoreDBClusterToPointInTimeMessage": { + "base": "

", + "refs": {} + }, + "RestoreDBClusterToPointInTimeResult": { + "base": null, + "refs": {} + }, + "RestoreDBInstanceFromDBSnapshotMessage": { + "base": "

", + "refs": {} + }, + "RestoreDBInstanceFromDBSnapshotResult": { + "base": null, + "refs": {} + }, + "RestoreDBInstanceFromS3Message": { + "base": null, + "refs": {} + }, + "RestoreDBInstanceFromS3Result": { + "base": null, + "refs": {} + }, + "RestoreDBInstanceToPointInTimeMessage": { + "base": "

", + "refs": {} + }, + "RestoreDBInstanceToPointInTimeResult": { + "base": null, + "refs": {} + }, + "RestoreWindow": { + "base": "

Earliest and latest time an instance can be restored to:

", + "refs": { + "DBClusterAutomatedBackup$RestoreWindow": null, + "DBInstanceAutomatedBackup$RestoreWindow": "

The earliest and latest time a DB instance can be restored to.

" + } + }, + "RevokeDBSecurityGroupIngressMessage": { + "base": "

", + "refs": {} + }, + "RevokeDBSecurityGroupIngressResult": { + "base": null, + "refs": {} + }, + "SNSInvalidTopicFault": { + "base": "

SNS has responded that there is a problem with the SNS topic specified.

", + "refs": {} + }, + "SNSNoAuthorizationFault": { + "base": "

You do not have permission to publish to the SNS topic ARN.

", + "refs": {} + }, + "SNSTopicArnNotFoundFault": { + "base": "

The SNS topic ARN does not exist.

", + "refs": {} + }, + "ScalarReferenceDetails": { + "base": "

The metric reference details when the reference is a scalar.

", + "refs": { + "ReferenceDetails$ScalarReferenceDetails": "

The metric reference details when the reference is a scalar.

" + } + }, + "ScalingConfiguration": { + "base": "

Contains the scaling configuration of an Aurora Serverless v1 DB cluster.

For more information, see Using Amazon Aurora Serverless v1 in the Amazon Aurora User Guide.

", + "refs": { + "CreateDBClusterMessage$ScalingConfiguration": "

For DB clusters in serverless DB engine mode, the scaling properties of the DB cluster.

Valid for Cluster Type: Aurora DB clusters only

", + "ModifyDBClusterMessage$ScalingConfiguration": "

The scaling properties of the DB cluster. You can only modify scaling properties for DB clusters in serverless DB engine mode.

Valid for Cluster Type: Aurora DB clusters only

", + "RestoreDBClusterFromSnapshotMessage$ScalingConfiguration": "

For DB clusters in serverless DB engine mode, the scaling properties of the DB cluster.

Valid for: Aurora DB clusters only

", + "RestoreDBClusterToPointInTimeMessage$ScalingConfiguration": "

For DB clusters in serverless DB engine mode, the scaling properties of the DB cluster.

Valid for: Aurora DB clusters only

" + } + }, + "ScalingConfigurationInfo": { + "base": "

The scaling configuration for an Aurora DB cluster in serverless DB engine mode.

For more information, see Using Amazon Aurora Serverless v1 in the Amazon Aurora User Guide.

", + "refs": { + "DBCluster$ScalingConfigurationInfo": null + } + }, + "SensitiveString": { + "base": null, + "refs": { + "ClusterPendingModifiedValues$MasterUserPassword": "

The master credentials for the DB cluster.

", + "CopyDBClusterSnapshotMessage$PreSignedUrl": "

When you are copying a DB cluster snapshot from one Amazon Web Services GovCloud (US) Region to another, the URL that contains a Signature Version 4 signed request for the CopyDBClusterSnapshot API operation in the Amazon Web Services Region that contains the source DB cluster snapshot to copy. Use the PreSignedUrl parameter when copying an encrypted DB cluster snapshot from another Amazon Web Services Region. Don't specify PreSignedUrl when copying an encrypted DB cluster snapshot in the same Amazon Web Services Region.

This setting applies only to Amazon Web Services GovCloud (US) Regions. It's ignored in other Amazon Web Services Regions.

The presigned URL must be a valid request for the CopyDBClusterSnapshot API operation that can run in the source Amazon Web Services Region that contains the encrypted DB cluster snapshot to copy. The presigned URL request must contain the following parameter values:

  • KmsKeyId - The KMS key identifier for the KMS key to use to encrypt the copy of the DB cluster snapshot in the destination Amazon Web Services Region. This is the same identifier for both the CopyDBClusterSnapshot operation that is called in the destination Amazon Web Services Region, and the operation contained in the presigned URL.

  • DestinationRegion - The name of the Amazon Web Services Region that the DB cluster snapshot is to be created in.

  • SourceDBClusterSnapshotIdentifier - The DB cluster snapshot identifier for the encrypted DB cluster snapshot to be copied. This identifier must be in the Amazon Resource Name (ARN) format for the source Amazon Web Services Region. For example, if you are copying an encrypted DB cluster snapshot from the us-west-2 Amazon Web Services Region, then your SourceDBClusterSnapshotIdentifier looks like the following example: arn:aws:rds:us-west-2:123456789012:cluster-snapshot:aurora-cluster1-snapshot-20161115.

To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4) and Signature Version 4 Signing Process.

If you are using an Amazon Web Services SDK tool or the CLI, you can specify SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl manually. Specifying SourceRegion autogenerates a presigned URL that is a valid request for the operation that can run in the source Amazon Web Services Region.

", + "CopyDBSnapshotMessage$PreSignedUrl": "

When you are copying a snapshot from one Amazon Web Services GovCloud (US) Region to another, the URL that contains a Signature Version 4 signed request for the CopyDBSnapshot API operation in the source Amazon Web Services Region that contains the source DB snapshot to copy.

This setting applies only to Amazon Web Services GovCloud (US) Regions. It's ignored in other Amazon Web Services Regions.

You must specify this parameter when you copy an encrypted DB snapshot from another Amazon Web Services Region by using the Amazon RDS API. Don't specify PreSignedUrl when you are copying an encrypted DB snapshot in the same Amazon Web Services Region.

The presigned URL must be a valid request for the CopyDBClusterSnapshot API operation that can run in the source Amazon Web Services Region that contains the encrypted DB cluster snapshot to copy. The presigned URL request must contain the following parameter values:

  • DestinationRegion - The Amazon Web Services Region that the encrypted DB snapshot is copied to. This Amazon Web Services Region is the same one where the CopyDBSnapshot operation is called that contains this presigned URL.

    For example, if you copy an encrypted DB snapshot from the us-west-2 Amazon Web Services Region to the us-east-1 Amazon Web Services Region, then you call the CopyDBSnapshot operation in the us-east-1 Amazon Web Services Region and provide a presigned URL that contains a call to the CopyDBSnapshot operation in the us-west-2 Amazon Web Services Region. For this example, the DestinationRegion in the presigned URL must be set to the us-east-1 Amazon Web Services Region.

  • KmsKeyId - The KMS key identifier for the KMS key to use to encrypt the copy of the DB snapshot in the destination Amazon Web Services Region. This is the same identifier for both the CopyDBSnapshot operation that is called in the destination Amazon Web Services Region, and the operation contained in the presigned URL.

  • SourceDBSnapshotIdentifier - The DB snapshot identifier for the encrypted snapshot to be copied. This identifier must be in the Amazon Resource Name (ARN) format for the source Amazon Web Services Region. For example, if you are copying an encrypted DB snapshot from the us-west-2 Amazon Web Services Region, then your SourceDBSnapshotIdentifier looks like the following example: arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20161115.

To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4) and Signature Version 4 Signing Process.

If you are using an Amazon Web Services SDK tool or the CLI, you can specify SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl manually. Specifying SourceRegion autogenerates a presigned URL that is a valid request for the operation that can run in the source Amazon Web Services Region.

", + "CreateDBClusterMessage$MasterUserPassword": "

The password for the master database user.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • Must contain from 8 to 41 characters.

  • Can contain any printable ASCII character except \"/\", \"\"\", or \"@\".

  • Can't be specified if ManageMasterUserPassword is turned on.

", + "CreateDBClusterMessage$PreSignedUrl": "

When you are replicating a DB cluster from one Amazon Web Services GovCloud (US) Region to another, an URL that contains a Signature Version 4 signed request for the CreateDBCluster operation to be called in the source Amazon Web Services Region where the DB cluster is replicated from. Specify PreSignedUrl only when you are performing cross-Region replication from an encrypted DB cluster.

The presigned URL must be a valid request for the CreateDBCluster API operation that can run in the source Amazon Web Services Region that contains the encrypted DB cluster to copy.

The presigned URL request must contain the following parameter values:

  • KmsKeyId - The KMS key identifier for the KMS key to use to encrypt the copy of the DB cluster in the destination Amazon Web Services Region. This should refer to the same KMS key for both the CreateDBCluster operation that is called in the destination Amazon Web Services Region, and the operation contained in the presigned URL.

  • DestinationRegion - The name of the Amazon Web Services Region that Aurora read replica will be created in.

  • ReplicationSourceIdentifier - The DB cluster identifier for the encrypted DB cluster to be copied. This identifier must be in the Amazon Resource Name (ARN) format for the source Amazon Web Services Region. For example, if you are copying an encrypted DB cluster from the us-west-2 Amazon Web Services Region, then your ReplicationSourceIdentifier would look like Example: arn:aws:rds:us-west-2:123456789012:cluster:aurora-cluster1.

To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4) and Signature Version 4 Signing Process.

If you are using an Amazon Web Services SDK tool or the CLI, you can specify SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl manually. Specifying SourceRegion autogenerates a presigned URL that is a valid request for the operation that can run in the source Amazon Web Services Region.

Valid for Cluster Type: Aurora DB clusters only

", + "CreateDBInstanceMessage$MasterUserPassword": "

The password for the master user.

This setting doesn't apply to Amazon Aurora DB instances. The password for the master user is managed by the DB cluster.

Constraints:

  • Can't be specified if ManageMasterUserPassword is turned on.

  • Can include any printable ASCII character except \"/\", \"\"\", or \"@\". For RDS for Oracle, can't include the \"&\" (ampersand) or the \"'\" (single quotes) character.

Length Constraints:

  • RDS for Db2 - Must contain from 8 to 255 characters.

  • RDS for MariaDB - Must contain from 8 to 41 characters.

  • RDS for Microsoft SQL Server - Must contain from 8 to 128 characters.

  • RDS for MySQL - Must contain from 8 to 41 characters.

  • RDS for Oracle - Must contain from 8 to 30 characters.

  • RDS for PostgreSQL - Must contain from 8 to 128 characters.

", + "CreateDBInstanceMessage$TdeCredentialPassword": "

The password for the given ARN from the key store in order to access the device.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceReadReplicaMessage$PreSignedUrl": "

When you are creating a read replica from one Amazon Web Services GovCloud (US) Region to another or from one China Amazon Web Services Region to another, the URL that contains a Signature Version 4 signed request for the CreateDBInstanceReadReplica API operation in the source Amazon Web Services Region that contains the source DB instance.

This setting applies only to Amazon Web Services GovCloud (US) Regions and China Amazon Web Services Regions. It's ignored in other Amazon Web Services Regions.

This setting applies only when replicating from a source DB instance. Source DB clusters aren't supported in Amazon Web Services GovCloud (US) Regions and China Amazon Web Services Regions.

You must specify this parameter when you create an encrypted read replica from another Amazon Web Services Region by using the Amazon RDS API. Don't specify PreSignedUrl when you are creating an encrypted read replica in the same Amazon Web Services Region.

The presigned URL must be a valid request for the CreateDBInstanceReadReplica API operation that can run in the source Amazon Web Services Region that contains the encrypted source DB instance. The presigned URL request must contain the following parameter values:

  • DestinationRegion - The Amazon Web Services Region that the encrypted read replica is created in. This Amazon Web Services Region is the same one where the CreateDBInstanceReadReplica operation is called that contains this presigned URL.

    For example, if you create an encrypted DB instance in the us-west-1 Amazon Web Services Region, from a source DB instance in the us-east-2 Amazon Web Services Region, then you call the CreateDBInstanceReadReplica operation in the us-east-1 Amazon Web Services Region and provide a presigned URL that contains a call to the CreateDBInstanceReadReplica operation in the us-west-2 Amazon Web Services Region. For this example, the DestinationRegion in the presigned URL must be set to the us-east-1 Amazon Web Services Region.

  • KmsKeyId - The KMS key identifier for the key to use to encrypt the read replica in the destination Amazon Web Services Region. This is the same identifier for both the CreateDBInstanceReadReplica operation that is called in the destination Amazon Web Services Region, and the operation contained in the presigned URL.

  • SourceDBInstanceIdentifier - The DB instance identifier for the encrypted DB instance to be replicated. This identifier must be in the Amazon Resource Name (ARN) format for the source Amazon Web Services Region. For example, if you are creating an encrypted read replica from a DB instance in the us-west-2 Amazon Web Services Region, then your SourceDBInstanceIdentifier looks like the following example: arn:aws:rds:us-west-2:123456789012:instance:mysql-instance1-20161115.

To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4) and Signature Version 4 Signing Process.

If you are using an Amazon Web Services SDK tool or the CLI, you can specify SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl manually. Specifying SourceRegion autogenerates a presigned URL that is a valid request for the operation that can run in the source Amazon Web Services Region.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateTenantDatabaseMessage$MasterUserPassword": "

The password for the master user in your tenant database.

Constraints:

  • Must be 8 to 30 characters.

  • Can include any printable ASCII character except forward slash (/), double quote (\"), at symbol (@), ampersand (&), or single quote (').

  • Can't be specified when ManageMasterUserPassword is enabled.

", + "DownloadDBLogFilePortionDetails$LogFileData": "

Entries from the specified log file.

", + "ModifyDBClusterMessage$MasterUserPassword": "

The new password for the master database user.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • Must contain from 8 to 41 characters.

  • Can contain any printable ASCII character except \"/\", \"\"\", or \"@\".

  • Can't be specified if ManageMasterUserPassword is turned on.

", + "ModifyDBInstanceMessage$MasterUserPassword": "

The new password for the master user.

Changing this parameter doesn't result in an outage and the change is asynchronously applied as soon as possible. Between the time of the request and the completion of the request, the MasterUserPassword element exists in the PendingModifiedValues element of the operation response.

Amazon RDS API operations never return the password, so this operation provides a way to regain access to a primary instance user if the password is lost. This includes restoring privileges that might have been accidentally revoked.

This setting doesn't apply to the following DB instances:

  • Amazon Aurora

    The password for the master user is managed by the DB cluster. For more information, see ModifyDBCluster.

  • RDS Custom

  • RDS for Oracle CDBs in the multi-tenant configuration

    Specify the master password in ModifyTenantDatabase instead.

Default: Uses existing setting

Constraints:

  • Can't be specified if ManageMasterUserPassword is turned on.

  • Can include any printable ASCII character except \"/\", \"\"\", or \"@\". For RDS for Oracle, can't include the \"&\" (ampersand) or the \"'\" (single quotes) character.

Length Constraints:

  • RDS for Db2 - Must contain from 8 to 255 characters.

  • RDS for MariaDB - Must contain from 8 to 41 characters.

  • RDS for Microsoft SQL Server - Must contain from 8 to 128 characters.

  • RDS for MySQL - Must contain from 8 to 41 characters.

  • RDS for Oracle - Must contain from 8 to 30 characters.

  • RDS for PostgreSQL - Must contain from 8 to 128 characters.

", + "ModifyDBInstanceMessage$TdeCredentialPassword": "

The password for the given ARN from the key store in order to access the device.

This setting doesn't apply to RDS Custom DB instances.

", + "ModifyTenantDatabaseMessage$MasterUserPassword": "

The new password for the master user of the specified tenant database in your DB instance.

Amazon RDS operations never return the password, so this action provides a way to regain access to a tenant database user if the password is lost. This includes restoring privileges that might have been accidentally revoked.

Constraints:

  • Can include any printable ASCII character except /, \" (double quote), @, & (ampersand), and ' (single quote).

Length constraints:

  • Must contain between 8 and 30 characters.

", + "PendingModifiedValues$MasterUserPassword": "

The master credentials for the DB instance.

", + "RestoreDBClusterFromS3Message$MasterUserPassword": "

The password for the master database user. This password can contain any printable ASCII character except \"/\", \"\"\", or \"@\".

Constraints:

  • Must contain from 8 to 41 characters.

  • Can't be specified if ManageMasterUserPassword is turned on.

", + "RestoreDBInstanceFromDBSnapshotMessage$TdeCredentialPassword": "

The password for the given ARN from the key store in order to access the device.

This setting doesn't apply to RDS Custom.

", + "RestoreDBInstanceFromS3Message$MasterUserPassword": "

The password for the master user.

Constraints:

  • Can't be specified if ManageMasterUserPassword is turned on.

  • Can include any printable ASCII character except \"/\", \"\"\", or \"@\". For RDS for Oracle, can't include the \"&\" (ampersand) or the \"'\" (single quotes) character.

Length Constraints:

  • RDS for Db2 - Must contain from 8 to 128 characters.

  • RDS for MariaDB - Must contain from 8 to 41 characters.

  • RDS for Microsoft SQL Server - Must contain from 8 to 128 characters.

  • RDS for MySQL - Must contain from 8 to 41 characters.

  • RDS for Oracle - Must contain from 8 to 30 characters.

  • RDS for PostgreSQL - Must contain from 8 to 128 characters.

", + "RestoreDBInstanceToPointInTimeMessage$TdeCredentialPassword": "

The password for the given ARN from the key store in order to access the device.

This setting doesn't apply to RDS Custom.

", + "StartDBInstanceAutomatedBackupsReplicationMessage$PreSignedUrl": "

In an Amazon Web Services GovCloud (US) Region, an URL that contains a Signature Version 4 signed request for the StartDBInstanceAutomatedBackupsReplication operation to call in the Amazon Web Services Region of the source DB instance. The presigned URL must be a valid request for the StartDBInstanceAutomatedBackupsReplication API operation that can run in the Amazon Web Services Region that contains the source DB instance.

This setting applies only to Amazon Web Services GovCloud (US) Regions. It's ignored in other Amazon Web Services Regions.

To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4) and Signature Version 4 Signing Process.

If you are using an Amazon Web Services SDK tool or the CLI, you can specify SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl manually. Specifying SourceRegion autogenerates a presigned URL that is a valid request for the operation that can run in the source Amazon Web Services Region.

", + "TenantDatabasePendingModifiedValues$MasterUserPassword": "

The master password for the tenant database.

" + } + }, + "ServerlessV2FeaturesSupport": { + "base": "

Specifies any Aurora Serverless v2 properties or limits that differ between Aurora engine versions. You can test the values of this attribute when deciding which Aurora version to use in a new or upgraded DB cluster. You can also retrieve the version of an existing DB cluster and check whether that version supports certain Aurora Serverless v2 features before you attempt to use those features.

", + "refs": { + "DBEngineVersion$ServerlessV2FeaturesSupport": "

Specifies any Aurora Serverless v2 properties or limits that differ between Aurora engine versions. You can test the values of this attribute when deciding which Aurora version to use in a new or upgraded DB cluster. You can also retrieve the version of an existing DB cluster and check whether that version supports certain Aurora Serverless v2 features before you attempt to use those features.

" + } + }, + "ServerlessV2ScalingConfiguration": { + "base": "

Contains the scaling configuration of an Aurora Serverless v2 DB cluster.

For more information, see Using Amazon Aurora Serverless v2 in the Amazon Aurora User Guide.

", + "refs": { + "CreateDBClusterMessage$ServerlessV2ScalingConfiguration": null, + "ModifyDBClusterMessage$ServerlessV2ScalingConfiguration": null, + "RestoreDBClusterFromS3Message$ServerlessV2ScalingConfiguration": null, + "RestoreDBClusterFromSnapshotMessage$ServerlessV2ScalingConfiguration": null, + "RestoreDBClusterToPointInTimeMessage$ServerlessV2ScalingConfiguration": null + } + }, + "ServerlessV2ScalingConfigurationInfo": { + "base": "

The scaling configuration for an Aurora Serverless v2 DB cluster.

For more information, see Using Amazon Aurora Serverless v2 in the Amazon Aurora User Guide.

", + "refs": { + "DBCluster$ServerlessV2ScalingConfiguration": null + } + }, + "SharedSnapshotQuotaExceededFault": { + "base": "

You have exceeded the maximum number of accounts that you can share a manual DB snapshot with.

", + "refs": {} + }, + "SnapshotQuotaExceededFault": { + "base": "

The request would result in the user exceeding the allowed number of DB snapshots.

", + "refs": {} + }, + "SourceArn": { + "base": null, + "refs": { + "CreateIntegrationMessage$SourceArn": "

The Amazon Resource Name (ARN) of the database to use as the source for replication.

", + "Integration$SourceArn": "

The Amazon Resource Name (ARN) of the database used as the source for replication.

" + } + }, + "SourceClusterNotSupportedFault": { + "base": "

The source DB cluster isn't supported for a blue/green deployment.

", + "refs": {} + }, + "SourceDatabaseNotSupportedFault": { + "base": "

The source DB instance isn't supported for a blue/green deployment.

", + "refs": {} + }, + "SourceIdsList": { + "base": null, + "refs": { + "CreateEventSubscriptionMessage$SourceIds": "

The list of identifiers of the event sources for which events are returned. If not specified, then all sources are included in the response. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens. It can't end with a hyphen or contain two consecutive hyphens.

Constraints:

  • If SourceIds are supplied, SourceType must also be provided.

  • If the source type is a DB instance, a DBInstanceIdentifier value must be supplied.

  • If the source type is a DB cluster, a DBClusterIdentifier value must be supplied.

  • If the source type is a DB parameter group, a DBParameterGroupName value must be supplied.

  • If the source type is a DB security group, a DBSecurityGroupName value must be supplied.

  • If the source type is a DB snapshot, a DBSnapshotIdentifier value must be supplied.

  • If the source type is a DB cluster snapshot, a DBClusterSnapshotIdentifier value must be supplied.

  • If the source type is an RDS Proxy, a DBProxyName value must be supplied.

", + "EventSubscription$SourceIdsList": "

A list of source IDs for the RDS event notification subscription.

" + } + }, + "SourceNotFoundFault": { + "base": "

The requested source could not be found.

", + "refs": {} + }, + "SourceRegion": { + "base": "

Contains an Amazon Web Services Region name as the result of a successful call to the DescribeSourceRegions action.

", + "refs": { + "SourceRegionList$member": null + } + }, + "SourceRegionList": { + "base": null, + "refs": { + "SourceRegionMessage$SourceRegions": "

A list of SourceRegion instances that contains each source Amazon Web Services Region that the current Amazon Web Services Region can get a read replica or a DB snapshot from.

" + } + }, + "SourceRegionMessage": { + "base": "

Contains the result of a successful invocation of the DescribeSourceRegions action.

", + "refs": {} + }, + "SourceType": { + "base": null, + "refs": { + "DescribeEventsMessage$SourceType": "

The event source to retrieve events for. If no value is specified, all events are returned.

", + "Event$SourceType": "

Specifies the source type for this event.

" + } + }, + "StartActivityStreamRequest": { + "base": null, + "refs": {} + }, + "StartActivityStreamResponse": { + "base": null, + "refs": {} + }, + "StartDBClusterMessage": { + "base": null, + "refs": {} + }, + "StartDBClusterResult": { + "base": null, + "refs": {} + }, + "StartDBInstanceAutomatedBackupsReplicationMessage": { + "base": null, + "refs": {} + }, + "StartDBInstanceAutomatedBackupsReplicationResult": { + "base": null, + "refs": {} + }, + "StartDBInstanceMessage": { + "base": null, + "refs": {} + }, + "StartDBInstanceResult": { + "base": null, + "refs": {} + }, + "StartExportTaskMessage": { + "base": null, + "refs": {} + }, + "StopActivityStreamRequest": { + "base": null, + "refs": {} + }, + "StopActivityStreamResponse": { + "base": null, + "refs": {} + }, + "StopDBClusterMessage": { + "base": null, + "refs": {} + }, + "StopDBClusterResult": { + "base": null, + "refs": {} + }, + "StopDBInstanceAutomatedBackupsReplicationMessage": { + "base": null, + "refs": {} + }, + "StopDBInstanceAutomatedBackupsReplicationResult": { + "base": null, + "refs": {} + }, + "StopDBInstanceMessage": { + "base": null, + "refs": {} + }, + "StopDBInstanceResult": { + "base": null, + "refs": {} + }, + "StorageQuotaExceededFault": { + "base": "

The request would result in the user exceeding the allowed amount of storage available across all DB instances.

", + "refs": {} + }, + "StorageTypeNotAvailableFault": { + "base": "

The aurora-iopt1 storage type isn't available, because you modified the DB cluster to use this storage type less than one month ago.

", + "refs": {} + }, + "StorageTypeNotSupportedFault": { + "base": "

The specified StorageType can't be associated with the DB instance.

", + "refs": {} + }, + "String": { + "base": null, + "refs": { + "AccountQuota$AccountQuotaName": "

The name of the Amazon RDS quota for this Amazon Web Services account.

", + "ActivityStreamModeList$member": null, + "AddRoleToDBClusterMessage$DBClusterIdentifier": "

The name of the DB cluster to associate the IAM role with.

", + "AddRoleToDBClusterMessage$RoleArn": "

The Amazon Resource Name (ARN) of the IAM role to associate with the Aurora DB cluster, for example arn:aws:iam::123456789012:role/AuroraAccessRole.

", + "AddRoleToDBClusterMessage$FeatureName": "

The name of the feature for the DB cluster that the IAM role is to be associated with. For information about supported feature names, see DBEngineVersion.

", + "AddRoleToDBInstanceMessage$DBInstanceIdentifier": "

The name of the DB instance to associate the IAM role with.

", + "AddRoleToDBInstanceMessage$RoleArn": "

The Amazon Resource Name (ARN) of the IAM role to associate with the DB instance, for example arn:aws:iam::123456789012:role/AccessRole.

", + "AddRoleToDBInstanceMessage$FeatureName": "

The name of the feature for the DB instance that the IAM role is to be associated with. For information about supported feature names, see DBEngineVersion.

", + "AddSourceIdentifierToSubscriptionMessage$SubscriptionName": "

The name of the RDS event notification subscription you want to add a source identifier to.

", + "AddSourceIdentifierToSubscriptionMessage$SourceIdentifier": "

The identifier of the event source to be added.

Constraints:

  • If the source type is a DB instance, a DBInstanceIdentifier value must be supplied.

  • If the source type is a DB cluster, a DBClusterIdentifier value must be supplied.

  • If the source type is a DB parameter group, a DBParameterGroupName value must be supplied.

  • If the source type is a DB security group, a DBSecurityGroupName value must be supplied.

  • If the source type is a DB snapshot, a DBSnapshotIdentifier value must be supplied.

  • If the source type is a DB cluster snapshot, a DBClusterSnapshotIdentifier value must be supplied.

  • If the source type is an RDS Proxy, a DBProxyName value must be supplied.

", + "AddTagsToResourceMessage$ResourceName": "

The Amazon RDS resource that the tags are added to. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN).

", + "ApplyPendingMaintenanceActionMessage$ResourceIdentifier": "

The RDS Amazon Resource Name (ARN) of the resource that the pending maintenance action applies to. For information about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN).

", + "ApplyPendingMaintenanceActionMessage$ApplyAction": "

The pending maintenance action to apply to this resource.

Valid Values:

  • ca-certificate-rotation

  • db-upgrade

  • hardware-maintenance

  • os-upgrade

  • system-update

For more information about these actions, see Maintenance actions for Amazon Aurora or Maintenance actions for Amazon RDS.

", + "ApplyPendingMaintenanceActionMessage$OptInType": "

A value that specifies the type of opt-in request, or undoes an opt-in request. An opt-in request of type immediate can't be undone.

Valid Values:

  • immediate - Apply the maintenance action immediately.

  • next-maintenance - Apply the maintenance action during the next maintenance window for the resource.

  • undo-opt-in - Cancel any existing next-maintenance opt-in requests.

", + "AttributeValueList$member": null, + "AuthorizeDBSecurityGroupIngressMessage$DBSecurityGroupName": "

The name of the DB security group to add authorization to.

", + "AuthorizeDBSecurityGroupIngressMessage$CIDRIP": "

The IP range to authorize.

", + "AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupName": "

Name of the EC2 security group to authorize. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

", + "AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupId": "

Id of the EC2 security group to authorize. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

", + "AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupOwnerId": "

Amazon Web Services account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter. The Amazon Web Services access key ID isn't an acceptable value. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

", + "AvailabilityZone$Name": "

The name of the Availability Zone.

", + "AvailabilityZones$member": null, + "AvailableProcessorFeature$Name": "

The name of the processor feature. Valid names are coreCount and threadsPerCore.

", + "AvailableProcessorFeature$DefaultValue": "

The default value for the processor feature of the DB instance class.

", + "AvailableProcessorFeature$AllowedValues": "

The allowed values for the processor feature of the DB instance class.

", + "BacktrackDBClusterMessage$DBClusterIdentifier": "

The DB cluster identifier of the DB cluster to be backtracked. This parameter is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 alphanumeric characters or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

Example: my-cluster1

", + "CACertificateIdentifiersList$member": null, + "CancelExportTaskMessage$ExportTaskIdentifier": "

The identifier of the snapshot or cluster export task to cancel.

", + "Certificate$CertificateIdentifier": "

The unique key that identifies a certificate.

", + "Certificate$CertificateType": "

The type of the certificate.

", + "Certificate$Thumbprint": "

The thumbprint of the certificate.

", + "Certificate$CertificateArn": "

The Amazon Resource Name (ARN) for the certificate.

", + "CertificateDetails$CAIdentifier": "

The CA identifier of the CA certificate used for the DB instance's server certificate.

", + "CertificateMessage$Marker": "

An optional pagination token provided by a previous DescribeCertificates request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords .

", + "CharacterSet$CharacterSetName": "

The name of the character set.

", + "CharacterSet$CharacterSetDescription": "

The description of the character set.

", + "ClusterPendingModifiedValues$DBClusterIdentifier": "

The DBClusterIdentifier value for the DB cluster.

", + "ClusterPendingModifiedValues$EngineVersion": "

The database engine version.

", + "ClusterPendingModifiedValues$StorageType": "

The storage type for the DB cluster.

", + "ConnectionPoolConfiguration$InitQuery": "

Add an initialization query, or modify the current one. You can specify one or more SQL statements for the proxy to run when opening each new database connection. The setting is typically used with SET statements to make sure that each connection has identical settings. Make sure the query added here is valid. This is an optional field, so you can choose to leave it empty. For including multiple variables in a single SET statement, use a comma separator.

For example: SET variable1=value1, variable2=value2

Default: no initialization query

Since you can access initialization query as part of target group configuration, it is not protected by authentication or cryptographic methods. Anyone with access to view or manage your proxy target group configuration can view the initialization query. You should not add sensitive data, such as passwords or long-lived encryption keys, to this option.

", + "ConnectionPoolConfigurationInfo$InitQuery": "

One or more SQL statements for the proxy to run when opening each new database connection. The setting is typically used with SET statements to make sure that each connection has identical settings. The query added here must be valid. For including multiple variables in a single SET statement, use a comma separator. This is an optional field.

For example: SET variable1=value1, variable2=value2

Since you can access initialization query as part of target group configuration, it is not protected by authentication or cryptographic methods. Anyone with access to view or manage your proxy target group configuration can view the initialization query. You should not add sensitive data, such as passwords or long-lived encryption keys, to this option.

", + "ContextAttribute$Key": "

The key of ContextAttribute.

", + "ContextAttribute$Value": "

The value of ContextAttribute.

", + "CopyDBClusterParameterGroupMessage$SourceDBClusterParameterGroupIdentifier": "

The identifier or Amazon Resource Name (ARN) for the source DB cluster parameter group. For information about creating an ARN, see Constructing an ARN for Amazon RDS in the Amazon Aurora User Guide.

Constraints:

  • Must specify a valid DB cluster parameter group.

", + "CopyDBClusterParameterGroupMessage$TargetDBClusterParameterGroupIdentifier": "

The identifier for the copied DB cluster parameter group.

Constraints:

  • Can't be null, empty, or blank

  • Must contain from 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

Example: my-cluster-param-group1

", + "CopyDBClusterParameterGroupMessage$TargetDBClusterParameterGroupDescription": "

A description for the copied DB cluster parameter group.

", + "CopyDBClusterSnapshotMessage$SourceDBClusterSnapshotIdentifier": "

The identifier of the DB cluster snapshot to copy. This parameter isn't case-sensitive.

You can't copy an encrypted, shared DB cluster snapshot from one Amazon Web Services Region to another.

Constraints:

  • Must specify a valid system snapshot in the \"available\" state.

  • If the source snapshot is in the same Amazon Web Services Region as the copy, specify a valid DB snapshot identifier.

  • If the source snapshot is in a different Amazon Web Services Region than the copy, specify a valid DB cluster snapshot ARN. For more information, go to Copying Snapshots Across Amazon Web Services Regions in the Amazon Aurora User Guide.

Example: my-cluster-snapshot1

", + "CopyDBClusterSnapshotMessage$TargetDBClusterSnapshotIdentifier": "

The identifier of the new DB cluster snapshot to create from the source DB cluster snapshot. This parameter isn't case-sensitive.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

Example: my-cluster-snapshot2

", + "CopyDBClusterSnapshotMessage$KmsKeyId": "

The Amazon Web Services KMS key identifier for an encrypted DB cluster snapshot. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the Amazon Web Services KMS key.

If you copy an encrypted DB cluster snapshot from your Amazon Web Services account, you can specify a value for KmsKeyId to encrypt the copy with a new KMS key. If you don't specify a value for KmsKeyId, then the copy of the DB cluster snapshot is encrypted with the same KMS key as the source DB cluster snapshot.

If you copy an encrypted DB cluster snapshot that is shared from another Amazon Web Services account, then you must specify a value for KmsKeyId.

To copy an encrypted DB cluster snapshot to another Amazon Web Services Region, you must set KmsKeyId to the Amazon Web Services KMS key identifier you want to use to encrypt the copy of the DB cluster snapshot in the destination Amazon Web Services Region. KMS keys are specific to the Amazon Web Services Region that they are created in, and you can't use KMS keys from one Amazon Web Services Region in another Amazon Web Services Region.

If you copy an unencrypted DB cluster snapshot and specify a value for the KmsKeyId parameter, an error is returned.

", + "CopyDBParameterGroupMessage$SourceDBParameterGroupIdentifier": "

The identifier or ARN for the source DB parameter group. For information about creating an ARN, see Constructing an ARN for Amazon RDS in the Amazon RDS User Guide.

Constraints:

  • Must specify a valid DB parameter group.

", + "CopyDBParameterGroupMessage$TargetDBParameterGroupIdentifier": "

The identifier for the copied DB parameter group.

Constraints:

  • Can't be null, empty, or blank

  • Must contain from 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

Example: my-db-parameter-group

", + "CopyDBParameterGroupMessage$TargetDBParameterGroupDescription": "

A description for the copied DB parameter group.

", + "CopyDBSnapshotMessage$SourceDBSnapshotIdentifier": "

The identifier for the source DB snapshot.

If the source snapshot is in the same Amazon Web Services Region as the copy, specify a valid DB snapshot identifier. For example, you might specify rds:mysql-instance1-snapshot-20130805.

If the source snapshot is in a different Amazon Web Services Region than the copy, specify a valid DB snapshot ARN. For example, you might specify arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805.

If you are copying from a shared manual DB snapshot, this parameter must be the Amazon Resource Name (ARN) of the shared DB snapshot.

If you are copying an encrypted snapshot this parameter must be in the ARN format for the source Amazon Web Services Region.

Constraints:

  • Must specify a valid system snapshot in the \"available\" state.

Example: rds:mydb-2012-04-02-00-01

Example: arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805

", + "CopyDBSnapshotMessage$TargetDBSnapshotIdentifier": "

The identifier for the copy of the snapshot.

Constraints:

  • Can't be null, empty, or blank

  • Must contain from 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

Example: my-db-snapshot

", + "CopyDBSnapshotMessage$KmsKeyId": "

The Amazon Web Services KMS key identifier for an encrypted DB snapshot. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you copy an encrypted DB snapshot from your Amazon Web Services account, you can specify a value for this parameter to encrypt the copy with a new KMS key. If you don't specify a value for this parameter, then the copy of the DB snapshot is encrypted with the same Amazon Web Services KMS key as the source DB snapshot.

If you copy an encrypted DB snapshot that is shared from another Amazon Web Services account, then you must specify a value for this parameter.

If you specify this parameter when you copy an unencrypted snapshot, the copy is encrypted.

If you copy an encrypted snapshot to a different Amazon Web Services Region, then you must specify an Amazon Web Services KMS key identifier for the destination Amazon Web Services Region. KMS keys are specific to the Amazon Web Services Region that they are created in, and you can't use KMS keys from one Amazon Web Services Region in another Amazon Web Services Region.

", + "CopyDBSnapshotMessage$OptionGroupName": "

The name of an option group to associate with the copy of the snapshot.

Specify this option if you are copying a snapshot from one Amazon Web Services Region to another, and your DB instance uses a nondefault option group. If your source DB instance uses Transparent Data Encryption for Oracle or Microsoft SQL Server, you must specify this option when copying across Amazon Web Services Regions. For more information, see Option group considerations in the Amazon RDS User Guide.

", + "CopyDBSnapshotMessage$TargetCustomAvailabilityZone": "

The external custom Availability Zone (CAZ) identifier for the target CAZ.

Example: rds-caz-aiqhTgQv.

", + "CopyOptionGroupMessage$SourceOptionGroupIdentifier": "

The identifier for the source option group.

Constraints:

  • Must specify a valid option group.

", + "CopyOptionGroupMessage$TargetOptionGroupIdentifier": "

The identifier for the copied option group.

Constraints:

  • Can't be null, empty, or blank

  • Must contain from 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

Example: my-option-group

", + "CopyOptionGroupMessage$TargetOptionGroupDescription": "

The description for the copied option group.

", + "CreateDBClusterEndpointMessage$DBClusterIdentifier": "

The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

", + "CreateDBClusterEndpointMessage$DBClusterEndpointIdentifier": "

The identifier to use for the new endpoint. This parameter is stored as a lowercase string.

", + "CreateDBClusterEndpointMessage$EndpointType": "

The type of the endpoint, one of: READER, WRITER, ANY.

", + "CreateDBClusterMessage$CharacterSetName": "

The name of the character set (CharacterSet) to associate the DB cluster with.

Valid for Cluster Type: Aurora DB clusters only

", + "CreateDBClusterMessage$DatabaseName": "

The name for your database of up to 64 alphanumeric characters. A database named postgres is always created. If this parameter is specified, an additional database with this name is created.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "CreateDBClusterMessage$DBClusterIdentifier": "

The identifier for this DB cluster. This parameter is stored as a lowercase string.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • Must contain from 1 to 63 (for Aurora DB clusters) or 1 to 52 (for Multi-AZ DB clusters) letters, numbers, or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

Example: my-cluster1

", + "CreateDBClusterMessage$DBClusterParameterGroupName": "

The name of the DB cluster parameter group to associate with this DB cluster. If you don't specify a value, then the default DB cluster parameter group for the specified DB engine and version is used.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • If supplied, must match the name of an existing DB cluster parameter group.

", + "CreateDBClusterMessage$DBSubnetGroupName": "

A DB subnet group to associate with this DB cluster.

This setting is required to create a Multi-AZ DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • Must match the name of an existing DB subnet group.

Example: mydbsubnetgroup

", + "CreateDBClusterMessage$Engine": "

The database engine to use for this DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values:

  • aurora-mysql

  • aurora-postgresql

  • mysql

  • postgres

  • neptune - For information about using Amazon Neptune, see the Amazon Neptune User Guide .

", + "CreateDBClusterMessage$EngineVersion": "

The version number of the database engine to use.

To list all of the available engine versions for Aurora MySQL version 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use the following command:

aws rds describe-db-engine-versions --engine aurora-mysql --query \"DBEngineVersions[].EngineVersion\"

You can supply either 5.7 or 8.0 to use the default engine version for Aurora MySQL version 2 or version 3, respectively.

To list all of the available engine versions for Aurora PostgreSQL, use the following command:

aws rds describe-db-engine-versions --engine aurora-postgresql --query \"DBEngineVersions[].EngineVersion\"

To list all of the available engine versions for RDS for MySQL, use the following command:

aws rds describe-db-engine-versions --engine mysql --query \"DBEngineVersions[].EngineVersion\"

To list all of the available engine versions for RDS for PostgreSQL, use the following command:

aws rds describe-db-engine-versions --engine postgres --query \"DBEngineVersions[].EngineVersion\"

For information about a specific engine, see the following topics:

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "CreateDBClusterMessage$MasterUsername": "

The name of the master user for the DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • Must be 1 to 16 letters or numbers.

  • First character must be a letter.

  • Can't be a reserved word for the chosen database engine.

", + "CreateDBClusterMessage$OptionGroupName": "

The option group to associate the DB cluster with.

DB clusters are associated with a default option group that can't be modified.

", + "CreateDBClusterMessage$PreferredBackupWindow": "

The daily time range during which automated backups are created if automated backups are enabled using the BackupRetentionPeriod parameter.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

The default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region. To view the time blocks available, see Backup window in the Amazon Aurora User Guide.

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.

", + "CreateDBClusterMessage$PreferredMaintenanceWindow": "

The weekly time range during which system maintenance can occur.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

The default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region, occurring on a random day of the week. To see the time blocks available, see Adjusting the Preferred DB Cluster Maintenance Window in the Amazon Aurora User Guide.

Constraints:

  • Must be in the format ddd:hh24:mi-ddd:hh24:mi.

  • Days must be one of Mon | Tue | Wed | Thu | Fri | Sat | Sun.

  • Must be in Universal Coordinated Time (UTC).

  • Must be at least 30 minutes.

", + "CreateDBClusterMessage$ReplicationSourceIdentifier": "

The Amazon Resource Name (ARN) of the source DB instance or DB cluster if this DB cluster is created as a read replica.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "CreateDBClusterMessage$KmsKeyId": "

The Amazon Web Services KMS key identifier for an encrypted DB cluster.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

When a KMS key isn't specified in KmsKeyId:

  • If ReplicationSourceIdentifier identifies an encrypted source, then Amazon RDS uses the KMS key used to encrypt the source. Otherwise, Amazon RDS uses your default KMS key.

  • If the StorageEncrypted parameter is enabled and ReplicationSourceIdentifier isn't specified, then Amazon RDS uses your default KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

If you create a read replica of an encrypted DB cluster in another Amazon Web Services Region, make sure to set KmsKeyId to a KMS key identifier that is valid in the destination Amazon Web Services Region. This KMS key is used to encrypt the read replica in that Amazon Web Services Region.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "CreateDBClusterMessage$EngineMode": "

The DB engine mode of the DB cluster, either provisioned or serverless.

The serverless engine mode only applies for Aurora Serverless v1 DB clusters. Aurora Serverless v2 DB clusters use the provisioned engine mode.

For information about limitations and requirements for Serverless DB clusters, see the following sections in the Amazon Aurora User Guide:

Valid for Cluster Type: Aurora DB clusters only

", + "CreateDBClusterMessage$DBClusterInstanceClass": "

The compute and memory capacity of each DB instance in the Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines.

For the full list of DB instance classes and availability for your engine, see DB instance class in the Amazon RDS User Guide.

This setting is required to create a Multi-AZ DB cluster.

Valid for Cluster Type: Multi-AZ DB clusters only

", + "CreateDBClusterMessage$StorageType": "

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 | io2 | gp3

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.

", + "CreateDBClusterMessage$Domain": "

The Active Directory directory ID to create the DB cluster in.

For Amazon Aurora DB clusters, Amazon RDS can use Kerberos authentication to authenticate users that connect to the DB cluster.

For more information, see Kerberos authentication in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters only

", + "CreateDBClusterMessage$DomainIAMRoleName": "

The name of the IAM role to use when making API calls to the Directory Service.

Valid for Cluster Type: Aurora DB clusters only

", + "CreateDBClusterMessage$MonitoringRoleArn": "

The Amazon Resource Name (ARN) for the IAM role that permits RDS to send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example is arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, see Setting up and enabling Enhanced Monitoring in the Amazon RDS User Guide.

If MonitoringInterval is set to a value other than 0, supply a MonitoringRoleArn value.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "CreateDBClusterMessage$PerformanceInsightsKMSKeyId": "

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you don't specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "CreateDBClusterMessage$DBSystemId": "

Reserved for future use.

", + "CreateDBClusterMessage$MasterUserSecretKmsKeyId": "

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB cluster.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "CreateDBClusterMessage$CACertificateIdentifier": "

The CA certificate identifier to use for the DB cluster's server certificate.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide.

Valid for Cluster Type: Multi-AZ DB clusters

", + "CreateDBClusterMessage$EngineLifecycleSupport": "

The life cycle type for this DB cluster.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, creating the DB cluster will fail if the DB major version is past its end of standard support date.

You can use this setting to enroll your DB cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections:

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

", + "CreateDBClusterParameterGroupMessage$DBClusterParameterGroupName": "

The name of the DB cluster parameter group.

Constraints:

  • Must not match the name of an existing DB cluster parameter group.

This value is stored as a lowercase string.

", + "CreateDBClusterParameterGroupMessage$DBParameterGroupFamily": "

The DB cluster parameter group family name. A DB cluster parameter group can be associated with one and only one DB cluster parameter group family, and can be applied only to a DB cluster running a database engine and engine version compatible with that DB cluster parameter group family.

Aurora MySQL

Example: aurora-mysql5.7, aurora-mysql8.0

Aurora PostgreSQL

Example: aurora-postgresql14

RDS for MySQL

Example: mysql8.0

RDS for PostgreSQL

Example: postgres13

To list all of the available parameter group families for a DB engine, use the following command:

aws rds describe-db-engine-versions --query \"DBEngineVersions[].DBParameterGroupFamily\" --engine <engine>

For example, to list all of the available parameter group families for the Aurora PostgreSQL DB engine, use the following command:

aws rds describe-db-engine-versions --query \"DBEngineVersions[].DBParameterGroupFamily\" --engine aurora-postgresql

The output contains duplicates.

The following are the valid DB engine values:

  • aurora-mysql

  • aurora-postgresql

  • mysql

  • postgres

", + "CreateDBClusterParameterGroupMessage$Description": "

The description for the DB cluster parameter group.

", + "CreateDBClusterSnapshotMessage$DBClusterSnapshotIdentifier": "

The identifier of the DB cluster snapshot. This parameter is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

Example: my-cluster1-snapshot1

", + "CreateDBClusterSnapshotMessage$DBClusterIdentifier": "

The identifier of the DB cluster to create a snapshot for. This parameter isn't case-sensitive.

Constraints:

  • Must match the identifier of an existing DBCluster.

Example: my-cluster1

", + "CreateDBInstanceMessage$DBName": "

The meaning of this parameter differs according to the database engine you use.

Amazon Aurora MySQL

The name of the database to create when the primary DB instance of the Aurora MySQL DB cluster is created. If this parameter isn't specified for an Aurora MySQL DB cluster, no database is created in the DB cluster.

Constraints:

  • Must contain 1 to 64 alphanumeric characters.

  • Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).

  • Can't be a word reserved by the database engine.

Amazon Aurora PostgreSQL

The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is created. A database named postgres is always created. If this parameter is specified, an additional database with this name is created.

Constraints:

  • It must contain 1 to 63 alphanumeric characters.

  • Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0 to 9).

  • Can't be a word reserved by the database engine.

Amazon RDS Custom for Oracle

The Oracle System ID (SID) of the created RDS Custom DB instance. If you don't specify a value, the default value is ORCL for non-CDBs and RDSCDB for CDBs.

Default: ORCL

Constraints:

  • Must contain 1 to 8 alphanumeric characters.

  • Must contain a letter.

  • Can't be a word reserved by the database engine.

Amazon RDS Custom for SQL Server

Not applicable. Must be null.

RDS for Db2

The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. In some cases, we recommend that you don't add a database name. For more information, see Additional considerations in the Amazon RDS User Guide.

Constraints:

  • Must contain 1 to 64 letters or numbers.

  • Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).

  • Can't be a word reserved by the specified database engine.

RDS for MariaDB

The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance.

Constraints:

  • Must contain 1 to 64 letters or numbers.

  • Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).

  • Can't be a word reserved by the specified database engine.

RDS for MySQL

The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance.

Constraints:

  • Must contain 1 to 64 letters or numbers.

  • Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).

  • Can't be a word reserved by the specified database engine.

RDS for Oracle

The Oracle System ID (SID) of the created DB instance. If you don't specify a value, the default value is ORCL. You can't specify the string null, or any other reserved word, for DBName.

Default: ORCL

Constraints:

  • Can't be longer than 8 characters.

RDS for PostgreSQL

The name of the database to create when the DB instance is created. A database named postgres is always created. If this parameter is specified, an additional database with this name is created.

Constraints:

  • Must contain 1 to 63 letters, numbers, or underscores.

  • Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).

  • Can't be a word reserved by the specified database engine.

RDS for SQL Server

Not applicable. Must be null.

", + "CreateDBInstanceMessage$DBInstanceIdentifier": "

The identifier for this DB instance. This parameter is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

Example: mydbinstance

", + "CreateDBInstanceMessage$DBInstanceClass": "

The compute and memory capacity of the DB instance, for example db.m5.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB instance classes in the Amazon RDS User Guide or Aurora DB instance classes in the Amazon Aurora User Guide.

", + "CreateDBInstanceMessage$Engine": "

The database engine to use for this DB instance.

Not every database engine is available in every Amazon Web Services Region.

Valid Values:

  • aurora-mysql (for Aurora MySQL DB instances)

  • aurora-postgresql (for Aurora PostgreSQL DB instances)

  • custom-oracle-ee (for RDS Custom for Oracle DB instances)

  • custom-oracle-ee-cdb (for RDS Custom for Oracle DB instances)

  • custom-oracle-se2 (for RDS Custom for Oracle DB instances)

  • custom-oracle-se2-cdb (for RDS Custom for Oracle DB instances)

  • custom-sqlserver-ee (for RDS Custom for SQL Server DB instances)

  • custom-sqlserver-se (for RDS Custom for SQL Server DB instances)

  • custom-sqlserver-web (for RDS Custom for SQL Server DB instances)

  • custom-sqlserver-dev (for RDS Custom for SQL Server DB instances)

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

", + "CreateDBInstanceMessage$MasterUsername": "

The name for the master user.

This setting doesn't apply to Amazon Aurora DB instances. The name for the master user is managed by the DB cluster.

This setting is required for RDS DB instances.

Constraints:

  • Must be 1 to 16 letters, numbers, or underscores.

  • First character must be a letter.

  • Can't be a reserved word for the chosen database engine.

", + "CreateDBInstanceMessage$AvailabilityZone": "

The Availability Zone (AZ) where the database will be created. For information on Amazon Web Services Regions and Availability Zones, see Regions and Availability Zones.

For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one.

Default: A random, system-chosen Availability Zone in the endpoint's Amazon Web Services Region.

Constraints:

  • The AvailabilityZone parameter can't be specified if the DB instance is a Multi-AZ deployment.

  • The specified Availability Zone must be in the same Amazon Web Services Region as the current endpoint.

Example: us-east-1d

", + "CreateDBInstanceMessage$DBSubnetGroupName": "

A DB subnet group to associate with this DB instance.

Constraints:

  • Must match the name of an existing DB subnet group.

Example: mydbsubnetgroup

", + "CreateDBInstanceMessage$PreferredMaintenanceWindow": "

The time range each week during which system maintenance can occur. For more information, see Amazon RDS Maintenance Window in the Amazon RDS User Guide.

The default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region, occurring on a random day of the week.

Constraints:

  • Must be in the format ddd:hh24:mi-ddd:hh24:mi.

  • The day values must be mon | tue | wed | thu | fri | sat | sun.

  • Must be in Universal Coordinated Time (UTC).

  • Must not conflict with the preferred backup window.

  • Must be at least 30 minutes.

", + "CreateDBInstanceMessage$DBParameterGroupName": "

The name of the DB parameter group to associate with this DB instance. If you don't specify a value, then Amazon RDS uses the default DB parameter group for the specified DB engine and version.

This setting doesn't apply to RDS Custom DB instances.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.

  • The first character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

", + "CreateDBInstanceMessage$PreferredBackupWindow": "

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 Amazon Web Services Region. For more information, see Backup window in the Amazon RDS User Guide.

This setting doesn't apply to Amazon Aurora DB instances. The daily time range for creating automated backups is managed by the DB cluster.

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.

", + "CreateDBInstanceMessage$EngineVersion": "

The version number of the database engine to use.

This setting doesn't apply to Amazon Aurora DB instances. The version number of the database engine the DB instance uses is managed by the DB cluster.

For a list of valid engine versions, use the DescribeDBEngineVersions operation.

The following are the database engines and links to information about the major and minor versions that are available with Amazon RDS. Not every database engine is available for every Amazon Web Services Region.

Amazon RDS Custom for Oracle

A custom engine version (CEV) that you have previously created. This setting is required for RDS Custom for Oracle. The CEV name has the following format: 19.customized_string. A valid CEV name is 19.my_cev1. For more information, see Creating an RDS Custom for Oracle DB instance in the Amazon RDS User Guide.

Amazon RDS Custom for SQL Server

See RDS Custom for SQL Server general requirements in the Amazon RDS User Guide.

RDS for Db2

For information, see Db2 on Amazon RDS versions in the Amazon RDS User Guide.

RDS for MariaDB

For information, see MariaDB on Amazon RDS versions in the Amazon RDS User Guide.

RDS for Microsoft SQL Server

For information, see Microsoft SQL Server versions on Amazon RDS in the Amazon RDS User Guide.

RDS for MySQL

For information, see MySQL on Amazon RDS versions in the Amazon RDS User Guide.

RDS for Oracle

For information, see Oracle Database Engine release notes in the Amazon RDS User Guide.

RDS for PostgreSQL

For information, see Amazon RDS for PostgreSQL versions and extensions in the Amazon RDS User Guide.

", + "CreateDBInstanceMessage$LicenseModel": "

The license model information for this DB instance.

License models for RDS for Db2 require additional configuration. The Bring Your Own License (BYOL) model requires a custom parameter group and an Amazon Web Services License Manager self-managed license. The Db2 license through Amazon Web Services Marketplace model requires an Amazon Web Services Marketplace subscription. For more information, see Amazon RDS for Db2 licensing options in the Amazon RDS User Guide.

The default for RDS for Db2 is bring-your-own-license.

This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.

Valid Values:

  • RDS for Db2 - bring-your-own-license | marketplace-license

  • RDS for MariaDB - general-public-license

  • RDS for Microsoft SQL Server - license-included

  • RDS for MySQL - general-public-license

  • RDS for Oracle - bring-your-own-license | license-included

  • RDS for PostgreSQL - postgresql-license

", + "CreateDBInstanceMessage$OptionGroupName": "

The option group to associate the DB instance with.

Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option group. Also, that option group can't be removed from a DB instance after it is associated with a DB instance.

This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.

", + "CreateDBInstanceMessage$CharacterSetName": "

For supported engines, the character set (CharacterSet) to associate the DB instance with.

This setting doesn't apply to the following DB instances:

  • Amazon Aurora - The character set is managed by the DB cluster. For more information, see CreateDBCluster.

  • RDS Custom - However, if you need to change the character set, you can change it on the database itself.

", + "CreateDBInstanceMessage$NcharCharacterSetName": "

The name of the NCHAR character set for the Oracle DB instance.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceMessage$DBClusterIdentifier": "

The identifier of the DB cluster that this DB instance will belong to.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceMessage$StorageType": "

The storage type to associate with the DB instance.

If you specify io1, io2, or gp3, you must also include a value for the Iops parameter.

This setting doesn't apply to Amazon Aurora DB instances. Storage is managed by the DB cluster.

Valid Values: gp2 | gp3 | io1 | io2 | standard

Default: io1, if the Iops parameter is specified. Otherwise, gp3.

", + "CreateDBInstanceMessage$TdeCredentialArn": "

The ARN from the key store with which to associate the instance for TDE encryption.

This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.

", + "CreateDBInstanceMessage$KmsKeyId": "

The Amazon Web Services KMS key identifier for an encrypted DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

This setting doesn't apply to Amazon Aurora DB instances. The Amazon Web Services KMS key identifier is managed by the DB cluster. For more information, see CreateDBCluster.

If StorageEncrypted is enabled, and you do not specify a value for the KmsKeyId parameter, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

For Amazon RDS Custom, a KMS key is required for DB instances. For most RDS engines, if you leave this parameter empty while enabling StorageEncrypted, the engine uses the default KMS key. However, RDS Custom doesn't use the default key when this parameter is empty. You must explicitly specify a key.

", + "CreateDBInstanceMessage$Domain": "

The Active Directory directory ID to create the DB instance in. Currently, you can create only Db2, MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances in an Active Directory Domain.

For more information, see Kerberos Authentication in the Amazon RDS User Guide.

This setting doesn't apply to the following DB instances:

  • Amazon Aurora (The domain is managed by the DB cluster.)

  • RDS Custom

", + "CreateDBInstanceMessage$DomainFqdn": "

The fully qualified domain name (FQDN) of an Active Directory domain.

Constraints:

  • Can't be longer than 64 characters.

Example: mymanagedADtest.mymanagedAD.mydomain

", + "CreateDBInstanceMessage$DomainOu": "

The Active Directory organizational unit for your DB instance to join.

Constraints:

  • Must be in the distinguished name format.

  • Can't be longer than 64 characters.

Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain

", + "CreateDBInstanceMessage$DomainAuthSecretArn": "

The ARN for the Secrets Manager secret with the credentials for the user joining the domain.

Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456

", + "CreateDBInstanceMessage$MonitoringRoleArn": "

The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. For example, arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, see Setting Up and Enabling Enhanced Monitoring in the Amazon RDS User Guide.

If MonitoringInterval is set to a value other than 0, then you must supply a MonitoringRoleArn value.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceMessage$DomainIAMRoleName": "

The name of the IAM role to use when making API calls to the Directory Service.

This setting doesn't apply to the following DB instances:

  • Amazon Aurora (The domain is managed by the DB cluster.)

  • RDS Custom

", + "CreateDBInstanceMessage$Timezone": "

The time zone of the DB instance. The time zone parameter is currently supported only by RDS for Db2 and RDS for SQL Server.

", + "CreateDBInstanceMessage$PerformanceInsightsKMSKeyId": "

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you don't specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceMessage$NetworkType": "

The network type of the DB instance.

The network type is determined by the DBSubnetGroup specified for the DB instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

Valid Values: IPV4 | DUAL

", + "CreateDBInstanceMessage$CustomIamInstanceProfile": "

The instance profile associated with the underlying Amazon EC2 instance of an RDS Custom DB instance.

This setting is required for RDS Custom.

Constraints:

  • The profile must exist in your account.

  • The profile must have an IAM role that Amazon EC2 has permissions to assume.

  • The instance profile name and the associated IAM role name must start with the prefix AWSRDSCustom.

For the list of permissions required for the IAM role, see Configure IAM and your VPC in the Amazon RDS User Guide.

", + "CreateDBInstanceMessage$DBSystemId": "

The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database files. In this context, the term \"Oracle database instance\" refers exclusively to the system global area (SGA) and Oracle background processes. If you don't specify a SID, the value defaults to RDSCDB. The Oracle SID is also the name of your CDB.

", + "CreateDBInstanceMessage$CACertificateIdentifier": "

The CA certificate identifier to use for the DB instance's server certificate.

This setting doesn't apply to RDS Custom DB instances.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

", + "CreateDBInstanceMessage$MasterUserSecretKmsKeyId": "

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

", + "CreateDBInstanceMessage$EngineLifecycleSupport": "

The life cycle type for this DB instance.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB instance into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, creating the DB instance will fail if the DB major version is past its end of standard support date.

This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster.

You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see Amazon RDS Extended Support with Amazon RDS in the Amazon RDS User Guide.

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

", + "CreateDBInstanceReadReplicaMessage$DBInstanceIdentifier": "

The DB instance identifier of the read replica. This identifier is the unique key that identifies a DB instance. This parameter is stored as a lowercase string.

", + "CreateDBInstanceReadReplicaMessage$SourceDBInstanceIdentifier": "

The identifier of the DB instance that will act as the source for the read replica. Each DB instance can have up to 15 read replicas, except for the following engines:

  • Db2 - Can have up to three replicas.

  • Oracle - Can have up to five read replicas.

  • SQL Server - Can have up to five read replicas.

Constraints:

  • Must be the identifier of an existing Db2, MariaDB, MySQL, Oracle, PostgreSQL, or SQL Server DB instance.

  • Can't be specified if the SourceDBClusterIdentifier parameter is also specified.

  • For the limitations of Oracle read replicas, see Version and licensing considerations for RDS for Oracle replicas in the Amazon RDS User Guide.

  • For the limitations of SQL Server read replicas, see Read replica limitations with SQL Server in the Amazon RDS User Guide.

  • The specified DB instance must have automatic backups enabled, that is, its backup retention period must be greater than 0.

  • If the source DB instance is in the same Amazon Web Services Region as the read replica, specify a valid DB instance identifier.

  • If the source DB instance is in a different Amazon Web Services Region from the read replica, specify a valid DB instance ARN. For more information, see Constructing an ARN for Amazon RDS in the Amazon RDS User Guide. This doesn't apply to SQL Server or RDS Custom, which don't support cross-Region replicas.

", + "CreateDBInstanceReadReplicaMessage$DBInstanceClass": "

The compute and memory capacity of the read replica, for example db.m4.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide.

Default: Inherits the value from the source DB instance.

", + "CreateDBInstanceReadReplicaMessage$AvailabilityZone": "

The Availability Zone (AZ) where the read replica will be created.

Default: A random, system-chosen Availability Zone in the endpoint's Amazon Web Services Region.

Example: us-east-1d

", + "CreateDBInstanceReadReplicaMessage$OptionGroupName": "

The option group to associate the DB instance with. If not specified, RDS uses the option group associated with the source DB instance or cluster.

For SQL Server, you must use the option group associated with the source.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceReadReplicaMessage$DBParameterGroupName": "

The name of the DB parameter group to associate with this read replica DB instance.

For the Db2 DB engine, if your source DB instance uses the Bring Your Own License model, then a custom parameter group must be associated with the replica. For a same Amazon Web Services Region replica, if you don't specify a custom parameter group, Amazon RDS associates the custom parameter group associated with the source DB instance. For a cross-Region replica, you must specify a custom parameter group. This custom parameter group must include your IBM Site ID and IBM Customer ID. For more information, see IBM IDs for Bring Your Own License for Db2.

For Single-AZ or Multi-AZ DB instance read replica instances, if you don't specify a value for DBParameterGroupName, then Amazon RDS uses the DBParameterGroup of the source DB instance for a same Region read replica, or the default DBParameterGroup for the specified DB engine for a cross-Region read replica.

For Multi-AZ DB cluster same Region read replica instances, if you don't specify a value for DBParameterGroupName, then Amazon RDS uses the default DBParameterGroup.

Specifying a parameter group for this operation is only supported for MySQL DB instances for cross-Region read replicas, for Multi-AZ DB cluster read replica instances, for Db2 DB instances, and for Oracle DB instances. It isn't supported for MySQL DB instances for same Region read replicas or for RDS Custom.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

", + "CreateDBInstanceReadReplicaMessage$DBSubnetGroupName": "

A DB subnet group for the DB instance. The new DB instance is created in the VPC associated with the DB subnet group. If no DB subnet group is specified, then the new DB instance isn't created in a VPC.

Constraints:

  • If supplied, must match the name of an existing DB subnet group.

  • The specified DB subnet group must be in the same Amazon Web Services Region in which the operation is running.

  • All read replicas in one Amazon Web Services Region that are created from the same source DB instance must either:

    • Specify DB subnet groups from the same VPC. All these read replicas are created in the same VPC.

    • Not specify a DB subnet group. All these read replicas are created outside of any VPC.

Example: mydbsubnetgroup

", + "CreateDBInstanceReadReplicaMessage$StorageType": "

The storage type to associate with the read replica.

If you specify io1, io2, or gp3, you must also include a value for the Iops parameter.

Valid Values: gp2 | gp3 | io1 | io2 | standard

Default: io1 if the Iops parameter is specified. Otherwise, gp3.

", + "CreateDBInstanceReadReplicaMessage$MonitoringRoleArn": "

The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. For example, arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, go to To create an IAM role for Amazon RDS Enhanced Monitoring in the Amazon RDS User Guide.

If MonitoringInterval is set to a value other than 0, then you must supply a MonitoringRoleArn value.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceReadReplicaMessage$KmsKeyId": "

The Amazon Web Services KMS key identifier for an encrypted read replica.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you create an encrypted read replica in the same Amazon Web Services Region as the source DB instance or Multi-AZ DB cluster, don't specify a value for this parameter. A read replica in the same Amazon Web Services Region is always encrypted with the same KMS key as the source DB instance or cluster.

If you create an encrypted read replica in a different Amazon Web Services Region, then you must specify a KMS key identifier for the destination Amazon Web Services Region. KMS keys are specific to the Amazon Web Services Region that they are created in, and you can't use KMS keys from one Amazon Web Services Region in another Amazon Web Services Region.

You can't create an encrypted read replica from an unencrypted DB instance or Multi-AZ DB cluster.

This setting doesn't apply to RDS Custom, which uses the same KMS key as the primary replica.

", + "CreateDBInstanceReadReplicaMessage$PerformanceInsightsKMSKeyId": "

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceReadReplicaMessage$Domain": "

The Active Directory directory ID to create the DB instance in. Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances can be created in an Active Directory Domain.

For more information, see Kerberos Authentication in the Amazon RDS User Guide.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceReadReplicaMessage$DomainIAMRoleName": "

The name of the IAM role to use when making API calls to the Directory Service.

This setting doesn't apply to RDS Custom DB instances.

", + "CreateDBInstanceReadReplicaMessage$DomainFqdn": "

The fully qualified domain name (FQDN) of an Active Directory domain.

Constraints:

  • Can't be longer than 64 characters.

Example: mymanagedADtest.mymanagedAD.mydomain

", + "CreateDBInstanceReadReplicaMessage$DomainOu": "

The Active Directory organizational unit for your DB instance to join.

Constraints:

  • Must be in the distinguished name format.

  • Can't be longer than 64 characters.

Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain

", + "CreateDBInstanceReadReplicaMessage$DomainAuthSecretArn": "

The ARN for the Secrets Manager secret with the credentials for the user joining the domain.

Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456

", + "CreateDBInstanceReadReplicaMessage$NetworkType": "

The network type of the DB instance.

Valid Values:

  • IPV4

  • DUAL

The network type is determined by the DBSubnetGroup specified for read replica. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

", + "CreateDBInstanceReadReplicaMessage$CustomIamInstanceProfile": "

The instance profile associated with the underlying Amazon EC2 instance of an RDS Custom DB instance. The instance profile must meet the following requirements:

  • The profile must exist in your account.

  • The profile must have an IAM role that Amazon EC2 has permissions to assume.

  • The instance profile name and the associated IAM role name must start with the prefix AWSRDSCustom.

For the list of permissions required for the IAM role, see Configure IAM and your VPC in the Amazon RDS User Guide.

This setting is required for RDS Custom DB instances.

", + "CreateDBInstanceReadReplicaMessage$SourceDBClusterIdentifier": "

The identifier of the Multi-AZ DB cluster that will act as the source for the read replica. Each DB cluster can have up to 15 read replicas.

Constraints:

  • Must be the identifier of an existing Multi-AZ DB cluster.

  • Can't be specified if the SourceDBInstanceIdentifier parameter is also specified.

  • The specified DB cluster must have automatic backups enabled, that is, its backup retention period must be greater than 0.

  • The source DB cluster must be in the same Amazon Web Services Region as the read replica. Cross-Region replication isn't supported.

", + "CreateDBParameterGroupMessage$DBParameterGroupName": "

The name of the DB parameter group.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

This value is stored as a lowercase string.

", + "CreateDBParameterGroupMessage$DBParameterGroupFamily": "

The DB parameter group family name. A DB parameter group can be associated with one and only one DB parameter group family, and can be applied only to a DB instance running a database engine and engine version compatible with that DB parameter group family.

To list all of the available parameter group families for a DB engine, use the following command:

aws rds describe-db-engine-versions --query \"DBEngineVersions[].DBParameterGroupFamily\" --engine <engine>

For example, to list all of the available parameter group families for the MySQL DB engine, use the following command:

aws rds describe-db-engine-versions --query \"DBEngineVersions[].DBParameterGroupFamily\" --engine mysql

The output contains duplicates.

The following are the valid DB engine values:

  • aurora-mysql

  • aurora-postgresql

  • db2-ae

  • db2-se

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

", + "CreateDBParameterGroupMessage$Description": "

The description for the DB parameter group.

", + "CreateDBSecurityGroupMessage$DBSecurityGroupName": "

The name for the DB security group. This value is stored as a lowercase string.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

  • Must not be \"Default\"

Example: mysecuritygroup

", + "CreateDBSecurityGroupMessage$DBSecurityGroupDescription": "

The description for the DB security group.

", + "CreateDBShardGroupMessage$DBShardGroupIdentifier": "

The name of the DB shard group.

", + "CreateDBShardGroupMessage$DBClusterIdentifier": "

The name of the primary DB cluster for the DB shard group.

", + "CreateDBSnapshotMessage$DBSnapshotIdentifier": "

The identifier for the DB snapshot.

Constraints:

  • Can't be null, empty, or blank

  • Must contain from 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

Example: my-snapshot-id

", + "CreateDBSnapshotMessage$DBInstanceIdentifier": "

The identifier of the DB instance that you want to create the snapshot of.

Constraints:

  • Must match the identifier of an existing DBInstance.

", + "CreateDBSubnetGroupMessage$DBSubnetGroupName": "

The name for the DB subnet group. This value is stored as a lowercase string.

Constraints:

  • Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens.

  • Must not be default.

  • First character must be a letter.

Example: mydbsubnetgroup

", + "CreateDBSubnetGroupMessage$DBSubnetGroupDescription": "

The description for the DB subnet group.

", + "CreateEventSubscriptionMessage$SubscriptionName": "

The name of the subscription.

Constraints: The name must be less than 255 characters.

", + "CreateEventSubscriptionMessage$SnsTopicArn": "

The Amazon Resource Name (ARN) of the SNS topic created for event notification. SNS automatically creates the ARN when you create a topic and subscribe to it.

RDS doesn't support FIFO (first in, first out) topics. For more information, see Message ordering and deduplication (FIFO topics) in the Amazon Simple Notification Service Developer Guide.

", + "CreateEventSubscriptionMessage$SourceType": "

The type of source that is generating the events. For example, if you want to be notified of events generated by a DB instance, you set this parameter to db-instance. For RDS Proxy events, specify db-proxy. If this value isn't specified, all events are returned.

Valid Values: db-instance | db-cluster | db-parameter-group | db-security-group | db-snapshot | db-cluster-snapshot | db-proxy | zero-etl | custom-engine-version | blue-green-deployment

", + "CreateGlobalClusterMessage$SourceDBClusterIdentifier": "

The Amazon Resource Name (ARN) to use as the primary cluster of the global database.

If you provide a value for this parameter, don't specify values for the following settings because Amazon Aurora uses the values from the specified source DB cluster:

  • DatabaseName

  • Engine

  • EngineVersion

  • StorageEncrypted

", + "CreateGlobalClusterMessage$Engine": "

The database engine to use for this global database cluster.

Valid Values: aurora-mysql | aurora-postgresql

Constraints:

  • Can't be specified if SourceDBClusterIdentifier is specified. In this case, Amazon Aurora uses the engine of the source DB cluster.

", + "CreateGlobalClusterMessage$EngineVersion": "

The engine version to use for this global database cluster.

Constraints:

  • Can't be specified if SourceDBClusterIdentifier is specified. In this case, Amazon Aurora uses the engine version of the source DB cluster.

", + "CreateGlobalClusterMessage$EngineLifecycleSupport": "

The life cycle type for this global database cluster.

By default, this value is set to open-source-rds-extended-support, which enrolls your global cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, creating the global cluster will fail if the DB major version is past its end of standard support date.

This setting only applies to Aurora PostgreSQL-based global databases.

You can use this setting to enroll your global cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your global cluster past the end of standard support for that engine version. For more information, see Amazon RDS Extended Support with Amazon Aurora in the Amazon Aurora User Guide.

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

", + "CreateGlobalClusterMessage$DatabaseName": "

The name for your database of up to 64 alphanumeric characters. If you don't specify a name, Amazon Aurora doesn't create a database in the global database cluster.

Constraints:

  • Can't be specified if SourceDBClusterIdentifier is specified. In this case, Amazon Aurora uses the database name from the source DB cluster.

", + "CreateIntegrationMessage$KMSKeyId": "

The Amazon Web Services Key Management System (Amazon Web Services KMS) key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, RDS uses a default Amazon Web Services owned key.

", + "CreateOptionGroupMessage$OptionGroupName": "

Specifies the name of the option group to be created.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

Example: myoptiongroup

", + "CreateOptionGroupMessage$EngineName": "

The name of the engine to associate this option group with.

Valid Values:

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

", + "CreateOptionGroupMessage$MajorEngineVersion": "

Specifies the major version of the engine that this option group should be associated with.

", + "CreateOptionGroupMessage$OptionGroupDescription": "

The description of the option group.

", + "CreateTenantDatabaseMessage$DBInstanceIdentifier": "

The user-supplied DB instance identifier. RDS creates your tenant database in this DB instance. This parameter isn't case-sensitive.

", + "CreateTenantDatabaseMessage$TenantDBName": "

The user-supplied name of the tenant database that you want to create in your DB instance. This parameter has the same constraints as DBName in CreateDBInstance.

", + "CreateTenantDatabaseMessage$MasterUsername": "

The name for the master user account in your tenant database. RDS creates this user account in the tenant database and grants privileges to the master user. This parameter is case-sensitive.

Constraints:

  • Must be 1 to 16 letters, numbers, or underscores.

  • First character must be a letter.

  • Can't be a reserved word for the chosen database engine.

", + "CreateTenantDatabaseMessage$CharacterSetName": "

The character set for your tenant database. If you don't specify a value, the character set name defaults to AL32UTF8.

", + "CreateTenantDatabaseMessage$NcharCharacterSetName": "

The NCHAR value for the tenant database.

", + "CreateTenantDatabaseMessage$MasterUserSecretKmsKeyId": "

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

", + "CustomDBEngineVersionAMI$ImageId": "

A value that indicates the ID of the AMI.

", + "CustomDBEngineVersionAMI$Status": "

A value that indicates the status of a custom engine version (CEV).

", + "DBCluster$CharacterSetName": "

If present, specifies the name of the character set that this cluster is associated with.

", + "DBCluster$DatabaseName": "

The name of the initial database that was specified for the DB cluster when it was created, if one was provided. This same name is returned for the life of the DB cluster.

", + "DBCluster$DBClusterIdentifier": "

The user-supplied identifier for the DB cluster. This identifier is the unique key that identifies a DB cluster.

", + "DBCluster$DBClusterParameterGroup": "

The name of the DB cluster parameter group for the DB cluster.

", + "DBCluster$DBSubnetGroup": "

Information about the subnet group associated with the DB cluster, including the name, description, and subnets in the subnet group.

", + "DBCluster$Status": "

The current state of this DB cluster.

", + "DBCluster$PercentProgress": "

The progress of the operation as a percentage.

", + "DBCluster$Endpoint": "

The connection endpoint for the primary instance of the DB cluster.

", + "DBCluster$ReaderEndpoint": "

The reader endpoint for the DB cluster. The reader endpoint for a DB cluster load-balances connections across the Aurora Replicas that are available in a DB cluster. As clients request new connections to the reader endpoint, Aurora distributes the connection requests among the Aurora Replicas in the DB cluster. This functionality can help balance your read workload across multiple Aurora Replicas in your DB cluster.

If a failover occurs, and the Aurora Replica that you are connected to is promoted to be the primary instance, your connection is dropped. To continue sending your read workload to other Aurora Replicas in the cluster, you can then reconnect to the reader endpoint.

", + "DBCluster$Engine": "

The database engine used for this DB cluster.

", + "DBCluster$EngineVersion": "

The version of the database engine.

", + "DBCluster$MasterUsername": "

The master username for the DB cluster.

", + "DBCluster$PreferredBackupWindow": "

The daily time range during which automated backups are created if automated backups are enabled, as determined by the BackupRetentionPeriod.

", + "DBCluster$PreferredMaintenanceWindow": "

The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).

", + "DBCluster$ReplicationSourceIdentifier": "

The identifier of the source DB cluster if this DB cluster is a read replica.

", + "DBCluster$HostedZoneId": "

The ID that Amazon Route 53 assigns when you create a hosted zone.

", + "DBCluster$KmsKeyId": "

If StorageEncrypted is enabled, the Amazon Web Services KMS key identifier for the encrypted DB cluster.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

", + "DBCluster$DbClusterResourceId": "

The Amazon Web Services Region-unique, immutable identifier for the DB cluster. This identifier is found in Amazon Web Services CloudTrail log entries whenever the KMS key for the DB cluster is accessed.

", + "DBCluster$DBClusterArn": "

The Amazon Resource Name (ARN) for the DB cluster.

", + "DBCluster$CloneGroupId": "

The ID of the clone group with which the DB cluster is associated. For newly created clusters, the ID is typically null.

If you clone a DB cluster when the ID is null, the operation populates the ID value for the source cluster and the clone because both clusters become part of the same clone group. Even if you delete the clone cluster, the clone group ID remains for the lifetime of the source cluster to show that it was used in a cloning operation.

For PITR, the clone group ID is inherited from the source cluster. For snapshot restore operations, the clone group ID isn't inherited from the source cluster.

", + "DBCluster$EngineMode": "

The DB engine mode of the DB cluster, either provisioned or serverless.

For more information, see CreateDBCluster.

", + "DBCluster$DBClusterInstanceClass": "

The name of the compute and memory capacity class of the DB instance.

This setting is only for non-Aurora Multi-AZ DB clusters.

", + "DBCluster$StorageType": "

The storage type associated with the DB cluster.

", + "DBCluster$ActivityStreamKmsKeyId": "

The Amazon Web Services KMS key identifier used for encrypting messages in the database activity stream.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

", + "DBCluster$ActivityStreamKinesisStreamName": "

The name of the Amazon Kinesis data stream used for the database activity stream.

", + "DBCluster$MonitoringRoleArn": "

The ARN for the IAM role that permits RDS to send Enhanced Monitoring metrics to Amazon CloudWatch Logs.

This setting is only for Aurora DB clusters and Multi-AZ DB clusters.

", + "DBCluster$PerformanceInsightsKMSKeyId": "

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

This setting is only for Aurora DB clusters and Multi-AZ DB clusters.

", + "DBCluster$DBSystemId": "

Reserved for future use.

", + "DBCluster$EngineLifecycleSupport": "

The lifecycle type for the DB cluster.

For more information, see CreateDBCluster.

", + "DBClusterAutomatedBackup$Engine": "

The name of the database engine for this automated backup.

", + "DBClusterAutomatedBackup$VpcId": "

The VPC ID associated with the DB cluster.

", + "DBClusterAutomatedBackup$DBClusterAutomatedBackupsArn": "

The Amazon Resource Name (ARN) for the automated backups.

", + "DBClusterAutomatedBackup$DBClusterIdentifier": "

The identifier for the source DB cluster, which can't be changed and which is unique to an Amazon Web Services Region.

", + "DBClusterAutomatedBackup$MasterUsername": "

The master user name of the automated backup.

", + "DBClusterAutomatedBackup$DbClusterResourceId": "

The resource ID for the source DB cluster, which can't be changed and which is unique to an Amazon Web Services Region.

", + "DBClusterAutomatedBackup$Region": "

The Amazon Web Services Region associated with the automated backup.

", + "DBClusterAutomatedBackup$LicenseModel": "

The license model information for this DB cluster automated backup.

", + "DBClusterAutomatedBackup$Status": "

A list of status information for an automated backup:

  • retained - Automated backups for deleted clusters.

", + "DBClusterAutomatedBackup$EngineVersion": "

The version of the database engine for the automated backup.

", + "DBClusterAutomatedBackup$DBClusterArn": "

The Amazon Resource Name (ARN) for the source DB cluster.

", + "DBClusterAutomatedBackup$EngineMode": "

The engine mode of the database engine for the automated backup.

", + "DBClusterAutomatedBackup$KmsKeyId": "

The Amazon Web Services KMS key ID for an automated backup.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

", + "DBClusterAutomatedBackup$StorageType": "

The storage type associated with the DB cluster.

This setting is only for non-Aurora Multi-AZ DB clusters.

", + "DBClusterAutomatedBackupMessage$Marker": "

The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.

", + "DBClusterBacktrack$DBClusterIdentifier": "

Contains a user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster.

", + "DBClusterBacktrack$BacktrackIdentifier": "

Contains the backtrack identifier.

", + "DBClusterBacktrack$Status": "

The status of the backtrack. This property returns one of the following values:

  • applying - The backtrack is currently being applied to or rolled back from the DB cluster.

  • completed - The backtrack has successfully been applied to or rolled back from the DB cluster.

  • failed - An error occurred while the backtrack was applied to or rolled back from the DB cluster.

  • pending - The backtrack is currently pending application to or rollback from the DB cluster.

", + "DBClusterBacktrackMessage$Marker": "

A pagination token that can be used in a later DescribeDBClusterBacktracks request.

", + "DBClusterCapacityInfo$DBClusterIdentifier": "

A user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster.

", + "DBClusterCapacityInfo$TimeoutAction": "

The timeout action of a call to ModifyCurrentDBClusterCapacity, either ForceApplyCapacityChange or RollbackCapacityChange.

", + "DBClusterEndpoint$DBClusterEndpointIdentifier": "

The identifier associated with the endpoint. This parameter is stored as a lowercase string.

", + "DBClusterEndpoint$DBClusterIdentifier": "

The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

", + "DBClusterEndpoint$DBClusterEndpointResourceIdentifier": "

A unique system-generated identifier for an endpoint. It remains the same for the whole life of the endpoint.

", + "DBClusterEndpoint$Endpoint": "

The DNS address of the endpoint.

", + "DBClusterEndpoint$Status": "

The current status of the endpoint. One of: creating, available, deleting, inactive, modifying. The inactive state applies to an endpoint that can't be used for a certain kind of cluster, such as a writer endpoint for a read-only secondary cluster in a global database.

", + "DBClusterEndpoint$EndpointType": "

The type of the endpoint. One of: READER, WRITER, CUSTOM.

", + "DBClusterEndpoint$CustomEndpointType": "

The type associated with a custom endpoint. One of: READER, WRITER, ANY.

", + "DBClusterEndpoint$DBClusterEndpointArn": "

The Amazon Resource Name (ARN) for the endpoint.

", + "DBClusterEndpointMessage$Marker": "

An optional pagination token provided by a previous DescribeDBClusterEndpoints request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DBClusterMember$DBInstanceIdentifier": "

Specifies the instance identifier for this member of the DB cluster.

", + "DBClusterMember$DBClusterParameterGroupStatus": "

Specifies the status of the DB cluster parameter group for this member of the DB cluster.

", + "DBClusterMessage$Marker": "

A pagination token that can be used in a later DescribeDBClusters request.

", + "DBClusterOptionGroupStatus$DBClusterOptionGroupName": "

Specifies the name of the DB cluster option group.

", + "DBClusterOptionGroupStatus$Status": "

Specifies the status of the DB cluster option group.

", + "DBClusterParameterGroup$DBClusterParameterGroupName": "

The name of the DB cluster parameter group.

", + "DBClusterParameterGroup$DBParameterGroupFamily": "

The name of the DB parameter group family that this DB cluster parameter group is compatible with.

", + "DBClusterParameterGroup$Description": "

Provides the customer-specified description for this DB cluster parameter group.

", + "DBClusterParameterGroup$DBClusterParameterGroupArn": "

The Amazon Resource Name (ARN) for the DB cluster parameter group.

", + "DBClusterParameterGroupDetails$Marker": "

An optional pagination token provided by a previous DescribeDBClusterParameters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DBClusterParameterGroupNameMessage$DBClusterParameterGroupName": "

The name of the DB cluster parameter group.

Constraints:

  • Must be 1 to 255 letters or numbers.

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

This value is stored as a lowercase string.

", + "DBClusterParameterGroupsMessage$Marker": "

An optional pagination token provided by a previous DescribeDBClusterParameterGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DBClusterRole$RoleArn": "

The Amazon Resource Name (ARN) of the IAM role that is associated with the DB cluster.

", + "DBClusterRole$Status": "

Describes the state of association between the IAM role and the DB cluster. The Status property returns one of the following values:

  • ACTIVE - the IAM role ARN is associated with the DB cluster and can be used to access other Amazon Web Services on your behalf.

  • PENDING - the IAM role ARN is being associated with the DB cluster.

  • INVALID - the IAM role ARN is associated with the DB cluster, but the DB cluster is unable to assume the IAM role in order to access other Amazon Web Services on your behalf.

", + "DBClusterRole$FeatureName": "

The name of the feature associated with the Amazon Web Services Identity and Access Management (IAM) role. For information about supported feature names, see DBEngineVersion.

", + "DBClusterSnapshot$DBClusterSnapshotIdentifier": "

The identifier for the DB cluster snapshot.

", + "DBClusterSnapshot$DBClusterIdentifier": "

The DB cluster identifier of the DB cluster that this DB cluster snapshot was created from.

", + "DBClusterSnapshot$Engine": "

The name of the database engine for this DB cluster snapshot.

", + "DBClusterSnapshot$EngineMode": "

The engine mode of the database engine for this DB cluster snapshot.

", + "DBClusterSnapshot$Status": "

The status of this DB cluster snapshot. Valid statuses are the following:

  • available

  • copying

  • creating

", + "DBClusterSnapshot$VpcId": "

The VPC ID associated with the DB cluster snapshot.

", + "DBClusterSnapshot$MasterUsername": "

The master username for this DB cluster snapshot.

", + "DBClusterSnapshot$EngineVersion": "

The version of the database engine for this DB cluster snapshot.

", + "DBClusterSnapshot$LicenseModel": "

The license model information for this DB cluster snapshot.

", + "DBClusterSnapshot$SnapshotType": "

The type of the DB cluster snapshot.

", + "DBClusterSnapshot$KmsKeyId": "

If StorageEncrypted is true, the Amazon Web Services KMS key identifier for the encrypted DB cluster snapshot.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

", + "DBClusterSnapshot$DBClusterSnapshotArn": "

The Amazon Resource Name (ARN) for the DB cluster snapshot.

", + "DBClusterSnapshot$SourceDBClusterSnapshotArn": "

If the DB cluster snapshot was copied from a source DB cluster snapshot, the Amazon Resource Name (ARN) for the source DB cluster snapshot, otherwise, a null value.

", + "DBClusterSnapshot$StorageType": "

The storage type associated with the DB cluster snapshot.

This setting is only for Aurora DB clusters.

", + "DBClusterSnapshot$DbClusterResourceId": "

The resource ID of the DB cluster that this DB cluster snapshot was created from.

", + "DBClusterSnapshot$DBSystemId": "

Reserved for future use.

", + "DBClusterSnapshotAttribute$AttributeName": "

The name of the manual DB cluster snapshot attribute.

The attribute named restore refers to the list of Amazon Web Services accounts that have permission to copy or restore the manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

", + "DBClusterSnapshotAttributesResult$DBClusterSnapshotIdentifier": "

The identifier of the manual DB cluster snapshot that the attributes apply to.

", + "DBClusterSnapshotMessage$Marker": "

An optional pagination token provided by a previous DescribeDBClusterSnapshots request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DBClusterStatusInfo$StatusType": "

Reserved for future use.

", + "DBClusterStatusInfo$Status": "

Reserved for future use.

", + "DBClusterStatusInfo$Message": "

Reserved for future use.

", + "DBEngineVersion$Engine": "

The name of the database engine.

", + "DBEngineVersion$MajorEngineVersion": "

The major engine version of the CEV.

", + "DBEngineVersion$EngineVersion": "

The version number of the database engine.

", + "DBEngineVersion$DatabaseInstallationFilesS3BucketName": "

The name of the Amazon S3 bucket that contains your database installation files.

", + "DBEngineVersion$DatabaseInstallationFilesS3Prefix": "

The Amazon S3 directory that contains the database installation files. If not specified, then no prefix is assumed.

", + "DBEngineVersion$DBParameterGroupFamily": "

The name of the DB parameter group family for the database engine.

", + "DBEngineVersion$DBEngineDescription": "

The description of the database engine.

", + "DBEngineVersion$DBEngineVersionArn": "

The ARN of the custom engine version.

", + "DBEngineVersion$DBEngineVersionDescription": "

The description of the database engine version.

", + "DBEngineVersion$DBEngineMediaType": "

A value that indicates the source media provider of the AMI based on the usage operation. Applicable for RDS Custom for SQL Server.

", + "DBEngineVersion$KMSKeyId": "

The Amazon Web Services KMS key identifier for an encrypted CEV. This parameter is required for RDS Custom, but optional for Amazon RDS.

", + "DBEngineVersion$Status": "

The status of the DB engine version, either available or deprecated.

", + "DBEngineVersionMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DBInstance$DBInstanceIdentifier": "

The user-supplied database identifier. This identifier is the unique key that identifies a DB instance.

", + "DBInstance$DBInstanceClass": "

The name of the compute and memory capacity class of the DB instance.

", + "DBInstance$Engine": "

The database engine used for this DB instance.

", + "DBInstance$DBInstanceStatus": "

The current state of this database.

For information about DB instance statuses, see Viewing DB instance status in the Amazon RDS User Guide.

", + "DBInstance$MasterUsername": "

The master username for the DB instance.

", + "DBInstance$DBName": "

The initial database name that you provided (if required) when you created the DB instance. This name is returned for the life of your DB instance. For an RDS for Oracle CDB instance, the name identifies the PDB rather than the CDB.

", + "DBInstance$PreferredBackupWindow": "

The daily time range during which automated backups are created if automated backups are enabled, as determined by the BackupRetentionPeriod.

", + "DBInstance$AvailabilityZone": "

The name of the Availability Zone where the DB instance is located.

", + "DBInstance$PreferredMaintenanceWindow": "

The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).

", + "DBInstance$EngineVersion": "

The version of the database engine.

", + "DBInstance$ReadReplicaSourceDBInstanceIdentifier": "

The identifier of the source DB instance if this DB instance is a read replica.

", + "DBInstance$LicenseModel": "

The license model information for this DB instance. This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.

", + "DBInstance$CharacterSetName": "

If present, specifies the name of the character set that this instance is associated with.

", + "DBInstance$NcharCharacterSetName": "

The name of the NCHAR character set for the Oracle DB instance. This character set specifies the Unicode encoding for data stored in table columns of type NCHAR, NCLOB, or NVARCHAR2.

", + "DBInstance$SecondaryAvailabilityZone": "

If present, specifies the name of the secondary Availability Zone for a DB instance with multi-AZ support.

", + "DBInstance$StorageType": "

The storage type associated with the DB instance.

", + "DBInstance$TdeCredentialArn": "

The ARN from the key store with which the instance is associated for TDE encryption.

", + "DBInstance$DBClusterIdentifier": "

If the DB instance is a member of a DB cluster, indicates the name of the DB cluster that the DB instance is a member of.

", + "DBInstance$KmsKeyId": "

If StorageEncrypted is enabled, the Amazon Web Services KMS key identifier for the encrypted DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

", + "DBInstance$DbiResourceId": "

The Amazon Web Services Region-unique, immutable identifier for the DB instance. This identifier is found in Amazon Web Services CloudTrail log entries whenever the Amazon Web Services KMS key for the DB instance is accessed.

", + "DBInstance$CACertificateIdentifier": "

The identifier of the CA certificate for this DB instance.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

", + "DBInstance$EnhancedMonitoringResourceArn": "

The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log stream that receives the Enhanced Monitoring metrics data for the DB instance.

", + "DBInstance$MonitoringRoleArn": "

The ARN for the IAM role that permits RDS to send Enhanced Monitoring metrics to Amazon CloudWatch Logs.

", + "DBInstance$DBInstanceArn": "

The Amazon Resource Name (ARN) for the DB instance.

", + "DBInstance$Timezone": "

The time zone of the DB instance. In most cases, the Timezone element is empty. Timezone content appears only for RDS for Db2 and RDS for SQL Server DB instances that were created with a time zone specified.

", + "DBInstance$PerformanceInsightsKMSKeyId": "

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

", + "DBInstance$NetworkType": "

The network type of the DB instance.

The network type is determined by the DBSubnetGroup specified for the DB instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide and Working with a DB instance in a VPC in the Amazon Aurora User Guide.

Valid Values: IPV4 | DUAL

", + "DBInstance$ActivityStreamKmsKeyId": "

The Amazon Web Services KMS key identifier used for encrypting messages in the database activity stream. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

", + "DBInstance$ActivityStreamKinesisStreamName": "

The name of the Amazon Kinesis data stream used for the database activity stream.

", + "DBInstance$AwsBackupRecoveryPointArn": "

The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services Backup.

", + "DBInstance$CustomIamInstanceProfile": "

The instance profile associated with the underlying Amazon EC2 instance of an RDS Custom DB instance. The instance profile must meet the following requirements:

  • The profile must exist in your account.

  • The profile must have an IAM role that Amazon EC2 has permissions to assume.

  • The instance profile name and the associated IAM role name must start with the prefix AWSRDSCustom.

For the list of permissions required for the IAM role, see Configure IAM and your VPC in the Amazon RDS User Guide.

", + "DBInstance$DBSystemId": "

The Oracle system ID (Oracle SID) for a container database (CDB). The Oracle SID is also the name of the CDB. This setting is only valid for RDS Custom DB instances.

", + "DBInstance$ReadReplicaSourceDBClusterIdentifier": "

The identifier of the source DB cluster if this DB instance is a read replica.

", + "DBInstance$PercentProgress": "

The progress of the storage optimization operation as a percentage.

", + "DBInstance$EngineLifecycleSupport": "

The lifecycle type for the DB instance.

For more information, see CreateDBInstance.

", + "DBInstanceAutomatedBackup$DBInstanceArn": "

The Amazon Resource Name (ARN) for the automated backups.

", + "DBInstanceAutomatedBackup$DbiResourceId": "

The resource ID for the source DB instance, which can't be changed and which is unique to an Amazon Web Services Region.

", + "DBInstanceAutomatedBackup$Region": "

The Amazon Web Services Region associated with the automated backup.

", + "DBInstanceAutomatedBackup$DBInstanceIdentifier": "

The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web Services Region.

", + "DBInstanceAutomatedBackup$Status": "

A list of status information for an automated backup:

  • active - Automated backups for current instances.

  • retained - Automated backups for deleted instances.

  • creating - Automated backups that are waiting for the first automated snapshot to be available.

", + "DBInstanceAutomatedBackup$AvailabilityZone": "

The Availability Zone that the automated backup was created in. For information on Amazon Web Services Regions and Availability Zones, see Regions and Availability Zones.

", + "DBInstanceAutomatedBackup$VpcId": "

The VPC ID associated with the DB instance.

", + "DBInstanceAutomatedBackup$MasterUsername": "

The master user name of an automated backup.

", + "DBInstanceAutomatedBackup$Engine": "

The name of the database engine for this automated backup.

", + "DBInstanceAutomatedBackup$EngineVersion": "

The version of the database engine for the automated backup.

", + "DBInstanceAutomatedBackup$LicenseModel": "

The license model information for the automated backup.

", + "DBInstanceAutomatedBackup$OptionGroupName": "

The option group the automated backup is associated with. If omitted, the default option group for the engine specified is used.

", + "DBInstanceAutomatedBackup$TdeCredentialArn": "

The ARN from the key store with which the automated backup is associated for TDE encryption.

", + "DBInstanceAutomatedBackup$StorageType": "

The storage type associated with the automated backup.

", + "DBInstanceAutomatedBackup$KmsKeyId": "

The Amazon Web Services KMS key ID for an automated backup.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

", + "DBInstanceAutomatedBackup$Timezone": "

The time zone of the automated backup. In most cases, the Timezone element is empty. Timezone content appears only for Microsoft SQL Server DB instances that were created with a time zone specified.

", + "DBInstanceAutomatedBackup$DBInstanceAutomatedBackupsArn": "

The Amazon Resource Name (ARN) for the replicated automated backups.

", + "DBInstanceAutomatedBackupMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DBInstanceAutomatedBackupsReplication$DBInstanceAutomatedBackupsArn": "

The Amazon Resource Name (ARN) of the replicated automated backups.

", + "DBInstanceMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords .

", + "DBInstanceRole$RoleArn": "

The Amazon Resource Name (ARN) of the IAM role that is associated with the DB instance.

", + "DBInstanceRole$FeatureName": "

The name of the feature associated with the Amazon Web Services Identity and Access Management (IAM) role. For information about supported feature names, see DBEngineVersion.

", + "DBInstanceRole$Status": "

Information about the state of association between the IAM role and the DB instance. The Status property returns one of the following values:

  • ACTIVE - the IAM role ARN is associated with the DB instance and can be used to access other Amazon Web Services services on your behalf.

  • PENDING - the IAM role ARN is being associated with the DB instance.

  • INVALID - the IAM role ARN is associated with the DB instance, but the DB instance is unable to assume the IAM role in order to access other Amazon Web Services services on your behalf.

", + "DBInstanceStatusInfo$StatusType": "

This value is currently \"read replication.\"

", + "DBInstanceStatusInfo$Status": "

The status of the DB instance. For a StatusType of read replica, the values can be replicating, replication stop point set, replication stop point reached, error, stopped, or terminated.

", + "DBInstanceStatusInfo$Message": "

Details of the error if there is an error for the instance. If the instance isn't in an error state, this value is blank.

", + "DBMajorEngineVersion$Engine": "

The name of the database engine.

", + "DBMajorEngineVersion$MajorEngineVersion": "

The major version number of the database engine.

", + "DBParameterGroup$DBParameterGroupName": "

The name of the DB parameter group.

", + "DBParameterGroup$DBParameterGroupFamily": "

The name of the DB parameter group family that this DB parameter group is compatible with.

", + "DBParameterGroup$Description": "

Provides the customer-specified description for this DB parameter group.

", + "DBParameterGroup$DBParameterGroupArn": "

The Amazon Resource Name (ARN) for the DB parameter group.

", + "DBParameterGroupDetails$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DBParameterGroupNameMessage$DBParameterGroupName": "

The name of the DB parameter group.

", + "DBParameterGroupStatus$DBParameterGroupName": "

The name of the DB parameter group.

", + "DBParameterGroupStatus$ParameterApplyStatus": "

The status of parameter updates. Valid values are:

  • applying: The parameter group change is being applied to the database.

  • failed-to-apply: The parameter group is in an invalid state.

  • in-sync: The parameter group change is synchronized with the database.

  • pending-database-upgrade: The parameter group change will be applied after the DB instance is upgraded.

  • pending-reboot: The parameter group change will be applied after the DB instance reboots.

", + "DBParameterGroupsMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DBProxy$DBProxyName": "

The identifier for the proxy. This name must be unique for all proxies owned by your Amazon Web Services account in the specified Amazon Web Services Region.

", + "DBProxy$DBProxyArn": "

The Amazon Resource Name (ARN) for the proxy.

", + "DBProxy$EngineFamily": "

The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. MYSQL supports Aurora MySQL, RDS for MariaDB, and RDS for MySQL databases. POSTGRESQL supports Aurora PostgreSQL and RDS for PostgreSQL databases. SQLSERVER supports RDS for Microsoft SQL Server databases.

", + "DBProxy$VpcId": "

Provides the VPC ID of the DB proxy.

", + "DBProxy$RoleArn": "

The Amazon Resource Name (ARN) for the IAM role that the proxy uses to access Amazon Secrets Manager.

", + "DBProxy$Endpoint": "

The endpoint that you can use to connect to the DB proxy. You include the endpoint value in the connection string for a database client application.

", + "DBProxyEndpoint$DBProxyEndpointName": "

The name for the DB proxy endpoint. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.

", + "DBProxyEndpoint$DBProxyEndpointArn": "

The Amazon Resource Name (ARN) for the DB proxy endpoint.

", + "DBProxyEndpoint$DBProxyName": "

The identifier for the DB proxy that is associated with this DB proxy endpoint.

", + "DBProxyEndpoint$VpcId": "

Provides the VPC ID of the DB proxy endpoint.

", + "DBProxyEndpoint$Endpoint": "

The endpoint that you can use to connect to the DB proxy. You include the endpoint value in the connection string for a database client application.

", + "DBProxyTarget$TargetArn": "

The Amazon Resource Name (ARN) for the RDS DB instance or Aurora DB cluster.

", + "DBProxyTarget$Endpoint": "

The writer endpoint for the RDS DB instance or Aurora DB cluster.

", + "DBProxyTarget$TrackedClusterId": "

The DB cluster identifier when the target represents an Aurora DB cluster. This field is blank when the target represents an RDS DB instance.

", + "DBProxyTarget$RdsResourceId": "

The identifier representing the target. It can be the instance identifier for an RDS DB instance, or the cluster identifier for an Aurora DB cluster.

", + "DBProxyTargetGroup$DBProxyName": "

The identifier for the RDS proxy associated with this target group.

", + "DBProxyTargetGroup$TargetGroupName": "

The identifier for the target group. This name must be unique for all target groups owned by your Amazon Web Services account in the specified Amazon Web Services Region.

", + "DBProxyTargetGroup$TargetGroupArn": "

The Amazon Resource Name (ARN) representing the target group.

", + "DBProxyTargetGroup$Status": "

The current status of this target group. A status of available means the target group is correctly associated with a database. Other values indicate that you must wait for the target group to be ready, or take some action to resolve an issue.

", + "DBRecommendation$RecommendationId": "

The unique identifier of the recommendation.

", + "DBRecommendation$TypeId": "

A value that indicates the type of recommendation. This value determines how the description is rendered.

", + "DBRecommendation$Severity": "

The severity level of the recommendation. The severity level can help you decide the urgency with which to address the recommendation.

Valid values:

  • high

  • medium

  • low

  • informational

", + "DBRecommendation$ResourceArn": "

The Amazon Resource Name (ARN) of the RDS resource associated with the recommendation.

", + "DBRecommendation$Status": "

The current status of the recommendation.

Valid values:

  • active - The recommendations which are ready for you to apply.

  • pending - The applied or scheduled recommendations which are in progress.

  • resolved - The recommendations which are completed.

  • dismissed - The recommendations that you dismissed.

", + "DBRecommendation$Detection": "

A short description of the issue identified for this recommendation. The description might contain markdown.

", + "DBRecommendation$Recommendation": "

A short description of the recommendation to resolve an issue. The description might contain markdown.

", + "DBRecommendation$Description": "

A detailed description of the recommendation. The description might contain markdown.

", + "DBRecommendation$Reason": "

The reason why this recommendation was created. The information might contain markdown.

", + "DBRecommendation$Category": "

The category of the recommendation.

Valid values:

  • performance efficiency

  • security

  • reliability

  • cost optimization

  • operational excellence

  • sustainability

", + "DBRecommendation$Source": "

The Amazon Web Services service that generated the recommendations.

", + "DBRecommendation$TypeDetection": "

A short description of the recommendation type. The description might contain markdown.

", + "DBRecommendation$TypeRecommendation": "

A short description that summarizes the recommendation to fix all the issues of the recommendation type. The description might contain markdown.

", + "DBRecommendation$Impact": "

A short description that explains the possible impact of an issue.

", + "DBRecommendation$AdditionalInfo": "

Additional information about the recommendation. The information might contain markdown.

", + "DBRecommendationsMessage$Marker": "

An optional pagination token provided by a previous DBRecommendationsMessage request. This token can be used later in a DescribeDBRecomendations request.

", + "DBSecurityGroup$OwnerId": "

Provides the Amazon Web Services ID of the owner of a specific DB security group.

", + "DBSecurityGroup$DBSecurityGroupName": "

Specifies the name of the DB security group.

", + "DBSecurityGroup$DBSecurityGroupDescription": "

Provides the description of the DB security group.

", + "DBSecurityGroup$VpcId": "

Provides the VpcId of the DB security group.

", + "DBSecurityGroup$DBSecurityGroupArn": "

The Amazon Resource Name (ARN) for the DB security group.

", + "DBSecurityGroupMembership$DBSecurityGroupName": "

The name of the DB security group.

", + "DBSecurityGroupMembership$Status": "

The status of the DB security group.

", + "DBSecurityGroupMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DBSecurityGroupNameList$member": null, + "DBShardGroup$DBShardGroupResourceId": "

The Amazon Web Services Region-unique, immutable identifier for the DB shard group.

", + "DBShardGroup$DBClusterIdentifier": "

The name of the primary DB cluster for the DB shard group.

", + "DBShardGroup$Status": "

The status of the DB shard group.

", + "DBShardGroup$Endpoint": "

The connection endpoint for the DB shard group.

", + "DBSnapshot$DBSnapshotIdentifier": "

Specifies the identifier for the DB snapshot.

", + "DBSnapshot$DBInstanceIdentifier": "

Specifies the DB instance identifier of the DB instance this DB snapshot was created from.

", + "DBSnapshot$Engine": "

Specifies the name of the database engine.

", + "DBSnapshot$Status": "

Specifies the status of this DB snapshot.

", + "DBSnapshot$AvailabilityZone": "

Specifies the name of the Availability Zone the DB instance was located in at the time of the DB snapshot.

", + "DBSnapshot$VpcId": "

Provides the VPC ID associated with the DB snapshot.

", + "DBSnapshot$MasterUsername": "

Provides the master username for the DB snapshot.

", + "DBSnapshot$EngineVersion": "

Specifies the version of the database engine.

", + "DBSnapshot$LicenseModel": "

License model information for the restored DB instance.

", + "DBSnapshot$SnapshotType": "

Provides the type of the DB snapshot.

", + "DBSnapshot$OptionGroupName": "

Provides the option group name for the DB snapshot.

", + "DBSnapshot$SourceRegion": "

The Amazon Web Services Region that the DB snapshot was created in or copied from.

", + "DBSnapshot$SourceDBSnapshotIdentifier": "

The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was copied from. It only has a value in the case of a cross-account or cross-Region copy.

", + "DBSnapshot$StorageType": "

Specifies the storage type associated with DB snapshot.

", + "DBSnapshot$TdeCredentialArn": "

The ARN from the key store with which to associate the instance for TDE encryption.

", + "DBSnapshot$KmsKeyId": "

If Encrypted is true, the Amazon Web Services KMS key identifier for the encrypted DB snapshot.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

", + "DBSnapshot$DBSnapshotArn": "

The Amazon Resource Name (ARN) for the DB snapshot.

", + "DBSnapshot$Timezone": "

The time zone of the DB snapshot. In most cases, the Timezone element is empty. Timezone content appears only for snapshots taken from Microsoft SQL Server DB instances that were created with a time zone specified.

", + "DBSnapshot$DbiResourceId": "

The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web Services Region.

", + "DBSnapshot$DBSystemId": "

The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database files. The Oracle SID is also the name of your CDB.

", + "DBSnapshotAttribute$AttributeName": "

The name of the manual DB snapshot attribute.

The attribute named restore refers to the list of Amazon Web Services accounts that have permission to copy or restore the manual DB cluster snapshot. For more information, see the ModifyDBSnapshotAttribute API action.

", + "DBSnapshotAttributesResult$DBSnapshotIdentifier": "

The identifier of the manual DB snapshot that the attributes apply to.

", + "DBSnapshotMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DBSnapshotTenantDatabase$DBSnapshotIdentifier": "

The identifier for the snapshot of the DB instance.

", + "DBSnapshotTenantDatabase$DBInstanceIdentifier": "

The ID for the DB instance that contains the tenant databases.

", + "DBSnapshotTenantDatabase$DbiResourceId": "

The resource identifier of the source CDB instance. This identifier can't be changed and is unique to an Amazon Web Services Region.

", + "DBSnapshotTenantDatabase$EngineName": "

The name of the database engine.

", + "DBSnapshotTenantDatabase$SnapshotType": "

The type of DB snapshot.

", + "DBSnapshotTenantDatabase$TenantDBName": "

The name of the tenant database.

", + "DBSnapshotTenantDatabase$MasterUsername": "

The master username of the tenant database.

", + "DBSnapshotTenantDatabase$TenantDatabaseResourceId": "

The resource ID of the tenant database.

", + "DBSnapshotTenantDatabase$CharacterSetName": "

The name of the character set of a tenant database.

", + "DBSnapshotTenantDatabase$DBSnapshotTenantDatabaseARN": "

The Amazon Resource Name (ARN) for the snapshot tenant database.

", + "DBSnapshotTenantDatabase$NcharCharacterSetName": "

The NCHAR character set name of the tenant database.

", + "DBSnapshotTenantDatabasesMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DBSubnetGroup$DBSubnetGroupName": "

The name of the DB subnet group.

", + "DBSubnetGroup$DBSubnetGroupDescription": "

Provides the description of the DB subnet group.

", + "DBSubnetGroup$VpcId": "

Provides the VpcId of the DB subnet group.

", + "DBSubnetGroup$SubnetGroupStatus": "

Provides the status of the DB subnet group.

", + "DBSubnetGroup$DBSubnetGroupArn": "

The Amazon Resource Name (ARN) for the DB subnet group.

", + "DBSubnetGroupMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DeleteDBClusterAutomatedBackupMessage$DbClusterResourceId": "

The identifier for the source DB cluster, which can't be changed and which is unique to an Amazon Web Services Region.

", + "DeleteDBClusterEndpointMessage$DBClusterEndpointIdentifier": "

The identifier associated with the custom endpoint. This parameter is stored as a lowercase string.

", + "DeleteDBClusterMessage$DBClusterIdentifier": "

The DB cluster identifier for the DB cluster to be deleted. This parameter isn't case-sensitive.

Constraints:

  • Must match an existing DBClusterIdentifier.

", + "DeleteDBClusterMessage$FinalDBSnapshotIdentifier": "

The DB cluster snapshot identifier of the new DB cluster snapshot created when SkipFinalSnapshot is disabled.

If you specify this parameter and also skip the creation of a final DB cluster snapshot with the SkipFinalShapshot parameter, the request results in an error.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

", + "DeleteDBClusterParameterGroupMessage$DBClusterParameterGroupName": "

The name of the DB cluster parameter group.

Constraints:

  • Must be the name of an existing DB cluster parameter group.

  • You can't delete a default DB cluster parameter group.

  • Can't be associated with any DB clusters.

", + "DeleteDBClusterSnapshotMessage$DBClusterSnapshotIdentifier": "

The identifier of the DB cluster snapshot to delete.

Constraints: Must be the name of an existing DB cluster snapshot in the available state.

", + "DeleteDBInstanceAutomatedBackupMessage$DbiResourceId": "

The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web Services Region.

", + "DeleteDBInstanceAutomatedBackupMessage$DBInstanceAutomatedBackupsArn": "

The Amazon Resource Name (ARN) of the automated backups to delete, for example, arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE.

This setting doesn't apply to RDS Custom.

", + "DeleteDBInstanceMessage$DBInstanceIdentifier": "

The DB instance identifier for the DB instance to be deleted. This parameter isn't case-sensitive.

Constraints:

  • Must match the name of an existing DB instance.

", + "DeleteDBInstanceMessage$FinalDBSnapshotIdentifier": "

The DBSnapshotIdentifier of the new DBSnapshot created when the SkipFinalSnapshot parameter is disabled.

If you enable this parameter and also enable SkipFinalShapshot, the command results in an error.

This setting doesn't apply to RDS Custom.

Constraints:

  • Must be 1 to 255 letters or numbers.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

  • Can't be specified when deleting a read replica.

", + "DeleteDBParameterGroupMessage$DBParameterGroupName": "

The name of the DB parameter group.

Constraints:

  • Must be the name of an existing DB parameter group

  • You can't delete a default DB parameter group

  • Can't be associated with any DB instances

", + "DeleteDBSecurityGroupMessage$DBSecurityGroupName": "

The name of the DB security group to delete.

You can't delete the default DB security group.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

  • Must not be \"Default\"

", + "DeleteDBSnapshotMessage$DBSnapshotIdentifier": "

The DB snapshot identifier.

Constraints: Must be the name of an existing DB snapshot in the available state.

", + "DeleteDBSubnetGroupMessage$DBSubnetGroupName": "

The name of the database subnet group to delete.

You can't delete the default subnet group.

Constraints: Must match the name of an existing DBSubnetGroup. Must not be default.

Example: mydbsubnetgroup

", + "DeleteEventSubscriptionMessage$SubscriptionName": "

The name of the RDS event notification subscription you want to delete.

", + "DeleteOptionGroupMessage$OptionGroupName": "

The name of the option group to be deleted.

You can't delete default option groups.

", + "DeleteTenantDatabaseMessage$DBInstanceIdentifier": "

The user-supplied identifier for the DB instance that contains the tenant database that you want to delete.

", + "DeleteTenantDatabaseMessage$TenantDBName": "

The user-supplied name of the tenant database that you want to remove from your DB instance. Amazon RDS deletes the tenant database with this name. This parameter isn’t case-sensitive.

", + "DeleteTenantDatabaseMessage$FinalDBSnapshotIdentifier": "

The DBSnapshotIdentifier of the new DBSnapshot created when the SkipFinalSnapshot parameter is disabled.

If you enable this parameter and also enable SkipFinalShapshot, the command results in an error.

", + "DescribeBlueGreenDeploymentsRequest$Marker": "

An optional pagination token provided by a previous DescribeBlueGreenDeployments request. If you specify this parameter, the response only includes records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeBlueGreenDeploymentsResponse$Marker": "

A pagination token that can be used in a later DescribeBlueGreenDeployments request.

", + "DescribeCertificatesMessage$CertificateIdentifier": "

The user-supplied certificate identifier. If this parameter is specified, information for only the identified certificate is returned. This parameter isn't case-sensitive.

Constraints:

  • Must match an existing CertificateIdentifier.

", + "DescribeCertificatesMessage$Marker": "

An optional pagination token provided by a previous DescribeCertificates request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBClusterAutomatedBackupsMessage$DbClusterResourceId": "

The resource ID of the DB cluster that is the source of the automated backup. This parameter isn't case-sensitive.

", + "DescribeDBClusterAutomatedBackupsMessage$DBClusterIdentifier": "

(Optional) The user-supplied DB cluster identifier. If this parameter is specified, it must match the identifier of an existing DB cluster. It returns information from the specific DB cluster's automated backup. This parameter isn't case-sensitive.

", + "DescribeDBClusterAutomatedBackupsMessage$Marker": "

The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.

", + "DescribeDBClusterBacktracksMessage$DBClusterIdentifier": "

The DB cluster identifier of the DB cluster to be described. This parameter is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 alphanumeric characters or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

Example: my-cluster1

", + "DescribeDBClusterBacktracksMessage$BacktrackIdentifier": "

If specified, this value is the backtrack identifier of the backtrack to be described.

Constraints:

Example: 123e4567-e89b-12d3-a456-426655440000

", + "DescribeDBClusterBacktracksMessage$Marker": "

An optional pagination token provided by a previous DescribeDBClusterBacktracks request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBClusterEndpointsMessage$DBClusterIdentifier": "

The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

", + "DescribeDBClusterEndpointsMessage$DBClusterEndpointIdentifier": "

The identifier of the endpoint to describe. This parameter is stored as a lowercase string.

", + "DescribeDBClusterEndpointsMessage$Marker": "

An optional pagination token provided by a previous DescribeDBClusterEndpoints request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBClusterParameterGroupsMessage$DBClusterParameterGroupName": "

The name of a specific DB cluster parameter group to return details for.

Constraints:

  • If supplied, must match the name of an existing DBClusterParameterGroup.

", + "DescribeDBClusterParameterGroupsMessage$Marker": "

An optional pagination token provided by a previous DescribeDBClusterParameterGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBClusterParametersMessage$DBClusterParameterGroupName": "

The name of a specific DB cluster parameter group to return parameter details for.

Constraints:

  • If supplied, must match the name of an existing DBClusterParameterGroup.

", + "DescribeDBClusterParametersMessage$Source": "

A specific source to return parameters for.

Valid Values:

  • engine-default

  • system

  • user

", + "DescribeDBClusterParametersMessage$Marker": "

An optional pagination token provided by a previous DescribeDBClusterParameters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBClusterSnapshotAttributesMessage$DBClusterSnapshotIdentifier": "

The identifier for the DB cluster snapshot to describe the attributes for.

", + "DescribeDBClusterSnapshotsMessage$DBClusterIdentifier": "

The ID of the DB cluster to retrieve the list of DB cluster snapshots for. This parameter can't be used in conjunction with the DBClusterSnapshotIdentifier parameter. This parameter isn't case-sensitive.

Constraints:

  • If supplied, must match the identifier of an existing DBCluster.

", + "DescribeDBClusterSnapshotsMessage$DBClusterSnapshotIdentifier": "

A specific DB cluster snapshot identifier to describe. This parameter can't be used in conjunction with the DBClusterIdentifier parameter. This value is stored as a lowercase string.

Constraints:

  • If supplied, must match the identifier of an existing DBClusterSnapshot.

  • If this identifier is for an automated snapshot, the SnapshotType parameter must also be specified.

", + "DescribeDBClusterSnapshotsMessage$SnapshotType": "

The type of DB cluster snapshots to be returned. You can specify one of the following values:

  • automated - Return all DB cluster snapshots that have been automatically taken by Amazon RDS for my Amazon Web Services account.

  • manual - Return all DB cluster snapshots that have been taken by my Amazon Web Services account.

  • shared - Return all manual DB cluster snapshots that have been shared to my Amazon Web Services account.

  • public - Return all DB cluster snapshots that have been marked as public.

If you don't specify a SnapshotType value, then both automated and manual DB cluster snapshots are returned. You can include shared DB cluster snapshots with these results by enabling the IncludeShared parameter. You can include public DB cluster snapshots with these results by enabling the IncludePublic parameter.

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.

", + "DescribeDBClusterSnapshotsMessage$Marker": "

An optional pagination token provided by a previous DescribeDBClusterSnapshots request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBClusterSnapshotsMessage$DbClusterResourceId": "

A specific DB cluster resource ID to describe.

", + "DescribeDBClustersMessage$DBClusterIdentifier": "

The user-supplied DB cluster identifier or the Amazon Resource Name (ARN) of the DB cluster. If this parameter is specified, information for only the specific DB cluster is returned. This parameter isn't case-sensitive.

Constraints:

  • If supplied, must match an existing DB cluster identifier.

", + "DescribeDBClustersMessage$Marker": "

An optional pagination token provided by a previous DescribeDBClusters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBEngineVersionsMessage$Engine": "

The database engine to return version details for.

Valid Values:

  • aurora-mysql

  • aurora-postgresql

  • custom-oracle-ee

  • custom-oracle-ee-cdb

  • custom-oracle-se2

  • custom-oracle-se2-cdb

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

", + "DescribeDBEngineVersionsMessage$EngineVersion": "

A specific database engine version to return details for.

Example: 5.1.49

", + "DescribeDBEngineVersionsMessage$DBParameterGroupFamily": "

The name of a specific DB parameter group family to return details for.

Constraints:

  • If supplied, must match an existing DB parameter group family.

", + "DescribeDBEngineVersionsMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBInstanceAutomatedBackupsMessage$DbiResourceId": "

The resource ID of the DB instance that is the source of the automated backup. This parameter isn't case-sensitive.

", + "DescribeDBInstanceAutomatedBackupsMessage$DBInstanceIdentifier": "

(Optional) The user-supplied instance identifier. If this parameter is specified, it must match the identifier of an existing DB instance. It returns information from the specific DB instance's automated backup. This parameter isn't case-sensitive.

", + "DescribeDBInstanceAutomatedBackupsMessage$Marker": "

The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.

", + "DescribeDBInstanceAutomatedBackupsMessage$DBInstanceAutomatedBackupsArn": "

The Amazon Resource Name (ARN) of the replicated automated backups, for example, arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE.

This setting doesn't apply to RDS Custom.

", + "DescribeDBInstancesMessage$DBInstanceIdentifier": "

The user-supplied instance identifier or the Amazon Resource Name (ARN) of the DB instance. If this parameter is specified, information from only the specific DB instance is returned. This parameter isn't case-sensitive.

Constraints:

  • If supplied, must match the identifier of an existing DB instance.

", + "DescribeDBInstancesMessage$Marker": "

An optional pagination token provided by a previous DescribeDBInstances request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBLogFilesDetails$LogFileName": "

The name of the log file for the specified DB instance.

", + "DescribeDBLogFilesMessage$DBInstanceIdentifier": "

The customer-assigned name of the DB instance that contains the log files you want to list.

Constraints:

  • Must match the identifier of an existing DBInstance.

", + "DescribeDBLogFilesMessage$FilenameContains": "

Filters the available log files for log file names that contain the specified string.

", + "DescribeDBLogFilesMessage$Marker": "

The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.

", + "DescribeDBLogFilesResponse$Marker": "

A pagination token that can be used in a later DescribeDBLogFiles request.

", + "DescribeDBMajorEngineVersionsResponse$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBParameterGroupsMessage$DBParameterGroupName": "

The name of a specific DB parameter group to return details for.

Constraints:

  • If supplied, must match the name of an existing DBClusterParameterGroup.

", + "DescribeDBParameterGroupsMessage$Marker": "

An optional pagination token provided by a previous DescribeDBParameterGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBParametersMessage$DBParameterGroupName": "

The name of a specific DB parameter group to return details for.

Constraints:

  • If supplied, must match the name of an existing DBParameterGroup.

", + "DescribeDBParametersMessage$Source": "

The parameter types to return.

Default: All parameter types returned

Valid Values: user | system | engine-default

", + "DescribeDBParametersMessage$Marker": "

An optional pagination token provided by a previous DescribeDBParameters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBProxiesRequest$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBProxiesResponse$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBProxyEndpointsRequest$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBProxyEndpointsResponse$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBProxyTargetGroupsRequest$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBProxyTargetGroupsResponse$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBProxyTargetsRequest$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBProxyTargetsResponse$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBRecommendationsMessage$Locale": "

The language that you choose to return the list of recommendations.

Valid values:

  • en

  • en_UK

  • de

  • es

  • fr

  • id

  • it

  • ja

  • ko

  • pt_BR

  • zh_TW

  • zh_CN

", + "DescribeDBRecommendationsMessage$Marker": "

An optional pagination token provided by a previous DescribeDBRecommendations request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBSecurityGroupsMessage$DBSecurityGroupName": "

The name of the DB security group to return details for.

", + "DescribeDBSecurityGroupsMessage$Marker": "

An optional pagination token provided by a previous DescribeDBSecurityGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBShardGroupsMessage$Marker": "

An optional pagination token provided by a previous DescribeDBShardGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBShardGroupsResponse$Marker": "

A pagination token that can be used in a later DescribeDBClusters request.

", + "DescribeDBSnapshotAttributesMessage$DBSnapshotIdentifier": "

The identifier for the DB snapshot to describe the attributes for.

", + "DescribeDBSnapshotTenantDatabasesMessage$DBInstanceIdentifier": "

The ID of the DB instance used to create the DB snapshots. This parameter isn't case-sensitive.

Constraints:

  • If supplied, must match the identifier of an existing DBInstance.

", + "DescribeDBSnapshotTenantDatabasesMessage$DBSnapshotIdentifier": "

The ID of a DB snapshot that contains the tenant databases to describe. This value is stored as a lowercase string.

Constraints:

  • If you specify this parameter, the value must match the ID of an existing DB snapshot.

  • If you specify an automatic snapshot, you must also specify SnapshotType.

", + "DescribeDBSnapshotTenantDatabasesMessage$SnapshotType": "

The type of DB snapshots to be returned. You can specify one of the following values:

  • automated – All DB snapshots that have been automatically taken by Amazon RDS for my Amazon Web Services account.

  • manual – All DB snapshots that have been taken by my Amazon Web Services account.

  • shared – All manual DB snapshots that have been shared to my Amazon Web Services account.

  • public – All DB snapshots that have been marked as public.

  • awsbackup – All DB snapshots managed by the Amazon Web Services Backup service.

", + "DescribeDBSnapshotTenantDatabasesMessage$Marker": "

An optional pagination token provided by a previous DescribeDBSnapshotTenantDatabases request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBSnapshotTenantDatabasesMessage$DbiResourceId": "

A specific DB resource identifier to describe.

", + "DescribeDBSnapshotsMessage$DBInstanceIdentifier": "

The ID of the DB instance to retrieve the list of DB snapshots for. This parameter isn't case-sensitive.

Constraints:

  • If supplied, must match the identifier of an existing DBInstance.

", + "DescribeDBSnapshotsMessage$DBSnapshotIdentifier": "

A specific DB snapshot identifier to describe. This value is stored as a lowercase string.

Constraints:

  • If supplied, must match the identifier of an existing DBSnapshot.

  • If this identifier is for an automated snapshot, the SnapshotType parameter must also be specified.

", + "DescribeDBSnapshotsMessage$SnapshotType": "

The type of snapshots to be returned. You can specify one of the following values:

  • automated - Return all DB snapshots that have been automatically taken by Amazon RDS for my Amazon Web Services account.

  • manual - Return all DB snapshots that have been taken by my Amazon Web Services account.

  • shared - Return all manual DB snapshots that have been shared to my Amazon Web Services account.

  • public - Return all DB snapshots that have been marked as public.

  • awsbackup - Return the DB snapshots managed by the Amazon Web Services Backup service.

    For information about Amazon Web Services Backup, see the Amazon Web Services Backup Developer Guide.

    The awsbackup type does not apply to Aurora.

If you don't specify a SnapshotType value, then both automated and manual snapshots are returned. Shared and public DB snapshots are not included in the returned results by default. You can include shared snapshots with these results by enabling the IncludeShared parameter. You can include public snapshots with these results by enabling the IncludePublic parameter.

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.

", + "DescribeDBSnapshotsMessage$Marker": "

An optional pagination token provided by a previous DescribeDBSnapshots request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeDBSnapshotsMessage$DbiResourceId": "

A specific DB resource ID to describe.

", + "DescribeDBSubnetGroupsMessage$DBSubnetGroupName": "

The name of the DB subnet group to return details for.

", + "DescribeDBSubnetGroupsMessage$Marker": "

An optional pagination token provided by a previous DescribeDBSubnetGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeEngineDefaultClusterParametersMessage$DBParameterGroupFamily": "

The name of the DB cluster parameter group family to return engine parameter information for.

", + "DescribeEngineDefaultClusterParametersMessage$Marker": "

An optional pagination token provided by a previous DescribeEngineDefaultClusterParameters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeEngineDefaultParametersMessage$DBParameterGroupFamily": "

The name of the DB parameter group family.

Valid Values:

  • aurora-mysql5.7

  • aurora-mysql8.0

  • aurora-postgresql10

  • aurora-postgresql11

  • aurora-postgresql12

  • aurora-postgresql13

  • aurora-postgresql14

  • custom-oracle-ee-19

  • custom-oracle-ee-cdb-19

  • db2-ae

  • db2-se

  • mariadb10.2

  • mariadb10.3

  • mariadb10.4

  • mariadb10.5

  • mariadb10.6

  • mysql5.7

  • mysql8.0

  • oracle-ee-19

  • oracle-ee-cdb-19

  • oracle-ee-cdb-21

  • oracle-se2-19

  • oracle-se2-cdb-19

  • oracle-se2-cdb-21

  • postgres10

  • postgres11

  • postgres12

  • postgres13

  • postgres14

  • sqlserver-ee-11.0

  • sqlserver-ee-12.0

  • sqlserver-ee-13.0

  • sqlserver-ee-14.0

  • sqlserver-ee-15.0

  • sqlserver-ex-11.0

  • sqlserver-ex-12.0

  • sqlserver-ex-13.0

  • sqlserver-ex-14.0

  • sqlserver-ex-15.0

  • sqlserver-se-11.0

  • sqlserver-se-12.0

  • sqlserver-se-13.0

  • sqlserver-se-14.0

  • sqlserver-se-15.0

  • sqlserver-web-11.0

  • sqlserver-web-12.0

  • sqlserver-web-13.0

  • sqlserver-web-14.0

  • sqlserver-web-15.0

", + "DescribeEngineDefaultParametersMessage$Marker": "

An optional pagination token provided by a previous DescribeEngineDefaultParameters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeEventCategoriesMessage$SourceType": "

The type of source that is generating the events. For RDS Proxy events, specify db-proxy.

Valid Values: db-instance | db-cluster | db-parameter-group | db-security-group | db-snapshot | db-cluster-snapshot | db-proxy

", + "DescribeEventSubscriptionsMessage$SubscriptionName": "

The name of the RDS event notification subscription you want to describe.

", + "DescribeEventSubscriptionsMessage$Marker": "

An optional pagination token provided by a previous DescribeOrderableDBInstanceOptions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords .

", + "DescribeEventsMessage$SourceIdentifier": "

The identifier of the event source for which events are returned. If not specified, then all sources are included in the response.

Constraints:

  • If SourceIdentifier is supplied, SourceType must also be provided.

  • If the source type is a DB instance, a DBInstanceIdentifier value must be supplied.

  • If the source type is a DB cluster, a DBClusterIdentifier value must be supplied.

  • If the source type is a DB parameter group, a DBParameterGroupName value must be supplied.

  • If the source type is a DB security group, a DBSecurityGroupName value must be supplied.

  • If the source type is a DB snapshot, a DBSnapshotIdentifier value must be supplied.

  • If the source type is a DB cluster snapshot, a DBClusterSnapshotIdentifier value must be supplied.

  • If the source type is an RDS Proxy, a DBProxyName value must be supplied.

  • Can't end with a hyphen or contain two consecutive hyphens.

", + "DescribeEventsMessage$Marker": "

An optional pagination token provided by a previous DescribeEvents request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeExportTasksMessage$ExportTaskIdentifier": "

The identifier of the snapshot or cluster export task to be described.

", + "DescribeExportTasksMessage$SourceArn": "

The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon S3.

", + "DescribeExportTasksMessage$Marker": "

An optional pagination token provided by a previous DescribeExportTasks request. If you specify this parameter, the response includes only records beyond the marker, up to the value specified by the MaxRecords parameter.

", + "DescribeGlobalClustersMessage$Marker": "

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.

", + "DescribeOptionGroupOptionsMessage$EngineName": "

The name of the engine to describe options for.

Valid Values:

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

", + "DescribeOptionGroupOptionsMessage$MajorEngineVersion": "

If specified, filters the results to include only options for the specified major engine version.

", + "DescribeOptionGroupOptionsMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeOptionGroupsMessage$OptionGroupName": "

The name of the option group to describe. Can't be supplied together with EngineName or MajorEngineVersion.

", + "DescribeOptionGroupsMessage$Marker": "

An optional pagination token provided by a previous DescribeOptionGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeOptionGroupsMessage$EngineName": "

A filter to only include option groups associated with this database engine.

Valid Values:

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

", + "DescribeOptionGroupsMessage$MajorEngineVersion": "

Filters the list of option groups to only include groups associated with a specific database engine version. If specified, then EngineName must also be specified.

", + "DescribeOrderableDBInstanceOptionsMessage$Engine": "

The name of the database engine to describe DB instance options for.

Valid Values:

  • aurora-mysql

  • aurora-postgresql

  • custom-oracle-ee

  • custom-oracle-ee-cdb

  • custom-oracle-se2

  • custom-oracle-se2-cdb

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

", + "DescribeOrderableDBInstanceOptionsMessage$EngineVersion": "

A filter to include only the available options for the specified engine version.

", + "DescribeOrderableDBInstanceOptionsMessage$DBInstanceClass": "

A filter to include only the available options for the specified DB instance class.

", + "DescribeOrderableDBInstanceOptionsMessage$LicenseModel": "

A filter to include only the available options for the specified license model.

RDS Custom supports only the BYOL licensing model.

", + "DescribeOrderableDBInstanceOptionsMessage$AvailabilityZoneGroup": "

The Availability Zone group associated with a Local Zone. Specify this parameter to retrieve available options for the Local Zones in the group.

Omit this parameter to show the available options in the specified Amazon Web Services Region.

This setting doesn't apply to RDS Custom DB instances.

", + "DescribeOrderableDBInstanceOptionsMessage$Marker": "

An optional pagination token provided by a previous DescribeOrderableDBInstanceOptions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribePendingMaintenanceActionsMessage$ResourceIdentifier": "

The ARN of a resource to return pending maintenance actions for.

", + "DescribePendingMaintenanceActionsMessage$Marker": "

An optional pagination token provided by a previous DescribePendingMaintenanceActions request. If this parameter is specified, the response includes only records beyond the marker, up to a number of records specified by MaxRecords.

", + "DescribeReservedDBInstancesMessage$ReservedDBInstanceId": "

The reserved DB instance identifier filter value. Specify this parameter to show only the reservation that matches the specified reservation ID.

", + "DescribeReservedDBInstancesMessage$ReservedDBInstancesOfferingId": "

The offering identifier filter value. Specify this parameter to show only purchased reservations matching the specified offering identifier.

", + "DescribeReservedDBInstancesMessage$DBInstanceClass": "

The DB instance class filter value. Specify this parameter to show only those reservations matching the specified DB instances class.

", + "DescribeReservedDBInstancesMessage$Duration": "

The duration filter value, specified in years or seconds. Specify this parameter to show only reservations for this duration.

Valid Values: 1 | 3 | 31536000 | 94608000

", + "DescribeReservedDBInstancesMessage$ProductDescription": "

The product description filter value. Specify this parameter to show only those reservations matching the specified product description.

", + "DescribeReservedDBInstancesMessage$OfferingType": "

The offering type filter value. Specify this parameter to show only the available offerings matching the specified offering type.

Valid Values: \"Partial Upfront\" | \"All Upfront\" | \"No Upfront\"

", + "DescribeReservedDBInstancesMessage$LeaseId": "

The lease identifier filter value. Specify this parameter to show only the reservation that matches the specified lease ID.

Amazon Web Services Support might request the lease ID for an issue related to a reserved DB instance.

", + "DescribeReservedDBInstancesMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeReservedDBInstancesOfferingsMessage$ReservedDBInstancesOfferingId": "

The offering identifier filter value. Specify this parameter to show only the available offering that matches the specified reservation identifier.

Example: 438012d3-4052-4cc7-b2e3-8d3372e0e706

", + "DescribeReservedDBInstancesOfferingsMessage$DBInstanceClass": "

The DB instance class filter value. Specify this parameter to show only the available offerings matching the specified DB instance class.

", + "DescribeReservedDBInstancesOfferingsMessage$Duration": "

Duration filter value, specified in years or seconds. Specify this parameter to show only reservations for this duration.

Valid Values: 1 | 3 | 31536000 | 94608000

", + "DescribeReservedDBInstancesOfferingsMessage$ProductDescription": "

Product description filter value. Specify this parameter to show only the available offerings that contain the specified product description.

The results show offerings that partially match the filter value.

", + "DescribeReservedDBInstancesOfferingsMessage$OfferingType": "

The offering type filter value. Specify this parameter to show only the available offerings matching the specified offering type.

Valid Values: \"Partial Upfront\" | \"All Upfront\" | \"No Upfront\"

", + "DescribeReservedDBInstancesOfferingsMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeSourceRegionsMessage$RegionName": "

The source Amazon Web Services Region name. For example, us-east-1.

Constraints:

  • Must specify a valid Amazon Web Services Region name.

", + "DescribeSourceRegionsMessage$Marker": "

An optional pagination token provided by a previous DescribeSourceRegions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeTenantDatabasesMessage$DBInstanceIdentifier": "

The user-supplied DB instance identifier, which must match the identifier of an existing instance owned by the Amazon Web Services account. This parameter isn't case-sensitive.

", + "DescribeTenantDatabasesMessage$TenantDBName": "

The user-supplied tenant database name, which must match the name of an existing tenant database on the specified DB instance owned by your Amazon Web Services account. This parameter isn’t case-sensitive.

", + "DescribeTenantDatabasesMessage$Marker": "

An optional pagination token provided by a previous DescribeTenantDatabases request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "DescribeValidDBInstanceModificationsMessage$DBInstanceIdentifier": "

The customer identifier or the ARN of your DB instance.

", + "DisableHttpEndpointRequest$ResourceArn": "

The Amazon Resource Name (ARN) of the DB cluster.

", + "DisableHttpEndpointResponse$ResourceArn": "

The ARN of the DB cluster.

", + "DocLink$Text": "

The text with the link to documentation for the recommendation.

", + "DocLink$Url": "

The URL for the documentation for the recommendation.

", + "DomainMembership$Domain": "

The identifier of the Active Directory Domain.

", + "DomainMembership$Status": "

The status of the Active Directory Domain membership for the DB instance or cluster. Values include joined, pending-join, failed, and so on.

", + "DomainMembership$FQDN": "

The fully qualified domain name (FQDN) of the Active Directory Domain.

", + "DomainMembership$IAMRoleName": "

The name of the IAM role used when making API calls to the Directory Service.

", + "DomainMembership$OU": "

The Active Directory organizational unit for the DB instance or cluster.

", + "DomainMembership$AuthSecretArn": "

The ARN for the Secrets Manager secret with the credentials for the user that's a member of the domain.

", + "DownloadDBLogFilePortionDetails$Marker": "

A pagination token that can be used in a later DownloadDBLogFilePortion request.

", + "DownloadDBLogFilePortionMessage$DBInstanceIdentifier": "

The customer-assigned name of the DB instance that contains the log files you want to list.

Constraints:

  • Must match the identifier of an existing DBInstance.

", + "DownloadDBLogFilePortionMessage$LogFileName": "

The name of the log file to be downloaded.

", + "DownloadDBLogFilePortionMessage$Marker": "

The pagination token provided in the previous request or \"0\". If the Marker parameter is specified the response includes only records beyond the marker until the end of the file or up to NumberOfLines.

", + "EC2SecurityGroup$Status": "

Provides the status of the EC2 security group. Status can be \"authorizing\", \"authorized\", \"revoking\", and \"revoked\".

", + "EC2SecurityGroup$EC2SecurityGroupName": "

Specifies the name of the EC2 security group.

", + "EC2SecurityGroup$EC2SecurityGroupId": "

Specifies the id of the EC2 security group.

", + "EC2SecurityGroup$EC2SecurityGroupOwnerId": "

Specifies the Amazon Web Services ID of the owner of the EC2 security group specified in the EC2SecurityGroupName field.

", + "EnableHttpEndpointRequest$ResourceArn": "

The Amazon Resource Name (ARN) of the DB cluster.

", + "EnableHttpEndpointResponse$ResourceArn": "

The ARN of the DB cluster.

", + "EncryptionContextMap$key": null, + "EncryptionContextMap$value": null, + "Endpoint$Address": "

Specifies the DNS address of the DB instance.

", + "Endpoint$HostedZoneId": "

Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.

", + "EngineDefaults$DBParameterGroupFamily": "

Specifies the name of the DB parameter group family that the engine default parameters apply to.

", + "EngineDefaults$Marker": "

An optional pagination token provided by a previous EngineDefaults request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords .

", + "EngineModeList$member": null, + "Event$SourceIdentifier": "

Provides the identifier for the source of the event.

", + "Event$Message": "

Provides the text of this event.

", + "Event$SourceArn": "

The Amazon Resource Name (ARN) for the event.

", + "EventCategoriesList$member": null, + "EventCategoriesMap$SourceType": "

The source type that the returned categories belong to

", + "EventSubscription$CustomerAwsId": "

The Amazon Web Services customer account associated with the RDS event notification subscription.

", + "EventSubscription$CustSubscriptionId": "

The RDS event notification subscription Id.

", + "EventSubscription$SnsTopicArn": "

The topic ARN of the RDS event notification subscription.

", + "EventSubscription$Status": "

The status of the RDS event notification subscription.

Constraints:

Can be one of the following: creating | modifying | deleting | active | no-permission | topic-not-exist

The status \"no-permission\" indicates that RDS no longer has permission to post to the SNS topic. The status \"topic-not-exist\" indicates that the topic was deleted after the subscription was created.

", + "EventSubscription$SubscriptionCreationTime": "

The time the RDS event notification subscription was created.

", + "EventSubscription$SourceType": "

The source type for the RDS event notification subscription.

", + "EventSubscription$EventSubscriptionArn": "

The Amazon Resource Name (ARN) for the event subscription.

", + "EventSubscriptionsMessage$Marker": "

An optional pagination token provided by a previous DescribeOrderableDBInstanceOptions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "EventsMessage$Marker": "

An optional pagination token provided by a previous Events request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "ExportTask$ExportTaskIdentifier": "

A unique identifier for the snapshot or cluster export task. This ID isn't an identifier for the Amazon S3 bucket where the data is exported.

", + "ExportTask$SourceArn": "

The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon S3.

", + "ExportTask$S3Bucket": "

The Amazon S3 bucket where the snapshot or cluster is exported to.

", + "ExportTask$S3Prefix": "

The Amazon S3 bucket prefix that is the file name and path of the exported data.

", + "ExportTask$IamRoleArn": "

The name of the IAM role that is used to write to Amazon S3 when exporting a snapshot or cluster.

", + "ExportTask$KmsKeyId": "

The key identifier of the Amazon Web Services KMS key that is used to encrypt the data when it's exported to Amazon S3. The KMS key identifier is its key ARN, key ID, alias ARN, or alias name. The IAM role used for the export must have encryption and decryption permissions to use this KMS key.

", + "ExportTask$Status": "

The progress status of the export task. The status can be one of the following:

  • CANCELED

  • CANCELING

  • COMPLETE

  • FAILED

  • IN_PROGRESS

  • STARTING

", + "ExportTask$FailureCause": "

The reason the export failed, if it failed.

", + "ExportTask$WarningMessage": "

A warning about the snapshot or cluster export task.

", + "ExportTasksMessage$Marker": "

A pagination token that can be used in a later DescribeExportTasks request. A marker is used for pagination to identify the location to begin output for the next response of DescribeExportTasks.

", + "FailoverDBClusterMessage$DBClusterIdentifier": "

The identifier of the DB cluster to force a failover for. This parameter isn't case-sensitive.

Constraints:

  • Must match the identifier of an existing DB cluster.

", + "FailoverDBClusterMessage$TargetDBInstanceIdentifier": "

The name of the DB instance to promote to the primary DB instance.

Specify the DB instance identifier for an Aurora Replica or a Multi-AZ readable standby in the DB cluster, for example mydbcluster-replica1.

This setting isn't supported for RDS for MySQL Multi-AZ DB clusters.

", + "FailoverState$FromDbClusterArn": "

The Amazon Resource Name (ARN) of the Aurora DB cluster that is currently being demoted, and which is associated with this state.

", + "FailoverState$ToDbClusterArn": "

The Amazon Resource Name (ARN) of the Aurora DB cluster that is currently being promoted, and which is associated with this state.

", + "FeatureNameList$member": null, + "Filter$Name": "

The name of the filter. Filter names are case-sensitive.

", + "FilterValueList$member": null, + "GlobalCluster$GlobalClusterResourceId": "

The Amazon Web Services Region-unique, immutable identifier for the global database cluster. This identifier is found in Amazon Web Services CloudTrail log entries whenever the Amazon Web Services KMS key for the DB cluster is accessed.

", + "GlobalCluster$GlobalClusterArn": "

The Amazon Resource Name (ARN) for the global database cluster.

", + "GlobalCluster$Status": "

Specifies the current state of this global database cluster.

", + "GlobalCluster$Engine": "

The Aurora database engine used by the global database cluster.

", + "GlobalCluster$EngineVersion": "

Indicates the database engine version.

", + "GlobalCluster$EngineLifecycleSupport": "

The lifecycle type for the global cluster.

For more information, see CreateGlobalCluster.

", + "GlobalCluster$DatabaseName": "

The default database name within the new global database cluster.

", + "GlobalCluster$Endpoint": "

The writer endpoint for the new global database cluster. This endpoint always points to the writer DB instance in the current primary cluster.

", + "GlobalClusterMember$DBClusterArn": "

The Amazon Resource Name (ARN) for each Aurora DB cluster in the global cluster.

", + "GlobalClustersMessage$Marker": "

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.

", + "IPRange$Status": "

The status of the IP range. Status can be \"authorizing\", \"authorized\", \"revoking\", and \"revoked\".

", + "IPRange$CIDRIP": "

The IP range.

", + "Integration$KMSKeyId": "

The Amazon Web Services Key Management System (Amazon Web Services KMS) key identifier for the key used to to encrypt the integration.

", + "IntegrationError$ErrorCode": "

The error code associated with the integration.

", + "IntegrationError$ErrorMessage": "

A message explaining the error.

", + "KeyList$member": null, + "ListTagsForResourceMessage$ResourceName": "

The Amazon RDS resource with tags to be listed. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see Constructing an ARN for Amazon RDS in the Amazon RDS User Guide.

", + "LogTypeList$member": null, + "MasterUserSecret$SecretArn": "

The Amazon Resource Name (ARN) of the secret.

", + "MasterUserSecret$SecretStatus": "

The status of the secret.

The possible status values include the following:

  • creating - The secret is being created.

  • active - The secret is available for normal use and rotation.

  • rotating - The secret is being rotated.

  • impaired - The secret can be used to access database credentials, but it can't be rotated. A secret might have this status if, for example, permissions are changed so that RDS can no longer access either the secret or the KMS key for the secret.

    When a secret has this status, you can correct the condition that caused the status. Alternatively, modify the DB instance to turn off automatic management of database credentials, and then modify the DB instance again to turn on automatic management of database credentials.

", + "MasterUserSecret$KmsKeyId": "

The Amazon Web Services KMS key identifier that is used to encrypt the secret.

", + "Metric$Name": "

The name of a metric.

", + "Metric$StatisticsDetails": "

The details of different statistics for a metric. The description might contain markdown.

", + "MetricReference$Name": "

The name of the metric reference.

", + "MinimumEngineVersionPerAllowedValue$AllowedValue": "

The allowed value for an option setting.

", + "MinimumEngineVersionPerAllowedValue$MinimumEngineVersion": "

The minimum DB engine version required for the allowed value.

", + "ModifyActivityStreamRequest$ResourceArn": "

The Amazon Resource Name (ARN) of the RDS for Oracle or Microsoft SQL Server DB instance. For example, arn:aws:rds:us-east-1:12345667890:db:my-orcl-db.

", + "ModifyActivityStreamResponse$KmsKeyId": "

The Amazon Web Services KMS key identifier for encryption of messages in the database activity stream.

", + "ModifyActivityStreamResponse$KinesisStreamName": "

The name of the Amazon Kinesis data stream to be used for the database activity stream.

", + "ModifyCertificatesMessage$CertificateIdentifier": "

The new default certificate identifier to override the current one with.

To determine the valid values, use the describe-certificates CLI command or the DescribeCertificates API operation.

", + "ModifyCurrentDBClusterCapacityMessage$DBClusterIdentifier": "

The DB cluster identifier for the cluster being modified. This parameter isn't case-sensitive.

Constraints:

  • Must match the identifier of an existing DB cluster.

", + "ModifyCurrentDBClusterCapacityMessage$TimeoutAction": "

The action to take when the timeout is reached, either ForceApplyCapacityChange or RollbackCapacityChange.

ForceApplyCapacityChange, the default, sets the capacity to the specified value as soon as possible.

RollbackCapacityChange ignores the capacity change if a scaling point isn't found in the timeout period.

", + "ModifyDBClusterEndpointMessage$DBClusterEndpointIdentifier": "

The identifier of the endpoint to modify. This parameter is stored as a lowercase string.

", + "ModifyDBClusterEndpointMessage$EndpointType": "

The type of the endpoint. One of: READER, WRITER, ANY.

", + "ModifyDBClusterMessage$DBClusterIdentifier": "

The DB cluster identifier for the cluster being modified. This parameter isn't case-sensitive.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • Must match the identifier of an existing DB cluster.

", + "ModifyDBClusterMessage$NewDBClusterIdentifier": "

The new DB cluster identifier for the DB cluster when renaming a DB cluster. This value is stored as a lowercase string.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • 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

", + "ModifyDBClusterMessage$DBClusterParameterGroupName": "

The name of the DB cluster parameter group to use for the DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "ModifyDBClusterMessage$OptionGroupName": "

The option group to associate the DB cluster with.

DB clusters are associated with a default option group that can't be modified.

", + "ModifyDBClusterMessage$PreferredBackupWindow": "

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 Amazon Web Services Region. To view the time blocks available, see Backup window in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

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.

", + "ModifyDBClusterMessage$PreferredMaintenanceWindow": "

The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

The default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region, occurring on a random day of the week. To see the time blocks available, see Adjusting the Preferred DB Cluster Maintenance Window in the Amazon Aurora User Guide.

Constraints:

  • Must be in the format ddd:hh24:mi-ddd:hh24:mi.

  • Days must be one of Mon | Tue | Wed | Thu | Fri | Sat | Sun.

  • Must be in Universal Coordinated Time (UTC).

  • Must be at least 30 minutes.

", + "ModifyDBClusterMessage$EngineVersion": "

The version number of the database engine to which you want to upgrade. Changing this parameter results in an outage. The change is applied during the next maintenance window unless ApplyImmediately is enabled.

If the cluster that you're modifying has one or more read replicas, all replicas must be running an engine version that's the same or later than the version you specify.

To list all of the available engine versions for Aurora MySQL, use the following command:

aws rds describe-db-engine-versions --engine aurora-mysql --query \"DBEngineVersions[].EngineVersion\"

To list all of the available engine versions for Aurora PostgreSQL, use the following command:

aws rds describe-db-engine-versions --engine aurora-postgresql --query \"DBEngineVersions[].EngineVersion\"

To list all of the available engine versions for RDS for MySQL, use the following command:

aws rds describe-db-engine-versions --engine mysql --query \"DBEngineVersions[].EngineVersion\"

To list all of the available engine versions for RDS for PostgreSQL, use the following command:

aws rds describe-db-engine-versions --engine postgres --query \"DBEngineVersions[].EngineVersion\"

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "ModifyDBClusterMessage$DBInstanceParameterGroupName": "

The name of the DB parameter group to apply to all instances of the DB cluster.

When you apply a parameter group using the DBInstanceParameterGroupName parameter, the DB cluster isn't rebooted automatically. Also, parameter changes are applied immediately rather than during the next maintenance window.

Valid for Cluster Type: Aurora DB clusters only

Default: The existing name setting

Constraints:

  • The DB parameter group must be in the same DB parameter group family as this DB cluster.

  • The DBInstanceParameterGroupName parameter is valid in combination with the AllowMajorVersionUpgrade parameter for a major version upgrade only.

", + "ModifyDBClusterMessage$Domain": "

The Active Directory directory ID to move the DB cluster to. Specify none to remove the cluster from its current domain. The domain must be created prior to this operation.

For more information, see Kerberos Authentication in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters only

", + "ModifyDBClusterMessage$DomainIAMRoleName": "

The name of the IAM role to use when making API calls to the Directory Service.

Valid for Cluster Type: Aurora DB clusters only

", + "ModifyDBClusterMessage$DBClusterInstanceClass": "

The compute and memory capacity of each DB instance in the Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines.

For the full list of DB instance classes and availability for your engine, see DB Instance Class in the Amazon RDS User Guide.

Valid for Cluster Type: Multi-AZ DB clusters only

", + "ModifyDBClusterMessage$StorageType": "

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.

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 | io2 | gp3

Default:

  • Aurora DB clusters - aurora

  • Multi-AZ DB clusters - io1

", + "ModifyDBClusterMessage$MonitoringRoleArn": "

The Amazon Resource Name (ARN) for the IAM role that permits RDS to send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example is arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, see To create an IAM role for Amazon RDS Enhanced Monitoring in the Amazon RDS User Guide.

If MonitoringInterval is set to a value other than 0, supply a MonitoringRoleArn value.

Valid for Cluster Type: Multi-AZ DB clusters only

", + "ModifyDBClusterMessage$PerformanceInsightsKMSKeyId": "

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you don't specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "ModifyDBClusterMessage$MasterUserSecretKmsKeyId": "

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if both of the following conditions are met:

  • The DB cluster doesn't manage the master user password in Amazon Web Services Secrets Manager.

    If the DB cluster already manages the master user password in Amazon Web Services Secrets Manager, you can't change the KMS key that is used to encrypt the secret.

  • You are turning on ManageMasterUserPassword to manage the master user password in Amazon Web Services Secrets Manager.

    If you are turning on ManageMasterUserPassword and don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "ModifyDBClusterMessage$EngineMode": "

The DB engine mode of the DB cluster, either provisioned or serverless.

The DB engine mode can be modified only from serverless to provisioned.

For more information, see CreateDBCluster.

Valid for Cluster Type: Aurora DB clusters only

", + "ModifyDBClusterMessage$CACertificateIdentifier": "

The CA certificate identifier to use for the DB cluster's server certificate.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide.

Valid for Cluster Type: Multi-AZ DB clusters

", + "ModifyDBClusterParameterGroupMessage$DBClusterParameterGroupName": "

The name of the DB cluster parameter group to modify.

", + "ModifyDBClusterSnapshotAttributeMessage$DBClusterSnapshotIdentifier": "

The identifier for the DB cluster snapshot to modify the attributes for.

", + "ModifyDBClusterSnapshotAttributeMessage$AttributeName": "

The name of the DB cluster snapshot attribute to modify.

To manage authorization for other Amazon Web Services accounts to copy or restore a manual DB cluster snapshot, set this value to restore.

To view the list of attributes available to modify, use the DescribeDBClusterSnapshotAttributes API operation.

", + "ModifyDBInstanceMessage$DBInstanceIdentifier": "

The identifier of DB instance to modify. This value is stored as a lowercase string.

Constraints:

  • Must match the identifier of an existing DB instance.

", + "ModifyDBInstanceMessage$DBInstanceClass": "

The new compute and memory capacity of the DB instance, for example db.m4.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide or Aurora DB instance classes in the Amazon Aurora User Guide. For RDS Custom, see DB instance class support for RDS Custom for Oracle and DB instance class support for RDS Custom for SQL Server.

If you modify the DB instance class, an outage occurs during the change. The change is applied during the next maintenance window, unless you specify ApplyImmediately in your request.

Default: Uses existing setting

Constraints:

  • If you are modifying the DB instance class and upgrading the engine version at the same time, the currently running engine version must be supported on the specified DB instance class. Otherwise, the operation returns an error. In this case, first run the operation to upgrade the engine version, and then run it again to modify the DB instance class.

", + "ModifyDBInstanceMessage$DBSubnetGroupName": "

The new DB subnet group for the DB instance. You can use this parameter to move your DB instance to a different VPC. If your DB instance isn't in a VPC, you can also use this parameter to move your DB instance into a VPC. For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

Changing the subnet group causes an outage during the change. The change is applied during the next maintenance window, unless you enable ApplyImmediately.

This setting doesn't apply to RDS Custom DB instances.

Constraints:

  • If supplied, must match existing DB subnet group.

Example: mydbsubnetgroup

", + "ModifyDBInstanceMessage$DBParameterGroupName": "

The name of the DB parameter group to apply to the DB instance.

Changing this setting doesn't result in an outage. The parameter group name itself is changed immediately, but the actual parameter changes are not applied until you reboot the instance without failover. In this case, the DB instance isn't rebooted automatically, and the parameter changes aren't applied during the next maintenance window. However, if you modify dynamic parameters in the newly associated DB parameter group, these changes are applied immediately without a reboot.

This setting doesn't apply to RDS Custom DB instances.

Default: Uses existing setting

Constraints:

  • Must be in the same DB parameter group family as the DB instance.

", + "ModifyDBInstanceMessage$PreferredBackupWindow": "

The daily time range during which automated backups are created if automated backups are enabled, as determined by the BackupRetentionPeriod parameter. Changing this parameter doesn't result in an outage and the change is asynchronously applied as soon as possible. The default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region. For more information, see Backup window in the Amazon RDS User Guide.

This setting doesn't apply to Amazon Aurora DB instances. The daily time range for creating automated backups is managed by the DB cluster. For more information, see ModifyDBCluster.

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.

", + "ModifyDBInstanceMessage$PreferredMaintenanceWindow": "

The weekly time range during which system maintenance can occur, which might result in an outage. Changing this parameter doesn't result in an outage, except in the following situation, and the change is asynchronously applied as soon as possible. If there are pending actions that cause a reboot, and the maintenance window is changed to include the current time, then changing this parameter causes a reboot of the DB instance. If you change this window to the current time, there must be at least 30 minutes between the current time and end of the window to ensure pending changes are applied.

For more information, see Amazon RDS Maintenance Window in the Amazon RDS User Guide.

Default: Uses existing setting

Constraints:

  • Must be in the format ddd:hh24:mi-ddd:hh24:mi.

  • The day values must be mon | tue | wed | thu | fri | sat | sun.

  • Must be in Universal Coordinated Time (UTC).

  • Must not conflict with the preferred backup window.

  • Must be at least 30 minutes.

", + "ModifyDBInstanceMessage$EngineVersion": "

The version number of the database engine to upgrade to. Changing this parameter results in an outage and the change is applied during the next maintenance window unless the ApplyImmediately parameter is enabled for this request.

For major version upgrades, if a nondefault DB parameter group is currently in use, a new DB parameter group in the DB parameter group family for the new engine version must be specified. The new DB parameter group can be the default for that DB parameter group family.

If you specify only a major version, Amazon RDS updates the DB instance to the default minor version if the current minor version is lower. For information about valid engine versions, see CreateDBInstance, or call DescribeDBEngineVersions.

If the instance that you're modifying is acting as a read replica, the engine version that you specify must be the same or higher than the version that the source DB instance or cluster is running.

In RDS Custom for Oracle, this parameter is supported for read replicas only if they are in the PATCH_DB_FAILURE lifecycle.

Constraints:

  • If you are upgrading the engine version and modifying the DB instance class at the same time, the currently running engine version must be supported on the specified DB instance class. Otherwise, the operation returns an error. In this case, first run the operation to upgrade the engine version, and then run it again to modify the DB instance class.

", + "ModifyDBInstanceMessage$LicenseModel": "

The license model for the DB instance.

This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.

Valid Values:

  • RDS for Db2 - bring-your-own-license

  • RDS for MariaDB - general-public-license

  • RDS for Microsoft SQL Server - license-included

  • RDS for MySQL - general-public-license

  • RDS for Oracle - bring-your-own-license | license-included

  • RDS for PostgreSQL - postgresql-license

", + "ModifyDBInstanceMessage$OptionGroupName": "

The option group to associate the DB instance with.

Changing this parameter doesn't result in an outage, with one exception. If the parameter change results in an option group that enables OEM, it can cause a brief period, lasting less than a second, during which new connections are rejected but existing connections aren't interrupted.

The change is applied during the next maintenance window unless the ApplyImmediately parameter is enabled for this request.

Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option group, and that option group can't be removed from a DB instance after it is associated with a DB instance.

This setting doesn't apply to RDS Custom DB instances.

", + "ModifyDBInstanceMessage$NewDBInstanceIdentifier": "

The new identifier for the DB instance when renaming a DB instance. When you change the DB instance identifier, an instance reboot occurs immediately if you enable ApplyImmediately, or will occur during the next maintenance window if you disable ApplyImmediately. This value is stored as a lowercase string.

This setting doesn't apply to RDS Custom DB instances.

Constraints:

  • 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: mydbinstance

", + "ModifyDBInstanceMessage$StorageType": "

The storage type to associate with the DB instance.

If you specify io1, io2, or gp3 you must also include a value for the Iops parameter.

If you choose to migrate your DB instance from using standard storage to gp2 (General Purpose SSD), gp3, or Provisioned IOPS (io1), or from these storage types to standard storage, the process can take time. The duration of the migration depends on several factors such as database load, storage size, storage type (standard or Provisioned IOPS), amount of IOPS provisioned (if any), and the number of prior scale storage operations. Typical migration times are under 24 hours, but the process can take up to several days in some cases. During the migration, the DB instance is available for use, but might experience performance degradation. While the migration takes place, nightly backups for the instance are suspended. No other Amazon RDS operations can take place for the instance, including modifying the instance, rebooting the instance, deleting the instance, creating a read replica for the instance, and creating a DB snapshot of the instance.

Valid Values: gp2 | gp3 | io1 | io2 | standard

Default: io1, if the Iops parameter is specified. Otherwise, gp2.

", + "ModifyDBInstanceMessage$TdeCredentialArn": "

The ARN from the key store with which to associate the instance for TDE encryption.

This setting doesn't apply to RDS Custom DB instances.

", + "ModifyDBInstanceMessage$CACertificateIdentifier": "

The CA certificate identifier to use for the DB instance's server certificate.

This setting doesn't apply to RDS Custom DB instances.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

", + "ModifyDBInstanceMessage$Domain": "

The Active Directory directory ID to move the DB instance to. Specify none to remove the instance from its current domain. You must create the domain before this operation. Currently, you can create only Db2, MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances in an Active Directory Domain.

For more information, see Kerberos Authentication in the Amazon RDS User Guide.

This setting doesn't apply to RDS Custom DB instances.

", + "ModifyDBInstanceMessage$DomainFqdn": "

The fully qualified domain name (FQDN) of an Active Directory domain.

Constraints:

  • Can't be longer than 64 characters.

Example: mymanagedADtest.mymanagedAD.mydomain

", + "ModifyDBInstanceMessage$DomainOu": "

The Active Directory organizational unit for your DB instance to join.

Constraints:

  • Must be in the distinguished name format.

  • Can't be longer than 64 characters.

Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain

", + "ModifyDBInstanceMessage$DomainAuthSecretArn": "

The ARN for the Secrets Manager secret with the credentials for the user joining the domain.

Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456

", + "ModifyDBInstanceMessage$MonitoringRoleArn": "

The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. For example, arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, see To create an IAM role for Amazon RDS Enhanced Monitoring in the Amazon RDS User Guide.

If MonitoringInterval is set to a value other than 0, supply a MonitoringRoleArn value.

This setting doesn't apply to RDS Custom DB instances.

", + "ModifyDBInstanceMessage$DomainIAMRoleName": "

The name of the IAM role to use when making API calls to the Directory Service.

This setting doesn't apply to RDS Custom DB instances.

", + "ModifyDBInstanceMessage$PerformanceInsightsKMSKeyId": "

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you don't specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

This setting doesn't apply to RDS Custom DB instances.

", + "ModifyDBInstanceMessage$NetworkType": "

The network type of the DB instance.

The network type is determined by the DBSubnetGroup specified for the DB instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

Valid Values: IPV4 | DUAL

", + "ModifyDBInstanceMessage$MasterUserSecretKmsKeyId": "

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if both of the following conditions are met:

  • The DB instance doesn't manage the master user password in Amazon Web Services Secrets Manager.

    If the DB instance already manages the master user password in Amazon Web Services Secrets Manager, you can't change the KMS key used to encrypt the secret.

  • You are turning on ManageMasterUserPassword to manage the master user password in Amazon Web Services Secrets Manager.

    If you are turning on ManageMasterUserPassword and don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

", + "ModifyDBInstanceMessage$Engine": "

The target Oracle DB engine when you convert a non-CDB to a CDB. This intermediate step is necessary to upgrade an Oracle Database 19c non-CDB to an Oracle Database 21c CDB.

Note the following requirements:

  • Make sure that you specify oracle-ee-cdb or oracle-se2-cdb.

  • Make sure that your DB engine runs Oracle Database 19c with an April 2021 or later RU.

Note the following limitations:

  • You can't convert a CDB to a non-CDB.

  • You can't convert a replica database.

  • You can't convert a non-CDB to a CDB and upgrade the engine version in the same command.

  • You can't convert the existing custom parameter or option group when it has options or parameters that are permanent or persistent. In this situation, the DB instance reverts to the default option and parameter group. To avoid reverting to the default, specify a new parameter group with --db-parameter-group-name and a new option group with --option-group-name.

", + "ModifyDBParameterGroupMessage$DBParameterGroupName": "

The name of the DB parameter group.

Constraints:

  • If supplied, must match the name of an existing DBParameterGroup.

", + "ModifyDBProxyTargetGroupRequest$NewName": "

The new name for the modified DBProxyTarget. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.

You can't rename the default target group.

", + "ModifyDBRecommendationMessage$RecommendationId": "

The identifier of the recommendation to update.

", + "ModifyDBRecommendationMessage$Locale": "

The language of the modified recommendation.

", + "ModifyDBRecommendationMessage$Status": "

The recommendation status to update.

Valid values:

  • active

  • dismissed

", + "ModifyDBSnapshotAttributeMessage$DBSnapshotIdentifier": "

The identifier for the DB snapshot to modify the attributes for.

", + "ModifyDBSnapshotAttributeMessage$AttributeName": "

The name of the DB snapshot attribute to modify.

To manage authorization for other Amazon Web Services accounts to copy or restore a manual DB snapshot, set this value to restore.

To view the list of attributes available to modify, use the DescribeDBSnapshotAttributes API operation.

", + "ModifyDBSnapshotMessage$DBSnapshotIdentifier": "

The identifier of the DB snapshot to modify.

", + "ModifyDBSnapshotMessage$EngineVersion": "

The engine version to upgrade the DB snapshot to.

The following are the database engines and engine versions that are available when you upgrade a DB snapshot.

MySQL

For the list of engine versions that are available for upgrading a DB snapshot, see Upgrading a MySQL DB snapshot engine version in the Amazon RDS User Guide.

Oracle

  • 19.0.0.0.ru-2022-01.rur-2022-01.r1 (supported for 12.2.0.1 DB snapshots)

  • 19.0.0.0.ru-2022-07.rur-2022-07.r1 (supported for 12.1.0.2 DB snapshots)

  • 12.1.0.2.v8 (supported for 12.1.0.1 DB snapshots)

  • 11.2.0.4.v12 (supported for 11.2.0.2 DB snapshots)

  • 11.2.0.4.v11 (supported for 11.2.0.3 DB snapshots)

PostgreSQL

For the list of engine versions that are available for upgrading a DB snapshot, see Upgrading a PostgreSQL DB snapshot engine version in the Amazon RDS User Guide.

", + "ModifyDBSnapshotMessage$OptionGroupName": "

The option group to identify with the upgraded DB snapshot.

You can specify this parameter when you upgrade an Oracle DB snapshot. The same option group considerations apply when upgrading a DB snapshot as when upgrading a DB instance. For more information, see Option group considerations in the Amazon RDS User Guide.

", + "ModifyDBSubnetGroupMessage$DBSubnetGroupName": "

The name for the DB subnet group. This value is stored as a lowercase string. You can't modify the default subnet group.

Constraints: Must match the name of an existing DBSubnetGroup. Must not be default.

Example: mydbsubnetgroup

", + "ModifyDBSubnetGroupMessage$DBSubnetGroupDescription": "

The description for the DB subnet group.

", + "ModifyEventSubscriptionMessage$SubscriptionName": "

The name of the RDS event notification subscription.

", + "ModifyEventSubscriptionMessage$SnsTopicArn": "

The Amazon Resource Name (ARN) of the SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it.

", + "ModifyEventSubscriptionMessage$SourceType": "

The type of source that is generating the events. For example, if you want to be notified of events generated by a DB instance, you would set this parameter to db-instance. For RDS Proxy events, specify db-proxy. If this value isn't specified, all events are returned.

Valid Values: db-instance | db-cluster | db-parameter-group | db-security-group | db-snapshot | db-cluster-snapshot | db-proxy | zero-etl | custom-engine-version | blue-green-deployment

", + "ModifyGlobalClusterMessage$EngineVersion": "

The version number of the database engine to which you want to upgrade.

To list all of the available engine versions for aurora-mysql (for MySQL-based Aurora global databases), use the following command:

aws rds describe-db-engine-versions --engine aurora-mysql --query '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]'

To list all of the available engine versions for aurora-postgresql (for PostgreSQL-based Aurora global databases), use the following command:

aws rds describe-db-engine-versions --engine aurora-postgresql --query '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]'

", + "ModifyOptionGroupMessage$OptionGroupName": "

The name of the option group to be modified.

Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option group, and that option group can't be removed from a DB instance once it is associated with a DB instance

", + "ModifyTenantDatabaseMessage$DBInstanceIdentifier": "

The identifier of the DB instance that contains the tenant database that you are modifying. This parameter isn't case-sensitive.

Constraints:

  • Must match the identifier of an existing DB instance.

", + "ModifyTenantDatabaseMessage$TenantDBName": "

The user-supplied name of the tenant database that you want to modify. This parameter isn’t case-sensitive.

Constraints:

  • Must match the identifier of an existing tenant database.

", + "ModifyTenantDatabaseMessage$NewTenantDBName": "

The new name of the tenant database when renaming a tenant database. This parameter isn’t case-sensitive.

Constraints:

  • Can't be the string null or any other reserved word.

  • Can't be longer than 8 characters.

", + "ModifyTenantDatabaseMessage$MasterUserSecretKmsKeyId": "

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if both of the following conditions are met:

  • The tenant database doesn't manage the master user password in Amazon Web Services Secrets Manager.

    If the tenant database already manages the master user password in Amazon Web Services Secrets Manager, you can't change the KMS key used to encrypt the secret.

  • You're turning on ManageMasterUserPassword to manage the master user password in Amazon Web Services Secrets Manager.

    If you're turning on ManageMasterUserPassword and don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a self-managed KMS key.

The Amazon Web Services KMS key identifier is any of the following:

  • Key ARN

  • Key ID

  • Alias ARN

  • Alias name for the KMS key

To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

A default KMS key exists for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

", + "Option$OptionName": "

The name of the option.

", + "Option$OptionDescription": "

The description of the option.

", + "Option$OptionVersion": "

The version of the option.

", + "OptionConfiguration$OptionName": "

The configuration of options to include in a group.

", + "OptionConfiguration$OptionVersion": "

The version for the option.

", + "OptionGroup$OptionGroupName": "

Specifies the name of the option group.

", + "OptionGroup$OptionGroupDescription": "

Provides a description of the option group.

", + "OptionGroup$EngineName": "

Indicates the name of the engine that this option group can be applied to.

", + "OptionGroup$MajorEngineVersion": "

Indicates the major engine version associated with this option group.

", + "OptionGroup$VpcId": "

If AllowsVpcAndNonVpcInstanceMemberships is false, this field is blank. If AllowsVpcAndNonVpcInstanceMemberships is true and this field is blank, then this option group can be applied to both VPC and non-VPC instances. If this field contains a value, then this option group can only be applied to instances that are in the VPC indicated by this field.

", + "OptionGroup$OptionGroupArn": "

Specifies the Amazon Resource Name (ARN) for the option group.

", + "OptionGroup$SourceOptionGroup": "

Specifies the name of the option group from which this option group is copied.

", + "OptionGroup$SourceAccountId": "

Specifies the Amazon Web Services account ID for the option group from which this option group is copied.

", + "OptionGroupMembership$OptionGroupName": "

The name of the option group that the instance belongs to.

", + "OptionGroupMembership$Status": "

The status of the DB instance's option group membership. Valid values are: in-sync, pending-apply, pending-removal, pending-maintenance-apply, pending-maintenance-removal, applying, removing, and failed.

", + "OptionGroupOption$Name": "

The name of the option.

", + "OptionGroupOption$Description": "

The description of the option.

", + "OptionGroupOption$EngineName": "

The name of the engine that this option can be applied to.

", + "OptionGroupOption$MajorEngineVersion": "

Indicates the major engine version that the option is available for.

", + "OptionGroupOption$MinimumRequiredMinorEngineVersion": "

The minimum required engine version for the option to be applied.

", + "OptionGroupOptionSetting$SettingName": "

The name of the option group option.

", + "OptionGroupOptionSetting$SettingDescription": "

The description of the option group option.

", + "OptionGroupOptionSetting$DefaultValue": "

The default value for the option group option.

", + "OptionGroupOptionSetting$ApplyType": "

The DB engine specific parameter type for the option group option.

", + "OptionGroupOptionSetting$AllowedValues": "

Indicates the acceptable values for the option group option.

", + "OptionGroupOptionsMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "OptionGroups$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "OptionNamesList$member": null, + "OptionSetting$Name": "

The name of the option that has settings that you can set.

", + "OptionSetting$DefaultValue": "

The default value of the option setting.

", + "OptionSetting$Description": "

The description of the option setting.

", + "OptionSetting$ApplyType": "

The DB engine specific parameter type.

", + "OptionSetting$DataType": "

The data type of the option setting.

", + "OptionSetting$AllowedValues": "

The allowed values of the option setting.

", + "OptionVersion$Version": "

The version of the option.

", + "OptionsConflictsWith$member": null, + "OptionsDependedOn$member": null, + "OrderableDBInstanceOption$Engine": "

The engine type of a DB instance.

", + "OrderableDBInstanceOption$EngineVersion": "

The engine version of a DB instance.

", + "OrderableDBInstanceOption$DBInstanceClass": "

The DB instance class for a DB instance.

", + "OrderableDBInstanceOption$LicenseModel": "

The license model for a DB instance.

", + "OrderableDBInstanceOption$AvailabilityZoneGroup": "

The Availability Zone group for a DB instance.

", + "OrderableDBInstanceOption$StorageType": "

The storage type for a DB instance.

", + "OrderableDBInstanceOptionsMessage$Marker": "

An optional pagination token provided by a previous OrderableDBInstanceOptions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "Outpost$Arn": "

The Amazon Resource Name (ARN) of the Outpost.

", + "Parameter$ParameterName": "

The name of the parameter.

", + "Parameter$Description": "

Provides a description of the parameter.

", + "Parameter$Source": "

The source of the parameter value.

", + "Parameter$ApplyType": "

Specifies the engine specific parameters type.

", + "Parameter$DataType": "

Specifies the valid data type for the parameter.

", + "Parameter$AllowedValues": "

Specifies the valid range of values for the parameter.

", + "Parameter$MinimumEngineVersion": "

The earliest engine version to which the parameter can apply.

", + "PendingMaintenanceAction$Action": "

The type of pending maintenance action that is available for the resource.

For more information about maintenance actions, see Maintaining a DB instance.

Valid Values:

  • ca-certificate-rotation

  • db-upgrade

  • hardware-maintenance

  • os-upgrade

  • system-update

For more information about these actions, see Maintenance actions for Amazon Aurora or Maintenance actions for Amazon RDS.

", + "PendingMaintenanceAction$OptInStatus": "

Indicates the type of opt-in request that has been received for the resource.

", + "PendingMaintenanceAction$Description": "

A description providing more detail about the maintenance action.

", + "PendingMaintenanceActionsMessage$Marker": "

An optional pagination token provided by a previous DescribePendingMaintenanceActions request. If this parameter is specified, the response includes only records beyond the marker, up to a number of records specified by MaxRecords.

", + "PendingModifiedValues$DBInstanceClass": "

The name of the compute and memory capacity class for the DB instance.

", + "PendingModifiedValues$EngineVersion": "

The database engine version.

", + "PendingModifiedValues$LicenseModel": "

The license model for the DB instance.

Valid values: license-included | bring-your-own-license | general-public-license

", + "PendingModifiedValues$DBInstanceIdentifier": "

The database identifier for the DB instance.

", + "PendingModifiedValues$StorageType": "

The storage type of the DB instance.

", + "PendingModifiedValues$CACertificateIdentifier": "

The identifier of the CA certificate for the DB instance.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

", + "PendingModifiedValues$DBSubnetGroupName": "

The DB subnet group for the DB instance.

", + "PendingModifiedValues$Engine": "

The database engine of the DB instance.

", + "PerformanceInsightsMetricDimensionGroup$Group": "

The available dimension groups for Performance Insights metric type.

", + "PerformanceInsightsMetricQuery$Metric": "

The name of a Performance Insights metric to be measured.

Valid Values:

  • db.load.avg - A scaled representation of the number of active sessions for the database engine.

  • db.sampledload.avg - The raw number of active sessions for the database engine.

  • The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide.

If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only.

", + "PerformanceIssueDetails$Analysis": "

The analysis of the performance issue. The information might contain markdown.

", + "ProcessorFeature$Name": "

The name of the processor feature. Valid names are coreCount and threadsPerCore.

", + "ProcessorFeature$Value": "

The value of a processor feature.

", + "PromoteReadReplicaDBClusterMessage$DBClusterIdentifier": "

The identifier of the DB cluster read replica to promote. This parameter isn't case-sensitive.

Constraints:

  • Must match the identifier of an existing DB cluster read replica.

Example: my-cluster-replica1

", + "PromoteReadReplicaMessage$DBInstanceIdentifier": "

The DB instance identifier. This value is stored as a lowercase string.

Constraints:

  • Must match the identifier of an existing read replica DB instance.

Example: mydbinstance

", + "PromoteReadReplicaMessage$PreferredBackupWindow": "

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 Amazon Web Services Region. To see the time blocks available, see Adjusting the Preferred Maintenance Window in the Amazon RDS User Guide.

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.

", + "PurchaseReservedDBInstancesOfferingMessage$ReservedDBInstancesOfferingId": "

The ID of the Reserved DB instance offering to purchase.

Example: 438012d3-4052-4cc7-b2e3-8d3372e0e706

", + "PurchaseReservedDBInstancesOfferingMessage$ReservedDBInstanceId": "

Customer-specified identifier to track this reservation.

Example: myreservationID

", + "RdsCustomClusterConfiguration$InterconnectSubnetId": "

Reserved for future use.

", + "RdsCustomClusterConfiguration$TransitGatewayMulticastDomainId": "

Reserved for future use.

", + "ReadReplicaDBClusterIdentifierList$member": null, + "ReadReplicaDBInstanceIdentifierList$member": null, + "ReadReplicaIdentifierList$member": null, + "ReadersArnList$member": null, + "RebootDBClusterMessage$DBClusterIdentifier": "

The DB cluster identifier. This parameter is stored as a lowercase string.

Constraints:

  • Must match the identifier of an existing DBCluster.

", + "RebootDBInstanceMessage$DBInstanceIdentifier": "

The DB instance identifier. This parameter is stored as a lowercase string.

Constraints:

  • Must match the identifier of an existing DBInstance.

", + "RecommendedAction$ActionId": "

The unique identifier of the recommended action.

", + "RecommendedAction$Title": "

A short description to summarize the action. The description might contain markdown.

", + "RecommendedAction$Description": "

A detailed description of the action. The description might contain markdown.

", + "RecommendedAction$Operation": "

An API operation for the action.

", + "RecommendedAction$Status": "

The status of the action.

  • ready

  • applied

  • scheduled

  • resolved

", + "RecommendedActionParameter$Key": "

The key of the parameter to use with the RecommendedAction API operation.

", + "RecommendedActionParameter$Value": "

The value of the parameter to use with the RecommendedAction API operation.

", + "RecommendedActionUpdate$ActionId": "

A unique identifier of the updated recommendation action.

", + "RecommendedActionUpdate$Status": "

The status of the updated recommendation action.

  • applied

  • scheduled

", + "RecurringCharge$RecurringChargeFrequency": "

The frequency of the recurring charge.

", + "RemoveFromGlobalClusterMessage$DbClusterIdentifier": "

The Amazon Resource Name (ARN) identifying the cluster that was detached from the Aurora global database cluster.

", + "RemoveRoleFromDBClusterMessage$DBClusterIdentifier": "

The name of the DB cluster to disassociate the IAM role from.

", + "RemoveRoleFromDBClusterMessage$RoleArn": "

The Amazon Resource Name (ARN) of the IAM role to disassociate from the Aurora DB cluster, for example arn:aws:iam::123456789012:role/AuroraAccessRole.

", + "RemoveRoleFromDBClusterMessage$FeatureName": "

The name of the feature for the DB cluster that the IAM role is to be disassociated from. For information about supported feature names, see DBEngineVersion.

", + "RemoveRoleFromDBInstanceMessage$DBInstanceIdentifier": "

The name of the DB instance to disassociate the IAM role from.

", + "RemoveRoleFromDBInstanceMessage$RoleArn": "

The Amazon Resource Name (ARN) of the IAM role to disassociate from the DB instance, for example, arn:aws:iam::123456789012:role/AccessRole.

", + "RemoveRoleFromDBInstanceMessage$FeatureName": "

The name of the feature for the DB instance that the IAM role is to be disassociated from. For information about supported feature names, see DBEngineVersion.

", + "RemoveSourceIdentifierFromSubscriptionMessage$SubscriptionName": "

The name of the RDS event notification subscription you want to remove a source identifier from.

", + "RemoveSourceIdentifierFromSubscriptionMessage$SourceIdentifier": "

The source identifier to be removed from the subscription, such as the DB instance identifier for a DB instance or the name of a security group.

", + "RemoveTagsFromResourceMessage$ResourceName": "

The Amazon RDS resource that the tags are removed from. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see Constructing an ARN for Amazon RDS in the Amazon RDS User Guide.

", + "ReservedDBInstance$ReservedDBInstanceId": "

The unique identifier for the reservation.

", + "ReservedDBInstance$ReservedDBInstancesOfferingId": "

The offering identifier.

", + "ReservedDBInstance$DBInstanceClass": "

The DB instance class for the reserved DB instance.

", + "ReservedDBInstance$CurrencyCode": "

The currency code for the reserved DB instance.

", + "ReservedDBInstance$ProductDescription": "

The description of the reserved DB instance.

", + "ReservedDBInstance$OfferingType": "

The offering type of this reserved DB instance.

", + "ReservedDBInstance$State": "

The state of the reserved DB instance.

", + "ReservedDBInstance$ReservedDBInstanceArn": "

The Amazon Resource Name (ARN) for the reserved DB instance.

", + "ReservedDBInstance$LeaseId": "

The unique identifier for the lease associated with the reserved DB instance.

Amazon Web Services Support might request the lease ID for an issue related to a reserved DB instance.

", + "ReservedDBInstanceMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "ReservedDBInstancesOffering$ReservedDBInstancesOfferingId": "

The offering identifier.

", + "ReservedDBInstancesOffering$DBInstanceClass": "

The DB instance class for the reserved DB instance.

", + "ReservedDBInstancesOffering$CurrencyCode": "

The currency code for the reserved DB instance offering.

", + "ReservedDBInstancesOffering$ProductDescription": "

The database engine used by the offering.

", + "ReservedDBInstancesOffering$OfferingType": "

The offering type.

", + "ReservedDBInstancesOfferingMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "ResetDBClusterParameterGroupMessage$DBClusterParameterGroupName": "

The name of the DB cluster parameter group to reset.

", + "ResetDBParameterGroupMessage$DBParameterGroupName": "

The name of the DB parameter group.

Constraints:

  • Must match the name of an existing DBParameterGroup.

", + "ResourcePendingMaintenanceActions$ResourceIdentifier": "

The ARN of the resource that has pending maintenance actions.

", + "RestoreDBClusterFromS3Message$CharacterSetName": "

A value that indicates that the restored DB cluster should be associated with the specified CharacterSet.

", + "RestoreDBClusterFromS3Message$DatabaseName": "

The database name for the restored DB cluster.

", + "RestoreDBClusterFromS3Message$DBClusterIdentifier": "

The name of the DB cluster to create from the source data in the Amazon S3 bucket. This parameter isn't case-sensitive.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

Example: my-cluster1

", + "RestoreDBClusterFromS3Message$DBClusterParameterGroupName": "

The name of the DB cluster parameter group to associate with the restored DB cluster. If this argument is omitted, the default parameter group for the engine version is used.

Constraints:

  • If supplied, must match the name of an existing DBClusterParameterGroup.

", + "RestoreDBClusterFromS3Message$DBSubnetGroupName": "

A DB subnet group to associate with the restored DB cluster.

Constraints: If supplied, must match the name of an existing DBSubnetGroup.

Example: mydbsubnetgroup

", + "RestoreDBClusterFromS3Message$Engine": "

The name of the database engine to be used for this DB cluster.

Valid Values: aurora-mysql (for Aurora MySQL)

", + "RestoreDBClusterFromS3Message$EngineVersion": "

The version number of the database engine to use.

To list all of the available engine versions for aurora-mysql (Aurora MySQL), use the following command:

aws rds describe-db-engine-versions --engine aurora-mysql --query \"DBEngineVersions[].EngineVersion\"

Aurora MySQL

Examples: 5.7.mysql_aurora.2.12.0, 8.0.mysql_aurora.3.04.0

", + "RestoreDBClusterFromS3Message$MasterUsername": "

The name of the master user for the restored DB cluster.

Constraints:

  • Must be 1 to 16 letters or numbers.

  • First character must be a letter.

  • Can't be a reserved word for the chosen database engine.

", + "RestoreDBClusterFromS3Message$OptionGroupName": "

A value that indicates that the restored DB cluster should be associated with the specified option group.

Permanent options can't be removed from an option group. An option group can't be removed from a DB cluster once it is associated with a DB cluster.

", + "RestoreDBClusterFromS3Message$PreferredBackupWindow": "

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 Amazon Web Services Region. To view the time blocks available, see Backup window in the Amazon Aurora User Guide.

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.

", + "RestoreDBClusterFromS3Message$PreferredMaintenanceWindow": "

The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).

Format: ddd:hh24:mi-ddd:hh24:mi

The default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region, occurring on a random day of the week. To see the time blocks available, see Adjusting the Preferred Maintenance Window in the Amazon Aurora User Guide.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

Constraints: Minimum 30-minute window.

", + "RestoreDBClusterFromS3Message$KmsKeyId": "

The Amazon Web Services KMS key identifier for an encrypted DB cluster.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If the StorageEncrypted parameter is enabled, and you do not specify a value for the KmsKeyId parameter, then Amazon RDS will use your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

", + "RestoreDBClusterFromS3Message$SourceEngine": "

The identifier for the database engine that was backed up to create the files stored in the Amazon S3 bucket.

Valid Values: mysql

", + "RestoreDBClusterFromS3Message$SourceEngineVersion": "

The version of the database that the backup files were created from.

MySQL versions 5.7 and 8.0 are supported.

Example: 5.7.40, 8.0.28

", + "RestoreDBClusterFromS3Message$S3BucketName": "

The name of the Amazon S3 bucket that contains the data used to create the Amazon Aurora DB cluster.

", + "RestoreDBClusterFromS3Message$S3Prefix": "

The prefix for all of the file names that contain the data used to create the Amazon Aurora DB cluster. If you do not specify a SourceS3Prefix value, then the Amazon Aurora DB cluster is created by using all of the files in the Amazon S3 bucket.

", + "RestoreDBClusterFromS3Message$S3IngestionRoleArn": "

The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) role that authorizes Amazon RDS to access the Amazon S3 bucket on your behalf.

", + "RestoreDBClusterFromS3Message$Domain": "

Specify the Active Directory directory ID to restore the DB cluster in. The domain must be created prior to this operation.

For Amazon Aurora DB clusters, Amazon RDS can use Kerberos Authentication to authenticate users that connect to the DB cluster. For more information, see Kerberos Authentication in the Amazon Aurora User Guide.

", + "RestoreDBClusterFromS3Message$DomainIAMRoleName": "

Specify the name of the IAM role to be used when making API calls to the Directory Service.

", + "RestoreDBClusterFromS3Message$StorageType": "

Specifies the storage type to be associated with the DB cluster.

Valid Values: aurora, aurora-iopt1

Default: aurora

Valid for: Aurora DB clusters only

", + "RestoreDBClusterFromS3Message$MasterUserSecretKmsKeyId": "

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB cluster.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

", + "RestoreDBClusterFromS3Message$EngineLifecycleSupport": "

The life cycle type for this DB cluster.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB cluster to a higher engine version, if the major engine version is past its end of standard support date.

You can use this setting to enroll your DB cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections:

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

", + "RestoreDBClusterFromSnapshotMessage$DBClusterIdentifier": "

The name of the DB cluster to create from the DB snapshot or DB cluster snapshot. This parameter isn't case-sensitive.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

Example: my-snapshot-id

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$SnapshotIdentifier": "

The identifier for the DB snapshot or DB cluster snapshot to restore from.

You can use either the name or the Amazon Resource Name (ARN) to specify a DB cluster snapshot. However, you can use only the ARN to specify a DB snapshot.

Constraints:

  • Must match the identifier of an existing Snapshot.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$Engine": "

The database engine to use for the new DB cluster.

Default: The same as source

Constraint: Must be compatible with the engine of the source

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$EngineVersion": "

The version of the database engine to use for the new DB cluster. If you don't specify an engine version, the default version for the database engine in the Amazon Web Services Region is used.

To list all of the available engine versions for Aurora MySQL, use the following command:

aws rds describe-db-engine-versions --engine aurora-mysql --query \"DBEngineVersions[].EngineVersion\"

To list all of the available engine versions for Aurora PostgreSQL, use the following command:

aws rds describe-db-engine-versions --engine aurora-postgresql --query \"DBEngineVersions[].EngineVersion\"

To list all of the available engine versions for RDS for MySQL, use the following command:

aws rds describe-db-engine-versions --engine mysql --query \"DBEngineVersions[].EngineVersion\"

To list all of the available engine versions for RDS for PostgreSQL, use the following command:

aws rds describe-db-engine-versions --engine postgres --query \"DBEngineVersions[].EngineVersion\"

Aurora MySQL

See Database engine updates for Amazon Aurora MySQL in the Amazon Aurora User Guide.

Aurora PostgreSQL

See Amazon Aurora PostgreSQL releases and engine versions in the Amazon Aurora User Guide.

MySQL

See Amazon RDS for MySQL in the Amazon RDS User Guide.

PostgreSQL

See Amazon RDS for PostgreSQL versions and extensions in the Amazon RDS User Guide.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$DBSubnetGroupName": "

The name of the DB subnet group to use for the new DB cluster.

Constraints: If supplied, must match the name of an existing DB subnet group.

Example: mydbsubnetgroup

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$DatabaseName": "

The database name for the restored DB cluster.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$OptionGroupName": "

The name of the option group to use for the restored DB cluster.

DB clusters are associated with a default option group that can't be modified.

", + "RestoreDBClusterFromSnapshotMessage$KmsKeyId": "

The Amazon Web Services KMS key identifier to use when restoring an encrypted DB cluster from a DB snapshot or DB cluster snapshot.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

When you don't specify a value for the KmsKeyId parameter, then the following occurs:

  • If the DB snapshot or DB cluster snapshot in SnapshotIdentifier is encrypted, then the restored DB cluster is encrypted using the KMS key that was used to encrypt the DB snapshot or DB cluster snapshot.

  • If the DB snapshot or DB cluster snapshot in SnapshotIdentifier isn't encrypted, then the restored DB cluster isn't encrypted.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$EngineMode": "

The DB engine mode of the DB cluster, either provisioned or serverless.

For more information, see CreateDBCluster.

Valid for: Aurora DB clusters only

", + "RestoreDBClusterFromSnapshotMessage$DBClusterParameterGroupName": "

The name of the DB cluster parameter group to associate with this DB cluster. If this argument is omitted, the default DB cluster parameter group for the specified engine is used.

Constraints:

  • If supplied, must match the name of an existing default DB cluster parameter group.

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$Domain": "

The Active Directory directory ID to restore the DB cluster in. The domain must be created prior to this operation. Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances can be created in an Active Directory Domain.

For more information, see Kerberos Authentication in the Amazon RDS User Guide.

Valid for: Aurora DB clusters only

", + "RestoreDBClusterFromSnapshotMessage$DomainIAMRoleName": "

The name of the IAM role to be used when making API calls to the Directory Service.

Valid for: Aurora DB clusters only

", + "RestoreDBClusterFromSnapshotMessage$DBClusterInstanceClass": "

The compute and memory capacity of the each DB instance in the Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines.

For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide.

Valid for: Multi-AZ DB clusters only

", + "RestoreDBClusterFromSnapshotMessage$StorageType": "

Specifies the storage type to be associated with the DB cluster.

When specified for a Multi-AZ DB cluster, a value for the Iops parameter is required.

Valid Values: aurora, aurora-iopt1 (Aurora DB clusters); io1 (Multi-AZ DB clusters)

Default: aurora (Aurora DB clusters); io1 (Multi-AZ DB clusters)

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterFromSnapshotMessage$MonitoringRoleArn": "

The Amazon Resource Name (ARN) for the IAM role that permits RDS to send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example is arn:aws:iam:123456789012:role/emaccess.

If MonitoringInterval is set to a value other than 0, supply a MonitoringRoleArn value.

", + "RestoreDBClusterFromSnapshotMessage$PerformanceInsightsKMSKeyId": "

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you don't specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

", + "RestoreDBClusterFromSnapshotMessage$EngineLifecycleSupport": "

The life cycle type for this DB cluster.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB cluster to a higher engine version, if the major engine version is past its end of standard support date.

You can use this setting to enroll your DB cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections:

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

", + "RestoreDBClusterToPointInTimeMessage$DBClusterIdentifier": "

The name of the new DB cluster to be created.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterToPointInTimeMessage$RestoreType": "

The type of restore to be performed. You can specify one of the following values:

  • full-copy - The new DB cluster is restored as a full copy of the source DB cluster.

  • copy-on-write - The new DB cluster is restored as a clone of the source DB cluster.

If you don't specify a RestoreType value, then the new DB cluster is restored as a full copy of the source DB cluster.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterToPointInTimeMessage$SourceDBClusterIdentifier": "

The identifier of the source DB cluster from which to restore.

Constraints:

  • Must match the identifier of an existing DBCluster.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterToPointInTimeMessage$DBSubnetGroupName": "

The DB subnet group name to use for the new DB cluster.

Constraints: If supplied, must match the name of an existing DBSubnetGroup.

Example: mydbsubnetgroup

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterToPointInTimeMessage$OptionGroupName": "

The name of the option group for the new DB cluster.

DB clusters are associated with a default option group that can't be modified.

", + "RestoreDBClusterToPointInTimeMessage$KmsKeyId": "

The Amazon Web Services KMS key identifier to use when restoring an encrypted DB cluster from an encrypted DB cluster.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

You can restore to a new DB cluster and encrypt the new DB cluster with a KMS key that is different from the KMS key used to encrypt the source DB cluster. The new DB cluster is encrypted with the KMS key identified by the KmsKeyId parameter.

If you don't specify a value for the KmsKeyId parameter, then the following occurs:

  • If the DB cluster is encrypted, then the restored DB cluster is encrypted using the KMS key that was used to encrypt the source DB cluster.

  • If the DB cluster isn't encrypted, then the restored DB cluster isn't encrypted.

If DBClusterIdentifier refers to a DB cluster that isn't encrypted, then the restore request is rejected.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterToPointInTimeMessage$DBClusterParameterGroupName": "

The name of the custom DB cluster parameter group to associate with this DB cluster.

If the DBClusterParameterGroupName parameter is omitted, the default DB cluster parameter group for the specified engine is used.

Constraints:

  • If supplied, must match the name of an existing DB cluster parameter group.

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterToPointInTimeMessage$Domain": "

The Active Directory directory ID to restore the DB cluster in. The domain must be created prior to this operation.

For Amazon Aurora DB clusters, Amazon RDS can use Kerberos Authentication to authenticate users that connect to the DB cluster. For more information, see Kerberos Authentication in the Amazon Aurora User Guide.

Valid for: Aurora DB clusters only

", + "RestoreDBClusterToPointInTimeMessage$DomainIAMRoleName": "

The name of the IAM role to be used when making API calls to the Directory Service.

Valid for: Aurora DB clusters only

", + "RestoreDBClusterToPointInTimeMessage$DBClusterInstanceClass": "

The compute and memory capacity of the each DB instance in the Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines.

For the full list of DB instance classes, and availability for your engine, see DB instance class in the Amazon RDS User Guide.

Valid for: Multi-AZ DB clusters only

", + "RestoreDBClusterToPointInTimeMessage$StorageType": "

Specifies the storage type to be associated with the DB cluster.

When specified for a Multi-AZ DB cluster, a value for the Iops parameter is required.

Valid Values: aurora, aurora-iopt1 (Aurora DB clusters); io1 (Multi-AZ DB clusters)

Default: aurora (Aurora DB clusters); io1 (Multi-AZ DB clusters)

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterToPointInTimeMessage$SourceDbClusterResourceId": "

The resource ID of the source DB cluster from which to restore.

", + "RestoreDBClusterToPointInTimeMessage$EngineMode": "

The engine mode of the new cluster. Specify provisioned or serverless, depending on the type of the cluster you are creating. You can create an Aurora Serverless v1 clone from a provisioned cluster, or a provisioned clone from an Aurora Serverless v1 cluster. To create a clone that is an Aurora Serverless v1 cluster, the original cluster must be an Aurora Serverless v1 cluster or an encrypted provisioned cluster. To create a full copy that is an Aurora Serverless v1 cluster, specify the engine mode serverless.

Valid for: Aurora DB clusters only

", + "RestoreDBClusterToPointInTimeMessage$MonitoringRoleArn": "

The Amazon Resource Name (ARN) for the IAM role that permits RDS to send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example is arn:aws:iam:123456789012:role/emaccess.

If MonitoringInterval is set to a value other than 0, supply a MonitoringRoleArn value.

", + "RestoreDBClusterToPointInTimeMessage$PerformanceInsightsKMSKeyId": "

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you don't specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

", + "RestoreDBClusterToPointInTimeMessage$EngineLifecycleSupport": "

The life cycle type for this DB cluster.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB cluster to a higher engine version, if the major engine version is past its end of standard support date.

You can use this setting to enroll your DB cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections:

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

", + "RestoreDBInstanceFromDBSnapshotMessage$DBInstanceIdentifier": "

The name of the DB instance to create from the DB snapshot. This parameter isn't case-sensitive.

Constraints:

  • Must contain from 1 to 63 numbers, letters, or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

Example: my-snapshot-id

", + "RestoreDBInstanceFromDBSnapshotMessage$DBSnapshotIdentifier": "

The identifier for the DB snapshot to restore from.

Constraints:

  • Must match the identifier of an existing DB snapshot.

  • Can't be specified when DBClusterSnapshotIdentifier is specified.

  • Must be specified when DBClusterSnapshotIdentifier isn't specified.

  • If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier must be the ARN of the shared DB snapshot.

", + "RestoreDBInstanceFromDBSnapshotMessage$DBInstanceClass": "

The compute and memory capacity of the Amazon RDS DB instance, for example db.m4.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide.

Default: The same DBInstanceClass as the original DB instance.

", + "RestoreDBInstanceFromDBSnapshotMessage$AvailabilityZone": "

The Availability Zone (AZ) where the DB instance will be created.

Default: A random, system-chosen Availability Zone.

Constraint: You can't specify the AvailabilityZone parameter if the DB instance is a Multi-AZ deployment.

Example: us-east-1a

", + "RestoreDBInstanceFromDBSnapshotMessage$DBSubnetGroupName": "

The name of the DB subnet group to use for the new instance.

Constraints:

  • If supplied, must match the name of an existing DB subnet group.

Example: mydbsubnetgroup

", + "RestoreDBInstanceFromDBSnapshotMessage$LicenseModel": "

License model information for the restored DB instance.

License models for RDS for Db2 require additional configuration. The Bring Your Own License (BYOL) model requires a custom parameter group and an Amazon Web Services License Manager self-managed license. The Db2 license through Amazon Web Services Marketplace model requires an Amazon Web Services Marketplace subscription. For more information, see Amazon RDS for Db2 licensing options in the Amazon RDS User Guide.

This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.

Valid Values:

  • RDS for Db2 - bring-your-own-license | marketplace-license

  • RDS for MariaDB - general-public-license

  • RDS for Microsoft SQL Server - license-included

  • RDS for MySQL - general-public-license

  • RDS for Oracle - bring-your-own-license | license-included

  • RDS for PostgreSQL - postgresql-license

Default: Same as the source.

", + "RestoreDBInstanceFromDBSnapshotMessage$DBName": "

The name of the database for the restored DB instance.

This parameter only applies to RDS for Oracle and RDS for SQL Server DB instances. It doesn't apply to the other engines or to RDS Custom DB instances.

", + "RestoreDBInstanceFromDBSnapshotMessage$Engine": "

The database engine to use for the new instance.

This setting doesn't apply to RDS Custom.

Default: The same as source

Constraint: Must be compatible with the engine of the source. For example, you can restore a MariaDB 10.1 DB instance from a MySQL 5.6 snapshot.

Valid Values:

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

", + "RestoreDBInstanceFromDBSnapshotMessage$OptionGroupName": "

The name of the option group to be used for the restored DB instance.

Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option group, and that option group can't be removed from a DB instance after it is associated with a DB instance.

This setting doesn't apply to RDS Custom.

", + "RestoreDBInstanceFromDBSnapshotMessage$StorageType": "

Specifies the storage type to be associated with the DB instance.

Valid Values: gp2 | gp3 | io1 | io2 | standard

If you specify io1, io2, or gp3, you must also include a value for the Iops parameter.

Default: io1 if the Iops parameter is specified, otherwise gp3

", + "RestoreDBInstanceFromDBSnapshotMessage$TdeCredentialArn": "

The ARN from the key store with which to associate the instance for TDE encryption.

This setting doesn't apply to RDS Custom.

", + "RestoreDBInstanceFromDBSnapshotMessage$Domain": "

The Active Directory directory ID to restore the DB instance in. The domain/ must be created prior to this operation. Currently, you can create only Db2, MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances in an Active Directory Domain.

For more information, see Kerberos Authentication in the Amazon RDS User Guide.

This setting doesn't apply to RDS Custom.

", + "RestoreDBInstanceFromDBSnapshotMessage$DomainFqdn": "

The fully qualified domain name (FQDN) of an Active Directory domain.

Constraints:

  • Can't be longer than 64 characters.

Example: mymanagedADtest.mymanagedAD.mydomain

", + "RestoreDBInstanceFromDBSnapshotMessage$DomainOu": "

The Active Directory organizational unit for your DB instance to join.

Constraints:

  • Must be in the distinguished name format.

  • Can't be longer than 64 characters.

Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain

", + "RestoreDBInstanceFromDBSnapshotMessage$DomainAuthSecretArn": "

The ARN for the Secrets Manager secret with the credentials for the user joining the domain.

Constraints:

  • Can't be longer than 64 characters.

Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456

", + "RestoreDBInstanceFromDBSnapshotMessage$DomainIAMRoleName": "

The name of the IAM role to use when making API calls to the Directory Service.

This setting doesn't apply to RDS Custom DB instances.

", + "RestoreDBInstanceFromDBSnapshotMessage$DBParameterGroupName": "

The name of the DB parameter group to associate with this DB instance.

If you don't specify a value for DBParameterGroupName, then RDS uses the default DBParameterGroup for the specified DB engine.

This setting doesn't apply to RDS Custom.

Constraints:

  • If supplied, must match the name of an existing DB parameter group.

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

", + "RestoreDBInstanceFromDBSnapshotMessage$NetworkType": "

The network type of the DB instance.

Valid Values:

  • IPV4

  • DUAL

The network type is determined by the DBSubnetGroup specified for the DB instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

", + "RestoreDBInstanceFromDBSnapshotMessage$CustomIamInstanceProfile": "

The instance profile associated with the underlying Amazon EC2 instance of an RDS Custom DB instance. The instance profile must meet the following requirements:

  • The profile must exist in your account.

  • The profile must have an IAM role that Amazon EC2 has permissions to assume.

  • The instance profile name and the associated IAM role name must start with the prefix AWSRDSCustom.

For the list of permissions required for the IAM role, see Configure IAM and your VPC in the Amazon RDS User Guide.

This setting is required for RDS Custom.

", + "RestoreDBInstanceFromDBSnapshotMessage$DBClusterSnapshotIdentifier": "

The identifier for the Multi-AZ DB cluster snapshot to restore from.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

Constraints:

  • Must match the identifier of an existing Multi-AZ DB cluster snapshot.

  • Can't be specified when DBSnapshotIdentifier is specified.

  • Must be specified when DBSnapshotIdentifier isn't specified.

  • If you are restoring from a shared manual Multi-AZ DB cluster snapshot, the DBClusterSnapshotIdentifier must be the ARN of the shared snapshot.

  • Can't be the identifier of an Aurora DB cluster snapshot.

", + "RestoreDBInstanceFromDBSnapshotMessage$EngineLifecycleSupport": "

The life cycle type for this DB instance.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB instance into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB instance to a higher engine version, if the major engine version is past its end of standard support date.

You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see Amazon RDS Extended Support with Amazon RDS in the Amazon RDS User Guide.

This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster.

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

", + "RestoreDBInstanceFromDBSnapshotMessage$MasterUserSecretKmsKeyId": "

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

", + "RestoreDBInstanceFromS3Message$DBName": "

The name of the database to create when the DB instance is created. Follow the naming rules specified in CreateDBInstance.

", + "RestoreDBInstanceFromS3Message$DBInstanceIdentifier": "

The DB instance identifier. This parameter is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

Example: mydbinstance

", + "RestoreDBInstanceFromS3Message$DBInstanceClass": "

The compute and memory capacity of the DB instance, for example db.m4.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide.

Importing from Amazon S3 isn't supported on the db.t2.micro DB instance class.

", + "RestoreDBInstanceFromS3Message$Engine": "

The name of the database engine to be used for this instance.

Valid Values: mysql

", + "RestoreDBInstanceFromS3Message$MasterUsername": "

The name for the master user.

Constraints:

  • Must be 1 to 16 letters or numbers.

  • First character must be a letter.

  • Can't be a reserved word for the chosen database engine.

", + "RestoreDBInstanceFromS3Message$AvailabilityZone": "

The Availability Zone that the DB instance is created in. For information about Amazon Web Services Regions and Availability Zones, see Regions and Availability Zones in the Amazon RDS User Guide.

Default: A random, system-chosen Availability Zone in the endpoint's Amazon Web Services Region.

Example: us-east-1d

Constraint: The AvailabilityZone parameter can't be specified if the DB instance is a Multi-AZ deployment. The specified Availability Zone must be in the same Amazon Web Services Region as the current endpoint.

", + "RestoreDBInstanceFromS3Message$DBSubnetGroupName": "

A DB subnet group to associate with this DB instance.

Constraints: If supplied, must match the name of an existing DBSubnetGroup.

Example: mydbsubnetgroup

", + "RestoreDBInstanceFromS3Message$PreferredMaintenanceWindow": "

The time range each week during which system maintenance can occur, in Universal Coordinated Time (UTC). For more information, see Amazon RDS Maintenance Window in the Amazon RDS User Guide.

Constraints:

  • Must be in the format ddd:hh24:mi-ddd:hh24:mi.

  • Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

  • Must be in Universal Coordinated Time (UTC).

  • Must not conflict with the preferred backup window.

  • Must be at least 30 minutes.

", + "RestoreDBInstanceFromS3Message$DBParameterGroupName": "

The name of the DB parameter group to associate with this DB instance.

If you do not specify a value for DBParameterGroupName, then the default DBParameterGroup for the specified DB engine is used.

", + "RestoreDBInstanceFromS3Message$PreferredBackupWindow": "

The time range each day during which automated backups are created if automated backups are enabled. For more information, see Backup window in the Amazon RDS User Guide.

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.

", + "RestoreDBInstanceFromS3Message$EngineVersion": "

The version number of the database engine to use. Choose the latest minor version of your database engine. For information about engine versions, see CreateDBInstance, or call DescribeDBEngineVersions.

", + "RestoreDBInstanceFromS3Message$LicenseModel": "

The license model for this DB instance. Use general-public-license.

", + "RestoreDBInstanceFromS3Message$OptionGroupName": "

The name of the option group to associate with this DB instance. If this argument is omitted, the default option group for the specified engine is used.

", + "RestoreDBInstanceFromS3Message$StorageType": "

Specifies the storage type to be associated with the DB instance.

Valid Values: gp2 | gp3 | io1 | io2 | standard

If you specify io1, io2, or gp3, you must also include a value for the Iops parameter.

Default: io1 if the Iops parameter is specified; otherwise gp2

", + "RestoreDBInstanceFromS3Message$KmsKeyId": "

The Amazon Web Services KMS key identifier for an encrypted DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If the StorageEncrypted parameter is enabled, and you do not specify a value for the KmsKeyId parameter, then Amazon RDS will use your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

", + "RestoreDBInstanceFromS3Message$MonitoringRoleArn": "

The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. For example, arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, see Setting Up and Enabling Enhanced Monitoring in the Amazon RDS User Guide.

If MonitoringInterval is set to a value other than 0, then you must supply a MonitoringRoleArn value.

", + "RestoreDBInstanceFromS3Message$SourceEngine": "

The name of the engine of your source database.

Valid Values: mysql

", + "RestoreDBInstanceFromS3Message$SourceEngineVersion": "

The version of the database that the backup files were created from.

MySQL versions 5.6 and 5.7 are supported.

Example: 5.6.40

", + "RestoreDBInstanceFromS3Message$S3BucketName": "

The name of your Amazon S3 bucket that contains your database backup file.

", + "RestoreDBInstanceFromS3Message$S3Prefix": "

The prefix of your Amazon S3 bucket.

", + "RestoreDBInstanceFromS3Message$S3IngestionRoleArn": "

An Amazon Web Services Identity and Access Management (IAM) role with a trust policy and a permissions policy that allows Amazon RDS to access your Amazon S3 bucket. For information about this role, see Creating an IAM role manually in the Amazon RDS User Guide.

", + "RestoreDBInstanceFromS3Message$PerformanceInsightsKMSKeyId": "

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

", + "RestoreDBInstanceFromS3Message$NetworkType": "

The network type of the DB instance.

Valid Values:

  • IPV4

  • DUAL

The network type is determined by the DBSubnetGroup specified for the DB instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

", + "RestoreDBInstanceFromS3Message$MasterUserSecretKmsKeyId": "

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

", + "RestoreDBInstanceFromS3Message$EngineLifecycleSupport": "

The life cycle type for this DB instance.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB instance into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB instance to a higher engine version, if the major engine version is past its end of standard support date.

You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see Amazon RDS Extended Support Amazon RDS in the Amazon RDS User Guide.

This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster.

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

", + "RestoreDBInstanceToPointInTimeMessage$SourceDBInstanceIdentifier": "

The identifier of the source DB instance from which to restore.

Constraints:

  • Must match the identifier of an existing DB instance.

", + "RestoreDBInstanceToPointInTimeMessage$TargetDBInstanceIdentifier": "

The name of the new DB instance to create.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

", + "RestoreDBInstanceToPointInTimeMessage$DBInstanceClass": "

The compute and memory capacity of the Amazon RDS DB instance, for example db.m4.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide.

Default: The same DB instance class as the original DB instance.

", + "RestoreDBInstanceToPointInTimeMessage$AvailabilityZone": "

The Availability Zone (AZ) where the DB instance will be created.

Default: A random, system-chosen Availability Zone.

Constraints:

  • You can't specify the AvailabilityZone parameter if the DB instance is a Multi-AZ deployment.

Example: us-east-1a

", + "RestoreDBInstanceToPointInTimeMessage$DBSubnetGroupName": "

The DB subnet group name to use for the new instance.

Constraints:

  • If supplied, must match the name of an existing DB subnet group.

Example: mydbsubnetgroup

", + "RestoreDBInstanceToPointInTimeMessage$LicenseModel": "

The license model information for the restored DB instance.

License models for RDS for Db2 require additional configuration. The Bring Your Own License (BYOL) model requires a custom parameter group and an Amazon Web Services License Manager self-managed license. The Db2 license through Amazon Web Services Marketplace model requires an Amazon Web Services Marketplace subscription. For more information, see Amazon RDS for Db2 licensing options in the Amazon RDS User Guide.

This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.

Valid Values:

  • RDS for Db2 - bring-your-own-license | marketplace-license

  • RDS for MariaDB - general-public-license

  • RDS for Microsoft SQL Server - license-included

  • RDS for MySQL - general-public-license

  • RDS for Oracle - bring-your-own-license | license-included

  • RDS for PostgreSQL - postgresql-license

Default: Same as the source.

", + "RestoreDBInstanceToPointInTimeMessage$DBName": "

The database name for the restored DB instance.

This parameter doesn't apply to the following DB instances:

  • RDS Custom

  • RDS for Db2

  • RDS for MariaDB

  • RDS for MySQL

", + "RestoreDBInstanceToPointInTimeMessage$Engine": "

The database engine to use for the new instance.

This setting doesn't apply to RDS Custom.

Valid Values:

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

Default: The same as source

Constraints:

  • Must be compatible with the engine of the source.

", + "RestoreDBInstanceToPointInTimeMessage$OptionGroupName": "

The name of the option group to use for the restored DB instance.

Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option group, and that option group can't be removed from a DB instance after it is associated with a DB instance

This setting doesn't apply to RDS Custom.

", + "RestoreDBInstanceToPointInTimeMessage$StorageType": "

The storage type to associate with the DB instance.

Valid Values: gp2 | gp3 | io1 | io2 | standard

Default: io1, if the Iops parameter is specified. Otherwise, gp3.

Constraints:

  • If you specify io1, io2, or gp3, you must also include a value for the Iops parameter.

", + "RestoreDBInstanceToPointInTimeMessage$TdeCredentialArn": "

The ARN from the key store with which to associate the instance for TDE encryption.

This setting doesn't apply to RDS Custom.

", + "RestoreDBInstanceToPointInTimeMessage$Domain": "

The Active Directory directory ID to restore the DB instance in. Create the domain before running this command. Currently, you can create only the MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances in an Active Directory Domain.

This setting doesn't apply to RDS Custom.

For more information, see Kerberos Authentication in the Amazon RDS User Guide.

", + "RestoreDBInstanceToPointInTimeMessage$DomainIAMRoleName": "

The name of the IAM role to use when making API calls to the Directory Service.

This setting doesn't apply to RDS Custom DB instances.

", + "RestoreDBInstanceToPointInTimeMessage$DomainFqdn": "

The fully qualified domain name (FQDN) of an Active Directory domain.

Constraints:

  • Can't be longer than 64 characters.

Example: mymanagedADtest.mymanagedAD.mydomain

", + "RestoreDBInstanceToPointInTimeMessage$DomainOu": "

The Active Directory organizational unit for your DB instance to join.

Constraints:

  • Must be in the distinguished name format.

  • Can't be longer than 64 characters.

Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain

", + "RestoreDBInstanceToPointInTimeMessage$DomainAuthSecretArn": "

The ARN for the Secrets Manager secret with the credentials for the user joining the domain.

Constraints:

  • Can't be longer than 64 characters.

Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456

", + "RestoreDBInstanceToPointInTimeMessage$DBParameterGroupName": "

The name of the DB parameter group to associate with this DB instance.

If you do not specify a value for DBParameterGroupName, then the default DBParameterGroup for the specified DB engine is used.

This setting doesn't apply to RDS Custom.

Constraints:

  • If supplied, must match the name of an existing DB parameter group.

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can't end with a hyphen or contain two consecutive hyphens.

", + "RestoreDBInstanceToPointInTimeMessage$SourceDbiResourceId": "

The resource ID of the source DB instance from which to restore.

", + "RestoreDBInstanceToPointInTimeMessage$NetworkType": "

The network type of the DB instance.

The network type is determined by the DBSubnetGroup specified for the DB instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

Valid Values:

  • IPV4

  • DUAL

", + "RestoreDBInstanceToPointInTimeMessage$SourceDBInstanceAutomatedBackupsArn": "

The Amazon Resource Name (ARN) of the replicated automated backups from which to restore, for example, arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE.

This setting doesn't apply to RDS Custom.

", + "RestoreDBInstanceToPointInTimeMessage$CustomIamInstanceProfile": "

The instance profile associated with the underlying Amazon EC2 instance of an RDS Custom DB instance. The instance profile must meet the following requirements:

  • The profile must exist in your account.

  • The profile must have an IAM role that Amazon EC2 has permissions to assume.

  • The instance profile name and the associated IAM role name must start with the prefix AWSRDSCustom.

For the list of permissions required for the IAM role, see Configure IAM and your VPC in the Amazon RDS User Guide.

This setting is required for RDS Custom.

", + "RestoreDBInstanceToPointInTimeMessage$EngineLifecycleSupport": "

The life cycle type for this DB instance.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB instance into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB instance to a higher engine version, if the major engine version is past its end of standard support date.

You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see Amazon RDS Extended Support with Amazon RDS in the Amazon RDS User Guide.

This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster.

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

", + "RestoreDBInstanceToPointInTimeMessage$MasterUserSecretKmsKeyId": "

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

", + "RevokeDBSecurityGroupIngressMessage$DBSecurityGroupName": "

The name of the DB security group to revoke ingress from.

", + "RevokeDBSecurityGroupIngressMessage$CIDRIP": "

The IP range to revoke access from. Must be a valid CIDR range. If CIDRIP is specified, EC2SecurityGroupName, EC2SecurityGroupId and EC2SecurityGroupOwnerId can't be provided.

", + "RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupName": "

The name of the EC2 security group to revoke access from. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

", + "RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupId": "

The id of the EC2 security group to revoke access from. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

", + "RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupOwnerId": "

The Amazon Web Services account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter. The Amazon Web Services access key ID isn't an acceptable value. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

", + "ScalingConfiguration$TimeoutAction": "

The action to take when the timeout is reached, either ForceApplyCapacityChange or RollbackCapacityChange.

ForceApplyCapacityChange sets the capacity to the specified value as soon as possible.

RollbackCapacityChange, the default, ignores the capacity change if a scaling point isn't found in the timeout period.

If you specify ForceApplyCapacityChange, connections that prevent Aurora Serverless v1 from finding a scaling point might be dropped.

For more information, see Autoscaling for Aurora Serverless v1 in the Amazon Aurora User Guide.

", + "ScalingConfigurationInfo$TimeoutAction": "

The action that occurs when Aurora times out while attempting to change the capacity of an Aurora Serverless v1 cluster. The value is either ForceApplyCapacityChange or RollbackCapacityChange.

ForceApplyCapacityChange, the default, sets the capacity to the specified value as soon as possible.

RollbackCapacityChange ignores the capacity change if a scaling point isn't found in the timeout period.

", + "SourceIdsList$member": null, + "SourceRegion$RegionName": "

The name of the source Amazon Web Services Region.

", + "SourceRegion$Endpoint": "

The endpoint for the source Amazon Web Services Region endpoint.

", + "SourceRegion$Status": "

The status of the source Amazon Web Services Region.

", + "SourceRegionMessage$Marker": "

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "StartActivityStreamRequest$ResourceArn": "

The Amazon Resource Name (ARN) of the DB cluster, for example, arn:aws:rds:us-east-1:12345667890:cluster:das-cluster.

", + "StartActivityStreamRequest$KmsKeyId": "

The Amazon Web Services KMS key identifier for encrypting messages in the database activity stream. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

", + "StartActivityStreamResponse$KmsKeyId": "

The Amazon Web Services KMS key identifier for encryption of messages in the database activity stream.

", + "StartActivityStreamResponse$KinesisStreamName": "

The name of the Amazon Kinesis data stream to be used for the database activity stream.

", + "StartDBClusterMessage$DBClusterIdentifier": "

The DB cluster identifier of the Amazon Aurora DB cluster to be started. This parameter is stored as a lowercase string.

", + "StartDBInstanceAutomatedBackupsReplicationMessage$SourceDBInstanceArn": "

The Amazon Resource Name (ARN) of the source DB instance for the replicated automated backups, for example, arn:aws:rds:us-west-2:123456789012:db:mydatabase.

", + "StartDBInstanceAutomatedBackupsReplicationMessage$KmsKeyId": "

The Amazon Web Services KMS key identifier for encryption of the replicated automated backups. The KMS key ID is the Amazon Resource Name (ARN) for the KMS encryption key in the destination Amazon Web Services Region, for example, arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE.

", + "StartDBInstanceMessage$DBInstanceIdentifier": "

The user-supplied instance identifier.

", + "StartExportTaskMessage$ExportTaskIdentifier": "

A unique identifier for the export task. This ID isn't an identifier for the Amazon S3 bucket where the data is to be exported.

", + "StartExportTaskMessage$SourceArn": "

The Amazon Resource Name (ARN) of the snapshot or cluster to export to Amazon S3.

", + "StartExportTaskMessage$S3BucketName": "

The name of the Amazon S3 bucket to export the snapshot or cluster data to.

", + "StartExportTaskMessage$IamRoleArn": "

The name of the IAM role to use for writing to the Amazon S3 bucket when exporting a snapshot or cluster.

In the IAM policy attached to your IAM role, include the following required actions to allow the transfer of files from Amazon RDS or Amazon Aurora to an S3 bucket:

  • s3:PutObject*

  • s3:GetObject*

  • s3:ListBucket

  • s3:DeleteObject*

  • s3:GetBucketLocation

In the policy, include the resources to identify the S3 bucket and objects in the bucket. The following list of resources shows the Amazon Resource Name (ARN) format for accessing S3:

  • arn:aws:s3:::your-s3-bucket

  • arn:aws:s3:::your-s3-bucket/*

", + "StartExportTaskMessage$KmsKeyId": "

The ID of the Amazon Web Services KMS key to use to encrypt the data exported to Amazon S3. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. The caller of this operation must be authorized to run the following operations. These can be set in the Amazon Web Services KMS key policy:

  • kms:CreateGrant

  • kms:DescribeKey

", + "StartExportTaskMessage$S3Prefix": "

The Amazon S3 bucket prefix to use as the file name and path of the exported data.

", + "StopActivityStreamRequest$ResourceArn": "

The Amazon Resource Name (ARN) of the DB cluster for the database activity stream. For example, arn:aws:rds:us-east-1:12345667890:cluster:das-cluster.

", + "StopActivityStreamResponse$KmsKeyId": "

The Amazon Web Services KMS key identifier used for encrypting messages in the database activity stream.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

", + "StopActivityStreamResponse$KinesisStreamName": "

The name of the Amazon Kinesis data stream used for the database activity stream.

", + "StopDBClusterMessage$DBClusterIdentifier": "

The DB cluster identifier of the Amazon Aurora DB cluster to be stopped. This parameter is stored as a lowercase string.

", + "StopDBInstanceAutomatedBackupsReplicationMessage$SourceDBInstanceArn": "

The Amazon Resource Name (ARN) of the source DB instance for which to stop replicating automate backups, for example, arn:aws:rds:us-west-2:123456789012:db:mydatabase.

", + "StopDBInstanceMessage$DBInstanceIdentifier": "

The user-supplied instance identifier.

", + "StopDBInstanceMessage$DBSnapshotIdentifier": "

The user-supplied instance identifier of the DB Snapshot created immediately before the DB instance is stopped.

", + "StringList$member": null, + "Subnet$SubnetIdentifier": "

The identifier of the subnet.

", + "Subnet$SubnetStatus": "

The status of the subnet.

", + "SubnetIdentifierList$member": null, + "SwitchoverReadReplicaMessage$DBInstanceIdentifier": "

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.

", + "Tag$Key": "

A key is the required name of the tag. The string value can be from 1 to 128 Unicode characters in length and can't be prefixed with aws: or rds:. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: \"^([\\\\p{L}\\\\p{Z}\\\\p{N}_.:/=+\\\\-@]*)$\").

", + "Tag$Value": "

A value is the optional value of the tag. The string value can be from 1 to 256 Unicode characters in length and can't be prefixed with aws: or rds:. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: \"^([\\\\p{L}\\\\p{Z}\\\\p{N}_.:/=+\\\\-@]*)$\").

", + "TargetHealth$Description": "

A description of the health of the RDS Proxy target. If the State is AVAILABLE, a description is not included.

", + "TenantDatabase$DBInstanceIdentifier": "

The ID of the DB instance that contains the tenant database.

", + "TenantDatabase$TenantDBName": "

The database name of the tenant database.

", + "TenantDatabase$Status": "

The status of the tenant database.

", + "TenantDatabase$MasterUsername": "

The master username of the tenant database.

", + "TenantDatabase$DbiResourceId": "

The Amazon Web Services Region-unique, immutable identifier for the DB instance.

", + "TenantDatabase$TenantDatabaseResourceId": "

The Amazon Web Services Region-unique, immutable identifier for the tenant database.

", + "TenantDatabase$TenantDatabaseARN": "

The Amazon Resource Name (ARN) for the tenant database.

", + "TenantDatabase$CharacterSetName": "

The character set of the tenant database.

", + "TenantDatabase$NcharCharacterSetName": "

The NCHAR character set name of the tenant database.

", + "TenantDatabasePendingModifiedValues$TenantDBName": "

The name of the tenant database.

", + "TenantDatabasesMessage$Marker": "

An optional pagination token provided by a previous DescribeTenantDatabases request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

", + "Timezone$TimezoneName": "

The name of the time zone.

", + "UpgradeTarget$Engine": "

The name of the upgrade target database engine.

", + "UpgradeTarget$EngineVersion": "

The version number of the upgrade target database engine.

", + "UpgradeTarget$Description": "

The version of the database engine that a DB instance can be upgraded to.

", + "UserAuthConfigInfo$Description": "

A user-specified description about the authentication used by a proxy to log in as a specific database user.

", + "UserAuthConfigInfo$UserName": "

The name of the database user to which the proxy connects.

", + "UserAuthConfigInfo$SecretArn": "

The Amazon Resource Name (ARN) representing the secret that the proxy uses to authenticate to the RDS DB instance or Aurora DB cluster. These secrets are stored within Amazon Secrets Manager.

", + "ValidStorageOptions$StorageType": "

The valid storage types for your DB instance. For example: gp2, gp3, io1, io2.

", + "VpcSecurityGroupIdList$member": null, + "VpcSecurityGroupMembership$VpcSecurityGroupId": "

The name of the VPC security group.

", + "VpcSecurityGroupMembership$Status": "

The membership status of the VPC security group.

Currently, the only valid status is active.

" + } + }, + "String255": { + "base": null, + "refs": { + "CreateCustomDBEngineVersionMessage$DatabaseInstallationFilesS3Prefix": "

The Amazon S3 directory that contains the database installation files for your CEV. For example, a valid bucket name is 123456789012/cev1. If this setting isn't specified, no prefix is assumed.

", + "CreateCustomDBEngineVersionMessage$ImageId": "

The ID of the Amazon Machine Image (AMI). For RDS Custom for SQL Server, an AMI ID is required to create a CEV. For RDS Custom for Oracle, the default is the most recent AMI available, but you can specify an AMI ID that was used in a different Oracle CEV. Find the AMIs used by your CEVs by calling the DescribeDBEngineVersions operation.

" + } + }, + "StringList": { + "base": null, + "refs": { + "ConnectionPoolConfiguration$SessionPinningFilters": "

Each item in the list represents a class of SQL operations that normally cause all later statements in a session using a proxy to be pinned to the same underlying database connection. Including an item in the list exempts that class of SQL operations from the pinning behavior.

Default: no session pinning filters

", + "ConnectionPoolConfigurationInfo$SessionPinningFilters": "

Each item in the list represents a class of SQL operations that normally cause all later statements in a session using a proxy to be pinned to the same underlying database connection. Including an item in the list exempts that class of SQL operations from the pinning behavior. This setting is only supported for MySQL engine family databases. Currently, the only allowed value is EXCLUDE_VARIABLE_SETS.

", + "CreateDBClusterEndpointMessage$StaticMembers": "

List of DB instance identifiers that are part of the custom endpoint group.

", + "CreateDBClusterEndpointMessage$ExcludedMembers": "

List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. This parameter is relevant only if the list of static members is empty.

", + "CreateDBInstanceMessage$DomainDnsIps": "

The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers.

Constraints:

  • Two IP addresses must be provided. If there isn't a secondary domain controller, use the IP address of the primary domain controller for both entries in the list.

Example: 123.124.125.126,234.235.236.237

", + "CreateDBInstanceReadReplicaMessage$DomainDnsIps": "

The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers.

Constraints:

  • Two IP addresses must be provided. If there isn't a secondary domain controller, use the IP address of the primary domain controller for both entries in the list.

Example: 123.124.125.126,234.235.236.237

", + "CreateDBProxyEndpointRequest$VpcSubnetIds": "

The VPC subnet IDs for the DB proxy endpoint that you create. You can specify a different set of subnet IDs than for the original DB proxy.

", + "CreateDBProxyEndpointRequest$VpcSecurityGroupIds": "

The VPC security group IDs for the DB proxy endpoint that you create. You can specify a different set of security group IDs than for the original DB proxy. The default is the default security group for the VPC.

", + "CreateDBProxyRequest$VpcSubnetIds": "

One or more VPC subnet IDs to associate with the new proxy.

", + "CreateDBProxyRequest$VpcSecurityGroupIds": "

One or more VPC security group IDs to associate with the new proxy.

", + "DBCluster$CustomEndpoints": "

The custom endpoints associated with the DB cluster.

", + "DBClusterEndpoint$StaticMembers": "

List of DB instance identifiers that are part of the custom endpoint group.

", + "DBClusterEndpoint$ExcludedMembers": "

List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.

", + "DBProxy$VpcSecurityGroupIds": "

Provides a list of VPC security groups that the proxy belongs to.

", + "DBProxy$VpcSubnetIds": "

The EC2 subnet IDs for the proxy.

", + "DBProxyEndpoint$VpcSecurityGroupIds": "

Provides a list of VPC security groups that the DB proxy endpoint belongs to.

", + "DBProxyEndpoint$VpcSubnetIds": "

The EC2 subnet IDs for the DB proxy endpoint.

", + "DBSubnetGroup$SupportedNetworkTypes": "

The network type of the DB subnet group.

Valid values:

  • IPV4

  • DUAL

A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

", + "DeregisterDBProxyTargetsRequest$DBInstanceIdentifiers": "

One or more DB instance identifiers.

", + "DeregisterDBProxyTargetsRequest$DBClusterIdentifiers": "

One or more DB cluster identifiers.

", + "DomainMembership$DnsIps": "

The IPv4 DNS IP addresses of the primary and secondary Active Directory domain controllers.

", + "ExportTask$ExportOnly": "

The data exported from the snapshot or cluster.

Valid Values:

  • database - Export all the data from a specified database.

  • database.table table-name - Export a table of the snapshot or cluster. This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora MySQL.

  • database.schema schema-name - Export a database schema of the snapshot or cluster. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.

  • database.schema.table table-name - Export a table of the database schema. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.

", + "ModifyDBClusterEndpointMessage$StaticMembers": "

List of DB instance identifiers that are part of the custom endpoint group.

", + "ModifyDBClusterEndpointMessage$ExcludedMembers": "

List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.

", + "ModifyDBInstanceMessage$DomainDnsIps": "

The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers.

Constraints:

  • Two IP addresses must be provided. If there isn't a secondary domain controller, use the IP address of the primary domain controller for both entries in the list.

Example: 123.124.125.126,234.235.236.237

", + "ModifyDBProxyEndpointRequest$VpcSecurityGroupIds": "

The VPC security group IDs for the DB proxy endpoint. When the DB proxy endpoint uses a different VPC than the original proxy, you also specify a different set of security group IDs than for the original proxy.

", + "ModifyDBProxyRequest$SecurityGroups": "

The new list of security groups for the DBProxy.

", + "OrderableDBInstanceOption$SupportedNetworkTypes": "

The network types supported by the DB instance (IPV4 or DUAL).

A DB instance can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

", + "PerformanceInsightsMetricDimensionGroup$Dimensions": "

A list of specific dimensions from a dimension group. If this list isn't included, then all of the dimensions in the group were requested, or are present in the response.

", + "RecommendedAction$ApplyModes": "

The methods to apply the recommended action.

Valid values:

  • manual - The action requires you to resolve the recommendation manually.

  • immediately - The action is applied immediately.

  • next-maintainance-window - The action is applied during the next scheduled maintainance.

", + "RegisterDBProxyTargetsRequest$DBInstanceIdentifiers": "

One or more DB instance identifiers.

", + "RegisterDBProxyTargetsRequest$DBClusterIdentifiers": "

One or more DB cluster identifiers.

", + "RestoreDBInstanceFromDBSnapshotMessage$DomainDnsIps": "

The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers.

Constraints:

  • Two IP addresses must be provided. If there isn't a secondary domain controller, use the IP address of the primary domain controller for both entries in the list.

Example: 123.124.125.126,234.235.236.237

", + "RestoreDBInstanceToPointInTimeMessage$DomainDnsIps": "

The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers.

Constraints:

  • Two IP addresses must be provided. If there isn't a secondary domain controller, use the IP address of the primary domain controller for both entries in the list.

Example: 123.124.125.126,234.235.236.237

", + "StartExportTaskMessage$ExportOnly": "

The data to be exported from the snapshot or cluster. If this parameter isn't provided, all of the data is exported.

Valid Values:

  • database - Export all the data from a specified database.

  • database.table table-name - Export a table of the snapshot or cluster. This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora MySQL.

  • database.schema schema-name - Export a database schema of the snapshot or cluster. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.

  • database.schema.table table-name - Export a table of the database schema. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.

" + } + }, + "Subnet": { + "base": "

This data type is used as a response element for the DescribeDBSubnetGroups operation.

", + "refs": { + "SubnetList$member": null + } + }, + "SubnetAlreadyInUse": { + "base": "

The DB subnet is already in use in the Availability Zone.

", + "refs": {} + }, + "SubnetIdentifierList": { + "base": null, + "refs": { + "CreateDBSubnetGroupMessage$SubnetIds": "

The EC2 Subnet IDs for the DB subnet group.

", + "ModifyDBSubnetGroupMessage$SubnetIds": "

The EC2 subnet IDs for the DB subnet group.

" + } + }, + "SubnetList": { + "base": null, + "refs": { + "DBSubnetGroup$Subnets": "

Contains a list of Subnet elements. The list of subnets shown here might not reflect the current state of your VPC. For the most up-to-date information, we recommend checking your VPC configuration directly.

" + } + }, + "SubscriptionAlreadyExistFault": { + "base": "

The supplied subscription name already exists.

", + "refs": {} + }, + "SubscriptionCategoryNotFoundFault": { + "base": "

The supplied category does not exist.

", + "refs": {} + }, + "SubscriptionNotFoundFault": { + "base": "

The subscription name does not exist.

", + "refs": {} + }, + "SupportedCharacterSetsList": { + "base": null, + "refs": { + "DBEngineVersion$SupportedCharacterSets": "

A list of the character sets supported by this engine for the CharacterSetName parameter of the CreateDBInstance operation.

", + "DBEngineVersion$SupportedNcharCharacterSets": "

A list of the character sets supported by the Oracle DB engine for the NcharCharacterSetName parameter of the CreateDBInstance operation.

" + } + }, + "SupportedEngineLifecycle": { + "base": "

This data type is used as a response element in the operation DescribeDBMajorEngineVersions.

You can use the information that this data type returns to plan for upgrades.

This data type only returns information for the open source engines Amazon RDS for MariaDB, Amazon RDS for MySQL, Amazon RDS for PostgreSQL, Aurora MySQL, and Aurora PostgreSQL.

", + "refs": { + "SupportedEngineLifecycleList$member": null + } + }, + "SupportedEngineLifecycleList": { + "base": null, + "refs": { + "DBMajorEngineVersion$SupportedEngineLifecycles": "

A list of the lifecycles supported by this engine for the DescribeDBMajorEngineVersions operation.

" + } + }, + "SupportedTimezonesList": { + "base": null, + "refs": { + "DBEngineVersion$SupportedTimezones": "

A list of the time zones supported by this engine for the Timezone parameter of the CreateDBInstance action.

" + } + }, + "SwitchoverBlueGreenDeploymentRequest": { + "base": null, + "refs": {} + }, + "SwitchoverBlueGreenDeploymentResponse": { + "base": null, + "refs": {} + }, + "SwitchoverDetail": { + "base": "

Contains the details about a blue/green deployment.

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.

", + "refs": { + "SwitchoverDetailList$member": null + } + }, + "SwitchoverDetailList": { + "base": null, + "refs": { + "BlueGreenDeployment$SwitchoverDetails": "

The details about each source and target resource in the blue/green deployment.

" + } + }, + "SwitchoverDetailStatus": { + "base": null, + "refs": { + "SwitchoverDetail$Status": "

The switchover status of a resource in a blue/green deployment.

Values:

  • PROVISIONING - The resource is being prepared to switch over.

  • AVAILABLE - The resource is ready to switch over.

  • SWITCHOVER_IN_PROGRESS - The resource is being switched over.

  • SWITCHOVER_COMPLETED - The resource has been switched over.

  • SWITCHOVER_FAILED - The resource attempted to switch over but failed.

  • MISSING_SOURCE - The source resource has been deleted.

  • MISSING_TARGET - The target resource has been deleted.

" + } + }, + "SwitchoverGlobalClusterMessage": { + "base": null, + "refs": {} + }, + "SwitchoverGlobalClusterResult": { + "base": null, + "refs": {} + }, + "SwitchoverReadReplicaMessage": { + "base": null, + "refs": {} + }, + "SwitchoverReadReplicaResult": { + "base": null, + "refs": {} + }, + "SwitchoverTimeout": { + "base": null, + "refs": { + "SwitchoverBlueGreenDeploymentRequest$SwitchoverTimeout": "

The amount of time, in seconds, for the switchover to complete.

Default: 300

If the switchover takes longer than the specified duration, then any changes are rolled back, and no changes are made to the environments.

" + } + }, + "TStamp": { + "base": null, + "refs": { + "BacktrackDBClusterMessage$BacktrackTo": "

The timestamp of the time to backtrack the DB cluster to, specified in ISO 8601 format. For more information about ISO 8601, see the ISO8601 Wikipedia page.

If the specified time isn't a consistent time for the DB cluster, Aurora automatically chooses the nearest possible consistent time for the DB cluster.

Constraints:

  • Must contain a valid ISO 8601 timestamp.

  • Can't contain a timestamp set in the future.

Example: 2017-07-08T18:00Z

", + "BlueGreenDeployment$CreateTime": "

The time when the blue/green deployment was created, in Universal Coordinated Time (UTC).

", + "BlueGreenDeployment$DeleteTime": "

The time when the blue/green deployment was deleted, in Universal Coordinated Time (UTC).

", + "Certificate$ValidFrom": "

The starting date from which the certificate is valid.

", + "Certificate$ValidTill": "

The final date that the certificate continues to be valid.

", + "Certificate$CustomerOverrideValidTill": "

If there is an override for the default certificate identifier, when the override expires.

", + "CertificateDetails$ValidTill": "

The expiration date of the DB instance’s server certificate.

", + "DBCluster$EarliestRestorableTime": "

The earliest time to which a database can be restored with point-in-time restore.

", + "DBCluster$LatestRestorableTime": "

The latest time to which a database can be restored with point-in-time restore.

", + "DBCluster$ClusterCreateTime": "

The time when the DB cluster was created, in Universal Coordinated Time (UTC).

", + "DBCluster$EarliestBacktrackTime": "

The earliest time to which a DB cluster can be backtracked.

", + "DBCluster$IOOptimizedNextAllowedModificationTime": "

The next time you can modify the DB cluster to use the aurora-iopt1 storage type.

This setting is only for Aurora DB clusters.

", + "DBClusterAutomatedBackup$ClusterCreateTime": "

The time when the DB cluster was created, in Universal Coordinated Time (UTC).

", + "DBClusterBacktrack$BacktrackTo": "

The timestamp of the time to which the DB cluster was backtracked.

", + "DBClusterBacktrack$BacktrackedFrom": "

The timestamp of the time from which the DB cluster was backtracked.

", + "DBClusterBacktrack$BacktrackRequestCreationTime": "

The timestamp of the time at which the backtrack was requested.

", + "DBClusterSnapshot$SnapshotCreateTime": "

The time when the snapshot was taken, in Universal Coordinated Time (UTC).

", + "DBClusterSnapshot$ClusterCreateTime": "

The time when the DB cluster was created, in Universal Coordinated Time (UTC).

", + "DBEngineVersion$CreateTime": "

The creation time of the DB engine version.

", + "DBInstance$InstanceCreateTime": "

The date and time when the DB instance was created.

", + "DBInstance$LatestRestorableTime": "

The latest time to which a database in this DB instance can be restored with point-in-time restore.

", + "DBInstance$ResumeFullAutomationModeTime": "

The number of minutes to pause the automation. When the time period ends, RDS Custom resumes full automation. The minimum value is 60 (default). The maximum value is 1,440.

", + "DBInstanceAutomatedBackup$InstanceCreateTime": "

The date and time when the DB instance was created.

", + "DBProxy$CreatedDate": "

The date and time when the proxy was first created.

", + "DBProxy$UpdatedDate": "

The date and time when the proxy was last updated.

", + "DBProxyEndpoint$CreatedDate": "

The date and time when the DB proxy endpoint was first created.

", + "DBProxyTargetGroup$CreatedDate": "

The date and time when the target group was first created.

", + "DBProxyTargetGroup$UpdatedDate": "

The date and time when the target group was last updated.

", + "DBRecommendation$CreatedTime": "

The time when the recommendation was created. For example, 2023-09-28T01:13:53.931000+00:00.

", + "DBRecommendation$UpdatedTime": "

The time when the recommendation was last updated.

", + "DBSnapshot$SnapshotCreateTime": "

Specifies when the snapshot was taken in Coordinated Universal Time (UTC). Changes for the copy when the snapshot is copied.

", + "DBSnapshot$InstanceCreateTime": "

Specifies the time in Coordinated Universal Time (UTC) when the DB instance, from which the snapshot was taken, was created.

", + "DBSnapshot$OriginalSnapshotCreateTime": "

Specifies the time of the CreateDBSnapshot operation in Coordinated Universal Time (UTC). Doesn't change when the snapshot is copied.

", + "DBSnapshotTenantDatabase$TenantDatabaseCreateTime": "

The time the DB snapshot was taken, specified in Coordinated Universal Time (UTC). If you copy the snapshot, the creation time changes.

", + "DescribeDBRecommendationsMessage$LastUpdatedAfter": "

A filter to include only the recommendations that were updated after this specified time.

", + "DescribeDBRecommendationsMessage$LastUpdatedBefore": "

A filter to include only the recommendations that were updated before this specified time.

", + "DescribeEventsMessage$StartTime": "

The beginning of the time interval to retrieve events for, specified in ISO 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia page.

Example: 2009-07-08T18:00Z

", + "DescribeEventsMessage$EndTime": "

The end of the time interval for which to retrieve events, specified in ISO 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia page.

Example: 2009-07-08T18:00Z

", + "Event$Date": "

Specifies the date and time of the event.

", + "ExportTask$SnapshotTime": "

The time when the snapshot was created.

", + "ExportTask$TaskStartTime": "

The time when the snapshot or cluster export task started.

", + "ExportTask$TaskEndTime": "

The time when the snapshot or cluster export task ended.

", + "Integration$CreateTime": "

The time when the integration was created, in Universal Coordinated Time (UTC).

", + "OptionGroup$CopyTimestamp": "

Indicates when the option group was copied.

", + "PendingMaintenanceAction$AutoAppliedAfterDate": "

The date of the maintenance window when the action is applied. The maintenance action is applied to the resource during its first maintenance window after this date.

", + "PendingMaintenanceAction$ForcedApplyDate": "

The date when the maintenance action is automatically applied.

On this date, the maintenance action is applied to the resource as soon as possible, regardless of the maintenance window for the resource. There might be a delay of one or more days from this date before the maintenance action is applied.

", + "PendingMaintenanceAction$CurrentApplyDate": "

The effective date when the pending maintenance action is applied to the resource. This date takes into account opt-in requests received from the ApplyPendingMaintenanceAction API, the AutoAppliedAfterDate, and the ForcedApplyDate. This value is blank if an opt-in request has not been received and nothing has been specified as AutoAppliedAfterDate or ForcedApplyDate.

", + "PendingModifiedValues$ResumeFullAutomationModeTime": "

The number of minutes to pause the automation. When the time period ends, RDS Custom resumes full automation. The minimum value is 60 (default). The maximum value is 1,440.

", + "PerformanceIssueDetails$StartTime": "

The time when the performance issue started.

", + "PerformanceIssueDetails$EndTime": "

The time when the performance issue stopped.

", + "ReservedDBInstance$StartTime": "

The time the reservation started.

", + "RestoreDBClusterToPointInTimeMessage$RestoreToTime": "

The date and time to restore the DB cluster to.

Valid Values: Value must be a time in Universal Coordinated Time (UTC) format

Constraints:

  • Must be before the latest restorable time for the DB instance

  • Must be specified if UseLatestRestorableTime parameter isn't provided

  • Can't be specified if the UseLatestRestorableTime parameter is enabled

  • Can't be specified if the RestoreType parameter is copy-on-write

Example: 2015-03-07T23:45:00Z

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBInstanceToPointInTimeMessage$RestoreTime": "

The date and time to restore from.

Constraints:

  • Must be a time in Universal Coordinated Time (UTC) format.

  • Must be before the latest restorable time for the DB instance.

  • Can't be specified if the UseLatestRestorableTime parameter is enabled.

Example: 2009-09-07T23:45:00Z

", + "RestoreWindow$EarliestTime": "

The earliest time you can restore an instance to.

", + "RestoreWindow$LatestTime": "

The latest time you can restore an instance to.

", + "SupportedEngineLifecycle$LifecycleSupportStartDate": "

The start date for the type of support returned by LifecycleSupportName.

", + "SupportedEngineLifecycle$LifecycleSupportEndDate": "

The end date for the type of support returned by LifecycleSupportName.

", + "TenantDatabase$TenantDatabaseCreateTime": "

The creation time of the tenant database.

" + } + }, + "Tag": { + "base": "

Metadata assigned to an Amazon RDS resource consisting of a key-value pair.

For more information, see Tagging Amazon RDS resources in the Amazon RDS User Guide or Tagging Amazon Aurora and Amazon RDS resources in the Amazon Aurora User Guide.

", + "refs": { + "TagList$member": null + } + }, + "TagList": { + "base": "

A list of tags.

For more information, see Tagging Amazon RDS resources in the Amazon RDS User Guide or Tagging Amazon Aurora and Amazon RDS resources in the Amazon Aurora User Guide.

", + "refs": { + "AddTagsToResourceMessage$Tags": "

The tags to be assigned to the Amazon RDS resource.

", + "BlueGreenDeployment$TagList": null, + "CopyDBClusterParameterGroupMessage$Tags": null, + "CopyDBClusterSnapshotMessage$Tags": null, + "CopyDBParameterGroupMessage$Tags": null, + "CopyDBSnapshotMessage$Tags": null, + "CopyOptionGroupMessage$Tags": null, + "CreateBlueGreenDeploymentRequest$Tags": "

Tags to assign to the blue/green deployment.

", + "CreateCustomDBEngineVersionMessage$Tags": null, + "CreateDBClusterEndpointMessage$Tags": "

The tags to be assigned to the Amazon RDS resource.

", + "CreateDBClusterMessage$Tags": "

Tags to assign to the DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "CreateDBClusterParameterGroupMessage$Tags": "

Tags to assign to the DB cluster parameter group.

", + "CreateDBClusterSnapshotMessage$Tags": "

The tags to be assigned to the DB cluster snapshot.

", + "CreateDBInstanceMessage$Tags": "

Tags to assign to the DB instance.

", + "CreateDBInstanceReadReplicaMessage$Tags": null, + "CreateDBParameterGroupMessage$Tags": "

Tags to assign to the DB parameter group.

", + "CreateDBProxyEndpointRequest$Tags": null, + "CreateDBProxyRequest$Tags": "

An optional set of key-value pairs to associate arbitrary data of your choosing with the proxy.

", + "CreateDBSecurityGroupMessage$Tags": "

Tags to assign to the DB security group.

", + "CreateDBSnapshotMessage$Tags": null, + "CreateDBSubnetGroupMessage$Tags": "

Tags to assign to the DB subnet group.

", + "CreateEventSubscriptionMessage$Tags": null, + "CreateIntegrationMessage$Tags": null, + "CreateOptionGroupMessage$Tags": "

Tags to assign to the option group.

", + "CreateTenantDatabaseMessage$Tags": null, + "DBCluster$TagList": null, + "DBClusterSnapshot$TagList": null, + "DBEngineVersion$TagList": null, + "DBInstance$TagList": null, + "DBSnapshot$TagList": null, + "DBSnapshotTenantDatabase$TagList": null, + "Integration$Tags": null, + "PurchaseReservedDBInstancesOfferingMessage$Tags": null, + "RestoreDBClusterFromS3Message$Tags": null, + "RestoreDBClusterFromSnapshotMessage$Tags": "

The tags to be assigned to the restored DB cluster.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterToPointInTimeMessage$Tags": null, + "RestoreDBInstanceFromDBSnapshotMessage$Tags": null, + "RestoreDBInstanceFromS3Message$Tags": "

A list of tags to associate with this DB instance. For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.

", + "RestoreDBInstanceToPointInTimeMessage$Tags": null, + "TagListMessage$TagList": "

List of tags returned by the ListTagsForResource operation.

", + "TenantDatabase$TagList": null + } + }, + "TagListMessage": { + "base": "

", + "refs": {} + }, + "TargetDBClusterParameterGroupName": { + "base": null, + "refs": { + "CreateBlueGreenDeploymentRequest$TargetDBClusterParameterGroupName": "

The DB cluster parameter group associated with the Aurora DB cluster in the green environment.

To test parameter changes, specify a DB cluster parameter group that is different from the one associated with the source DB cluster.

" + } + }, + "TargetDBInstanceClass": { + "base": null, + "refs": { + "CreateBlueGreenDeploymentRequest$TargetDBInstanceClass": "

Specify the DB instance class for the databases in the green environment.

This parameter only applies to RDS DB instances, because DB instances within an Aurora DB cluster can have multiple different instance classes. If you're creating a blue/green deployment from an Aurora DB cluster, don't specify this parameter. After the green environment is created, you can individually modify the instance classes of the DB instances within the green DB cluster.

" + } + }, + "TargetDBParameterGroupName": { + "base": null, + "refs": { + "CreateBlueGreenDeploymentRequest$TargetDBParameterGroupName": "

The DB parameter group associated with the DB instance in the green environment.

To test parameter changes, specify a DB parameter group that is different from the one associated with the source DB instance.

" + } + }, + "TargetEngineVersion": { + "base": null, + "refs": { + "CreateBlueGreenDeploymentRequest$TargetEngineVersion": "

The engine version of the database in the green environment.

Specify the engine version to upgrade to in the green environment.

" + } + }, + "TargetGroupList": { + "base": null, + "refs": { + "DescribeDBProxyTargetGroupsResponse$TargetGroups": "

An arbitrary number of DBProxyTargetGroup objects, containing details of the corresponding target groups.

" + } + }, + "TargetHealth": { + "base": "

Information about the connection health of an RDS Proxy target.

", + "refs": { + "DBProxyTarget$TargetHealth": "

Information about the connection health of the RDS Proxy target.

" + } + }, + "TargetHealthReason": { + "base": null, + "refs": { + "TargetHealth$Reason": "

The reason for the current health State of the RDS Proxy target.

" + } + }, + "TargetList": { + "base": null, + "refs": { + "DescribeDBProxyTargetsResponse$Targets": "

An arbitrary number of DBProxyTarget objects, containing details of the corresponding targets.

", + "RegisterDBProxyTargetsResponse$DBProxyTargets": "

One or more DBProxyTarget objects that are created when you register targets with a target group.

" + } + }, + "TargetRole": { + "base": null, + "refs": { + "DBProxyTarget$Role": "

A value that indicates whether the target of the proxy can be used for read/write or read-only operations.

" + } + }, + "TargetState": { + "base": null, + "refs": { + "TargetHealth$State": "

The current state of the connection health lifecycle for the RDS Proxy target. The following is a typical lifecycle example for the states of an RDS Proxy target:

registering > unavailable > available > unavailable > available

" + } + }, + "TargetType": { + "base": null, + "refs": { + "DBProxyTarget$Type": "

Specifies the kind of database, such as an RDS DB instance or an Aurora DB cluster, that the target represents.

" + } + }, + "TenantDatabase": { + "base": "

A tenant database in the DB instance. This data type is an element in the response to the DescribeTenantDatabases action.

", + "refs": { + "CreateTenantDatabaseResult$TenantDatabase": null, + "DeleteTenantDatabaseResult$TenantDatabase": null, + "ModifyTenantDatabaseResult$TenantDatabase": null, + "TenantDatabasesList$member": null + } + }, + "TenantDatabaseAlreadyExistsFault": { + "base": "

You attempted to either create a tenant database that already exists or modify a tenant database to use the name of an existing tenant database.

", + "refs": {} + }, + "TenantDatabaseNotFoundFault": { + "base": "

The specified tenant database wasn't found in the DB instance.

", + "refs": {} + }, + "TenantDatabasePendingModifiedValues": { + "base": "

A response element in the ModifyTenantDatabase operation that describes changes that will be applied. Specific changes are identified by subelements.

", + "refs": { + "TenantDatabase$PendingModifiedValues": "

Information about pending changes for a tenant database.

" + } + }, + "TenantDatabaseQuotaExceededFault": { + "base": "

You attempted to create more tenant databases than are permitted in your Amazon Web Services account.

", + "refs": {} + }, + "TenantDatabasesList": { + "base": null, + "refs": { + "TenantDatabasesMessage$TenantDatabases": "

An array of the tenant databases requested by the DescribeTenantDatabases operation.

" + } + }, + "TenantDatabasesMessage": { + "base": null, + "refs": {} + }, + "Timezone": { + "base": "

A time zone associated with a DBInstance or a DBSnapshot. This data type is an element in the response to the DescribeDBInstances, the DescribeDBSnapshots, and the DescribeDBEngineVersions actions.

", + "refs": { + "SupportedTimezonesList$member": null + } + }, + "UpgradeTarget": { + "base": "

The version of the database engine that a DB instance can be upgraded to.

", + "refs": { + "ValidUpgradeTargetList$member": null + } + }, + "UserAuthConfig": { + "base": "

Specifies the details of authentication used by a proxy to log in as a specific database user.

", + "refs": { + "UserAuthConfigList$member": null + } + }, + "UserAuthConfigInfo": { + "base": "

Returns the details of authentication used by a proxy to log in as a specific database user.

", + "refs": { + "UserAuthConfigInfoList$member": null + } + }, + "UserAuthConfigInfoList": { + "base": null, + "refs": { + "DBProxy$Auth": "

One or more data structures specifying the authorization mechanism to connect to the associated RDS DB instance or Aurora DB cluster.

" + } + }, + "UserAuthConfigList": { + "base": null, + "refs": { + "CreateDBProxyRequest$Auth": "

The authorization mechanism that the proxy uses.

", + "ModifyDBProxyRequest$Auth": "

The new authentication settings for the DBProxy.

" + } + }, + "ValidDBInstanceModificationsMessage": { + "base": "

Information about valid modifications that you can make to your DB instance. Contains the result of a successful call to the DescribeValidDBInstanceModifications action. You can use this information when you call ModifyDBInstance.

", + "refs": { + "DescribeValidDBInstanceModificationsResult$ValidDBInstanceModificationsMessage": null + } + }, + "ValidStorageOptions": { + "base": "

Information about valid modifications that you can make to your DB instance. Contains the result of a successful call to the DescribeValidDBInstanceModifications action.

", + "refs": { + "ValidStorageOptionsList$member": null + } + }, + "ValidStorageOptionsList": { + "base": null, + "refs": { + "ValidDBInstanceModificationsMessage$Storage": "

Valid storage options for your DB instance.

" + } + }, + "ValidUpgradeTargetList": { + "base": null, + "refs": { + "DBEngineVersion$ValidUpgradeTarget": "

A list of engine versions that this database engine version can be upgraded to.

" + } + }, + "VpcSecurityGroupIdList": { + "base": null, + "refs": { + "CreateDBClusterMessage$VpcSecurityGroupIds": "

A list of EC2 VPC security groups to associate with this DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "CreateDBInstanceMessage$VpcSecurityGroupIds": "

A list of Amazon EC2 VPC security groups to associate with this DB instance.

This setting doesn't apply to Amazon Aurora DB instances. The associated list of EC2 VPC security groups is managed by the DB cluster.

Default: The default EC2 VPC security group for the DB subnet group's VPC.

", + "CreateDBInstanceReadReplicaMessage$VpcSecurityGroupIds": "

A list of Amazon EC2 VPC security groups to associate with the read replica.

This setting doesn't apply to RDS Custom DB instances.

Default: The default EC2 VPC security group for the DB subnet group's VPC.

", + "ModifyDBClusterMessage$VpcSecurityGroupIds": "

A list of EC2 VPC security groups to associate with this DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

", + "ModifyDBInstanceMessage$VpcSecurityGroupIds": "

A list of Amazon EC2 VPC security groups to associate with this DB instance. This change is asynchronously applied as soon as possible.

This setting doesn't apply to the following DB instances:

  • Amazon Aurora (The associated list of EC2 VPC security groups is managed by the DB cluster. For more information, see ModifyDBCluster.)

  • RDS Custom

Constraints:

  • If supplied, must match existing VPC security group IDs.

", + "OptionConfiguration$VpcSecurityGroupMemberships": "

A list of VPC security group names used for this option.

", + "RestoreDBClusterFromS3Message$VpcSecurityGroupIds": "

A list of EC2 VPC security groups to associate with the restored DB cluster.

", + "RestoreDBClusterFromSnapshotMessage$VpcSecurityGroupIds": "

A list of VPC security groups that the new DB cluster will belong to.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBClusterToPointInTimeMessage$VpcSecurityGroupIds": "

A list of VPC security groups that the new DB cluster belongs to.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

", + "RestoreDBInstanceFromDBSnapshotMessage$VpcSecurityGroupIds": "

A list of EC2 VPC security groups to associate with this DB instance.

Default: The default EC2 VPC security group for the DB subnet group's VPC.

", + "RestoreDBInstanceFromS3Message$VpcSecurityGroupIds": "

A list of VPC security groups to associate with this DB instance.

", + "RestoreDBInstanceToPointInTimeMessage$VpcSecurityGroupIds": "

A list of EC2 VPC security groups to associate with this DB instance.

Default: The default EC2 VPC security group for the DB subnet group's VPC.

" + } + }, + "VpcSecurityGroupMembership": { + "base": "

This data type is used as a response element for queries on VPC security group membership.

", + "refs": { + "VpcSecurityGroupMembershipList$member": null + } + }, + "VpcSecurityGroupMembershipList": { + "base": null, + "refs": { + "DBCluster$VpcSecurityGroups": "

The list of VPC security groups that the DB cluster belongs to.

", + "DBInstance$VpcSecurityGroups": "

The list of Amazon EC2 VPC security groups that the DB instance belongs to.

", + "Option$VpcSecurityGroupMemberships": "

If the option requires access to a port, then this VPC security group allows access to the port.

" + } + }, + "WriteForwardingStatus": { + "base": null, + "refs": { + "DBCluster$GlobalWriteForwardingStatus": "

The status of write forwarding for a secondary cluster in an Aurora global database.

", + "GlobalClusterMember$GlobalWriteForwardingStatus": "

The status of write forwarding for a secondary cluster in the global cluster.

" + } + } + } +} diff --git a/src/data/rds_feature/2014-10-31/docs-2.json.php b/src/data/rds_feature/2014-10-31/docs-2.json.php new file mode 100644 index 0000000000..fa7ca66f4f --- /dev/null +++ b/src/data/rds_feature/2014-10-31/docs-2.json.php @@ -0,0 +1,3 @@ + '2.0', 'service' => 'Amazon Relational Database Service

Amazon Relational Database Service (Amazon RDS) is a web service that makes it easier to set up, operate, and scale a relational database in the cloud. It provides cost-efficient, resizeable capacity for an industry-standard relational database and manages common database administration tasks, freeing up developers to focus on what makes their applications and businesses unique.

Amazon RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, Db2, or Amazon Aurora database server. These capabilities mean that the code, applications, and tools you already use today with your existing databases work with Amazon RDS without modification. Amazon RDS automatically backs up your database and maintains the database software that powers your DB instance. Amazon RDS is flexible: you can scale your DB instance\'s compute resources and storage capacity to meet your application\'s demand. As with all Amazon Web Services, there are no up-front investments, and you pay only for the resources you use.

This interface reference for Amazon RDS contains documentation for a programming or command line interface you can use to manage Amazon RDS. Amazon RDS is asynchronous, which means that some interfaces might require techniques such as polling or callback functions to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a command is applied immediately, on the next instance reboot, or during the maintenance window. The reference structure is as follows, and we list following some related topics from the user guide.

Amazon RDS API Reference

Amazon RDS User Guide

', 'operations' => [ 'AddRoleToDBCluster' => '

Associates an Identity and Access Management (IAM) role with a DB cluster.

', 'AddRoleToDBInstance' => '

Associates an Amazon Web Services Identity and Access Management (IAM) role with a DB instance.

To add a role to a DB instance, the status of the DB instance must be available.

This command doesn\'t apply to RDS Custom.

', 'AddSourceIdentifierToSubscription' => '

Adds a source identifier to an existing RDS event notification subscription.

', 'AddTagsToResource' => '

Adds metadata tags to an Amazon RDS resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon RDS resources, or used in a Condition statement in an IAM policy for Amazon RDS.

For an overview on tagging your relational database resources, see Tagging Amazon RDS Resources or Tagging Amazon Aurora and Amazon RDS Resources.

', 'ApplyPendingMaintenanceAction' => '

Applies a pending maintenance action to a resource (for example, to a DB instance).

', 'AuthorizeDBSecurityGroupIngress' => '

Enables ingress to a DBSecurityGroup using one of two forms of authorization. First, EC2 or VPC security groups can be added to the DBSecurityGroup if the application using the database is running on EC2 or VPC instances. Second, IP ranges are available if the application accessing your database is running on the internet. Required parameters for this API are one of CIDR range, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId for non-VPC).

You can\'t authorize ingress from an EC2 security group in one Amazon Web Services Region to an Amazon RDS DB instance in another. You can\'t authorize ingress from a VPC security group in one VPC to an Amazon RDS DB instance in another.

For an overview of CIDR ranges, go to the Wikipedia Tutorial.

EC2-Classic was retired on August 15, 2022. If you haven\'t migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.

', 'BacktrackDBCluster' => '

Backtracks a DB cluster to a specific time, without creating a new DB cluster.

For more information on backtracking, see Backtracking an Aurora DB Cluster in the Amazon Aurora User Guide.

This action applies only to Aurora MySQL DB clusters.

', 'CancelExportTask' => '

Cancels an export task in progress that is exporting a snapshot or cluster to Amazon S3. Any data that has already been written to the S3 bucket isn\'t removed.

', 'CopyDBClusterParameterGroup' => '

Copies the specified DB cluster parameter group.

You can\'t copy a default DB cluster parameter group. Instead, create a new custom DB cluster parameter group, which copies the default parameters and values for the specified DB cluster parameter group family.

', 'CopyDBClusterSnapshot' => '

Copies a snapshot of a DB cluster.

To copy a DB cluster snapshot from a shared manual DB cluster snapshot, SourceDBClusterSnapshotIdentifier must be the Amazon Resource Name (ARN) of the shared DB cluster snapshot.

You can copy an encrypted DB cluster snapshot from another Amazon Web Services Region. In that case, the Amazon Web Services Region where you call the CopyDBClusterSnapshot operation is the destination Amazon Web Services Region for the encrypted DB cluster snapshot to be copied to. To copy an encrypted DB cluster snapshot from another Amazon Web Services Region, you must provide the following values:

  • KmsKeyId - The Amazon Web Services Key Management System (Amazon Web Services KMS) key identifier for the key to use to encrypt the copy of the DB cluster snapshot in the destination Amazon Web Services Region.

  • TargetDBClusterSnapshotIdentifier - The identifier for the new copy of the DB cluster snapshot in the destination Amazon Web Services Region.

  • SourceDBClusterSnapshotIdentifier - The DB cluster snapshot identifier for the encrypted DB cluster snapshot to be copied. This identifier must be in the ARN format for the source Amazon Web Services Region and is the same value as the SourceDBClusterSnapshotIdentifier in the presigned URL.

To cancel the copy operation once it is in progress, delete the target DB cluster snapshot identified by TargetDBClusterSnapshotIdentifier while that DB cluster snapshot is in "copying" status.

For more information on copying encrypted Amazon Aurora DB cluster snapshots from one Amazon Web Services Region to another, see Copying a Snapshot in the Amazon Aurora User Guide.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'CopyDBParameterGroup' => '

Copies the specified DB parameter group.

You can\'t copy a default DB parameter group. Instead, create a new custom DB parameter group, which copies the default parameters and values for the specified DB parameter group family.

', 'CopyDBSnapshot' => '

Copies the specified DB snapshot. The source DB snapshot must be in the available state.

You can copy a snapshot from one Amazon Web Services Region to another. In that case, the Amazon Web Services Region where you call the CopyDBSnapshot operation is the destination Amazon Web Services Region for the DB snapshot copy.

This command doesn\'t apply to RDS Custom.

For more information about copying snapshots, see Copying a DB Snapshot in the Amazon RDS User Guide.

', 'CopyOptionGroup' => '

Copies the specified option group.

', 'CreateBlueGreenDeployment' => '

Creates a blue/green deployment.

A blue/green deployment creates a staging environment that copies the production environment. In a blue/green deployment, the blue environment is the current production environment. The green environment is the staging environment, and it stays in sync with the current production environment.

You can make changes to the databases in the green environment without affecting production workloads. For example, you can upgrade the major or minor DB engine version, change database parameters, or make schema changes in the staging environment. You can thoroughly test changes in the green environment. When ready, you can switch over the environments to promote the green environment to be the new production environment. The switchover typically takes under a minute.

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.

', 'CreateCustomDBEngineVersion' => '

Creates a custom DB engine version (CEV).

', 'CreateDBCluster' => '

Creates a new Amazon Aurora DB cluster or Multi-AZ DB cluster.

If you create an Aurora DB cluster, the request creates an empty cluster. You must explicitly create the writer instance for your DB cluster using the CreateDBInstance operation. If you create a Multi-AZ DB cluster, the request creates a writer and two reader DB instances for you, each in a different Availability Zone.

You can use the ReplicationSourceIdentifier parameter to create an Amazon Aurora DB cluster as a read replica of another DB cluster or Amazon RDS for MySQL or PostgreSQL DB instance. For more information about Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

You can also use the ReplicationSourceIdentifier parameter to create a Multi-AZ DB cluster read replica with an RDS for MySQL or PostgreSQL DB instance as the source. For more information about Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'CreateDBClusterEndpoint' => '

Creates a new custom endpoint and associates it with an Amazon Aurora DB cluster.

This action applies only to Aurora DB clusters.

', 'CreateDBClusterParameterGroup' => '

Creates a new DB cluster parameter group.

Parameters in a DB cluster parameter group apply to all of the instances in a DB cluster.

A DB cluster parameter group is initially created with the default parameters for the database engine used by instances in the DB cluster. To provide custom values for any of the parameters, you must modify the group after creating it using ModifyDBClusterParameterGroup. Once you\'ve created a DB cluster parameter group, you need to associate it with your DB cluster using ModifyDBCluster.

When you associate a new DB cluster parameter group with a running Aurora DB cluster, reboot the DB instances in the DB cluster without failover for the new DB cluster parameter group and associated settings to take effect.

When you associate a new DB cluster parameter group with a running Multi-AZ DB cluster, reboot the DB cluster without failover for the new DB cluster parameter group and associated settings to take effect.

After you create a DB cluster parameter group, you should wait at least 5 minutes before creating your first DB cluster that uses that DB cluster parameter group as the default parameter group. This allows Amazon RDS to fully complete the create action before the DB cluster parameter group is used as the default for a new DB cluster. This is especially important for parameters that are critical when creating the default database for a DB cluster, such as the character set for the default database defined by the character_set_database parameter. You can use the Parameter Groups option of the Amazon RDS console or the DescribeDBClusterParameters operation to verify that your DB cluster parameter group has been created or modified.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'CreateDBClusterSnapshot' => '

Creates a snapshot of a DB cluster.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'CreateDBInstance' => '

Creates a new DB instance.

The new DB instance can be an RDS DB instance, or it can be a DB instance in an Aurora DB cluster. For an Aurora DB cluster, you can call this operation multiple times to add more than one DB instance to the cluster.

For more information about creating an RDS DB instance, see Creating an Amazon RDS DB instance in the Amazon RDS User Guide.

For more information about creating a DB instance in an Aurora DB cluster, see Creating an Amazon Aurora DB cluster in the Amazon Aurora User Guide.

', 'CreateDBInstanceReadReplica' => '

Creates a new DB instance that acts as a read replica for an existing source DB instance or Multi-AZ DB cluster. You can create a read replica for a DB instance running MariaDB, MySQL, Oracle, PostgreSQL, or SQL Server. You can create a read replica for a Multi-AZ DB cluster running MySQL or PostgreSQL. For more information, see Working with read replicas and Migrating from a Multi-AZ DB cluster to a DB instance using a read replica in the Amazon RDS User Guide.

Amazon RDS for Db2 supports this operation for standby replicas. To create a standby replica for a DB instance running Db2, you must set ReplicaMode to mounted.

Amazon Aurora doesn\'t support this operation. To create a DB instance for an Aurora DB cluster, use the CreateDBInstance operation.

RDS creates read replicas with backups disabled. All other attributes (including DB security groups and DB parameter groups) are inherited from the source DB instance or cluster, except as specified.

Your source DB instance or cluster must have backup retention enabled.

', 'CreateDBParameterGroup' => '

Creates a new DB parameter group.

A DB parameter group is initially created with the default parameters for the database engine used by the DB instance. To provide custom values for any of the parameters, you must modify the group after creating it using ModifyDBParameterGroup. Once you\'ve created a DB parameter group, you need to associate it with your DB instance using ModifyDBInstance. When you associate a new DB parameter group with a running DB instance, you need to reboot the DB instance without failover for the new DB parameter group and associated settings to take effect.

This command doesn\'t apply to RDS Custom.

', 'CreateDBProxy' => '

Creates a new DB proxy.

', 'CreateDBProxyEndpoint' => '

Creates a DBProxyEndpoint. Only applies to proxies that are associated with Aurora DB clusters. You can use DB proxy endpoints to specify read/write or read-only access to the DB cluster. You can also use DB proxy endpoints to access a DB proxy through a different VPC than the proxy\'s default VPC.

', 'CreateDBSecurityGroup' => '

Creates a new DB security group. DB security groups control access to a DB instance.

A DB security group controls access to EC2-Classic DB instances that are not in a VPC.

EC2-Classic was retired on August 15, 2022. If you haven\'t migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.

', 'CreateDBShardGroup' => '

Creates a new DB shard group for Aurora Limitless Database. You must enable Aurora Limitless Database to create a DB shard group.

Valid for: Aurora DB clusters only

', 'CreateDBSnapshot' => '

Creates a snapshot of a DB instance. The source DB instance must be in the available or storage-optimization state.

', 'CreateDBSubnetGroup' => '

Creates a new DB subnet group. DB subnet groups must contain at least one subnet in at least two AZs in the Amazon Web Services Region.

', 'CreateEventSubscription' => '

Creates an RDS event notification subscription. This operation requires a topic Amazon Resource Name (ARN) created by either the RDS console, the SNS console, or the SNS API. To obtain an ARN with SNS, you must create a topic in Amazon SNS and subscribe to the topic. The ARN is displayed in the SNS console.

You can specify the type of source (SourceType) that you want to be notified of and provide a list of RDS sources (SourceIds) that triggers the events. You can also 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 SourceIds = myDBInstance1, you are notified of all the db-instance events for the specified source. If you specify a SourceType but do not specify SourceIds, you receive notice of the events for that source type for all your RDS sources. If you don\'t specify either the SourceType or the SourceIds, you are notified of events generated from all RDS sources belonging to your customer account.

For more information about subscribing to an event for RDS DB engines, see Subscribing to Amazon RDS event notification in the Amazon RDS User Guide.

For more information about subscribing to an event for Aurora DB engines, see Subscribing to Amazon RDS event notification in the Amazon Aurora User Guide.

', 'CreateGlobalCluster' => '

Creates an Aurora global database spread across multiple Amazon Web Services Regions. The global database contains a single primary cluster with read-write capability, and a read-only secondary cluster that receives data from the primary cluster through high-speed replication performed by the Aurora storage subsystem.

You can create a global database that is initially empty, and then create the primary and secondary DB clusters in the global database. Or you can specify an existing Aurora cluster during the create operation, and this cluster becomes the primary cluster of the global database.

This operation applies only to Aurora DB clusters.

', 'CreateIntegration' => '

Creates a zero-ETL integration with Amazon Redshift.

', 'CreateOptionGroup' => '

Creates a new option group. You can create up to 20 option groups.

This command doesn\'t apply to RDS Custom.

', 'CreateTenantDatabase' => '

Creates a tenant database in a DB instance that uses the multi-tenant configuration. Only RDS for Oracle container database (CDB) instances are supported.

', 'DeleteBlueGreenDeployment' => '

Deletes a blue/green deployment.

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.

', 'DeleteCustomDBEngineVersion' => '

Deletes a custom engine version. To run this command, make sure you meet the following prerequisites:

  • The CEV must not be the default for RDS Custom. If it is, change the default before running this command.

  • The CEV must not be associated with an RDS Custom DB instance, RDS Custom instance snapshot, or automated backup of your RDS Custom instance.

Typically, deletion takes a few minutes.

The MediaImport service that imports files from Amazon S3 to create CEVs isn\'t integrated with Amazon Web Services CloudTrail. If you turn on data logging for Amazon RDS in CloudTrail, calls to the DeleteCustomDbEngineVersion event aren\'t logged. However, you might see calls from the API gateway that accesses your Amazon S3 bucket. These calls originate from the MediaImport service for the DeleteCustomDbEngineVersion event.

For more information, see Deleting a CEV in the Amazon RDS User Guide.

', 'DeleteDBCluster' => '

The DeleteDBCluster action deletes a previously provisioned DB cluster. When you delete a DB cluster, all automated backups for that DB cluster are deleted and can\'t be recovered. Manual DB cluster snapshots of the specified DB cluster are not deleted.

If you\'re deleting a Multi-AZ DB cluster with read replicas, all cluster members are terminated and read replicas are promoted to standalone instances.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'DeleteDBClusterAutomatedBackup' => '

Deletes automated backups using the DbClusterResourceId value of the source DB cluster or the Amazon Resource Name (ARN) of the automated backups.

', 'DeleteDBClusterEndpoint' => '

Deletes a custom endpoint and removes it from an Amazon Aurora DB cluster.

This action only applies to Aurora DB clusters.

', 'DeleteDBClusterParameterGroup' => '

Deletes a specified DB cluster parameter group. The DB cluster parameter group to be deleted can\'t be associated with any DB clusters.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'DeleteDBClusterSnapshot' => '

Deletes a DB cluster snapshot. If the snapshot is being copied, the copy operation is terminated.

The DB cluster snapshot must be in the available state to be deleted.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'DeleteDBInstance' => '

Deletes a previously provisioned DB instance. When you delete a DB instance, all automated backups for that instance are deleted and can\'t be recovered. However, manual DB snapshots of the DB instance aren\'t deleted.

If you request a final DB snapshot, the status of the Amazon RDS DB instance is deleting until the DB snapshot is created. This operation can\'t be canceled or reverted after it begins. To monitor the status of this operation, use DescribeDBInstance.

When a DB instance is in a failure state and has a status of failed, incompatible-restore, or incompatible-network, you can only delete it when you skip creation of the final snapshot with the SkipFinalSnapshot parameter.

If the specified DB instance is part of an Amazon Aurora DB cluster, you can\'t delete the DB instance if both of the following conditions are true:

  • The DB cluster is a read replica of another Amazon Aurora DB cluster.

  • The DB instance is the only instance in the DB cluster.

To delete a DB instance in this case, first use the PromoteReadReplicaDBCluster operation to promote the DB cluster so that it\'s no longer a read replica. After the promotion completes, use the DeleteDBInstance operation to delete the final instance in the DB cluster.

For RDS Custom DB instances, deleting the DB instance permanently deletes the EC2 instance and the associated EBS volumes. Make sure that you don\'t terminate or delete these resources before you delete the DB instance. Otherwise, deleting the DB instance and creation of the final snapshot might fail.

', 'DeleteDBInstanceAutomatedBackup' => '

Deletes automated backups using the DbiResourceId value of the source DB instance or the Amazon Resource Name (ARN) of the automated backups.

', 'DeleteDBParameterGroup' => '

Deletes a specified DB parameter group. The DB parameter group to be deleted can\'t be associated with any DB instances.

', 'DeleteDBProxy' => '

Deletes an existing DB proxy.

', 'DeleteDBProxyEndpoint' => '

Deletes a DBProxyEndpoint. Doing so removes the ability to access the DB proxy using the endpoint that you defined. The endpoint that you delete might have provided capabilities such as read/write or read-only operations, or using a different VPC than the DB proxy\'s default VPC.

', 'DeleteDBSecurityGroup' => '

Deletes a DB security group.

The specified DB security group must not be associated with any DB instances.

EC2-Classic was retired on August 15, 2022. If you haven\'t migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.

', 'DeleteDBShardGroup' => '

Deletes an Aurora Limitless Database DB shard group.

', 'DeleteDBSnapshot' => '

Deletes a DB snapshot. If the snapshot is being copied, the copy operation is terminated.

The DB snapshot must be in the available state to be deleted.

', 'DeleteDBSubnetGroup' => '

Deletes a DB subnet group.

The specified database subnet group must not be associated with any DB instances.

', 'DeleteEventSubscription' => '

Deletes an RDS event notification subscription.

', 'DeleteGlobalCluster' => '

Deletes a global database cluster. The primary and secondary clusters must already be detached or destroyed first.

This action only applies to Aurora DB clusters.

', 'DeleteIntegration' => '

Deletes a zero-ETL integration with Amazon Redshift.

', 'DeleteOptionGroup' => '

Deletes an existing option group.

', 'DeleteTenantDatabase' => '

Deletes a tenant database from your DB instance. This command only applies to RDS for Oracle container database (CDB) instances.

You can\'t delete a tenant database when it is the only tenant in the DB instance.

', 'DeregisterDBProxyTargets' => '

Remove the association between one or more DBProxyTarget data structures and a DBProxyTargetGroup.

', 'DescribeAccountAttributes' => '

Lists all of the attributes for a customer account. The attributes include Amazon RDS quotas for the account, such as the number of DB instances allowed. The description for a quota includes the quota name, current usage toward that quota, and the quota\'s maximum value.

This command doesn\'t take any parameters.

', 'DescribeBlueGreenDeployments' => '

Describes one or more blue/green deployments.

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.

', 'DescribeCertificates' => '

Lists the set of certificate authority (CA) certificates provided by Amazon RDS for this Amazon Web Services account.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

', 'DescribeDBClusterAutomatedBackups' => '

Displays backups for both current and deleted DB clusters. For example, use this operation to find details about automated backups for previously deleted clusters. Current clusters are returned for both the DescribeDBClusterAutomatedBackups and DescribeDBClusters operations.

All parameters are optional.

', 'DescribeDBClusterBacktracks' => '

Returns information about backtracks for a DB cluster.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

This action only applies to Aurora MySQL DB clusters.

', 'DescribeDBClusterEndpoints' => '

Returns information about endpoints for an Amazon Aurora DB cluster.

This action only applies to Aurora DB clusters.

', 'DescribeDBClusterParameterGroups' => '

Returns a list of DBClusterParameterGroup descriptions. If a DBClusterParameterGroupName parameter is specified, the list will contain only the description of the specified DB cluster parameter group.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'DescribeDBClusterParameters' => '

Returns the detailed parameter list for a particular DB cluster parameter group.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'DescribeDBClusterSnapshotAttributes' => '

Returns a list of DB cluster snapshot attribute names and values for a manual DB cluster snapshot.

When sharing snapshots with other Amazon Web Services accounts, DescribeDBClusterSnapshotAttributes returns the restore attribute and a list of IDs for the Amazon Web Services accounts that are authorized to copy or restore the manual DB cluster snapshot. If all is included in the list of values for the restore attribute, then the manual DB cluster snapshot is public and can be copied or restored by all Amazon Web Services accounts.

To add or remove access for an Amazon Web Services account to copy or restore a manual DB cluster snapshot, or to make the manual DB cluster snapshot public or private, use the ModifyDBClusterSnapshotAttribute API action.

', 'DescribeDBClusterSnapshots' => '

Returns information about DB cluster snapshots. This API action supports pagination.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'DescribeDBClusters' => '

Describes existing Amazon Aurora DB clusters and Multi-AZ DB clusters. This API supports pagination.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

This operation can also return information for Amazon Neptune DB instances and Amazon DocumentDB instances.

', 'DescribeDBEngineVersions' => '

Describes the properties of specific versions of DB engines.

', 'DescribeDBInstanceAutomatedBackups' => '

Displays backups for both current and deleted instances. For example, use this operation to find details about automated backups for previously deleted instances. Current instances with retention periods greater than zero (0) are returned for both the DescribeDBInstanceAutomatedBackups and DescribeDBInstances operations.

All parameters are optional.

', 'DescribeDBInstances' => '

Describes provisioned RDS instances. This API supports pagination.

This operation can also return information for Amazon Neptune DB instances and Amazon DocumentDB instances.

', 'DescribeDBLogFiles' => '

Returns a list of DB log files for the DB instance.

This command doesn\'t apply to RDS Custom.

', 'DescribeDBMajorEngineVersions' => '

Describes the properties of specific major versions of DB engines.

', 'DescribeDBParameterGroups' => '

Returns a list of DBParameterGroup descriptions. If a DBParameterGroupName is specified, the list will contain only the description of the specified DB parameter group.

', 'DescribeDBParameters' => '

Returns the detailed parameter list for a particular DB parameter group.

', 'DescribeDBProxies' => '

Returns information about DB proxies.

', 'DescribeDBProxyEndpoints' => '

Returns information about DB proxy endpoints.

', 'DescribeDBProxyTargetGroups' => '

Returns information about DB proxy target groups, represented by DBProxyTargetGroup data structures.

', 'DescribeDBProxyTargets' => '

Returns information about DBProxyTarget objects. This API supports pagination.

', 'DescribeDBRecommendations' => '

Describes the recommendations to resolve the issues for your DB instances, DB clusters, and DB parameter groups.

', 'DescribeDBSecurityGroups' => '

Returns a list of DBSecurityGroup descriptions. If a DBSecurityGroupName is specified, the list will contain only the descriptions of the specified DB security group.

EC2-Classic was retired on August 15, 2022. If you haven\'t migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.

', 'DescribeDBShardGroups' => '

Describes existing Aurora Limitless Database DB shard groups.

', 'DescribeDBSnapshotAttributes' => '

Returns a list of DB snapshot attribute names and values for a manual DB snapshot.

When sharing snapshots with other Amazon Web Services accounts, DescribeDBSnapshotAttributes returns the restore attribute and a list of IDs for the Amazon Web Services accounts that are authorized to copy or restore the manual DB snapshot. If all is included in the list of values for the restore attribute, then the manual DB snapshot is public and can be copied or restored by all Amazon Web Services accounts.

To add or remove access for an Amazon Web Services account to copy or restore a manual DB snapshot, or to make the manual DB snapshot public or private, use the ModifyDBSnapshotAttribute API action.

', 'DescribeDBSnapshotTenantDatabases' => '

Describes the tenant databases that exist in a DB snapshot. This command only applies to RDS for Oracle DB instances in the multi-tenant configuration.

You can use this command to inspect the tenant databases within a snapshot before restoring it. You can\'t directly interact with the tenant databases in a DB snapshot. If you restore a snapshot that was taken from DB instance using the multi-tenant configuration, you restore all its tenant databases.

', 'DescribeDBSnapshots' => '

Returns information about DB snapshots. This API action supports pagination.

', 'DescribeDBSubnetGroups' => '

Returns a list of DBSubnetGroup descriptions. If a DBSubnetGroupName is specified, the list will contain only the descriptions of the specified DBSubnetGroup.

For an overview of CIDR ranges, go to the Wikipedia Tutorial.

', 'DescribeEngineDefaultClusterParameters' => '

Returns the default engine and system parameter information for the cluster database engine.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

', 'DescribeEngineDefaultParameters' => '

Returns the default engine and system parameter information for the specified database engine.

', 'DescribeEventCategories' => '

Displays a list of categories for all event source types, or, if specified, for a specified source type. You can also see this list in the "Amazon RDS event categories and event messages" section of the Amazon RDS User Guide or the Amazon Aurora User Guide .

', 'DescribeEventSubscriptions' => '

Lists all the subscription descriptions for a customer account. The description for a subscription includes SubscriptionName, SNSTopicARN, CustomerID, SourceType, SourceID, CreationTime, and Status.

If you specify a SubscriptionName, lists the description for that subscription.

', 'DescribeEvents' => '

Returns events related to DB instances, DB clusters, DB parameter groups, DB security groups, DB snapshots, DB cluster snapshots, and RDS Proxies for the past 14 days. Events specific to a particular DB instance, DB cluster, DB parameter group, DB security group, DB snapshot, DB cluster snapshot group, or RDS Proxy can be obtained by providing the name as a parameter.

For more information on working with events, see Monitoring Amazon RDS events in the Amazon RDS User Guide and Monitoring Amazon Aurora events in the Amazon Aurora User Guide.

By default, RDS returns events that were generated in the past hour.

', 'DescribeExportTasks' => '

Returns information about a snapshot or cluster export to Amazon S3. This API operation supports pagination.

', 'DescribeGlobalClusters' => '

Returns information about Aurora global database clusters. This API supports pagination.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

This action only applies to Aurora DB clusters.

', 'DescribeIntegrations' => '

Describe one or more zero-ETL integrations with Amazon Redshift.

', 'DescribeOptionGroupOptions' => '

Describes all available options for the specified engine.

', 'DescribeOptionGroups' => '

Describes the available option groups.

', 'DescribeOrderableDBInstanceOptions' => '

Describes the orderable DB instance options for a specified DB engine.

', 'DescribePendingMaintenanceActions' => '

Returns a list of resources (for example, DB instances) that have at least one pending maintenance action.

This API follows an eventual consistency model. This means that the result of the DescribePendingMaintenanceActions command might not be immediately visible to all subsequent RDS commands. Keep this in mind when you use DescribePendingMaintenanceActions immediately after using a previous API command such as ApplyPendingMaintenanceActions.

', 'DescribeReservedDBInstances' => '

Returns information about reserved DB instances for this account, or about a specified reserved DB instance.

', 'DescribeReservedDBInstancesOfferings' => '

Lists available reserved DB instance offerings.

', 'DescribeSourceRegions' => '

Returns a list of the source Amazon Web Services Regions where the current Amazon Web Services Region can create a read replica, copy a DB snapshot from, or replicate automated backups from.

Use this operation to determine whether cross-Region features are supported between other Regions and your current Region. This operation supports pagination.

To return information about the Regions that are enabled for your account, or all Regions, use the EC2 operation DescribeRegions. For more information, see DescribeRegions in the Amazon EC2 API Reference.

', 'DescribeTenantDatabases' => '

Describes the tenant databases in a DB instance that uses the multi-tenant configuration. Only RDS for Oracle CDB instances are supported.

', 'DescribeValidDBInstanceModifications' => '

You can call DescribeValidDBInstanceModifications to learn what modifications you can make to your DB instance. You can use this information when you call ModifyDBInstance.

This command doesn\'t apply to RDS Custom.

', 'DisableHttpEndpoint' => '

Disables the HTTP endpoint for the specified DB cluster. Disabling this endpoint disables RDS Data API.

For more information, see Using RDS Data API in the Amazon Aurora User Guide.

This operation applies only to Aurora Serverless v2 and provisioned DB clusters. To disable the HTTP endpoint for Aurora Serverless v1 DB clusters, use the EnableHttpEndpoint parameter of the ModifyDBCluster operation.

', 'DownloadDBLogFilePortion' => '

Downloads all or a portion of the specified log file, up to 1 MB in size.

This command doesn\'t apply to RDS Custom.

This operation uses resources on database instances. Because of this, we recommend publishing database logs to CloudWatch and then using the GetLogEvents operation. For more information, see GetLogEvents in the Amazon CloudWatch Logs API Reference.

', 'EnableHttpEndpoint' => '

Enables the HTTP endpoint for the DB cluster. By default, the HTTP endpoint isn\'t enabled.

When enabled, this endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the Aurora DB cluster. You can also query your database from inside the RDS console with the RDS query editor.

For more information, see Using RDS Data API in the Amazon Aurora User Guide.

This operation applies only to Aurora Serverless v2 and provisioned DB clusters. To enable the HTTP endpoint for Aurora Serverless v1 DB clusters, use the EnableHttpEndpoint parameter of the ModifyDBCluster operation.

', 'FailoverDBCluster' => '

Forces a failover for a DB cluster.

For an Aurora DB cluster, failover for a DB cluster promotes one of the Aurora Replicas (read-only instances) in the DB cluster to be the primary DB instance (the cluster writer).

For a Multi-AZ DB cluster, after RDS terminates the primary DB instance, the internal monitoring system detects that the primary DB instance is unhealthy and promotes a readable standby (read-only instances) in the DB cluster to be the primary DB instance (the cluster writer). Failover times are typically less than 35 seconds.

An Amazon Aurora DB cluster automatically fails over to an Aurora Replica, if one exists, when the primary DB instance fails. A Multi-AZ DB cluster automatically fails over to a readable standby DB instance when the primary DB instance fails.

To simulate a failure of a primary instance for testing, you can force a failover. Because each instance in a DB cluster has its own endpoint address, make sure to clean up and re-establish any existing connections that use those endpoint addresses when the failover is complete.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'FailoverGlobalCluster' => '

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.

', 'ListTagsForResource' => '

Lists all tags on an Amazon RDS resource.

For an overview on tagging an Amazon RDS resource, see Tagging Amazon RDS Resources in the Amazon RDS User Guide or Tagging Amazon Aurora and Amazon RDS Resources in the Amazon Aurora User Guide.

', 'ModifyActivityStream' => '

Changes the audit policy state of a database activity stream to either locked (default) or unlocked. A locked policy is read-only, whereas an unlocked policy is read/write. If your activity stream is started and locked, you can unlock it, customize your audit policy, and then lock your activity stream. Restarting the activity stream isn\'t required. For more information, see Modifying a database activity stream in the Amazon RDS User Guide.

This operation is supported for RDS for Oracle and Microsoft SQL Server.

', 'ModifyCertificates' => '

Override the system-default Secure Sockets Layer/Transport Layer Security (SSL/TLS) certificate for Amazon RDS for new DB instances, or remove the override.

By using this operation, you can specify an RDS-approved SSL/TLS certificate for new DB instances that is different from the default certificate provided by RDS. You can also use this operation to remove the override, so that new DB instances use the default certificate provided by RDS.

You might need to override the default certificate in the following situations:

  • You already migrated your applications to support the latest certificate authority (CA) certificate, but the new CA certificate is not yet the RDS default CA certificate for the specified Amazon Web Services Region.

  • RDS has already moved to a new default CA certificate for the specified Amazon Web Services Region, but you are still in the process of supporting the new CA certificate. In this case, you temporarily need additional time to finish your application changes.

For more information about rotating your SSL/TLS certificate for RDS DB engines, see Rotating Your SSL/TLS Certificate in the Amazon RDS User Guide.

For more information about rotating your SSL/TLS certificate for Aurora DB engines, see Rotating Your SSL/TLS Certificate in the Amazon Aurora User Guide.

', 'ModifyCurrentDBClusterCapacity' => '

Set the capacity of an Aurora Serverless v1 DB cluster to a specific value.

Aurora Serverless v1 scales seamlessly based on the workload on the DB cluster. In some cases, the capacity might not scale fast enough to meet a sudden change in workload, such as a large number of new transactions. Call ModifyCurrentDBClusterCapacity to set the capacity explicitly.

After this call sets the DB cluster capacity, Aurora Serverless v1 can automatically scale the DB cluster based on the cooldown period for scaling up and the cooldown period for scaling down.

For more information about Aurora Serverless v1, see Using Amazon Aurora Serverless v1 in the Amazon Aurora User Guide.

If you call ModifyCurrentDBClusterCapacity with the default TimeoutAction, connections that prevent Aurora Serverless v1 from finding a scaling point might be dropped. For more information about scaling points, see Autoscaling for Aurora Serverless v1 in the Amazon Aurora User Guide.

This operation only applies to Aurora Serverless v1 DB clusters.

', 'ModifyCustomDBEngineVersion' => '

Modifies the status of a custom engine version (CEV). You can find CEVs to modify by calling DescribeDBEngineVersions.

The MediaImport service that imports files from Amazon S3 to create CEVs isn\'t integrated with Amazon Web Services CloudTrail. If you turn on data logging for Amazon RDS in CloudTrail, calls to the ModifyCustomDbEngineVersion event aren\'t logged. However, you might see calls from the API gateway that accesses your Amazon S3 bucket. These calls originate from the MediaImport service for the ModifyCustomDbEngineVersion event.

For more information, see Modifying CEV status in the Amazon RDS User Guide.

', 'ModifyDBCluster' => '

Modifies the settings of an Amazon Aurora DB cluster or a Multi-AZ DB cluster. You can change one or more settings by specifying these parameters and the new values in the request.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'ModifyDBClusterEndpoint' => '

Modifies the properties of an endpoint in an Amazon Aurora DB cluster.

This operation only applies to Aurora DB clusters.

', 'ModifyDBClusterParameterGroup' => '

Modifies the parameters of a DB cluster parameter group. To modify more than one parameter, submit a list of the following: ParameterName, ParameterValue, and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

After you create a DB cluster parameter group, you should wait at least 5 minutes before creating your first DB cluster that uses that DB cluster parameter group as the default parameter group. This allows Amazon RDS to fully complete the create operation before the parameter group is used as the default for a new DB cluster. This is especially important for parameters that are critical when creating the default database for a DB cluster, such as the character set for the default database defined by the character_set_database parameter. You can use the Parameter Groups option of the Amazon RDS console or the DescribeDBClusterParameters operation to verify that your DB cluster parameter group has been created or modified.

If the modified DB cluster parameter group is used by an Aurora Serverless v1 cluster, Aurora applies the update immediately. The cluster restart might interrupt your workload. In that case, your application must reopen any connections and retry any transactions that were active when the parameter changes took effect.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'ModifyDBClusterSnapshotAttribute' => '

Adds an attribute and values to, or removes an attribute and values from, a manual DB cluster snapshot.

To share a manual DB cluster snapshot with other Amazon Web Services accounts, specify restore as the AttributeName and use the ValuesToAdd parameter to add a list of IDs of the Amazon Web Services accounts that are authorized to restore the manual DB cluster snapshot. Use the value all to make the manual DB cluster snapshot public, which means that it can be copied or restored by all Amazon Web Services accounts.

Don\'t add the all value for any manual DB cluster snapshots that contain private information that you don\'t want available to all Amazon Web Services accounts.

If a manual DB cluster snapshot is encrypted, it can be shared, but only by specifying a list of authorized Amazon Web Services account IDs for the ValuesToAdd parameter. You can\'t use all as a value for that parameter in this case.

To view which Amazon Web Services accounts have access to copy or restore a manual DB cluster snapshot, or whether a manual DB cluster snapshot is public or private, use the DescribeDBClusterSnapshotAttributes API operation. The accounts are returned as values for the restore attribute.

', 'ModifyDBInstance' => '

Modifies settings for a DB instance. You can change one or more database configuration parameters by specifying these parameters and the new values in the request. To learn what modifications you can make to your DB instance, call DescribeValidDBInstanceModifications before you call ModifyDBInstance.

', 'ModifyDBParameterGroup' => '

Modifies the parameters of a DB parameter group. To modify more than one parameter, submit a list of the following: ParameterName, ParameterValue, and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

After you modify a DB parameter group, you should wait at least 5 minutes before creating your first DB instance that uses that DB parameter group as the default parameter group. This allows Amazon RDS to fully complete the modify operation before the parameter group is used as the default for a new DB instance. This is especially important for parameters that are critical when creating the default database for a DB instance, such as the character set for the default database defined by the character_set_database parameter. You can use the Parameter Groups option of the Amazon RDS console or the DescribeDBParameters command to verify that your DB parameter group has been created or modified.

', 'ModifyDBProxy' => '

Changes the settings for an existing DB proxy.

', 'ModifyDBProxyEndpoint' => '

Changes the settings for an existing DB proxy endpoint.

', 'ModifyDBProxyTargetGroup' => '

Modifies the properties of a DBProxyTargetGroup.

', 'ModifyDBRecommendation' => '

Updates the recommendation status and recommended action status for the specified recommendation.

', 'ModifyDBShardGroup' => '

Modifies the settings of an Aurora Limitless Database DB shard group. You can change one or more settings by specifying these parameters and the new values in the request.

', 'ModifyDBSnapshot' => '

Updates a manual DB snapshot with a new engine version. The snapshot can be encrypted or unencrypted, but not shared or public.

Amazon RDS supports upgrading DB snapshots for MySQL, PostgreSQL, and Oracle. This operation doesn\'t apply to RDS Custom or RDS for Db2.

', 'ModifyDBSnapshotAttribute' => '

Adds an attribute and values to, or removes an attribute and values from, a manual DB snapshot.

To share a manual DB snapshot with other Amazon Web Services accounts, specify restore as the AttributeName and use the ValuesToAdd parameter to add a list of IDs of the Amazon Web Services accounts that are authorized to restore the manual DB snapshot. Uses the value all to make the manual DB snapshot public, which means it can be copied or restored by all Amazon Web Services accounts.

Don\'t add the all value for any manual DB snapshots that contain private information that you don\'t want available to all Amazon Web Services accounts.

If the manual DB snapshot is encrypted, it can be shared, but only by specifying a list of authorized Amazon Web Services account IDs for the ValuesToAdd parameter. You can\'t use all as a value for that parameter in this case.

To view which Amazon Web Services accounts have access to copy or restore a manual DB snapshot, or whether a manual DB snapshot public or private, use the DescribeDBSnapshotAttributes API operation. The accounts are returned as values for the restore attribute.

', 'ModifyDBSubnetGroup' => '

Modifies an existing DB subnet group. DB subnet groups must contain at least one subnet in at least two AZs in the Amazon Web Services Region.

', 'ModifyEventSubscription' => '

Modifies an existing RDS event notification subscription. You can\'t modify the source identifiers using this call. To change source identifiers for a subscription, use the AddSourceIdentifierToSubscription and RemoveSourceIdentifierFromSubscription calls.

You can see a list of the event categories for a given source type (SourceType) in Events in the Amazon RDS User Guide or by using the DescribeEventCategories operation.

', 'ModifyGlobalCluster' => '

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.

', 'ModifyIntegration' => '

Modifies a zero-ETL integration with Amazon Redshift.

', 'ModifyOptionGroup' => '

Modifies an existing option group.

', 'ModifyTenantDatabase' => '

Modifies an existing tenant database in a DB instance. You can change the tenant database name or the master user password. This operation is supported only for RDS for Oracle CDB instances using the multi-tenant configuration.

', 'PromoteReadReplica' => '

Promotes a read replica DB instance to a standalone DB instance.

  • Backup duration is a function of the amount of changes to the database since the previous backup. If you plan to promote a read replica to a standalone instance, we recommend that you enable backups and complete at least one backup prior to promotion. In addition, a read replica cannot be promoted to a standalone instance when it is in the backing-up status. If you have enabled backups on your read replica, configure the automated backup window so that daily backups do not interfere with read replica promotion.

  • This command doesn\'t apply to Aurora MySQL, Aurora PostgreSQL, or RDS Custom.

', 'PromoteReadReplicaDBCluster' => '

Promotes a read replica DB cluster to a standalone DB cluster.

', 'PurchaseReservedDBInstancesOffering' => '

Purchases a reserved DB instance offering.

', 'RebootDBCluster' => '

You might need to reboot your DB cluster, usually for maintenance reasons. For example, if you make certain modifications, or if you change the DB cluster parameter group associated with the DB cluster, reboot the DB cluster for the changes to take effect.

Rebooting a DB cluster restarts the database engine service. Rebooting a DB cluster results in a momentary outage, during which the DB cluster status is set to rebooting.

Use this operation only for a non-Aurora Multi-AZ DB cluster.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'RebootDBInstance' => '

You might need to reboot your DB instance, usually for maintenance reasons. For example, if you make certain modifications, or if you change the DB parameter group associated with the DB instance, you must reboot the instance for the changes to take effect.

Rebooting a DB instance restarts the database engine service. Rebooting a DB instance results in a momentary outage, during which the DB instance status is set to rebooting.

For more information about rebooting, see Rebooting a DB Instance in the Amazon RDS User Guide.

This command doesn\'t apply to RDS Custom.

If your DB instance is part of a Multi-AZ DB cluster, you can reboot the DB cluster with the RebootDBCluster operation.

', 'RebootDBShardGroup' => '

You might need to reboot your DB shard group, usually for maintenance reasons. For example, if you make certain modifications, reboot the DB shard group for the changes to take effect.

This operation applies only to Aurora Limitless Database DBb shard groups.

', 'RegisterDBProxyTargets' => '

Associate one or more DBProxyTarget data structures with a DBProxyTargetGroup.

', 'RemoveFromGlobalCluster' => '

Detaches an Aurora secondary cluster from an Aurora global database cluster. The cluster becomes a standalone cluster with read-write capability instead of being read-only and receiving data from a primary cluster in a different Region.

This operation only applies to Aurora DB clusters.

', 'RemoveRoleFromDBCluster' => '

Removes the asssociation of an Amazon Web Services Identity and Access Management (IAM) role from a DB cluster.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'RemoveRoleFromDBInstance' => '

Disassociates an Amazon Web Services Identity and Access Management (IAM) role from a DB instance.

', 'RemoveSourceIdentifierFromSubscription' => '

Removes a source identifier from an existing RDS event notification subscription.

', 'RemoveTagsFromResource' => '

Removes metadata tags from an Amazon RDS resource.

For an overview on tagging an Amazon RDS resource, see Tagging Amazon RDS Resources in the Amazon RDS User Guide or Tagging Amazon Aurora and Amazon RDS Resources in the Amazon Aurora User Guide.

', 'ResetDBClusterParameterGroup' => '

Modifies the parameters of a DB cluster parameter group to the default value. To reset specific parameters submit a list of the following: ParameterName and ApplyMethod. To reset the entire DB cluster parameter group, specify the DBClusterParameterGroupName and ResetAllParameters parameters.

When resetting the entire group, dynamic parameters are updated immediately and static parameters are set to pending-reboot to take effect on the next DB instance restart or RebootDBInstance request. You must call RebootDBInstance for every DB instance in your DB cluster that you want the updated static parameter to apply to.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'ResetDBParameterGroup' => '

Modifies the parameters of a DB parameter group to the engine/system default value. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. When resetting the entire group, dynamic parameters are updated immediately and static parameters are set to pending-reboot to take effect on the next DB instance restart or RebootDBInstance request.

', 'RestoreDBClusterFromS3' => '

Creates an Amazon Aurora DB cluster from MySQL data stored in an Amazon S3 bucket. Amazon RDS must be authorized to access the Amazon S3 bucket and the data must be created using the Percona XtraBackup utility as described in Migrating Data from MySQL by Using an Amazon S3 Bucket in the Amazon Aurora User Guide.

This operation only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance operation to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterFromS3 operation has completed and the DB cluster is available.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

This operation only applies to Aurora DB clusters. The source DB engine must be MySQL.

', 'RestoreDBClusterFromSnapshot' => '

Creates a new DB cluster from a DB snapshot or DB cluster snapshot.

The target DB cluster is created from the source snapshot with a default configuration. If you don\'t specify a security group, the new DB cluster is associated with the default security group.

This operation only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance operation to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterFromSnapshot operation has completed and the DB cluster is available.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'RestoreDBClusterToPointInTime' => '

Restores a DB cluster to an arbitrary point in time. Users can restore to any point in time before LatestRestorableTime for up to BackupRetentionPeriod days. The target DB cluster is created from the source DB cluster with the same configuration as the original DB cluster, except that the new DB cluster is created with the default DB security group. Unless the RestoreType is set to copy-on-write, the restore may occur in a different Availability Zone (AZ) from the original DB cluster. The AZ where RDS restores the DB cluster depends on the AZs in the specified subnet group.

For Aurora, this operation only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance operation to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterToPointInTime operation has completed and the DB cluster is available.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

', 'RestoreDBInstanceFromDBSnapshot' => '

Creates a new DB instance from a DB snapshot. The target database is created from the source database restore point with most of the source\'s original configuration, including the default security group and DB parameter group. By default, the new DB instance is created as a Single-AZ deployment, except when the instance is a SQL Server instance that has an option group associated with mirroring. In this case, the instance becomes a Multi-AZ deployment, not a Single-AZ deployment.

If you want to replace your original DB instance with the new, restored DB instance, then rename your original DB instance before you call the RestoreDBInstanceFromDBSnapshot operation. RDS doesn\'t allow two DB instances with the same name. After you have renamed your original DB instance with a different identifier, then you can pass the original name of the DB instance as the DBInstanceIdentifier in the call to the RestoreDBInstanceFromDBSnapshot operation. The result is that you replace the original DB instance with the DB instance created from the snapshot.

If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier must be the ARN of the shared DB snapshot.

To restore from a DB snapshot with an unsupported engine version, you must first upgrade the engine version of the snapshot. For more information about upgrading a RDS for MySQL DB snapshot engine version, see Upgrading a MySQL DB snapshot engine version. For more information about upgrading a RDS for PostgreSQL DB snapshot engine version, Upgrading a PostgreSQL DB snapshot engine version.

This command doesn\'t apply to Aurora MySQL and Aurora PostgreSQL. For Aurora, use RestoreDBClusterFromSnapshot.

', 'RestoreDBInstanceFromS3' => '

Amazon Relational Database Service (Amazon RDS) supports importing MySQL databases by using backup files. You can create a backup of your on-premises database, store it on Amazon Simple Storage Service (Amazon S3), and then restore the backup file onto a new Amazon RDS DB instance running MySQL. For more information, see Importing Data into an Amazon RDS MySQL DB Instance in the Amazon RDS User Guide.

This operation doesn\'t apply to RDS Custom.

', 'RestoreDBInstanceToPointInTime' => '

Restores a DB instance to an arbitrary point in time. You can restore to any point in time before the time identified by the LatestRestorableTime property. You can restore to a point up to the number of days specified by the BackupRetentionPeriod property.

The target database is created with most of the original configuration, but in a system-selected Availability Zone, with the default security group, the default subnet group, and the default DB parameter group. By default, the new DB instance is created as a single-AZ deployment except when the instance is a SQL Server instance that has an option group that is associated with mirroring; in this case, the instance becomes a mirrored deployment and not a single-AZ deployment.

This operation doesn\'t apply to Aurora MySQL and Aurora PostgreSQL. For Aurora, use RestoreDBClusterToPointInTime.

', 'RevokeDBSecurityGroupIngress' => '

Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 or VPC security groups. Required parameters for this API are one of CIDRIP, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId).

EC2-Classic was retired on August 15, 2022. If you haven\'t migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.

', 'StartActivityStream' => '

Starts a database activity stream to monitor activity on the database. For more information, see Monitoring Amazon Aurora with Database Activity Streams in the Amazon Aurora User Guide or Monitoring Amazon RDS with Database Activity Streams in the Amazon RDS User Guide.

', 'StartDBCluster' => '

Starts an Amazon Aurora DB cluster that was stopped using the Amazon Web Services console, the stop-db-cluster CLI command, or the StopDBCluster operation.

For more information, see Stopping and Starting an Aurora Cluster in the Amazon Aurora User Guide.

This operation only applies to Aurora DB clusters.

', 'StartDBInstance' => '

Starts an Amazon RDS DB instance that was stopped using the Amazon Web Services console, the stop-db-instance CLI command, or the StopDBInstance operation.

For more information, see Starting an Amazon RDS DB instance That Was Previously Stopped in the Amazon RDS User Guide.

This command doesn\'t apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL. For Aurora DB clusters, use StartDBCluster instead.

', 'StartDBInstanceAutomatedBackupsReplication' => '

Enables replication of automated backups to a different Amazon Web Services Region.

This command doesn\'t apply to RDS Custom.

For more information, see Replicating Automated Backups to Another Amazon Web Services Region in the Amazon RDS User Guide.

', 'StartExportTask' => '

Starts an export of DB snapshot or DB cluster data to Amazon S3. The provided IAM role must have access to the S3 bucket.

You can\'t export snapshot data from RDS Custom DB instances. For more information, see Supported Regions and DB engines for exporting snapshots to S3 in Amazon RDS.

For more information on exporting DB snapshot data, see Exporting DB snapshot data to Amazon S3 in the Amazon RDS User Guide or Exporting DB cluster snapshot data to Amazon S3 in the Amazon Aurora User Guide.

For more information on exporting DB cluster data, see Exporting DB cluster data to Amazon S3 in the Amazon Aurora User Guide.

', 'StopActivityStream' => '

Stops a database activity stream that was started using the Amazon Web Services console, the start-activity-stream CLI command, or the StartActivityStream operation.

For more information, see Monitoring Amazon Aurora with Database Activity Streams in the Amazon Aurora User Guide or Monitoring Amazon RDS with Database Activity Streams in the Amazon RDS User Guide.

', 'StopDBCluster' => '

Stops an Amazon Aurora DB cluster. When you stop a DB cluster, Aurora retains the DB cluster\'s metadata, including its endpoints and DB parameter groups. Aurora also retains the transaction logs so you can do a point-in-time restore if necessary.

For more information, see Stopping and Starting an Aurora Cluster in the Amazon Aurora User Guide.

This operation only applies to Aurora DB clusters.

', 'StopDBInstance' => '

Stops an Amazon RDS DB instance temporarily. When you stop a DB instance, Amazon RDS retains the DB instance\'s metadata, including its endpoint, DB parameter group, and option group membership. Amazon RDS also retains the transaction logs so you can do a point-in-time restore if necessary. The instance restarts automatically after 7 days.

For more information, see Stopping an Amazon RDS DB Instance Temporarily in the Amazon RDS User Guide.

This command doesn\'t apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL. For Aurora clusters, use StopDBCluster instead.

', 'StopDBInstanceAutomatedBackupsReplication' => '

Stops automated backup replication for a DB instance.

This command doesn\'t apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL.

For more information, see Replicating Automated Backups to Another Amazon Web Services Region in the Amazon RDS User Guide.

', 'SwitchoverBlueGreenDeployment' => '

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.

', 'SwitchoverGlobalCluster' => '

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.

', 'SwitchoverReadReplica' => '

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.

', ], 'shapes' => [ 'AccountAttributesMessage' => [ 'base' => '

Data returned by the DescribeAccountAttributes action.

', 'refs' => [], ], 'AccountQuota' => [ 'base' => '

Describes a quota for an Amazon Web Services account.

The following are account quotas:

  • AllocatedStorage - The total allocated storage per account, in GiB. The used value is the total allocated storage in the account, in GiB.

  • AuthorizationsPerDBSecurityGroup - The number of ingress rules per DB security group. The used value is the highest number of ingress rules in a DB security group in the account. Other DB security groups in the account might have a lower number of ingress rules.

  • CustomEndpointsPerDBCluster - The number of custom endpoints per DB cluster. The used value is the highest number of custom endpoints in a DB clusters in the account. Other DB clusters in the account might have a lower number of custom endpoints.

  • DBClusterParameterGroups - The number of DB cluster parameter groups per account, excluding default parameter groups. The used value is the count of nondefault DB cluster parameter groups in the account.

  • DBClusterRoles - The number of associated Amazon Web Services Identity and Access Management (IAM) roles per DB cluster. The used value is the highest number of associated IAM roles for a DB cluster in the account. Other DB clusters in the account might have a lower number of associated IAM roles.

  • DBClusters - The number of DB clusters per account. The used value is the count of DB clusters in the account.

  • DBInstanceRoles - The number of associated IAM roles per DB instance. The used value is the highest number of associated IAM roles for a DB instance in the account. Other DB instances in the account might have a lower number of associated IAM roles.

  • DBInstances - The number of DB instances per account. The used value is the count of the DB instances in the account.

    Amazon RDS DB instances, Amazon Aurora DB instances, Amazon Neptune instances, and Amazon DocumentDB instances apply to this quota.

  • DBParameterGroups - The number of DB parameter groups per account, excluding default parameter groups. The used value is the count of nondefault DB parameter groups in the account.

  • DBSecurityGroups - The number of DB security groups (not VPC security groups) per account, excluding the default security group. The used value is the count of nondefault DB security groups in the account.

  • DBSubnetGroups - The number of DB subnet groups per account. The used value is the count of the DB subnet groups in the account.

  • EventSubscriptions - The number of event subscriptions per account. The used value is the count of the event subscriptions in the account.

  • ManualClusterSnapshots - The number of manual DB cluster snapshots per account. The used value is the count of the manual DB cluster snapshots in the account.

  • ManualSnapshots - The number of manual DB instance snapshots per account. The used value is the count of the manual DB instance snapshots in the account.

  • OptionGroups - The number of DB option groups per account, excluding default option groups. The used value is the count of nondefault DB option groups in the account.

  • ReadReplicasPerMaster - The number of read replicas per DB instance. The used value is the highest number of read replicas for a DB instance in the account. Other DB instances in the account might have a lower number of read replicas.

  • ReservedDBInstances - The number of reserved DB instances per account. The used value is the count of the active reserved DB instances in the account.

  • SubnetsPerDBSubnetGroup - The number of subnets per DB subnet group. The used value is highest number of subnets for a DB subnet group in the account. Other DB subnet groups in the account might have a lower number of subnets.

For more information, see Quotas for Amazon RDS in the Amazon RDS User Guide and Quotas for Amazon Aurora in the Amazon Aurora User Guide.

', 'refs' => [ 'AccountQuotaList$member' => NULL, ], ], 'AccountQuotaList' => [ 'base' => NULL, 'refs' => [ 'AccountAttributesMessage$AccountQuotas' => '

A list of AccountQuota objects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.

', ], ], 'ActivityStreamMode' => [ 'base' => NULL, 'refs' => [ 'DBCluster$ActivityStreamMode' => '

The mode of the database activity stream. Database events such as a change or access generate an activity stream event. The database session can handle these events either synchronously or asynchronously.

', 'DBInstance$ActivityStreamMode' => '

The mode of the database activity stream. Database events such as a change or access generate an activity stream event. RDS for Oracle always handles these events asynchronously.

', 'ModifyActivityStreamResponse$Mode' => '

The mode of the database activity stream.

', 'StartActivityStreamRequest$Mode' => '

Specifies the mode of the database activity stream. Database events such as a change or access generate an activity stream event. The database session can handle these events either synchronously or asynchronously.

', 'StartActivityStreamResponse$Mode' => '

The mode of the database activity stream.

', ], ], 'ActivityStreamModeList' => [ 'base' => NULL, 'refs' => [ 'OrderableDBInstanceOption$SupportedActivityStreamModes' => '

The list of supported modes for Database Activity Streams. Aurora PostgreSQL returns the value [sync, async]. Aurora MySQL and RDS for Oracle return [async] only. If Database Activity Streams isn\'t supported, the return value is an empty list.

', ], ], 'ActivityStreamPolicyStatus' => [ 'base' => NULL, 'refs' => [ 'ModifyActivityStreamResponse$PolicyStatus' => '

The status of the modification to the policy state of the database activity stream.

', ], ], 'ActivityStreamStatus' => [ 'base' => NULL, 'refs' => [ 'DBCluster$ActivityStreamStatus' => '

The status of the database activity stream.

', 'DBInstance$ActivityStreamStatus' => '

The status of the database activity stream.

', 'ModifyActivityStreamResponse$Status' => '

The status of the modification to the database activity stream.

', 'StartActivityStreamResponse$Status' => '

The status of the database activity stream.

', 'StopActivityStreamResponse$Status' => '

The status of the database activity stream.

', ], ], 'AddRoleToDBClusterMessage' => [ 'base' => NULL, 'refs' => [], ], 'AddRoleToDBInstanceMessage' => [ 'base' => NULL, 'refs' => [], ], 'AddSourceIdentifierToSubscriptionMessage' => [ 'base' => '

', 'refs' => [], ], 'AddSourceIdentifierToSubscriptionResult' => [ 'base' => NULL, 'refs' => [], ], 'AddTagsToResourceMessage' => [ 'base' => '

', 'refs' => [], ], 'ApplyMethod' => [ 'base' => NULL, 'refs' => [ 'Parameter$ApplyMethod' => '

Indicates when to apply parameter updates.

', ], ], 'ApplyPendingMaintenanceActionMessage' => [ 'base' => '

', 'refs' => [], ], 'ApplyPendingMaintenanceActionResult' => [ 'base' => NULL, 'refs' => [], ], 'Arn' => [ 'base' => NULL, 'refs' => [ 'CreateDBProxyRequest$RoleArn' => '

The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access secrets in Amazon Web Services Secrets Manager.

', 'CreateIntegrationMessage$TargetArn' => '

The ARN of the Redshift data warehouse to use as the target for replication.

', 'Integration$TargetArn' => '

The ARN of the Redshift data warehouse used as the target for replication.

', 'ModifyDBProxyRequest$RoleArn' => '

The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access secrets in Amazon Web Services Secrets Manager.

', 'UserAuthConfig$SecretArn' => '

The Amazon Resource Name (ARN) representing the secret that the proxy uses to authenticate to the RDS DB instance or Aurora DB cluster. These secrets are stored within Amazon Secrets Manager.

', ], ], 'AttributeValueList' => [ 'base' => NULL, 'refs' => [ 'DBClusterSnapshotAttribute$AttributeValues' => '

The value(s) for the manual DB cluster snapshot attribute.

If the AttributeName field is set to restore, then this element returns a list of IDs of the Amazon Web Services accounts that are authorized to copy or restore the manual DB cluster snapshot. If a value of all is in the list, then the manual DB cluster snapshot is public and available for any Amazon Web Services account to copy or restore.

', 'DBSnapshotAttribute$AttributeValues' => '

The value or values for the manual DB snapshot attribute.

If the AttributeName field is set to restore, then this element returns a list of IDs of the Amazon Web Services accounts that are authorized to copy or restore the manual DB snapshot. If a value of all is in the list, then the manual DB snapshot is public and available for any Amazon Web Services account to copy or restore.

', 'ModifyDBClusterSnapshotAttributeMessage$ValuesToAdd' => '

A list of DB cluster snapshot attributes to add to the attribute specified by AttributeName.

To authorize other Amazon Web Services accounts to copy or restore a manual DB cluster snapshot, set this list to include one or more Amazon Web Services account IDs, or all to make the manual DB cluster snapshot restorable by any Amazon Web Services account. Do not add the all value for any manual DB cluster snapshots that contain private information that you don\'t want available to all Amazon Web Services accounts.

', 'ModifyDBClusterSnapshotAttributeMessage$ValuesToRemove' => '

A list of DB cluster snapshot attributes to remove from the attribute specified by AttributeName.

To remove authorization for other Amazon Web Services accounts to copy or restore a manual DB cluster snapshot, set this list to include one or more Amazon Web Services account identifiers, or all to remove authorization for any Amazon Web Services account to copy or restore the DB cluster snapshot. If you specify all, an Amazon Web Services account whose account ID is explicitly added to the restore attribute can still copy or restore a manual DB cluster snapshot.

', 'ModifyDBSnapshotAttributeMessage$ValuesToAdd' => '

A list of DB snapshot attributes to add to the attribute specified by AttributeName.

To authorize other Amazon Web Services accounts to copy or restore a manual snapshot, set this list to include one or more Amazon Web Services account IDs, or all to make the manual DB snapshot restorable by any Amazon Web Services account. Do not add the all value for any manual DB snapshots that contain private information that you don\'t want available to all Amazon Web Services accounts.

', 'ModifyDBSnapshotAttributeMessage$ValuesToRemove' => '

A list of DB snapshot attributes to remove from the attribute specified by AttributeName.

To remove authorization for other Amazon Web Services accounts to copy or restore a manual snapshot, set this list to include one or more Amazon Web Services account identifiers, or all to remove authorization for any Amazon Web Services account to copy or restore the DB snapshot. If you specify all, an Amazon Web Services account whose account ID is explicitly added to the restore attribute can still copy or restore the manual DB snapshot.

', ], ], 'AuditPolicyState' => [ 'base' => NULL, 'refs' => [ 'ModifyActivityStreamRequest$AuditPolicyState' => '

The audit policy state. When a policy is unlocked, it is read/write. When it is locked, it is read-only. You can edit your audit policy only when the activity stream is unlocked or stopped.

', ], ], 'AuthScheme' => [ 'base' => NULL, 'refs' => [ 'UserAuthConfig$AuthScheme' => '

The type of authentication that the proxy uses for connections from the proxy to the underlying database.

', 'UserAuthConfigInfo$AuthScheme' => '

The type of authentication that the proxy uses for connections from the proxy to the underlying database.

', ], ], 'AuthUserName' => [ 'base' => NULL, 'refs' => [ 'UserAuthConfig$UserName' => '

The name of the database user to which the proxy connects.

', ], ], 'AuthorizationAlreadyExistsFault' => [ 'base' => '

The specified CIDR IP range or Amazon EC2 security group is already authorized for the specified DB security group.

', 'refs' => [], ], 'AuthorizationNotFoundFault' => [ 'base' => '

The specified CIDR IP range or Amazon EC2 security group might not be authorized for the specified DB security group.

Or, RDS might not be authorized to perform necessary actions using IAM on your behalf.

', 'refs' => [], ], 'AuthorizationQuotaExceededFault' => [ 'base' => '

The DB security group authorization quota has been reached.

', 'refs' => [], ], 'AuthorizeDBSecurityGroupIngressMessage' => [ 'base' => '

', 'refs' => [], ], 'AuthorizeDBSecurityGroupIngressResult' => [ 'base' => NULL, 'refs' => [], ], 'AutomationMode' => [ 'base' => NULL, 'refs' => [ 'DBInstance$AutomationMode' => '

The automation mode of the RDS Custom DB instance: full or all paused. If full, the DB instance automates monitoring and instance recovery. If all paused, the instance pauses automation for the duration set by --resume-full-automation-mode-minutes.

', 'ModifyDBInstanceMessage$AutomationMode' => '

The automation mode of the RDS Custom DB instance. If full, the DB instance automates monitoring and instance recovery. If all paused, the instance pauses automation for the duration set by ResumeFullAutomationModeMinutes.

', 'PendingModifiedValues$AutomationMode' => '

The automation mode of the RDS Custom DB instance: full or all-paused. If full, the DB instance automates monitoring and instance recovery. If all-paused, the instance pauses automation for the duration set by --resume-full-automation-mode-minutes.

', ], ], 'AvailabilityZone' => [ 'base' => '

Contains Availability Zone information.

This data type is used as an element in the OrderableDBInstanceOption data type.

', 'refs' => [ 'AvailabilityZoneList$member' => NULL, 'Subnet$SubnetAvailabilityZone' => NULL, ], ], 'AvailabilityZoneList' => [ 'base' => NULL, 'refs' => [ 'OrderableDBInstanceOption$AvailabilityZones' => '

A list of Availability Zones for a DB instance.

', ], ], 'AvailabilityZones' => [ 'base' => NULL, 'refs' => [ 'CreateDBClusterMessage$AvailabilityZones' => '

A list of Availability Zones (AZs) where you specifically want to create DB instances in the DB cluster.

For information on AZs, see Availability Zones in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters only

Constraints:

  • Can\'t specify more than three AZs.

', 'DBCluster$AvailabilityZones' => '

The list of Availability Zones (AZs) where instances in the DB cluster can be created.

', 'DBClusterAutomatedBackup$AvailabilityZones' => '

The Availability Zones where instances in the DB cluster can be created. For information on Amazon Web Services Regions and Availability Zones, see Regions and Availability Zones.

', 'DBClusterSnapshot$AvailabilityZones' => '

The list of Availability Zones (AZs) where instances in the DB cluster snapshot can be restored.

', 'RestoreDBClusterFromS3Message$AvailabilityZones' => '

A list of Availability Zones (AZs) where instances in the restored DB cluster can be created.

', 'RestoreDBClusterFromSnapshotMessage$AvailabilityZones' => '

Provides the list of Availability Zones (AZs) where instances in the restored DB cluster can be created.

Valid for: Aurora DB clusters only

', ], ], 'AvailableProcessorFeature' => [ 'base' => '

Contains the available processor feature information for the DB instance class of a DB instance.

For more information, see Configuring the Processor of the DB Instance Class in the Amazon RDS User Guide.

', 'refs' => [ 'AvailableProcessorFeatureList$member' => NULL, ], ], 'AvailableProcessorFeatureList' => [ 'base' => NULL, 'refs' => [ 'OrderableDBInstanceOption$AvailableProcessorFeatures' => '

A list of the available processor features for the DB instance class of a DB instance.

', 'ValidDBInstanceModificationsMessage$ValidProcessorFeatures' => '

Valid processor features for your DB instance.

', ], ], 'AwsBackupRecoveryPointArn' => [ 'base' => NULL, 'refs' => [ 'ModifyDBInstanceMessage$AwsBackupRecoveryPointArn' => '

The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services Backup.

This setting doesn\'t apply to RDS Custom DB instances.

', ], ], 'BacktrackDBClusterMessage' => [ 'base' => '

', 'refs' => [], ], 'BackupPolicyNotFoundFault' => [ 'base' => NULL, 'refs' => [], ], 'BlueGreenDeployment' => [ 'base' => '

Details about a blue/green deployment.

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.

', 'refs' => [ 'BlueGreenDeploymentList$member' => NULL, 'CreateBlueGreenDeploymentResponse$BlueGreenDeployment' => NULL, 'DeleteBlueGreenDeploymentResponse$BlueGreenDeployment' => NULL, 'SwitchoverBlueGreenDeploymentResponse$BlueGreenDeployment' => NULL, ], ], 'BlueGreenDeploymentAlreadyExistsFault' => [ 'base' => '

A blue/green deployment with the specified name already exists.

', 'refs' => [], ], 'BlueGreenDeploymentIdentifier' => [ 'base' => NULL, 'refs' => [ 'BlueGreenDeployment$BlueGreenDeploymentIdentifier' => '

The unique identifier of the blue/green deployment.

', 'DeleteBlueGreenDeploymentRequest$BlueGreenDeploymentIdentifier' => '

The unique identifier of the blue/green deployment to delete. This parameter isn\'t case-sensitive.

Constraints:

  • Must match an existing blue/green deployment identifier.

', 'DescribeBlueGreenDeploymentsRequest$BlueGreenDeploymentIdentifier' => '

The blue/green deployment identifier. If you specify this parameter, the response only includes information about the specific blue/green deployment. This parameter isn\'t case-sensitive.

Constraints:

  • Must match an existing blue/green deployment identifier.

', 'SwitchoverBlueGreenDeploymentRequest$BlueGreenDeploymentIdentifier' => '

The resource ID of the blue/green deployment.

Constraints:

  • Must match an existing blue/green deployment resource ID.

', ], ], 'BlueGreenDeploymentList' => [ 'base' => NULL, 'refs' => [ 'DescribeBlueGreenDeploymentsResponse$BlueGreenDeployments' => '

A list of blue/green deployments in the current account and Amazon Web Services Region.

', ], ], 'BlueGreenDeploymentName' => [ 'base' => NULL, 'refs' => [ 'BlueGreenDeployment$BlueGreenDeploymentName' => '

The user-supplied name of the blue/green deployment.

', 'CreateBlueGreenDeploymentRequest$BlueGreenDeploymentName' => '

The name of the blue/green deployment.

Constraints:

  • Can\'t be the same as an existing blue/green deployment name in the same account and Amazon Web Services Region.

', ], ], 'BlueGreenDeploymentNotFoundFault' => [ 'base' => '

BlueGreenDeploymentIdentifier doesn\'t refer to an existing blue/green deployment.

', 'refs' => [], ], 'BlueGreenDeploymentStatus' => [ 'base' => NULL, 'refs' => [ 'BlueGreenDeployment$Status' => '

The status of the blue/green deployment.

Valid Values:

  • PROVISIONING - Resources are being created in the green environment.

  • AVAILABLE - Resources are available in the green environment.

  • SWITCHOVER_IN_PROGRESS - The deployment is being switched from the blue environment to the green environment.

  • SWITCHOVER_COMPLETED - Switchover from the blue environment to the green environment is complete.

  • INVALID_CONFIGURATION - Resources in the green environment are invalid, so switchover isn\'t possible.

  • SWITCHOVER_FAILED - Switchover was attempted but failed.

  • DELETING - The blue/green deployment is being deleted.

', ], ], 'BlueGreenDeploymentStatusDetails' => [ 'base' => NULL, 'refs' => [ 'BlueGreenDeployment$StatusDetails' => '

Additional information about the status of the blue/green deployment.

', ], ], 'BlueGreenDeploymentTask' => [ 'base' => '

Details about a task for a blue/green deployment.

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.

', 'refs' => [ 'BlueGreenDeploymentTaskList$member' => NULL, ], ], 'BlueGreenDeploymentTaskList' => [ 'base' => NULL, 'refs' => [ 'BlueGreenDeployment$Tasks' => '

Either tasks to be performed or tasks that have been completed on the target database before switchover.

', ], ], 'BlueGreenDeploymentTaskName' => [ 'base' => NULL, 'refs' => [ 'BlueGreenDeploymentTask$Name' => '

The name of the blue/green deployment task.

', ], ], 'BlueGreenDeploymentTaskStatus' => [ 'base' => NULL, 'refs' => [ 'BlueGreenDeploymentTask$Status' => '

The status of the blue/green deployment task.

Valid Values:

  • PENDING - The resource is being prepared for deployment.

  • IN_PROGRESS - The resource is being deployed.

  • COMPLETED - The resource has been deployed.

  • FAILED - Deployment of the resource failed.

', ], ], 'Boolean' => [ 'base' => NULL, 'refs' => [ 'CreateDBProxyRequest$RequireTLS' => '

Specifies whether Transport Layer Security (TLS) encryption is required for connections to the proxy. By enabling this setting, you can enforce encrypted TLS connections to the proxy.

', 'CreateDBProxyRequest$DebugLogging' => '

Specifies whether the proxy includes detailed information about SQL statements in its logs. This information helps you to debug issues involving SQL behavior or the performance and scalability of the proxy connections. The debug information includes the text of SQL statements that you submit through the proxy. Thus, only enable this setting when needed for debugging, and only when you have security measures in place to safeguard any sensitive information that appears in the logs.

', 'DBCluster$StorageEncrypted' => '

Indicates whether the DB cluster is encrypted.

', 'DBCluster$AutoMinorVersionUpgrade' => '

Indicates whether minor version patches are applied automatically.

This setting is for Aurora DB clusters and Multi-AZ DB clusters.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

', 'DBClusterAutomatedBackup$IAMDatabaseAuthenticationEnabled' => '

Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

', 'DBClusterAutomatedBackup$StorageEncrypted' => '

Indicates whether the source DB cluster is encrypted.

', 'DBClusterMember$IsClusterWriter' => '

Indicates whether the cluster member is the primary DB instance for the DB cluster.

', 'DBClusterSnapshot$StorageEncrypted' => '

Indicates whether the DB cluster snapshot is encrypted.

', 'DBClusterSnapshot$IAMDatabaseAuthenticationEnabled' => '

Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

', 'DBClusterStatusInfo$Normal' => '

Reserved for future use.

', 'DBEngineVersion$SupportsLogExportsToCloudwatchLogs' => '

Indicates whether the engine version supports exporting the log types specified by ExportableLogTypes to CloudWatch Logs.

', 'DBEngineVersion$SupportsReadReplica' => '

Indicates whether the database engine version supports read replicas.

', 'DBEngineVersion$SupportsParallelQuery' => '

Indicates whether you can use Aurora parallel query with a specific DB engine version.

', 'DBEngineVersion$SupportsGlobalDatabases' => '

Indicates whether you can use Aurora global databases with a specific DB engine version.

', 'DBEngineVersion$SupportsBabelfish' => '

Indicates whether the engine version supports Babelfish for Aurora PostgreSQL.

', 'DBEngineVersion$SupportsLimitlessDatabase' => '

Indicates whether the DB engine version supports Aurora Limitless Database.

', 'DBEngineVersion$SupportsIntegrations' => '

Indicates whether the DB engine version supports zero-ETL integrations with Amazon Redshift.

', 'DBInstance$MultiAZ' => '

Indicates whether the DB instance is a Multi-AZ deployment. This setting doesn\'t apply to RDS Custom DB instances.

', 'DBInstance$AutoMinorVersionUpgrade' => '

Indicates whether minor version patches are applied automatically.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

', 'DBInstance$PubliclyAccessible' => '

Indicates whether the DB instance is publicly accessible.

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 cluster is ultimately controlled by the security group it uses. That public access isn\'t permitted if the security group assigned to the DB cluster doesn\'t permit it.

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.

For more information, see CreateDBInstance.

', 'DBInstance$StorageEncrypted' => '

Indicates whether the DB instance is encrypted.

', 'DBInstance$CopyTagsToSnapshot' => '

Indicates whether tags are copied from the DB instance to snapshots of the DB instance.

This setting doesn\'t apply to Amazon Aurora DB instances. Copying tags to snapshots is managed by the DB cluster. Setting this value for an Aurora DB instance has no effect on the DB cluster setting. For more information, see DBCluster.

', 'DBInstance$IAMDatabaseAuthenticationEnabled' => '

Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled for the DB instance.

For a list of engine versions that support IAM database authentication, see IAM database authentication in the Amazon RDS User Guide and IAM database authentication in Aurora in the Amazon Aurora User Guide.

', 'DBInstance$DeletionProtection' => '

Indicates whether the DB instance has deletion protection enabled. The database can\'t be deleted when deletion protection is enabled. For more information, see Deleting a DB Instance.

', 'DBInstance$DedicatedLogVolume' => '

Indicates whether the DB instance has a dedicated log volume (DLV) enabled.

', 'DBInstanceAutomatedBackup$Encrypted' => '

Indicates whether the automated backup is encrypted.

', 'DBInstanceAutomatedBackup$IAMDatabaseAuthenticationEnabled' => '

True if mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.

', 'DBInstanceStatusInfo$Normal' => '

Indicates whether the instance is operating normally (TRUE) or is in an error state (FALSE).

', 'DBProxy$RequireTLS' => '

Indicates whether Transport Layer Security (TLS) encryption is required for connections to the proxy.

', 'DBProxy$DebugLogging' => '

Indicates whether the proxy includes detailed information about SQL statements in its logs. This information helps you to debug issues involving SQL behavior or the performance and scalability of the proxy connections. The debug information includes the text of SQL statements that you submit through the proxy. Thus, only enable this setting when needed for debugging, and only when you have security measures in place to safeguard any sensitive information that appears in the logs.

', 'DBProxyEndpoint$IsDefault' => '

Indicates whether this endpoint is the default endpoint for the associated DB proxy. Default DB proxy endpoints always have read/write capability. Other endpoints that you associate with the DB proxy can be either read/write or read-only.

', 'DBProxyTargetGroup$IsDefault' => '

Indicates whether this target group is the first one used for connection requests by the associated proxy. Because each proxy is currently associated with a single target group, currently this setting is always true.

', 'DBSnapshot$Encrypted' => '

Indicates whether the DB snapshot is encrypted.

', 'DBSnapshot$IAMDatabaseAuthenticationEnabled' => '

Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

', 'DBSnapshot$DedicatedLogVolume' => '

Indicates whether the DB instance has a dedicated log volume (DLV) enabled.

', 'DeleteDBClusterMessage$SkipFinalSnapshot' => '

Specifies whether to skip the creation of a final DB cluster snapshot before RDS deletes the DB cluster. If you set this value to true, RDS doesn\'t create a final DB cluster snapshot. If you set this value to false or don\'t specify it, RDS creates a DB cluster snapshot before it deletes the DB cluster. By default, this parameter is disabled, so RDS creates a final DB cluster snapshot.

If SkipFinalSnapshot is disabled, you must specify a value for the FinalDBSnapshotIdentifier parameter.

', 'DeleteDBInstanceMessage$SkipFinalSnapshot' => '

Specifies whether to skip the creation of a final DB snapshot before deleting the instance. If you enable this parameter, RDS doesn\'t create a DB snapshot. If you don\'t enable this parameter, RDS creates a DB snapshot before the DB instance is deleted. By default, skip isn\'t enabled, and the DB snapshot is created.

If you don\'t enable this parameter, you must specify the FinalDBSnapshotIdentifier parameter.

When a DB instance is in a failure state and has a status of failed, incompatible-restore, or incompatible-network, RDS can delete the instance only if you enable this parameter.

If you delete a read replica or an RDS Custom instance, you must enable this setting.

This setting is required for RDS Custom.

', 'DeleteTenantDatabaseMessage$SkipFinalSnapshot' => '

Specifies whether to skip the creation of a final DB snapshot before removing the tenant database from your DB instance. If you enable this parameter, RDS doesn\'t create a DB snapshot. If you don\'t enable this parameter, RDS creates a DB snapshot before it deletes the tenant database. By default, RDS doesn\'t skip the final snapshot. If you don\'t enable this parameter, you must specify the FinalDBSnapshotIdentifier parameter.

', 'DescribeDBClusterSnapshotsMessage$IncludeShared' => '

Specifies whether to include shared manual DB cluster snapshots from other Amazon Web Services accounts that this Amazon Web Services account has been given permission to copy or restore. By default, these snapshots are not included.

You can give an Amazon Web Services account permission to restore a manual DB cluster snapshot from another Amazon Web Services account by the ModifyDBClusterSnapshotAttribute API action.

', 'DescribeDBClusterSnapshotsMessage$IncludePublic' => '

Specifies whether to include manual DB cluster snapshots that are public and can be copied or restored by any Amazon Web Services account. By default, the public snapshots are not included.

You can share a manual DB cluster snapshot as public by using the ModifyDBClusterSnapshotAttribute API action.

', 'DescribeDBClustersMessage$IncludeShared' => '

Specifies whether the output includes information about clusters shared from other Amazon Web Services accounts.

', 'DescribeDBEngineVersionsMessage$DefaultOnly' => '

Specifies whether to return only the default version of the specified engine or the engine and major version combination.

', 'DescribeDBSnapshotsMessage$IncludeShared' => '

Specifies whether to include shared manual DB cluster snapshots from other Amazon Web Services accounts that this Amazon Web Services account has been given permission to copy or restore. By default, these snapshots are not included.

You can give an Amazon Web Services account permission to restore a manual DB snapshot from another Amazon Web Services account by using the ModifyDBSnapshotAttribute API action.

This setting doesn\'t apply to RDS Custom.

', 'DescribeDBSnapshotsMessage$IncludePublic' => '

Specifies whether to include manual DB cluster snapshots that are public and can be copied or restored by any Amazon Web Services account. By default, the public snapshots are not included.

You can share a manual DB snapshot as public by using the ModifyDBSnapshotAttribute API.

This setting doesn\'t apply to RDS Custom.

', 'DisableHttpEndpointResponse$HttpEndpointEnabled' => '

Indicates whether the HTTP endpoint is enabled or disabled for the DB cluster.

', 'DownloadDBLogFilePortionDetails$AdditionalDataPending' => '

A Boolean value that, if true, indicates there is more data to be downloaded.

', 'EnableHttpEndpointResponse$HttpEndpointEnabled' => '

Indicates whether the HTTP endpoint is enabled or disabled for the DB cluster.

', 'EventSubscription$Enabled' => '

Specifies whether the subscription is enabled. True indicates the subscription is enabled.

', 'FailoverState$IsDataLossAllowed' => '

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.

', 'GlobalClusterMember$IsWriter' => '

Indicates whether the Aurora DB cluster is the primary cluster (that is, has read-write capability) for the global cluster with which it is associated.

', 'ModifyDBClusterMessage$ApplyImmediately' => '

Specifies whether the modifications in this request are asynchronously applied as soon as possible, regardless of the PreferredMaintenanceWindow setting for the DB cluster. If this parameter is disabled, changes to the DB cluster are applied during the next maintenance window.

Most modifications can be applied immediately or during the next scheduled maintenance window. Some modifications, such as turning on deletion protection and changing the master password, are applied immediately—regardless of when you choose to apply them.

By default, this parameter is disabled.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'ModifyDBClusterMessage$AllowMajorVersionUpgrade' => '

Specifies whether major version upgrades are allowed.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • You must allow major version upgrades when specifying a value for the EngineVersion parameter that is a different major version than the DB cluster\'s current version.

', 'ModifyDBClusterMessage$AllowEngineModeChange' => '

Specifies whether engine mode changes from serverless to provisioned are allowed.

Valid for Cluster Type: Aurora Serverless v1 DB clusters only

Constraints:

  • You must allow engine mode changes when specifying a different value for the EngineMode parameter from the DB cluster\'s current engine mode.

', 'ModifyDBInstanceMessage$ApplyImmediately' => '

Specifies whether the modifications in this request and any pending modifications are asynchronously applied as soon as possible, regardless of the PreferredMaintenanceWindow setting for the DB instance. By default, this parameter is disabled.

If this parameter is disabled, changes to the DB instance are applied during the next maintenance window. Some parameter changes can cause an outage and are applied on the next call to RebootDBInstance, or the next failure reboot. Review the table of parameters in Modifying a DB Instance in the Amazon RDS User Guide to see the impact of enabling or disabling ApplyImmediately for each modified parameter and to determine when the changes are applied.

', 'ModifyDBInstanceMessage$AllowMajorVersionUpgrade' => '

Specifies whether major version upgrades are allowed. Changing this parameter doesn\'t result in an outage and the change is asynchronously applied as soon as possible.

This setting doesn\'t apply to RDS Custom DB instances.

Constraints:

  • Major version upgrades must be allowed when specifying a value for the EngineVersion parameter that\'s a different major version than the DB instance\'s current version.

', 'ModifyOptionGroupMessage$ApplyImmediately' => '

Specifies whether to apply the change immediately or during the next maintenance window for each instance associated with the option group.

', 'Option$Persistent' => '

Indicates whether this option is persistent.

', 'Option$Permanent' => '

Indicates whether this option is permanent.

', 'OptionGroup$AllowsVpcAndNonVpcInstanceMemberships' => '

Indicates whether this option group can be applied to both VPC and non-VPC instances. The value true indicates the option group can be applied to both VPC and non-VPC instances.

', 'OptionGroupOption$PortRequired' => '

Indicates whether the option requires a port.

', 'OptionGroupOption$Persistent' => '

Persistent options can\'t be removed from an option group while DB instances are associated with the option group. If you disassociate all DB instances from the option group, your can remove the persistent option from the option group.

', 'OptionGroupOption$Permanent' => '

Permanent options can never be removed from an option group. An option group containing a permanent option can\'t be removed from a DB instance.

', 'OptionGroupOption$RequiresAutoMinorEngineVersionUpgrade' => '

If true, you must enable the Auto Minor Version Upgrade setting for your DB instance before you can use this option. You can enable Auto Minor Version Upgrade when you first create your DB instance, or by modifying your DB instance later.

', 'OptionGroupOption$VpcOnly' => '

If true, you can only use this option with a DB instance that is in a VPC.

', 'OptionGroupOptionSetting$IsModifiable' => '

Indicates whether this option group option can be changed from the default value.

', 'OptionGroupOptionSetting$IsRequired' => '

Indicates whether a value must be specified for this option setting of the option group option.

', 'OptionSetting$IsModifiable' => '

Indicates whether the option setting can be modified from the default.

', 'OptionSetting$IsCollection' => '

Indicates whether the option setting is part of a collection.

', 'OptionVersion$IsDefault' => '

Indicates whether the version is the default version of the option.

', 'OrderableDBInstanceOption$MultiAZCapable' => '

Indicates whether a DB instance is Multi-AZ capable.

', 'OrderableDBInstanceOption$ReadReplicaCapable' => '

Indicates whether a DB instance can have a read replica.

', 'OrderableDBInstanceOption$Vpc' => '

Indicates whether a DB instance is in a VPC.

', 'OrderableDBInstanceOption$SupportsStorageEncryption' => '

Indicates whether a DB instance supports encrypted storage.

', 'OrderableDBInstanceOption$SupportsIops' => '

Indicates whether a DB instance supports provisioned IOPS.

', 'OrderableDBInstanceOption$SupportsStorageThroughput' => '

Indicates whether a DB instance supports storage throughput.

', 'OrderableDBInstanceOption$SupportsEnhancedMonitoring' => '

Indicates whether a DB instance supports Enhanced Monitoring at intervals from 1 to 60 seconds.

', 'OrderableDBInstanceOption$SupportsIAMDatabaseAuthentication' => '

Indicates whether a DB instance supports IAM database authentication.

', 'OrderableDBInstanceOption$SupportsPerformanceInsights' => '

Indicates whether a DB instance supports Performance Insights.

', 'OrderableDBInstanceOption$OutpostCapable' => '

Indicates whether a DB instance supports RDS on Outposts.

For more information about RDS on Outposts, see Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

', 'OrderableDBInstanceOption$SupportsGlobalDatabases' => '

Indicates whether you can use Aurora global databases with a specific combination of other DB engine attributes.

', 'OrderableDBInstanceOption$SupportsClusters' => '

Indicates whether DB instances can be configured as a Multi-AZ DB cluster.

For more information on Multi-AZ DB clusters, see Multi-AZ deployments with two readable standby DB instances in the Amazon RDS User Guide.

', 'OrderableDBInstanceOption$SupportsDedicatedLogVolume' => '

Indicates whether a DB instance supports using a dedicated log volume (DLV).

', 'Parameter$IsModifiable' => '

Indicates whether (true) or not (false) the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.

', 'ReservedDBInstance$MultiAZ' => '

Indicates whether the reservation applies to Multi-AZ deployments.

', 'ReservedDBInstancesOffering$MultiAZ' => '

Indicates whether the offering applies to Multi-AZ deployments.

', 'ResetDBClusterParameterGroupMessage$ResetAllParameters' => '

Specifies whether to reset all parameters in the DB cluster parameter group to their default values. You can\'t use this parameter if there is a list of parameter names specified for the Parameters parameter.

', 'ResetDBParameterGroupMessage$ResetAllParameters' => '

Specifies whether to reset all parameters in the DB parameter group to default values. By default, all parameters in the DB parameter group are reset to default values.

', 'RestoreDBClusterToPointInTimeMessage$UseLatestRestorableTime' => '

Specifies whether to restore the DB cluster to the latest restorable backup time. By default, the DB cluster isn\'t restored to the latest restorable backup time.

Constraints: Can\'t be specified if RestoreToTime parameter is provided.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBInstanceToPointInTimeMessage$UseLatestRestorableTime' => '

Specifies whether the DB instance is restored from the latest backup time. By default, the DB instance isn\'t restored from the latest backup time.

Constraints:

  • Can\'t be specified if the RestoreTime parameter is provided.

', 'SourceRegion$SupportsDBInstanceAutomatedBackupsReplication' => '

Indicates whether the source Amazon Web Services Region supports replicating automated backups to the current Amazon Web Services Region.

', 'StartActivityStreamResponse$ApplyImmediately' => '

Indicates whether or not the database activity stream will start as soon as possible, regardless of the maintenance window for the database.

', 'TenantDatabase$DeletionProtection' => '

Specifies whether deletion protection is enabled for the DB instance.

', 'UpgradeTarget$AutoUpgrade' => '

Indicates whether the target version is applied to any source DB instances that have AutoMinorVersionUpgrade set to true.

This parameter is dynamic, and is set by RDS.

', 'UpgradeTarget$IsMajorVersionUpgrade' => '

Indicates whether upgrading to the target version requires upgrading the major version of the database engine.

', 'ValidDBInstanceModificationsMessage$SupportsDedicatedLogVolume' => '

Indicates whether a DB instance supports using a dedicated log volume (DLV).

', 'ValidStorageOptions$SupportsStorageAutoscaling' => '

Indicates whether or not Amazon RDS can automatically scale storage for DB instances that use the new instance class.

', ], ], 'BooleanOptional' => [ 'base' => NULL, 'refs' => [ 'BacktrackDBClusterMessage$Force' => '

Specifies whether to force the DB cluster to backtrack when binary logging is enabled. Otherwise, an error occurs when binary logging is enabled.

', 'BacktrackDBClusterMessage$UseEarliestTimeOnPointInTimeUnavailable' => '

Specifies whether to backtrack the DB cluster to the earliest possible backtrack time when BacktrackTo is set to a timestamp earlier than the earliest backtrack time. When this parameter is disabled and BacktrackTo is set to a timestamp earlier than the earliest backtrack time, an error occurs.

', 'Certificate$CustomerOverride' => '

Indicates whether there is an override for the default certificate identifier.

', 'ClusterPendingModifiedValues$IAMDatabaseAuthenticationEnabled' => '

Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

', 'CopyDBClusterSnapshotMessage$CopyTags' => '

Specifies whether to copy all tags from the source DB cluster snapshot to the target DB cluster snapshot. By default, tags are not copied.

', 'CopyDBSnapshotMessage$CopyTags' => '

Specifies whether to copy all tags from the source DB snapshot to the target DB snapshot. By default, tags aren\'t copied.

', 'CopyDBSnapshotMessage$CopyOptionGroup' => '

Specifies whether to copy the DB option group associated with the source DB snapshot to the target Amazon Web Services account and associate with the target DB snapshot. The associated option group can be copied only with cross-account snapshot copy calls.

', 'CreateBlueGreenDeploymentRequest$UpgradeTargetStorageConfig' => '

Whether to upgrade the storage file system configuration on the green database. This option migrates the green DB instance from the older 32-bit file system to the preferred configuration. For more information, see Upgrading the storage file system for a DB instance.

', 'CreateDBClusterMessage$StorageEncrypted' => '

Specifies whether the DB cluster is encrypted.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'CreateDBClusterMessage$EnableIAMDatabaseAuthentication' => '

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn\'t enabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide or IAM database authentication for MariaDB, MySQL, and PostgreSQL in the Amazon RDS User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'CreateDBClusterMessage$PubliclyAccessible' => '

Specifies whether the DB cluster is publicly accessible.

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 ultimately controlled by the security group it uses. That public access isn\'t permitted if the security group assigned to the DB cluster doesn\'t permit it.

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.

Valid for Cluster Type: Multi-AZ DB clusters only

Default: The default behavior varies depending on whether DBSubnetGroupName is specified.

If DBSubnetGroupName isn\'t specified, and PubliclyAccessible isn\'t specified, the following applies:

  • If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB cluster is private.

  • If the default VPC in the target Region has an internet gateway attached to it, the DB cluster is public.

If DBSubnetGroupName is specified, and PubliclyAccessible isn\'t specified, the following applies:

  • If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.

  • If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.

', 'CreateDBClusterMessage$AutoMinorVersionUpgrade' => '

Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window. By default, minor engine upgrades are applied automatically.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

', 'CreateDBClusterMessage$DeletionProtection' => '

Specifies whether the DB cluster has deletion protection enabled. The database can\'t be deleted when deletion protection is enabled. By default, deletion protection isn\'t enabled.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'CreateDBClusterMessage$EnableHttpEndpoint' => '

Specifies whether to enable the HTTP endpoint for the DB cluster. By default, the HTTP endpoint isn\'t enabled.

When enabled, the HTTP endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the DB cluster. You can also query your database from inside the RDS console with the RDS query editor.

For more information, see Using RDS Data API in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters only

', 'CreateDBClusterMessage$CopyTagsToSnapshot' => '

Specifies whether to copy all tags from the DB cluster to snapshots of the DB cluster. The default is not to copy them.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'CreateDBClusterMessage$EnableGlobalWriteForwarding' => '

Specifies whether to enable this DB cluster to forward write operations to the primary cluster of a global cluster (Aurora global database). By default, write operations are not allowed on Aurora DB clusters that are secondary clusters in an Aurora global database.

You can set this value only on Aurora DB clusters that are members of an Aurora global database. With this parameter enabled, a secondary cluster can forward writes to the current primary cluster, and the resulting changes are replicated back to this cluster. For the primary DB cluster of an Aurora global database, this value is used immediately if the primary is demoted by a global cluster API operation, but it does nothing until then.

Valid for Cluster Type: Aurora DB clusters only

', 'CreateDBClusterMessage$EnablePerformanceInsights' => '

Specifies whether to turn on Performance Insights for the DB cluster.

For more information, see Using Amazon Performance Insights in the Amazon RDS User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'CreateDBClusterMessage$EnableLimitlessDatabase' => '

Specifies whether to enable Aurora Limitless Database. You must enable Aurora Limitless Database to create a DB shard group.

Valid for: Aurora DB clusters only

This setting is no longer used. Instead use the ClusterScalabilityType setting.

', 'CreateDBClusterMessage$ManageMasterUserPassword' => '

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide and Password management with Amazon Web Services Secrets Manager in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • Can\'t manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.

', 'CreateDBInstanceMessage$MultiAZ' => '

Specifies whether the DB instance is a Multi-AZ deployment. You can\'t set the AvailabilityZone parameter if the DB instance is a Multi-AZ deployment.

This setting doesn\'t apply to Amazon Aurora because the DB instance Availability Zones (AZs) are managed by the DB cluster.

', 'CreateDBInstanceMessage$AutoMinorVersionUpgrade' => '

Specifies whether minor engine upgrades are applied automatically to the DB instance during the maintenance window. By default, minor engine upgrades are applied automatically.

If you create an RDS Custom DB instance, you must set AutoMinorVersionUpgrade to false.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

', 'CreateDBInstanceMessage$PubliclyAccessible' => '

Specifies whether the DB instance is publicly accessible.

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 ultimately controlled by the security group it uses. That public access is not permitted if the security group assigned to the DB instance doesn\'t permit it.

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.

Default: The default behavior varies depending on whether DBSubnetGroupName is specified.

If DBSubnetGroupName isn\'t specified, and PubliclyAccessible isn\'t specified, the following applies:

  • If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB instance is private.

  • If the default VPC in the target Region has an internet gateway attached to it, the DB instance is public.

If DBSubnetGroupName is specified, and PubliclyAccessible isn\'t specified, the following applies:

  • If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB instance is private.

  • If the subnets are part of a VPC that has an internet gateway attached to it, the DB instance is public.

', 'CreateDBInstanceMessage$StorageEncrypted' => '

Specifes whether the DB instance is encrypted. By default, it isn\'t encrypted.

For RDS Custom DB instances, either enable this setting or leave it unset. Otherwise, Amazon RDS reports an error.

This setting doesn\'t apply to Amazon Aurora DB instances. The encryption for DB instances is managed by the DB cluster.

', 'CreateDBInstanceMessage$CopyTagsToSnapshot' => '

Specifies whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied.

This setting doesn\'t apply to Amazon Aurora DB instances. Copying tags to snapshots is managed by the DB cluster. Setting this value for an Aurora DB instance has no effect on the DB cluster setting.

', 'CreateDBInstanceMessage$EnableIAMDatabaseAuthentication' => '

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn\'t enabled.

For more information, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

This setting doesn\'t apply to the following DB instances:

  • Amazon Aurora (Mapping Amazon Web Services IAM accounts to database accounts is managed by the DB cluster.)

  • RDS Custom

', 'CreateDBInstanceMessage$EnablePerformanceInsights' => '

Specifies whether to enable Performance Insights for the DB instance. For more information, see Using Amazon Performance Insights in the Amazon RDS User Guide.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceMessage$DeletionProtection' => '

Specifies whether the DB instance has deletion protection enabled. The database can\'t be deleted when deletion protection is enabled. By default, deletion protection isn\'t enabled. For more information, see Deleting a DB Instance.

This setting doesn\'t apply to Amazon Aurora DB instances. You can enable or disable deletion protection for the DB cluster. For more information, see CreateDBCluster. DB instances in a DB cluster can be deleted even when deletion protection is enabled for the DB cluster.

', 'CreateDBInstanceMessage$EnableCustomerOwnedIp' => '

Specifies whether to enable a customer-owned IP address (CoIP) for an RDS on Outposts DB instance.

A CoIP provides local or external connectivity to resources in your Outpost subnets through your on-premises network. For some use cases, a CoIP can provide lower latency for connections to the DB instance from outside of its virtual private cloud (VPC) on your local network.

For more information about RDS on Outposts, see Working with Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

For more information about CoIPs, see Customer-owned IP addresses in the Amazon Web Services Outposts User Guide.

', 'CreateDBInstanceMessage$ManageMasterUserPassword' => '

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • Can\'t manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.

', 'CreateDBInstanceMessage$MultiTenant' => '

Specifies whether to use the multi-tenant configuration or the single-tenant configuration (default). This parameter only applies to RDS for Oracle container database (CDB) engines.

Note the following restrictions:

  • The DB engine that you specify in the request must support the multi-tenant configuration. If you attempt to enable the multi-tenant configuration on a DB engine that doesn\'t support it, the request fails.

  • If you specify the multi-tenant configuration when you create your DB instance, you can\'t later modify this DB instance to use the single-tenant configuration.

', 'CreateDBInstanceMessage$DedicatedLogVolume' => '

Indicates whether the DB instance has a dedicated log volume (DLV) enabled.

', 'CreateDBInstanceReadReplicaMessage$MultiAZ' => '

Specifies whether the read replica is in a Multi-AZ deployment.

You can create a read replica as a Multi-AZ DB instance. RDS creates a standby of your replica in another Availability Zone for failover support for the replica. Creating your read replica as a Multi-AZ DB instance is independent of whether the source is a Multi-AZ DB instance or a Multi-AZ DB cluster.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceReadReplicaMessage$AutoMinorVersionUpgrade' => '

Specifies whether to automatically apply minor engine upgrades to the read replica during the maintenance window.

This setting doesn\'t apply to RDS Custom DB instances.

Default: Inherits the value from the source DB instance.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

', 'CreateDBInstanceReadReplicaMessage$PubliclyAccessible' => '

Specifies whether the DB instance is publicly accessible.

When the DB cluster is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB cluster\'s virtual private cloud (VPC). It resolves to the public IP address from outside of the DB cluster\'s VPC. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn\'t permitted if the security group assigned to the DB cluster doesn\'t permit it.

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.

For more information, see CreateDBInstance.

', 'CreateDBInstanceReadReplicaMessage$CopyTagsToSnapshot' => '

Specifies whether to copy all tags from the read replica to snapshots of the read replica. By default, tags aren\'t copied.

', 'CreateDBInstanceReadReplicaMessage$EnableIAMDatabaseAuthentication' => '

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn\'t enabled.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceReadReplicaMessage$EnablePerformanceInsights' => '

Specifies whether to enable Performance Insights for the read replica.

For more information, see Using Amazon Performance Insights in the Amazon RDS User Guide.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceReadReplicaMessage$UseDefaultProcessorFeatures' => '

Specifies whether the DB instance class of the DB instance uses its default processor features.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceReadReplicaMessage$DeletionProtection' => '

Specifies whether to enable deletion protection for the DB instance. The database can\'t be deleted when deletion protection is enabled. By default, deletion protection isn\'t enabled. For more information, see Deleting a DB Instance.

', 'CreateDBInstanceReadReplicaMessage$DedicatedLogVolume' => '

Indicates whether the DB instance has a dedicated log volume (DLV) enabled.

', 'CreateDBInstanceReadReplicaMessage$UpgradeStorageConfig' => '

Whether to upgrade the storage file system configuration on the read replica. This option migrates the read replica from the old storage file system layout to the preferred layout.

', 'CreateDBShardGroupMessage$PubliclyAccessible' => '

Specifies whether the DB shard group is publicly accessible.

When the DB shard group is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB shard group\'s virtual private cloud (VPC). It resolves to the public IP address from outside of the DB shard group\'s VPC. Access to the DB shard group is ultimately controlled by the security group it uses. That public access is not permitted if the security group assigned to the DB shard group doesn\'t permit it.

When the DB shard group isn\'t publicly accessible, it is an internal DB shard group with a DNS name that resolves to a private IP address.

Default: The default behavior varies depending on whether DBSubnetGroupName is specified.

If DBSubnetGroupName isn\'t specified, and PubliclyAccessible isn\'t specified, the following applies:

  • If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB shard group is private.

  • If the default VPC in the target Region has an internet gateway attached to it, the DB shard group is public.

If DBSubnetGroupName is specified, and PubliclyAccessible isn\'t specified, the following applies:

  • If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB shard group is private.

  • If the subnets are part of a VPC that has an internet gateway attached to it, the DB shard group is public.

', 'CreateEventSubscriptionMessage$Enabled' => '

Specifies whether to activate the subscription. If the event notification subscription isn\'t activated, the subscription is created but not active.

', 'CreateGlobalClusterMessage$DeletionProtection' => '

Specifies whether to enable deletion protection for the new global database cluster. The global database can\'t be deleted when deletion protection is enabled.

', 'CreateGlobalClusterMessage$StorageEncrypted' => '

Specifies whether to enable storage encryption for the new global database cluster.

Constraints:

  • Can\'t be specified if SourceDBClusterIdentifier is specified. In this case, Amazon Aurora uses the setting from the source DB cluster.

', 'CreateTenantDatabaseMessage$ManageMasterUserPassword' => '

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • Can\'t manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.

', 'DBCluster$MultiAZ' => '

Indicates whether the DB cluster has instances in multiple Availability Zones.

', 'DBCluster$IAMDatabaseAuthenticationEnabled' => '

Indicates whether the mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

', 'DBCluster$PubliclyAccessible' => '

Indicates whether the DB cluster is publicly accessible.

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 ultimately controlled by the security group it uses. That public access isn\'t permitted if the security group assigned to the DB cluster doesn\'t permit it.

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.

For more information, see CreateDBCluster.

This setting is only for non-Aurora Multi-AZ DB clusters.

', 'DBCluster$DeletionProtection' => '

Indicates whether the DB cluster has deletion protection enabled. The database can\'t be deleted when deletion protection is enabled.

', 'DBCluster$HttpEndpointEnabled' => '

Indicates whether the HTTP endpoint is enabled for an Aurora DB cluster.

When enabled, the HTTP endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the DB cluster. You can also query your database from inside the RDS console with the RDS query editor.

For more information, see Using RDS Data API in the Amazon Aurora User Guide.

', 'DBCluster$CopyTagsToSnapshot' => '

Indicates whether tags are copied from the DB cluster to snapshots of the DB cluster.

', 'DBCluster$CrossAccountClone' => '

Indicates whether the DB cluster is a clone of a DB cluster owned by a different Amazon Web Services account.

', 'DBCluster$GlobalWriteForwardingRequested' => '

Indicates whether write forwarding is enabled for a secondary cluster in an Aurora global database. Because write forwarding takes time to enable, check the value of GlobalWriteForwardingStatus to confirm that the request has completed before using the write forwarding feature for this cluster.

', 'DBCluster$PerformanceInsightsEnabled' => '

Indicates whether Performance Insights is enabled for the DB cluster.

This setting is only for Aurora DB clusters and Multi-AZ DB clusters.

', 'DBEngineVersion$SupportsCertificateRotationWithoutRestart' => '

Indicates whether the engine version supports rotating the server certificate without rebooting the DB instance.

', 'DBInstance$PerformanceInsightsEnabled' => '

Indicates whether Performance Insights is enabled for the DB instance.

', 'DBInstance$CustomerOwnedIpEnabled' => '

Indicates whether a customer-owned IP address (CoIP) is enabled for an RDS on Outposts DB instance.

A CoIP provides local or external connectivity to resources in your Outpost subnets through your on-premises network. For some use cases, a CoIP can provide lower latency for connections to the DB instance from outside of its virtual private cloud (VPC) on your local network.

For more information about RDS on Outposts, see Working with Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

For more information about CoIPs, see Customer-owned IP addresses in the Amazon Web Services Outposts User Guide.

', 'DBInstance$ActivityStreamEngineNativeAuditFieldsIncluded' => '

Indicates whether engine-native audit fields are included in the database activity stream.

', 'DBInstance$MultiTenant' => '

Specifies whether the DB instance is in the multi-tenant configuration (TRUE) or the single-tenant configuration (FALSE).

', 'DBInstance$IsStorageConfigUpgradeAvailable' => '

Indicates whether an upgrade is recommended for the storage file system configuration on the DB instance. To migrate to the preferred configuration, you can either create a blue/green deployment, or create a read replica from the DB instance. For more information, see Upgrading the storage file system for a DB instance.

', 'DBInstanceAutomatedBackup$MultiTenant' => '

Specifies whether the automatic backup is for a DB instance in the multi-tenant configuration (TRUE) or the single-tenant configuration (FALSE).

', 'DBInstanceAutomatedBackup$DedicatedLogVolume' => '

Indicates whether the DB instance has a dedicated log volume (DLV) enabled.

', 'DBShardGroup$PubliclyAccessible' => '

Indicates whether the DB shard group is publicly accessible.

When the DB shard group is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB shard group\'s virtual private cloud (VPC). It resolves to the public IP address from outside of the DB shard group\'s VPC. Access to the DB shard group is ultimately controlled by the security group it uses. That public access isn\'t permitted if the security group assigned to the DB shard group doesn\'t permit it.

When the DB shard group isn\'t publicly accessible, it is an internal DB shard group with a DNS name that resolves to a private IP address.

For more information, see CreateDBShardGroup.

This setting is only for Aurora Limitless Database.

', 'DBSnapshot$MultiTenant' => '

Indicates whether the snapshot is of a DB instance using the multi-tenant configuration (TRUE) or the single-tenant configuration (FALSE).

', 'DeleteBlueGreenDeploymentRequest$DeleteTarget' => '

Specifies whether to delete the resources in the green environment. You can\'t specify this option if the blue/green deployment status is SWITCHOVER_COMPLETED.

', 'DeleteDBClusterMessage$DeleteAutomatedBackups' => '

Specifies whether to remove automated backups immediately after the DB cluster is deleted. This parameter isn\'t case-sensitive. The default is to remove automated backups immediately after the DB cluster is deleted, unless the Amazon Web Services Backup policy specifies a point-in-time restore rule.

', 'DeleteDBInstanceMessage$DeleteAutomatedBackups' => '

Specifies whether to remove automated backups immediately after the DB instance is deleted. This parameter isn\'t case-sensitive. The default is to remove automated backups immediately after the DB instance is deleted.

', 'DescribeDBEngineVersionsMessage$ListSupportedCharacterSets' => '

Specifies whether to list the supported character sets for each engine version.

If this parameter is enabled and the requested engine supports the CharacterSetName parameter for CreateDBInstance, the response includes a list of supported character sets for each engine version.

For RDS Custom, the default is not to list supported character sets. If you enable this parameter, RDS Custom returns no results.

', 'DescribeDBEngineVersionsMessage$ListSupportedTimezones' => '

Specifies whether to list the supported time zones for each engine version.

If this parameter is enabled and the requested engine supports the TimeZone parameter for CreateDBInstance, the response includes a list of supported time zones for each engine version.

For RDS Custom, the default is not to list supported time zones. If you enable this parameter, RDS Custom returns no results.

', 'DescribeDBEngineVersionsMessage$IncludeAll' => '

Specifies whether to also list the engine versions that aren\'t available. The default is to list only available engine versions.

', 'DescribeOrderableDBInstanceOptionsMessage$Vpc' => '

Specifies whether to show only VPC or non-VPC offerings. RDS Custom supports only VPC offerings.

RDS Custom supports only VPC offerings. If you describe non-VPC offerings for RDS Custom, the output shows VPC offerings.

', 'DescribeReservedDBInstancesMessage$MultiAZ' => '

Specifies whether to show only those reservations that support Multi-AZ.

', 'DescribeReservedDBInstancesOfferingsMessage$MultiAZ' => '

Specifies whether to show only those reservations that support Multi-AZ.

', 'FailoverGlobalClusterMessage$AllowDataLoss' => '

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.

', 'FailoverGlobalClusterMessage$Switchover' => '

Specifies whether to switch over this global database cluster.

Constraints:

  • Can\'t be specified together with the AllowDataLoss parameter.

', 'GlobalCluster$StorageEncrypted' => '

The storage encryption setting for the global database cluster.

', 'GlobalCluster$DeletionProtection' => '

The deletion protection setting for the new global database cluster.

', 'ModifyActivityStreamResponse$EngineNativeAuditFieldsIncluded' => '

Indicates whether engine-native audit fields are included in the database activity stream.

', 'ModifyCertificatesMessage$RemoveCustomerOverride' => '

Specifies whether to remove the override for the default certificate. If the override is removed, the default certificate is the system default.

', 'ModifyDBClusterMessage$EnableIAMDatabaseAuthentication' => '

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn\'t enabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide or IAM database authentication for MariaDB, MySQL, and PostgreSQL in the Amazon RDS User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'ModifyDBClusterMessage$DeletionProtection' => '

Specifies whether the DB cluster has deletion protection enabled. The database can\'t be deleted when deletion protection is enabled. By default, deletion protection isn\'t enabled.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'ModifyDBClusterMessage$EnableHttpEndpoint' => '

Specifies whether to enable the HTTP endpoint for an Aurora Serverless v1 DB cluster. By default, the HTTP endpoint isn\'t enabled.

When enabled, the HTTP endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the Aurora Serverless v1 DB cluster. You can also query your database from inside the RDS console with the RDS query editor.

For more information, see Using RDS Data API in the Amazon Aurora User Guide.

This parameter applies only to Aurora Serverless v1 DB clusters. To enable or disable the HTTP endpoint for an Aurora Serverless v2 or provisioned DB cluster, use the EnableHttpEndpoint and DisableHttpEndpoint operations.

Valid for Cluster Type: Aurora DB clusters only

', 'ModifyDBClusterMessage$CopyTagsToSnapshot' => '

Specifies whether to copy all tags from the DB cluster to snapshots of the DB cluster. The default is not to copy them.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'ModifyDBClusterMessage$EnableGlobalWriteForwarding' => '

Specifies whether to enable this DB cluster to forward write operations to the primary cluster of a global cluster (Aurora global database). By default, write operations are not allowed on Aurora DB clusters that are secondary clusters in an Aurora global database.

You can set this value only on Aurora DB clusters that are members of an Aurora global database. With this parameter enabled, a secondary cluster can forward writes to the current primary cluster, and the resulting changes are replicated back to this cluster. For the primary DB cluster of an Aurora global database, this value is used immediately if the primary is demoted by a global cluster API operation, but it does nothing until then.

Valid for Cluster Type: Aurora DB clusters only

', 'ModifyDBClusterMessage$AutoMinorVersionUpgrade' => '

Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window. By default, minor engine upgrades are applied automatically.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

', 'ModifyDBClusterMessage$EnablePerformanceInsights' => '

Specifies whether to turn on Performance Insights for the DB cluster.

For more information, see Using Amazon Performance Insights in the Amazon RDS User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'ModifyDBClusterMessage$ManageMasterUserPassword' => '

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

If the DB cluster doesn\'t manage the master user password with Amazon Web Services Secrets Manager, you can turn on this management. In this case, you can\'t specify MasterUserPassword.

If the DB cluster already manages the master user password with Amazon Web Services Secrets Manager, and you specify that the master user password is not managed with Amazon Web Services Secrets Manager, then you must specify MasterUserPassword. In this case, RDS deletes the secret and uses the new password for the master user specified by MasterUserPassword.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide and Password management with Amazon Web Services Secrets Manager in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'ModifyDBClusterMessage$RotateMasterUserPassword' => '

Specifies whether to rotate the secret managed by Amazon Web Services Secrets Manager for the master user password.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB cluster. The secret value contains the updated password.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide and Password management with Amazon Web Services Secrets Manager in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • You must apply the change immediately when rotating the master user password.

', 'ModifyDBClusterMessage$EnableLimitlessDatabase' => '

Specifies whether to enable Aurora Limitless Database. You must enable Aurora Limitless Database to create a DB shard group.

Valid for: Aurora DB clusters only

This setting is no longer used. Instead use the ClusterScalabilityType setting when you create your Aurora Limitless Database DB cluster.

', 'ModifyDBInstanceMessage$MultiAZ' => '

Specifies whether the DB instance is a Multi-AZ deployment. Changing this parameter doesn\'t result in an outage. The change is applied during the next maintenance window unless the ApplyImmediately parameter is enabled for this request.

This setting doesn\'t apply to RDS Custom DB instances.

', 'ModifyDBInstanceMessage$AutoMinorVersionUpgrade' => '

Specifies whether minor version upgrades are applied automatically to the DB instance during the maintenance window. An outage occurs when all the following conditions are met:

  • The automatic upgrade is enabled for the maintenance window.

  • A newer minor version is available.

  • RDS has enabled automatic patching for the engine version.

If any of the preceding conditions isn\'t met, Amazon RDS applies the change as soon as possible and doesn\'t cause an outage.

For an RDS Custom DB instance, don\'t enable this setting. Otherwise, the operation returns an error.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

', 'ModifyDBInstanceMessage$DisableDomain' => '

Specifies whether to remove the DB instance from the Active Directory domain.

', 'ModifyDBInstanceMessage$CopyTagsToSnapshot' => '

Specifies whether to copy all tags from the DB instance to snapshots of the DB instance. By default, tags aren\'t copied.

This setting doesn\'t apply to Amazon Aurora DB instances. Copying tags to snapshots is managed by the DB cluster. Setting this value for an Aurora DB instance has no effect on the DB cluster setting. For more information, see ModifyDBCluster.

', 'ModifyDBInstanceMessage$PubliclyAccessible' => '

Specifies whether the DB instance is publicly accessible.

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 ultimately controlled by the security group it uses. That public access isn\'t permitted if the security group assigned to the DB instance doesn\'t permit it.

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.

PubliclyAccessible only applies to DB instances in a VPC. The DB instance must be part of a public subnet and PubliclyAccessible must be enabled for it to be publicly accessible.

Changes to the PubliclyAccessible parameter are applied immediately regardless of the value of the ApplyImmediately parameter.

', 'ModifyDBInstanceMessage$EnableIAMDatabaseAuthentication' => '

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn\'t enabled.

This setting doesn\'t apply to Amazon Aurora. Mapping Amazon Web Services IAM accounts to database accounts is managed by the DB cluster.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

This setting doesn\'t apply to RDS Custom DB instances.

', 'ModifyDBInstanceMessage$EnablePerformanceInsights' => '

Specifies whether to enable Performance Insights for the DB instance.

For more information, see Using Amazon Performance Insights in the Amazon RDS User Guide.

This setting doesn\'t apply to RDS Custom DB instances.

', 'ModifyDBInstanceMessage$UseDefaultProcessorFeatures' => '

Specifies whether the DB instance class of the DB instance uses its default processor features.

This setting doesn\'t apply to RDS Custom DB instances.

', 'ModifyDBInstanceMessage$DeletionProtection' => '

Specifies whether the DB instance has deletion protection enabled. The database can\'t be deleted when deletion protection is enabled. By default, deletion protection isn\'t enabled. For more information, see Deleting a DB Instance.

This setting doesn\'t apply to Amazon Aurora DB instances. You can enable or disable deletion protection for the DB cluster. For more information, see ModifyDBCluster. DB instances in a DB cluster can be deleted even when deletion protection is enabled for the DB cluster.

', 'ModifyDBInstanceMessage$CertificateRotationRestart' => '

Specifies whether the DB instance is restarted when you rotate your SSL/TLS certificate.

By default, the DB instance is restarted when you rotate your SSL/TLS certificate. The certificate is not updated until the DB instance is restarted.

Set this parameter only if you are not using SSL/TLS to connect to the DB instance.

If you are using SSL/TLS to connect to the DB instance, follow the appropriate instructions for your DB engine to rotate your SSL/TLS certificate:

This setting doesn\'t apply to RDS Custom DB instances.

', 'ModifyDBInstanceMessage$EnableCustomerOwnedIp' => '

Specifies whether to enable a customer-owned IP address (CoIP) for an RDS on Outposts DB instance.

A CoIP provides local or external connectivity to resources in your Outpost subnets through your on-premises network. For some use cases, a CoIP can provide lower latency for connections to the DB instance from outside of its virtual private cloud (VPC) on your local network.

For more information about RDS on Outposts, see Working with Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

For more information about CoIPs, see Customer-owned IP addresses in the Amazon Web Services Outposts User Guide.

', 'ModifyDBInstanceMessage$ManageMasterUserPassword' => '

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

If the DB instance doesn\'t manage the master user password with Amazon Web Services Secrets Manager, you can turn on this management. In this case, you can\'t specify MasterUserPassword.

If the DB instance already manages the master user password with Amazon Web Services Secrets Manager, and you specify that the master user password is not managed with Amazon Web Services Secrets Manager, then you must specify MasterUserPassword. In this case, Amazon RDS deletes the secret and uses the new password for the master user specified by MasterUserPassword.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • Can\'t manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.

  • Can\'t specify for RDS for Oracle CDB instances in the multi-tenant configuration. Use ModifyTenantDatabase instead.

  • Can\'t specify the parameters ManageMasterUserPassword and MultiTenant in the same operation.

', 'ModifyDBInstanceMessage$RotateMasterUserPassword' => '

Specifies whether to rotate the secret managed by Amazon Web Services Secrets Manager for the master user password.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance. The secret value contains the updated password.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • You must apply the change immediately when rotating the master user password.

', 'ModifyDBInstanceMessage$MultiTenant' => '

Specifies whether the to convert your DB instance from the single-tenant configuration to the multi-tenant configuration. This parameter is supported only for RDS for Oracle CDB instances.

During the conversion, RDS creates an initial tenant database and associates the DB name, master user name, character set, and national character set metadata with this database. The tags associated with the instance also propagate to the initial tenant database. You can add more tenant databases to your DB instance by using the CreateTenantDatabase operation.

The conversion to the multi-tenant configuration is permanent and irreversible, so you can\'t later convert back to the single-tenant configuration. When you specify this parameter, you must also specify ApplyImmediately.

', 'ModifyDBInstanceMessage$DedicatedLogVolume' => '

Indicates whether the DB instance has a dedicated log volume (DLV) enabled.

', 'ModifyDBProxyRequest$RequireTLS' => '

Whether Transport Layer Security (TLS) encryption is required for connections to the proxy. By enabling this setting, you can enforce encrypted TLS connections to the proxy, even if the associated database doesn\'t use TLS.

', 'ModifyDBProxyRequest$DebugLogging' => '

Whether the proxy includes detailed information about SQL statements in its logs. This information helps you to debug issues involving SQL behavior or the performance and scalability of the proxy connections. The debug information includes the text of SQL statements that you submit through the proxy. Thus, only enable this setting when needed for debugging, and only when you have security measures in place to safeguard any sensitive information that appears in the logs.

', 'ModifyEventSubscriptionMessage$Enabled' => '

Specifies whether to activate the subscription.

', 'ModifyGlobalClusterMessage$DeletionProtection' => '

Specifies whether to enable deletion protection for the global database cluster. The global database cluster can\'t be deleted when deletion protection is enabled.

', 'ModifyGlobalClusterMessage$AllowMajorVersionUpgrade' => '

Specifies whether to allow major version upgrades.

Constraints: Must be enabled if you specify a value for the EngineVersion parameter that\'s a different major version than the global cluster\'s current version.

If you upgrade the major version of a global database, the cluster and DB instance parameter groups are set to the default parameter groups for the new version. Apply any custom parameter groups after completing the upgrade.

', 'ModifyTenantDatabaseMessage$ManageMasterUserPassword' => '

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

If the tenant database doesn\'t manage the master user password with Amazon Web Services Secrets Manager, you can turn on this management. In this case, you can\'t specify MasterUserPassword.

If the tenant database already manages the master user password with Amazon Web Services Secrets Manager, and you specify that the master user password is not managed with Amazon Web Services Secrets Manager, then you must specify MasterUserPassword. In this case, Amazon RDS deletes the secret and uses the new password for the master user specified by MasterUserPassword.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • Can\'t manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.

', 'ModifyTenantDatabaseMessage$RotateMasterUserPassword' => '

Specifies whether to rotate the secret managed by Amazon Web Services Secrets Manager for the master user password.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance. The secret value contains the updated password.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • You must apply the change immediately when rotating the master user password.

', 'OptionGroupOption$SupportsOptionVersionDowngrade' => '

If true, you can change the option to an earlier version of the option. This only applies to options that have different versions available.

', 'OptionGroupOption$CopyableCrossAccount' => '

Indicates whether the option can be copied across Amazon Web Services accounts.

', 'OrderableDBInstanceOption$SupportsStorageAutoscaling' => '

Indicates whether Amazon RDS can automatically scale storage for DB instances that use the specified DB instance class.

', 'OrderableDBInstanceOption$SupportsKerberosAuthentication' => '

Indicates whether a DB instance supports Kerberos Authentication.

', 'PendingModifiedValues$MultiAZ' => '

Indicates whether the Single-AZ DB instance will change to a Multi-AZ deployment.

', 'PendingModifiedValues$MultiTenant' => '

Indicates whether the DB instance will change to the multi-tenant configuration (TRUE) or the single-tenant configuration (FALSE).

', 'PendingModifiedValues$IAMDatabaseAuthenticationEnabled' => '

Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

', 'PendingModifiedValues$DedicatedLogVolume' => '

Indicates whether the DB instance has a dedicated log volume (DLV) enabled.>

', 'RebootDBInstanceMessage$ForceFailover' => '

Specifies whether the reboot is conducted through a Multi-AZ failover.

Constraint: You can\'t enable force failover if the instance isn\'t configured for Multi-AZ.

', 'RestoreDBClusterFromS3Message$StorageEncrypted' => '

Specifies whether the restored DB cluster is encrypted.

', 'RestoreDBClusterFromS3Message$EnableIAMDatabaseAuthentication' => '

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn\'t enabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide.

', 'RestoreDBClusterFromS3Message$DeletionProtection' => '

Specifies whether to enable deletion protection for the DB cluster. The database can\'t be deleted when deletion protection is enabled. By default, deletion protection isn\'t enabled.

', 'RestoreDBClusterFromS3Message$CopyTagsToSnapshot' => '

Specifies whether to copy all tags from the restored DB cluster to snapshots of the restored DB cluster. The default is not to copy them.

', 'RestoreDBClusterFromS3Message$ManageMasterUserPassword' => '

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide and Password management with Amazon Web Services Secrets Manager in the Amazon Aurora User Guide.

Constraints:

  • Can\'t manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.

', 'RestoreDBClusterFromSnapshotMessage$EnableIAMDatabaseAuthentication' => '

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn\'t enabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide or IAM database authentication for MariaDB, MySQL, and PostgreSQL in the Amazon RDS User Guide.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$DeletionProtection' => '

Specifies whether to enable deletion protection for the DB cluster. The database can\'t be deleted when deletion protection is enabled. By default, deletion protection isn\'t enabled.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$CopyTagsToSnapshot' => '

Specifies whether to copy all tags from the restored DB cluster to snapshots of the restored DB cluster. The default is not to copy them.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$PubliclyAccessible' => '

Specifies whether the DB cluster is publicly accessible.

When the DB cluster is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB cluster\'s virtual private cloud (VPC). It resolves to the public IP address from outside of the DB cluster\'s VPC. Access to the DB cluster is ultimately controlled by the security group it uses. That public access is not permitted if the security group assigned to the DB cluster doesn\'t permit it.

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.

Default: The default behavior varies depending on whether DBSubnetGroupName is specified.

If DBSubnetGroupName isn\'t specified, and PubliclyAccessible isn\'t specified, the following applies:

  • If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB cluster is private.

  • If the default VPC in the target Region has an internet gateway attached to it, the DB cluster is public.

If DBSubnetGroupName is specified, and PubliclyAccessible isn\'t specified, the following applies:

  • If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.

  • If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$EnablePerformanceInsights' => '

Specifies whether to turn on Performance Insights for the DB cluster.

', 'RestoreDBClusterToPointInTimeMessage$EnableIAMDatabaseAuthentication' => '

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn\'t enabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide or IAM database authentication for MariaDB, MySQL, and PostgreSQL in the Amazon RDS User Guide.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterToPointInTimeMessage$DeletionProtection' => '

Specifies whether to enable deletion protection for the DB cluster. The database can\'t be deleted when deletion protection is enabled. By default, deletion protection isn\'t enabled.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterToPointInTimeMessage$CopyTagsToSnapshot' => '

Specifies whether to copy all tags from the restored DB cluster to snapshots of the restored DB cluster. The default is not to copy them.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterToPointInTimeMessage$PubliclyAccessible' => '

Specifies whether the DB cluster is publicly accessible.

When the DB cluster is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB cluster\'s virtual private cloud (VPC). It resolves to the public IP address from outside of the DB cluster\'s VPC. Access to the DB cluster is ultimately controlled by the security group it uses. That public access is not permitted if the security group assigned to the DB cluster doesn\'t permit it.

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.

Default: The default behavior varies depending on whether DBSubnetGroupName is specified.

If DBSubnetGroupName isn\'t specified, and PubliclyAccessible isn\'t specified, the following applies:

  • If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB cluster is private.

  • If the default VPC in the target Region has an internet gateway attached to it, the DB cluster is public.

If DBSubnetGroupName is specified, and PubliclyAccessible isn\'t specified, the following applies:

  • If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.

  • If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.

Valid for: Multi-AZ DB clusters only

', 'RestoreDBClusterToPointInTimeMessage$EnablePerformanceInsights' => '

Specifies whether to turn on Performance Insights for the DB cluster.

', 'RestoreDBInstanceFromDBSnapshotMessage$MultiAZ' => '

Specifies whether the DB instance is a Multi-AZ deployment.

This setting doesn\'t apply to RDS Custom.

Constraint: You can\'t specify the AvailabilityZone parameter if the DB instance is a Multi-AZ deployment.

', 'RestoreDBInstanceFromDBSnapshotMessage$PubliclyAccessible' => '

Specifies whether the DB instance is publicly accessible.

When the DB instance is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB instance\'s virtual private cloud (VPC). It resolves to the public IP address from outside of the DB instance\'s VPC. Access to the DB instance is ultimately controlled by the security group it uses. That public access is not permitted if the security group assigned to the DB instance doesn\'t permit it.

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.

For more information, see CreateDBInstance.

', 'RestoreDBInstanceFromDBSnapshotMessage$AutoMinorVersionUpgrade' => '

Specifies whether to automatically apply minor version upgrades to the DB instance during the maintenance window.

If you restore an RDS Custom DB instance, you must disable this parameter.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

', 'RestoreDBInstanceFromDBSnapshotMessage$CopyTagsToSnapshot' => '

Specifies whether to copy all tags from the restored DB instance to snapshots of the DB instance.

In most cases, tags aren\'t copied by default. However, when you restore a DB instance from a DB snapshot, RDS checks whether you specify new tags. If yes, the new tags are added to the restored DB instance. If there are no new tags, RDS looks for the tags from the source DB instance for the DB snapshot, and then adds those tags to the restored DB instance.

For more information, see Copying tags to DB instance snapshots in the Amazon RDS User Guide.

', 'RestoreDBInstanceFromDBSnapshotMessage$EnableIAMDatabaseAuthentication' => '

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

This setting doesn\'t apply to RDS Custom.

', 'RestoreDBInstanceFromDBSnapshotMessage$UseDefaultProcessorFeatures' => '

Specifies whether the DB instance class of the DB instance uses its default processor features.

This setting doesn\'t apply to RDS Custom.

', 'RestoreDBInstanceFromDBSnapshotMessage$DeletionProtection' => '

Specifies whether to enable deletion protection for the DB instance. The database can\'t be deleted when deletion protection is enabled. By default, deletion protection isn\'t enabled. For more information, see Deleting a DB Instance.

', 'RestoreDBInstanceFromDBSnapshotMessage$EnableCustomerOwnedIp' => '

Specifies whether to enable a customer-owned IP address (CoIP) for an RDS on Outposts DB instance.

A CoIP provides local or external connectivity to resources in your Outpost subnets through your on-premises network. For some use cases, a CoIP can provide lower latency for connections to the DB instance from outside of its virtual private cloud (VPC) on your local network.

This setting doesn\'t apply to RDS Custom.

For more information about RDS on Outposts, see Working with Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

For more information about CoIPs, see Customer-owned IP addresses in the Amazon Web Services Outposts User Guide.

', 'RestoreDBInstanceFromDBSnapshotMessage$DedicatedLogVolume' => '

Specifies whether to enable a dedicated log volume (DLV) for the DB instance.

', 'RestoreDBInstanceFromDBSnapshotMessage$ManageMasterUserPassword' => '

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager in the restored DB instance.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • Applies to RDS for Oracle only.

', 'RestoreDBInstanceFromS3Message$MultiAZ' => '

Specifies whether the DB instance is a Multi-AZ deployment. If the DB instance is a Multi-AZ deployment, you can\'t set the AvailabilityZone parameter.

', 'RestoreDBInstanceFromS3Message$AutoMinorVersionUpgrade' => '

Specifies whether to automatically apply minor engine upgrades to the DB instance during the maintenance window. By default, minor engine upgrades are not applied automatically.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

', 'RestoreDBInstanceFromS3Message$PubliclyAccessible' => '

Specifies whether the DB instance is publicly accessible.

When the DB instance is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB instance\'s virtual private cloud (VPC). It resolves to the public IP address from outside of the DB instance\'s VPC. Access to the DB instance is ultimately controlled by the security group it uses. That public access is not permitted if the security group assigned to the DB instance doesn\'t permit it.

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.

For more information, see CreateDBInstance.

', 'RestoreDBInstanceFromS3Message$StorageEncrypted' => '

Specifies whether the new DB instance is encrypted or not.

', 'RestoreDBInstanceFromS3Message$CopyTagsToSnapshot' => '

Specifies whether to copy all tags from the DB instance to snapshots of the DB instance. By default, tags are not copied.

', 'RestoreDBInstanceFromS3Message$EnableIAMDatabaseAuthentication' => '

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn\'t enabled.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

', 'RestoreDBInstanceFromS3Message$EnablePerformanceInsights' => '

Specifies whether to enable Performance Insights for the DB instance.

For more information, see Using Amazon Performance Insights in the Amazon RDS User Guide.

', 'RestoreDBInstanceFromS3Message$UseDefaultProcessorFeatures' => '

Specifies whether the DB instance class of the DB instance uses its default processor features.

', 'RestoreDBInstanceFromS3Message$DeletionProtection' => '

Specifies whether to enable deletion protection for the DB instance. The database can\'t be deleted when deletion protection is enabled. By default, deletion protection isn\'t enabled. For more information, see Deleting a DB Instance.

', 'RestoreDBInstanceFromS3Message$ManageMasterUserPassword' => '

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • Can\'t manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.

', 'RestoreDBInstanceFromS3Message$DedicatedLogVolume' => '

Specifies whether to enable a dedicated log volume (DLV) for the DB instance.

', 'RestoreDBInstanceToPointInTimeMessage$MultiAZ' => '

Secifies whether the DB instance is a Multi-AZ deployment.

This setting doesn\'t apply to RDS Custom.

Constraints:

  • You can\'t specify the AvailabilityZone parameter if the DB instance is a Multi-AZ deployment.

', 'RestoreDBInstanceToPointInTimeMessage$PubliclyAccessible' => '

Specifies whether the DB instance is publicly accessible.

When the DB cluster is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB cluster\'s virtual private cloud (VPC). It resolves to the public IP address from outside of the DB cluster\'s VPC. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn\'t permitted if the security group assigned to the DB cluster doesn\'t permit it.

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.

For more information, see CreateDBInstance.

', 'RestoreDBInstanceToPointInTimeMessage$AutoMinorVersionUpgrade' => '

Specifies whether minor version upgrades are applied automatically to the DB instance during the maintenance window.

This setting doesn\'t apply to RDS Custom.

For more information about automatic minor version upgrades, see Automatically upgrading the minor engine version.

', 'RestoreDBInstanceToPointInTimeMessage$CopyTagsToSnapshot' => '

Specifies whether to copy all tags from the restored DB instance to snapshots of the DB instance. By default, tags are not copied.

', 'RestoreDBInstanceToPointInTimeMessage$EnableIAMDatabaseAuthentication' => '

Specifies whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn\'t enabled.

This setting doesn\'t apply to RDS Custom.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

', 'RestoreDBInstanceToPointInTimeMessage$UseDefaultProcessorFeatures' => '

Specifies whether the DB instance class of the DB instance uses its default processor features.

This setting doesn\'t apply to RDS Custom.

', 'RestoreDBInstanceToPointInTimeMessage$DeletionProtection' => '

Specifies whether the DB instance has deletion protection enabled. The database can\'t be deleted when deletion protection is enabled. By default, deletion protection isn\'t enabled. For more information, see Deleting a DB Instance.

', 'RestoreDBInstanceToPointInTimeMessage$EnableCustomerOwnedIp' => '

Specifies whether to enable a customer-owned IP address (CoIP) for an RDS on Outposts DB instance.

A CoIP provides local or external connectivity to resources in your Outpost subnets through your on-premises network. For some use cases, a CoIP can provide lower latency for connections to the DB instance from outside of its virtual private cloud (VPC) on your local network.

This setting doesn\'t apply to RDS Custom.

For more information about RDS on Outposts, see Working with Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

For more information about CoIPs, see Customer-owned IP addresses in the Amazon Web Services Outposts User Guide.

', 'RestoreDBInstanceToPointInTimeMessage$DedicatedLogVolume' => '

Specifies whether to enable a dedicated log volume (DLV) for the DB instance.

', 'RestoreDBInstanceToPointInTimeMessage$ManageMasterUserPassword' => '

Specifies whether to manage the master user password with Amazon Web Services Secrets Manager in the restored DB instance.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

Constraints:

  • Applies to RDS for Oracle only.

', 'ScalingConfiguration$AutoPause' => '

Indicates whether to allow or disallow automatic pause for an Aurora DB cluster in serverless DB engine mode. A DB cluster can be paused only when it\'s idle (it has no connections).

If a DB cluster is paused for more than seven days, the DB cluster might be backed up with a snapshot. In this case, the DB cluster is restored when there is a request to connect to it.

', 'ScalingConfigurationInfo$AutoPause' => '

Indicates whether automatic pause is allowed for the Aurora DB cluster in serverless DB engine mode.

When the value is set to false for an Aurora Serverless v1 DB cluster, the DB cluster automatically resumes.

', 'StartActivityStreamRequest$ApplyImmediately' => '

Specifies whether or not the database activity stream is to start as soon as possible, regardless of the maintenance window for the database.

', 'StartActivityStreamRequest$EngineNativeAuditFieldsIncluded' => '

Specifies whether the database activity stream includes engine-native audit fields. This option applies to an Oracle or Microsoft SQL Server DB instance. By default, no engine-native audit fields are included.

', 'StartActivityStreamResponse$EngineNativeAuditFieldsIncluded' => '

Indicates whether engine-native audit fields are included in the database activity stream.

', 'StopActivityStreamRequest$ApplyImmediately' => '

Specifies whether or not the database activity stream is to stop as soon as possible, regardless of the maintenance window for the database.

', 'UpgradeTarget$SupportsParallelQuery' => '

Indicates whether you can use Aurora parallel query with the target engine version.

', 'UpgradeTarget$SupportsGlobalDatabases' => '

Indicates whether you can use Aurora global databases with the target engine version.

', 'UpgradeTarget$SupportsBabelfish' => '

Indicates whether you can use Babelfish for Aurora PostgreSQL with the target engine version.

', 'UpgradeTarget$SupportsLimitlessDatabase' => '

Indicates whether the DB engine version supports Aurora Limitless Database.

', 'UpgradeTarget$SupportsIntegrations' => '

Indicates whether the DB engine version supports zero-ETL integrations with Amazon Redshift.

', ], ], 'BucketName' => [ 'base' => NULL, 'refs' => [ 'CreateCustomDBEngineVersionMessage$DatabaseInstallationFilesS3BucketName' => '

The name of an Amazon S3 bucket that contains database installation files for your CEV. For example, a valid bucket name is my-custom-installation-files.

', ], ], 'CACertificateIdentifiersList' => [ 'base' => NULL, 'refs' => [ 'DBEngineVersion$SupportedCACertificateIdentifiers' => '

A list of the supported CA certificate identifiers.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

', ], ], 'CancelExportTaskMessage' => [ 'base' => NULL, 'refs' => [], ], 'Certificate' => [ 'base' => '

A CA certificate for an Amazon Web Services account.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

', 'refs' => [ 'CertificateList$member' => NULL, 'ModifyCertificatesResult$Certificate' => NULL, ], ], 'CertificateDetails' => [ 'base' => '

The details of the DB instance’s server certificate.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

', 'refs' => [ 'ClusterPendingModifiedValues$CertificateDetails' => NULL, 'DBCluster$CertificateDetails' => NULL, 'DBInstance$CertificateDetails' => '

The details of the DB instance\'s server certificate.

', ], ], 'CertificateList' => [ 'base' => NULL, 'refs' => [ 'CertificateMessage$Certificates' => '

The list of Certificate objects for the Amazon Web Services account.

', ], ], 'CertificateMessage' => [ 'base' => '

Data returned by the DescribeCertificates action.

', 'refs' => [], ], 'CertificateNotFoundFault' => [ 'base' => '

CertificateIdentifier doesn\'t refer to an existing certificate.

', 'refs' => [], ], 'CharacterSet' => [ 'base' => '

This data type is used as a response element in the action DescribeDBEngineVersions.

', 'refs' => [ 'DBEngineVersion$DefaultCharacterSet' => '

The default character set for new instances of this engine version, if the CharacterSetName parameter of the CreateDBInstance API isn\'t specified.

', 'SupportedCharacterSetsList$member' => NULL, ], ], 'ClientPasswordAuthType' => [ 'base' => NULL, 'refs' => [ 'UserAuthConfig$ClientPasswordAuthType' => '

The type of authentication the proxy uses for connections from clients. The following values are defaults for the corresponding engines:

  • RDS for MySQL: MYSQL_CACHING_SHA2_PASSWORD

  • RDS for SQL Server: SQL_SERVER_AUTHENTICATION

  • RDS for PostgreSQL: POSTGRES_SCRAM_SHA2_256

', 'UserAuthConfigInfo$ClientPasswordAuthType' => '

The type of authentication the proxy uses for connections from clients.

', ], ], 'CloudwatchLogsExportConfiguration' => [ 'base' => '

The configuration setting for the log types to be enabled for export to CloudWatch Logs for a specific DB instance or DB cluster.

The EnableLogTypes and DisableLogTypes arrays determine which logs will be exported (or not exported) to CloudWatch Logs. The values within these arrays depend on the DB engine being used.

For more information about exporting CloudWatch Logs for Amazon RDS DB instances, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora DB clusters, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.

', 'refs' => [ 'ModifyDBClusterMessage$CloudwatchLogsExportConfiguration' => '

The configuration setting for the log types to be enabled for export to CloudWatch Logs for a specific DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

The following values are valid for each DB engine:

  • Aurora MySQL - audit | error | general | instance | slowquery | iam-db-auth-error

  • Aurora PostgreSQL - instance | postgresql | iam-db-auth-error

  • RDS for MySQL - error | general | slowquery | iam-db-auth-error

  • RDS for PostgreSQL - postgresql | upgrade | iam-db-auth-error

For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.

', 'ModifyDBInstanceMessage$CloudwatchLogsExportConfiguration' => '

The log types to be enabled for export to CloudWatch Logs for a specific DB instance.

A change to the CloudwatchLogsExportConfiguration parameter is always applied to the DB instance immediately. Therefore, the ApplyImmediately parameter has no effect.

This setting doesn\'t apply to RDS Custom DB instances.

The following values are valid for each DB engine:

  • Aurora MySQL - audit | error | general | slowquery | iam-db-auth-error

  • Aurora PostgreSQL - postgresql | iam-db-auth-error

  • RDS for MySQL - error | general | slowquery | iam-db-auth-error

  • RDS for PostgreSQL - postgresql | upgrade | iam-db-auth-error

For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.

', ], ], 'ClusterPendingModifiedValues' => [ 'base' => '

This data type is used as a response element in the ModifyDBCluster operation and contains changes that will be applied during the next maintenance window.

', 'refs' => [ 'DBCluster$PendingModifiedValues' => '

Information about pending changes to the DB cluster. This information is returned only when there are pending changes. Specific changes are identified by subelements.

', ], ], 'ClusterScalabilityType' => [ 'base' => NULL, 'refs' => [ 'CreateDBClusterMessage$ClusterScalabilityType' => '

Specifies the scalability mode of the Aurora DB cluster. When set to limitless, the cluster operates as an Aurora Limitless Database. When set to standard (the default), the cluster uses normal DB instance creation.

Valid for: Aurora DB clusters only

You can\'t modify this setting after you create the DB cluster.

', 'DBCluster$ClusterScalabilityType' => '

The scalability mode of the Aurora DB cluster. When set to limitless, the cluster operates as an Aurora Limitless Database. When set to standard (the default), the cluster uses normal DB instance creation.

', ], ], 'ConnectionPoolConfiguration' => [ 'base' => '

Specifies the settings that control the size and behavior of the connection pool associated with a DBProxyTargetGroup.

', 'refs' => [ 'ModifyDBProxyTargetGroupRequest$ConnectionPoolConfig' => '

The settings that determine the size and behavior of the connection pool for the target group.

', ], ], 'ConnectionPoolConfigurationInfo' => [ 'base' => '

Displays the settings that control the size and behavior of the connection pool associated with a DBProxyTarget.

', 'refs' => [ 'DBProxyTargetGroup$ConnectionPoolConfig' => '

The settings that determine the size and behavior of the connection pool for the target group.

', ], ], 'ContextAttribute' => [ 'base' => '

The additional attributes of RecommendedAction data type.

', 'refs' => [ 'ContextAttributeList$member' => NULL, ], ], 'ContextAttributeList' => [ 'base' => NULL, 'refs' => [ 'RecommendedAction$ContextAttributes' => '

The supporting attributes to explain the recommended action.

', ], ], 'CopyDBClusterParameterGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'CopyDBClusterParameterGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CopyDBClusterSnapshotMessage' => [ 'base' => '

', 'refs' => [], ], 'CopyDBClusterSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'CopyDBParameterGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'CopyDBParameterGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CopyDBSnapshotMessage' => [ 'base' => '

', 'refs' => [], ], 'CopyDBSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'CopyOptionGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'CopyOptionGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateBlueGreenDeploymentRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateBlueGreenDeploymentResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateCustomDBEngineVersionFault' => [ 'base' => '

An error occurred while trying to create the CEV.

', 'refs' => [], ], 'CreateCustomDBEngineVersionMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBClusterEndpointMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBClusterMessage' => [ 'base' => '

', 'refs' => [], ], 'CreateDBClusterParameterGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'CreateDBClusterParameterGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBClusterResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBClusterSnapshotMessage' => [ 'base' => '

', 'refs' => [], ], 'CreateDBClusterSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBInstanceMessage' => [ 'base' => '

', 'refs' => [], ], 'CreateDBInstanceReadReplicaMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBInstanceReadReplicaResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBParameterGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'CreateDBParameterGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBProxyEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBProxyEndpointResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBProxyRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBProxyResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBSecurityGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'CreateDBSecurityGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBShardGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBSnapshotMessage' => [ 'base' => '

', 'refs' => [], ], 'CreateDBSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateDBSubnetGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'CreateDBSubnetGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateEventSubscriptionMessage' => [ 'base' => '

', 'refs' => [], ], 'CreateEventSubscriptionResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateGlobalClusterMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateGlobalClusterResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateIntegrationMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateOptionGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'CreateOptionGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'CreateTenantDatabaseMessage' => [ 'base' => NULL, 'refs' => [], ], 'CreateTenantDatabaseResult' => [ 'base' => NULL, 'refs' => [], ], 'CustomAvailabilityZoneNotFoundFault' => [ 'base' => '

CustomAvailabilityZoneId doesn\'t refer to an existing custom Availability Zone identifier.

', 'refs' => [], ], 'CustomDBEngineVersionAMI' => [ 'base' => '

A value that indicates the AMI information.

', 'refs' => [ 'DBEngineVersion$Image' => '

The EC2 image

', ], ], 'CustomDBEngineVersionAlreadyExistsFault' => [ 'base' => '

A CEV with the specified name already exists.

', 'refs' => [], ], 'CustomDBEngineVersionManifest' => [ 'base' => NULL, 'refs' => [ 'CreateCustomDBEngineVersionMessage$Manifest' => '

The CEV manifest, which is a JSON document that describes the installation .zip files stored in Amazon S3. Specify the name/value pairs in a file or a quoted string. RDS Custom applies the patches in the order in which they are listed.

The following JSON fields are valid:

MediaImportTemplateVersion

Version of the CEV manifest. The date is in the format YYYY-MM-DD.

databaseInstallationFileNames

Ordered list of installation files for the CEV.

opatchFileNames

Ordered list of OPatch installers used for the Oracle DB engine.

psuRuPatchFileNames

The PSU and RU patches for this CEV.

OtherPatchFileNames

The patches that are not in the list of PSU and RU patches. Amazon RDS applies these patches after applying the PSU and RU patches.

For more information, see Creating the CEV manifest in the Amazon RDS User Guide.

', 'DBEngineVersion$CustomDBEngineVersionManifest' => '

JSON string that lists the installation files and parameters that RDS Custom uses to create a custom engine version (CEV). RDS Custom applies the patches in the order in which they\'re listed in the manifest. You can set the Oracle home, Oracle base, and UNIX/Linux user and group using the installation parameters. For more information, see JSON fields in the CEV manifest in the Amazon RDS User Guide.

', ], ], 'CustomDBEngineVersionNotFoundFault' => [ 'base' => '

The specified CEV was not found.

', 'refs' => [], ], 'CustomDBEngineVersionQuotaExceededFault' => [ 'base' => '

You have exceeded your CEV quota.

', 'refs' => [], ], 'CustomEngineName' => [ 'base' => NULL, 'refs' => [ 'CreateCustomDBEngineVersionMessage$Engine' => '

The database engine. RDS Custom for Oracle supports the following values:

  • custom-oracle-ee

  • custom-oracle-ee-cdb

  • custom-oracle-se2

  • custom-oracle-se2-cdb

', 'DeleteCustomDBEngineVersionMessage$Engine' => '

The database engine. RDS Custom for Oracle supports the following values:

  • custom-oracle-ee

  • custom-oracle-ee-cdb

  • custom-oracle-se2

  • custom-oracle-se2-cdb

', 'ModifyCustomDBEngineVersionMessage$Engine' => '

The database engine. RDS Custom for Oracle supports the following values:

  • custom-oracle-ee

  • custom-oracle-ee-cdb

  • custom-oracle-se2

  • custom-oracle-se2-cdb

', ], ], 'CustomEngineVersion' => [ 'base' => NULL, 'refs' => [ 'CreateCustomDBEngineVersionMessage$EngineVersion' => '

The name of your CEV. The name format is 19.customized_string. For example, a valid CEV name is 19.my_cev1. This setting is required for RDS Custom for Oracle, but optional for Amazon RDS. The combination of Engine and EngineVersion is unique per customer per Region.

', 'DeleteCustomDBEngineVersionMessage$EngineVersion' => '

The custom engine version (CEV) for your DB instance. This option is required for RDS Custom, but optional for Amazon RDS. The combination of Engine and EngineVersion is unique per customer per Amazon Web Services Region.

', 'ModifyCustomDBEngineVersionMessage$EngineVersion' => '

The custom engine version (CEV) that you want to modify. This option is required for RDS Custom for Oracle, but optional for Amazon RDS. The combination of Engine and EngineVersion is unique per customer per Amazon Web Services Region.

', ], ], 'CustomEngineVersionStatus' => [ 'base' => NULL, 'refs' => [ 'ModifyCustomDBEngineVersionMessage$Status' => '

The availability status to be assigned to the CEV. Valid values are as follows:

available

You can use this CEV to create a new RDS Custom DB instance.

inactive

You can create a new RDS Custom instance by restoring a DB snapshot with this CEV. You can\'t patch or create new instances with this CEV.

You can change any status to any status. A typical reason to change status is to prevent the accidental use of a CEV, or to make a deprecated CEV eligible for use again. For example, you might change the status of your CEV from available to inactive, and from inactive back to available. To change the availability status of the CEV, it must not currently be in use by an RDS Custom instance, snapshot, or automated backup.

', ], ], 'DBCluster' => [ 'base' => '

Contains the details of an Amazon Aurora DB cluster or Multi-AZ DB cluster.

For an Amazon Aurora DB cluster, this data type is used as a response element in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster, ModifyDBCluster, PromoteReadReplicaDBCluster, RestoreDBClusterFromS3, RestoreDBClusterFromSnapshot, RestoreDBClusterToPointInTime, StartDBCluster, and StopDBCluster.

For a Multi-AZ DB cluster, this data type is used as a response element in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster, ModifyDBCluster, RebootDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ deployments with two readable standby DB instances in the Amazon RDS User Guide.

', 'refs' => [ 'CreateDBClusterResult$DBCluster' => NULL, 'DBClusterList$member' => NULL, 'DeleteDBClusterResult$DBCluster' => NULL, 'FailoverDBClusterResult$DBCluster' => NULL, 'ModifyDBClusterResult$DBCluster' => NULL, 'PromoteReadReplicaDBClusterResult$DBCluster' => NULL, 'RebootDBClusterResult$DBCluster' => NULL, 'RestoreDBClusterFromS3Result$DBCluster' => NULL, 'RestoreDBClusterFromSnapshotResult$DBCluster' => NULL, 'RestoreDBClusterToPointInTimeResult$DBCluster' => NULL, 'StartDBClusterResult$DBCluster' => NULL, 'StopDBClusterResult$DBCluster' => NULL, ], ], 'DBClusterAlreadyExistsFault' => [ 'base' => '

The user already has a DB cluster with the given identifier.

', 'refs' => [], ], 'DBClusterAutomatedBackup' => [ 'base' => '

An automated backup of a DB cluster. It consists of system backups, transaction logs, and the database cluster properties that existed at the time you deleted the source cluster.

', 'refs' => [ 'DBClusterAutomatedBackupList$member' => NULL, 'DeleteDBClusterAutomatedBackupResult$DBClusterAutomatedBackup' => NULL, ], ], 'DBClusterAutomatedBackupList' => [ 'base' => NULL, 'refs' => [ 'DBClusterAutomatedBackupMessage$DBClusterAutomatedBackups' => '

A list of DBClusterAutomatedBackup backups.

', ], ], 'DBClusterAutomatedBackupMessage' => [ 'base' => NULL, 'refs' => [], ], 'DBClusterAutomatedBackupNotFoundFault' => [ 'base' => '

No automated backup for this DB cluster was found.

', 'refs' => [], ], 'DBClusterAutomatedBackupQuotaExceededFault' => [ 'base' => '

The quota for retained automated backups was exceeded. This prevents you from retaining any additional automated backups. The retained automated backups quota is the same as your DB cluster quota.

', 'refs' => [], ], 'DBClusterBacktrack' => [ 'base' => '

This data type is used as a response element in the DescribeDBClusterBacktracks action.

', 'refs' => [ 'DBClusterBacktrackList$member' => NULL, ], ], 'DBClusterBacktrackList' => [ 'base' => NULL, 'refs' => [ 'DBClusterBacktrackMessage$DBClusterBacktracks' => '

Contains a list of backtracks for the user.

', ], ], 'DBClusterBacktrackMessage' => [ 'base' => '

Contains the result of a successful invocation of the DescribeDBClusterBacktracks action.

', 'refs' => [], ], 'DBClusterBacktrackNotFoundFault' => [ 'base' => '

BacktrackIdentifier doesn\'t refer to an existing backtrack.

', 'refs' => [], ], 'DBClusterCapacityInfo' => [ 'base' => NULL, 'refs' => [], ], 'DBClusterEndpoint' => [ 'base' => '

This data type represents the information you need to connect to an Amazon Aurora DB cluster. This data type is used as a response element in the following actions:

  • CreateDBClusterEndpoint

  • DescribeDBClusterEndpoints

  • ModifyDBClusterEndpoint

  • DeleteDBClusterEndpoint

For the data structure that represents Amazon RDS DB instance endpoints, see Endpoint.

', 'refs' => [ 'DBClusterEndpointList$member' => NULL, ], ], 'DBClusterEndpointAlreadyExistsFault' => [ 'base' => '

The specified custom endpoint can\'t be created because it already exists.

', 'refs' => [], ], 'DBClusterEndpointList' => [ 'base' => NULL, 'refs' => [ 'DBClusterEndpointMessage$DBClusterEndpoints' => '

Contains the details of the endpoints associated with the cluster and matching any filter conditions.

', ], ], 'DBClusterEndpointMessage' => [ 'base' => NULL, 'refs' => [], ], 'DBClusterEndpointNotFoundFault' => [ 'base' => '

The specified custom endpoint doesn\'t exist.

', 'refs' => [], ], 'DBClusterEndpointQuotaExceededFault' => [ 'base' => '

The cluster already has the maximum number of custom endpoints.

', 'refs' => [], ], 'DBClusterIdentifier' => [ 'base' => NULL, 'refs' => [ 'FailoverGlobalClusterMessage$TargetDbClusterIdentifier' => '

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.

', 'SwitchoverGlobalClusterMessage$TargetDbClusterIdentifier' => '

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.

', ], ], 'DBClusterList' => [ 'base' => NULL, 'refs' => [ 'DBClusterMessage$DBClusters' => '

Contains a list of DB clusters for the user.

', ], ], 'DBClusterMember' => [ 'base' => '

Contains information about an instance that is part of a DB cluster.

', 'refs' => [ 'DBClusterMemberList$member' => NULL, ], ], 'DBClusterMemberList' => [ 'base' => NULL, 'refs' => [ 'DBCluster$DBClusterMembers' => '

The list of DB instances that make up the DB cluster.

', ], ], 'DBClusterMessage' => [ 'base' => '

Contains the result of a successful invocation of the DescribeDBClusters action.

', 'refs' => [], ], 'DBClusterNotFoundFault' => [ 'base' => '

DBClusterIdentifier doesn\'t refer to an existing DB cluster.

', 'refs' => [], ], 'DBClusterOptionGroupMemberships' => [ 'base' => NULL, 'refs' => [ 'DBCluster$DBClusterOptionGroupMemberships' => '

The list of option group memberships for this DB cluster.

', ], ], 'DBClusterOptionGroupStatus' => [ 'base' => '

Contains status information for a DB cluster option group.

', 'refs' => [ 'DBClusterOptionGroupMemberships$member' => NULL, ], ], 'DBClusterParameterGroup' => [ 'base' => '

Contains the details of an Amazon RDS DB cluster parameter group.

This data type is used as a response element in the DescribeDBClusterParameterGroups action.

', 'refs' => [ 'CopyDBClusterParameterGroupResult$DBClusterParameterGroup' => NULL, 'CreateDBClusterParameterGroupResult$DBClusterParameterGroup' => NULL, 'DBClusterParameterGroupList$member' => NULL, ], ], 'DBClusterParameterGroupDetails' => [ 'base' => '

Provides details about a DB cluster parameter group including the parameters in the DB cluster parameter group.

', 'refs' => [], ], 'DBClusterParameterGroupList' => [ 'base' => NULL, 'refs' => [ 'DBClusterParameterGroupsMessage$DBClusterParameterGroups' => '

A list of DB cluster parameter groups.

', ], ], 'DBClusterParameterGroupNameMessage' => [ 'base' => '

', 'refs' => [], ], 'DBClusterParameterGroupNotFoundFault' => [ 'base' => '

DBClusterParameterGroupName doesn\'t refer to an existing DB cluster parameter group.

', 'refs' => [], ], 'DBClusterParameterGroupsMessage' => [ 'base' => '

', 'refs' => [], ], 'DBClusterQuotaExceededFault' => [ 'base' => '

The user attempted to create a new DB cluster and the user has already reached the maximum allowed DB cluster quota.

', 'refs' => [], ], 'DBClusterRole' => [ 'base' => '

Describes an Amazon Web Services Identity and Access Management (IAM) role that is associated with a DB cluster.

', 'refs' => [ 'DBClusterRoles$member' => NULL, ], ], 'DBClusterRoleAlreadyExistsFault' => [ 'base' => '

The specified IAM role Amazon Resource Name (ARN) is already associated with the specified DB cluster.

', 'refs' => [], ], 'DBClusterRoleNotFoundFault' => [ 'base' => '

The specified IAM role Amazon Resource Name (ARN) isn\'t associated with the specified DB cluster.

', 'refs' => [], ], 'DBClusterRoleQuotaExceededFault' => [ 'base' => '

You have exceeded the maximum number of IAM roles that can be associated with the specified DB cluster.

', 'refs' => [], ], 'DBClusterRoles' => [ 'base' => NULL, 'refs' => [ 'DBCluster$AssociatedRoles' => '

A list of the Amazon Web Services Identity and Access Management (IAM) roles that are associated with the DB cluster. IAM roles that are associated with a DB cluster grant permission for the DB cluster to access other Amazon Web Services on your behalf.

', ], ], 'DBClusterSnapshot' => [ 'base' => '

Contains the details for an Amazon RDS DB cluster snapshot

This data type is used as a response element in the DescribeDBClusterSnapshots action.

', 'refs' => [ 'CopyDBClusterSnapshotResult$DBClusterSnapshot' => NULL, 'CreateDBClusterSnapshotResult$DBClusterSnapshot' => NULL, 'DBClusterSnapshotList$member' => NULL, 'DeleteDBClusterSnapshotResult$DBClusterSnapshot' => NULL, ], ], 'DBClusterSnapshotAlreadyExistsFault' => [ 'base' => '

The user already has a DB cluster snapshot with the given identifier.

', 'refs' => [], ], 'DBClusterSnapshotAttribute' => [ 'base' => '

Contains the name and values of a manual DB cluster snapshot attribute.

Manual DB cluster snapshot attributes are used to authorize other Amazon Web Services accounts to restore a manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

', 'refs' => [ 'DBClusterSnapshotAttributeList$member' => NULL, ], ], 'DBClusterSnapshotAttributeList' => [ 'base' => NULL, 'refs' => [ 'DBClusterSnapshotAttributesResult$DBClusterSnapshotAttributes' => '

The list of attributes and values for the manual DB cluster snapshot.

', ], ], 'DBClusterSnapshotAttributesResult' => [ 'base' => '

Contains the results of a successful call to the DescribeDBClusterSnapshotAttributes API action.

Manual DB cluster snapshot attributes are used to authorize other Amazon Web Services accounts to copy or restore a manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

', 'refs' => [ 'DescribeDBClusterSnapshotAttributesResult$DBClusterSnapshotAttributesResult' => NULL, 'ModifyDBClusterSnapshotAttributeResult$DBClusterSnapshotAttributesResult' => NULL, ], ], 'DBClusterSnapshotList' => [ 'base' => NULL, 'refs' => [ 'DBClusterSnapshotMessage$DBClusterSnapshots' => '

Provides a list of DB cluster snapshots for the user.

', ], ], 'DBClusterSnapshotMessage' => [ 'base' => '

Provides a list of DB cluster snapshots for the user as the result of a call to the DescribeDBClusterSnapshots action.

', 'refs' => [], ], 'DBClusterSnapshotNotFoundFault' => [ 'base' => '

DBClusterSnapshotIdentifier doesn\'t refer to an existing DB cluster snapshot.

', 'refs' => [], ], 'DBClusterStatusInfo' => [ 'base' => '

Reserved for future use.

', 'refs' => [ 'DBClusterStatusInfoList$member' => NULL, ], ], 'DBClusterStatusInfoList' => [ 'base' => NULL, 'refs' => [ 'DBCluster$StatusInfos' => '

Reserved for future use.

', ], ], 'DBEngineVersion' => [ 'base' => '

This data type is used as a response element in the action DescribeDBEngineVersions.

', 'refs' => [ 'DBEngineVersionList$member' => NULL, ], ], 'DBEngineVersionList' => [ 'base' => NULL, 'refs' => [ 'DBEngineVersionMessage$DBEngineVersions' => '

A list of DBEngineVersion elements.

', ], ], 'DBEngineVersionMessage' => [ 'base' => '

Contains the result of a successful invocation of the DescribeDBEngineVersions action.

', 'refs' => [], ], 'DBInstance' => [ 'base' => '

Contains the details of an Amazon RDS DB instance.

This data type is used as a response element in the operations CreateDBInstance, CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance, PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3, RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.

', 'refs' => [ 'CreateDBInstanceReadReplicaResult$DBInstance' => NULL, 'CreateDBInstanceResult$DBInstance' => NULL, 'DBInstanceList$member' => NULL, 'DeleteDBInstanceResult$DBInstance' => NULL, 'ModifyDBInstanceResult$DBInstance' => NULL, 'PromoteReadReplicaResult$DBInstance' => NULL, 'RebootDBInstanceResult$DBInstance' => NULL, 'RestoreDBInstanceFromDBSnapshotResult$DBInstance' => NULL, 'RestoreDBInstanceFromS3Result$DBInstance' => NULL, 'RestoreDBInstanceToPointInTimeResult$DBInstance' => NULL, 'StartDBInstanceResult$DBInstance' => NULL, 'StopDBInstanceResult$DBInstance' => NULL, 'SwitchoverReadReplicaResult$DBInstance' => NULL, ], ], 'DBInstanceAlreadyExistsFault' => [ 'base' => '

The user already has a DB instance with the given identifier.

', 'refs' => [], ], 'DBInstanceAutomatedBackup' => [ 'base' => '

An automated backup of a DB instance. It consists of system backups, transaction logs, and the database instance properties that existed at the time you deleted the source instance.

', 'refs' => [ 'DBInstanceAutomatedBackupList$member' => NULL, 'DeleteDBInstanceAutomatedBackupResult$DBInstanceAutomatedBackup' => NULL, 'StartDBInstanceAutomatedBackupsReplicationResult$DBInstanceAutomatedBackup' => NULL, 'StopDBInstanceAutomatedBackupsReplicationResult$DBInstanceAutomatedBackup' => NULL, ], ], 'DBInstanceAutomatedBackupList' => [ 'base' => NULL, 'refs' => [ 'DBInstanceAutomatedBackupMessage$DBInstanceAutomatedBackups' => '

A list of DBInstanceAutomatedBackup instances.

', ], ], 'DBInstanceAutomatedBackupMessage' => [ 'base' => '

Contains the result of a successful invocation of the DescribeDBInstanceAutomatedBackups action.

', 'refs' => [], ], 'DBInstanceAutomatedBackupNotFoundFault' => [ 'base' => '

No automated backup for this DB instance was found.

', 'refs' => [], ], 'DBInstanceAutomatedBackupQuotaExceededFault' => [ 'base' => '

The quota for retained automated backups was exceeded. This prevents you from retaining any additional automated backups. The retained automated backups quota is the same as your DB instance quota.

', 'refs' => [], ], 'DBInstanceAutomatedBackupsReplication' => [ 'base' => '

Automated backups of a DB instance replicated to another Amazon Web Services Region. They consist of system backups, transaction logs, and database instance properties.

', 'refs' => [ 'DBInstanceAutomatedBackupsReplicationList$member' => NULL, ], ], 'DBInstanceAutomatedBackupsReplicationList' => [ 'base' => NULL, 'refs' => [ 'DBInstance$DBInstanceAutomatedBackupsReplications' => '

The list of replicated automated backups associated with the DB instance.

', 'DBInstanceAutomatedBackup$DBInstanceAutomatedBackupsReplications' => '

The list of replications to different Amazon Web Services Regions associated with the automated backup.

', ], ], 'DBInstanceList' => [ 'base' => NULL, 'refs' => [ 'DBInstanceMessage$DBInstances' => '

A list of DBInstance instances.

', ], ], 'DBInstanceMessage' => [ 'base' => '

Contains the result of a successful invocation of the DescribeDBInstances action.

', 'refs' => [], ], 'DBInstanceNotFoundFault' => [ 'base' => '

DBInstanceIdentifier doesn\'t refer to an existing DB instance.

', 'refs' => [], ], 'DBInstanceNotReadyFault' => [ 'base' => '

An attempt to download or examine log files didn\'t succeed because an Aurora Serverless v2 instance was paused.

', 'refs' => [], ], 'DBInstanceRole' => [ 'base' => '

Information about an Amazon Web Services Identity and Access Management (IAM) role that is associated with a DB instance.

', 'refs' => [ 'DBInstanceRoles$member' => NULL, ], ], 'DBInstanceRoleAlreadyExistsFault' => [ 'base' => '

The specified RoleArn or FeatureName value is already associated with the DB instance.

', 'refs' => [], ], 'DBInstanceRoleNotFoundFault' => [ 'base' => '

The specified RoleArn value doesn\'t match the specified feature for the DB instance.

', 'refs' => [], ], 'DBInstanceRoleQuotaExceededFault' => [ 'base' => '

You can\'t associate any more Amazon Web Services Identity and Access Management (IAM) roles with the DB instance because the quota has been reached.

', 'refs' => [], ], 'DBInstanceRoles' => [ 'base' => NULL, 'refs' => [ 'DBInstance$AssociatedRoles' => '

The Amazon Web Services Identity and Access Management (IAM) roles associated with the DB instance.

', ], ], 'DBInstanceStatusInfo' => [ 'base' => '

Provides a list of status information for a DB instance.

', 'refs' => [ 'DBInstanceStatusInfoList$member' => NULL, ], ], 'DBInstanceStatusInfoList' => [ 'base' => NULL, 'refs' => [ 'DBInstance$StatusInfos' => '

The status of a read replica. If the DB instance isn\'t a read replica, the value is blank.

', ], ], 'DBLogFileNotFoundFault' => [ 'base' => '

LogFileName doesn\'t refer to an existing DB log file.

', 'refs' => [], ], 'DBMajorEngineVersion' => [ 'base' => '

This data type is used as a response element in the operation DescribeDBMajorEngineVersions.

', 'refs' => [ 'DBMajorEngineVersionsList$member' => NULL, ], ], 'DBMajorEngineVersionsList' => [ 'base' => NULL, 'refs' => [ 'DescribeDBMajorEngineVersionsResponse$DBMajorEngineVersions' => '

A list of DBMajorEngineVersion elements.

', ], ], 'DBParameterGroup' => [ 'base' => '

Contains the details of an Amazon RDS DB parameter group.

This data type is used as a response element in the DescribeDBParameterGroups action.

', 'refs' => [ 'CopyDBParameterGroupResult$DBParameterGroup' => NULL, 'CreateDBParameterGroupResult$DBParameterGroup' => NULL, 'DBParameterGroupList$member' => NULL, ], ], 'DBParameterGroupAlreadyExistsFault' => [ 'base' => '

A DB parameter group with the same name exists.

', 'refs' => [], ], 'DBParameterGroupDetails' => [ 'base' => '

Contains the result of a successful invocation of the DescribeDBParameters action.

', 'refs' => [], ], 'DBParameterGroupList' => [ 'base' => NULL, 'refs' => [ 'DBParameterGroupsMessage$DBParameterGroups' => '

A list of DBParameterGroup instances.

', ], ], 'DBParameterGroupNameMessage' => [ 'base' => '

Contains the result of a successful invocation of the ModifyDBParameterGroup or ResetDBParameterGroup operation.

', 'refs' => [], ], 'DBParameterGroupNotFoundFault' => [ 'base' => '

DBParameterGroupName doesn\'t refer to an existing DB parameter group.

', 'refs' => [], ], 'DBParameterGroupQuotaExceededFault' => [ 'base' => '

The request would result in the user exceeding the allowed number of DB parameter groups.

', 'refs' => [], ], 'DBParameterGroupStatus' => [ 'base' => '

The status of the DB parameter group.

This data type is used as a response element in the following actions:

  • CreateDBInstance

  • CreateDBInstanceReadReplica

  • DeleteDBInstance

  • ModifyDBInstance

  • RebootDBInstance

  • RestoreDBInstanceFromDBSnapshot

', 'refs' => [ 'DBParameterGroupStatusList$member' => NULL, ], ], 'DBParameterGroupStatusList' => [ 'base' => NULL, 'refs' => [ 'DBInstance$DBParameterGroups' => '

The list of DB parameter groups applied to this DB instance.

', ], ], 'DBParameterGroupsMessage' => [ 'base' => '

Contains the result of a successful invocation of the DescribeDBParameterGroups action.

', 'refs' => [], ], 'DBProxy' => [ 'base' => '

The data structure representing a proxy managed by the RDS Proxy.

This data type is used as a response element in the DescribeDBProxies action.

', 'refs' => [ 'CreateDBProxyResponse$DBProxy' => '

The DBProxy structure corresponding to the new proxy.

', 'DBProxyList$member' => NULL, 'DeleteDBProxyResponse$DBProxy' => '

The data structure representing the details of the DB proxy that you delete.

', 'ModifyDBProxyResponse$DBProxy' => '

The DBProxy object representing the new settings for the proxy.

', ], ], 'DBProxyAlreadyExistsFault' => [ 'base' => '

The specified proxy name must be unique for all proxies owned by your Amazon Web Services account in the specified Amazon Web Services Region.

', 'refs' => [], ], 'DBProxyEndpoint' => [ 'base' => '

The data structure representing an endpoint associated with a DB proxy. RDS automatically creates one endpoint for each DB proxy. For Aurora DB clusters, you can associate additional endpoints with the same DB proxy. These endpoints can be read/write or read-only. They can also reside in different VPCs than the associated DB proxy.

This data type is used as a response element in the DescribeDBProxyEndpoints operation.

', 'refs' => [ 'CreateDBProxyEndpointResponse$DBProxyEndpoint' => '

The DBProxyEndpoint object that is created by the API operation. The DB proxy endpoint that you create might provide capabilities such as read/write or read-only operations, or using a different VPC than the proxy\'s default VPC.

', 'DBProxyEndpointList$member' => NULL, 'DeleteDBProxyEndpointResponse$DBProxyEndpoint' => '

The data structure representing the details of the DB proxy endpoint that you delete.

', 'ModifyDBProxyEndpointResponse$DBProxyEndpoint' => '

The DBProxyEndpoint object representing the new settings for the DB proxy endpoint.

', ], ], 'DBProxyEndpointAlreadyExistsFault' => [ 'base' => '

The specified DB proxy endpoint name must be unique for all DB proxy endpoints owned by your Amazon Web Services account in the specified Amazon Web Services Region.

', 'refs' => [], ], 'DBProxyEndpointList' => [ 'base' => NULL, 'refs' => [ 'DescribeDBProxyEndpointsResponse$DBProxyEndpoints' => '

The list of ProxyEndpoint objects returned by the API operation.

', ], ], 'DBProxyEndpointName' => [ 'base' => NULL, 'refs' => [ 'CreateDBProxyEndpointRequest$DBProxyEndpointName' => '

The name of the DB proxy endpoint to create.

', 'DeleteDBProxyEndpointRequest$DBProxyEndpointName' => '

The name of the DB proxy endpoint to delete.

', 'DescribeDBProxyEndpointsRequest$DBProxyEndpointName' => '

The name of a DB proxy endpoint to describe. If you omit this parameter, the output includes information about all DB proxy endpoints associated with the specified proxy.

', 'ModifyDBProxyEndpointRequest$DBProxyEndpointName' => '

The name of the DB proxy sociated with the DB proxy endpoint that you want to modify.

', 'ModifyDBProxyEndpointRequest$NewDBProxyEndpointName' => '

The new identifier for the DBProxyEndpoint. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can\'t end with a hyphen or contain two consecutive hyphens.

', ], ], 'DBProxyEndpointNotFoundFault' => [ 'base' => '

The DB proxy endpoint doesn\'t exist.

', 'refs' => [], ], 'DBProxyEndpointQuotaExceededFault' => [ 'base' => '

The DB proxy already has the maximum number of endpoints.

', 'refs' => [], ], 'DBProxyEndpointStatus' => [ 'base' => NULL, 'refs' => [ 'DBProxyEndpoint$Status' => '

The current status of this DB proxy endpoint. A status of available means the endpoint is ready to handle requests. Other values indicate that you must wait for the endpoint to be ready, or take some action to resolve an issue.

', ], ], 'DBProxyEndpointTargetRole' => [ 'base' => NULL, 'refs' => [ 'CreateDBProxyEndpointRequest$TargetRole' => '

The role of the DB proxy endpoint. The role determines whether the endpoint can be used for read/write or only read operations. The default is READ_WRITE. The only role that proxies for RDS for Microsoft SQL Server support is READ_WRITE.

', 'DBProxyEndpoint$TargetRole' => '

A value that indicates whether the DB proxy endpoint can be used for read/write or read-only operations.

', ], ], 'DBProxyList' => [ 'base' => NULL, 'refs' => [ 'DescribeDBProxiesResponse$DBProxies' => '

A return value representing an arbitrary number of DBProxy data structures.

', ], ], 'DBProxyName' => [ 'base' => NULL, 'refs' => [ 'CreateDBProxyEndpointRequest$DBProxyName' => '

The name of the DB proxy associated with the DB proxy endpoint that you create.

', 'CreateDBProxyRequest$DBProxyName' => '

The identifier for the proxy. This name must be unique for all proxies owned by your Amazon Web Services account in the specified Amazon Web Services Region. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can\'t end with a hyphen or contain two consecutive hyphens.

', 'DeleteDBProxyRequest$DBProxyName' => '

The name of the DB proxy to delete.

', 'DeregisterDBProxyTargetsRequest$DBProxyName' => '

The identifier of the DBProxy that is associated with the DBProxyTargetGroup.

', 'DescribeDBProxiesRequest$DBProxyName' => '

The name of the DB proxy. If you omit this parameter, the output includes information about all DB proxies owned by your Amazon Web Services account ID.

', 'DescribeDBProxyEndpointsRequest$DBProxyName' => '

The name of the DB proxy whose endpoints you want to describe. If you omit this parameter, the output includes information about all DB proxy endpoints associated with all your DB proxies.

', 'DescribeDBProxyTargetGroupsRequest$DBProxyName' => '

The identifier of the DBProxy associated with the target group.

', 'DescribeDBProxyTargetsRequest$DBProxyName' => '

The identifier of the DBProxyTarget to describe.

', 'ModifyDBProxyRequest$DBProxyName' => '

The identifier for the DBProxy to modify.

', 'ModifyDBProxyRequest$NewDBProxyName' => '

The new identifier for the DBProxy. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can\'t end with a hyphen or contain two consecutive hyphens.

', 'ModifyDBProxyTargetGroupRequest$DBProxyName' => '

The name of the proxy.

', 'RegisterDBProxyTargetsRequest$DBProxyName' => '

The identifier of the DBProxy that is associated with the DBProxyTargetGroup.

', ], ], 'DBProxyNotFoundFault' => [ 'base' => '

The specified proxy name doesn\'t correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

', 'refs' => [], ], 'DBProxyQuotaExceededFault' => [ 'base' => '

Your Amazon Web Services account already has the maximum number of proxies in the specified Amazon Web Services Region.

', 'refs' => [], ], 'DBProxyStatus' => [ 'base' => NULL, 'refs' => [ 'DBProxy$Status' => '

The current status of this proxy. A status of available means the proxy is ready to handle requests. Other values indicate that you must wait for the proxy to be ready, or take some action to resolve an issue.

', ], ], 'DBProxyTarget' => [ 'base' => '

Contains the details for an RDS Proxy target. It represents an RDS DB instance or Aurora DB cluster that the proxy can connect to. One or more targets are associated with an RDS Proxy target group.

This data type is used as a response element in the DescribeDBProxyTargets action.

', 'refs' => [ 'TargetList$member' => NULL, ], ], 'DBProxyTargetAlreadyRegisteredFault' => [ 'base' => '

The proxy is already associated with the specified RDS DB instance or Aurora DB cluster.

', 'refs' => [], ], 'DBProxyTargetGroup' => [ 'base' => '

Represents a set of RDS DB instances, Aurora DB clusters, or both that a proxy can connect to. Currently, each target group is associated with exactly one RDS DB instance or Aurora DB cluster.

This data type is used as a response element in the DescribeDBProxyTargetGroups action.

', 'refs' => [ 'ModifyDBProxyTargetGroupResponse$DBProxyTargetGroup' => '

The settings of the modified DBProxyTarget.

', 'TargetGroupList$member' => NULL, ], ], 'DBProxyTargetGroupName' => [ 'base' => NULL, 'refs' => [ 'DeregisterDBProxyTargetsRequest$TargetGroupName' => '

The identifier of the DBProxyTargetGroup.

', 'DescribeDBProxyTargetGroupsRequest$TargetGroupName' => '

The identifier of the DBProxyTargetGroup to describe.

', 'DescribeDBProxyTargetsRequest$TargetGroupName' => '

The identifier of the DBProxyTargetGroup to describe.

', 'ModifyDBProxyTargetGroupRequest$TargetGroupName' => '

The name of the target group to modify.

', 'RegisterDBProxyTargetsRequest$TargetGroupName' => '

The identifier of the DBProxyTargetGroup.

', ], ], 'DBProxyTargetGroupNotFoundFault' => [ 'base' => '

The specified target group isn\'t available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

', 'refs' => [], ], 'DBProxyTargetNotFoundFault' => [ 'base' => '

The specified RDS DB instance or Aurora DB cluster isn\'t available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

', 'refs' => [], ], 'DBRecommendation' => [ 'base' => '

The recommendation for your DB instances, DB clusters, and DB parameter groups.

', 'refs' => [ 'DBRecommendationList$member' => NULL, 'DBRecommendationMessage$DBRecommendation' => NULL, ], ], 'DBRecommendationList' => [ 'base' => NULL, 'refs' => [ 'DBRecommendationsMessage$DBRecommendations' => '

A list of recommendations which is returned from DescribeDBRecommendations API request.

', ], ], 'DBRecommendationMessage' => [ 'base' => NULL, 'refs' => [], ], 'DBRecommendationsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DBSecurityGroup' => [ 'base' => '

Contains the details for an Amazon RDS DB security group.

This data type is used as a response element in the DescribeDBSecurityGroups action.

', 'refs' => [ 'AuthorizeDBSecurityGroupIngressResult$DBSecurityGroup' => NULL, 'CreateDBSecurityGroupResult$DBSecurityGroup' => NULL, 'DBSecurityGroups$member' => NULL, 'RevokeDBSecurityGroupIngressResult$DBSecurityGroup' => NULL, ], ], 'DBSecurityGroupAlreadyExistsFault' => [ 'base' => '

A DB security group with the name specified in DBSecurityGroupName already exists.

', 'refs' => [], ], 'DBSecurityGroupMembership' => [ 'base' => '

This data type is used as a response element in the following actions:

  • ModifyDBInstance

  • RebootDBInstance

  • RestoreDBInstanceFromDBSnapshot

  • RestoreDBInstanceToPointInTime

', 'refs' => [ 'DBSecurityGroupMembershipList$member' => NULL, ], ], 'DBSecurityGroupMembershipList' => [ 'base' => NULL, 'refs' => [ 'DBInstance$DBSecurityGroups' => '

A list of DB security group elements containing DBSecurityGroup.Name and DBSecurityGroup.Status subelements.

', 'Option$DBSecurityGroupMemberships' => '

If the option requires access to a port, then this DB security group allows access to the port.

', ], ], 'DBSecurityGroupMessage' => [ 'base' => '

Contains the result of a successful invocation of the DescribeDBSecurityGroups action.

', 'refs' => [], ], 'DBSecurityGroupNameList' => [ 'base' => NULL, 'refs' => [ 'CreateDBInstanceMessage$DBSecurityGroups' => '

A list of DB security groups to associate with this DB instance.

This setting applies to the legacy EC2-Classic platform, which is no longer used to create new DB instances. Use the VpcSecurityGroupIds setting instead.

', 'ModifyDBInstanceMessage$DBSecurityGroups' => '

A list of DB security groups to authorize on this DB instance. Changing this setting doesn\'t result in an outage and the change is asynchronously applied as soon as possible.

This setting doesn\'t apply to RDS Custom DB instances.

Constraints:

  • If supplied, must match existing DB security groups.

', 'OptionConfiguration$DBSecurityGroupMemberships' => '

A list of DB security groups used for this option.

', 'RestoreDBInstanceFromS3Message$DBSecurityGroups' => '

A list of DB security groups to associate with this DB instance.

Default: The default DB security group for the database engine.

', ], ], 'DBSecurityGroupNotFoundFault' => [ 'base' => '

DBSecurityGroupName doesn\'t refer to an existing DB security group.

', 'refs' => [], ], 'DBSecurityGroupNotSupportedFault' => [ 'base' => '

A DB security group isn\'t allowed for this action.

', 'refs' => [], ], 'DBSecurityGroupQuotaExceededFault' => [ 'base' => '

The request would result in the user exceeding the allowed number of DB security groups.

', 'refs' => [], ], 'DBSecurityGroups' => [ 'base' => NULL, 'refs' => [ 'DBSecurityGroupMessage$DBSecurityGroups' => '

A list of DBSecurityGroup instances.

', ], ], 'DBShardGroup' => [ 'base' => '

Contains the details for an Amazon RDS DB shard group.

', 'refs' => [ 'DBShardGroupsList$member' => NULL, ], ], 'DBShardGroupIdentifier' => [ 'base' => NULL, 'refs' => [ 'DBShardGroup$DBShardGroupIdentifier' => '

The name of the DB shard group.

', 'DeleteDBShardGroupMessage$DBShardGroupIdentifier' => '

The name of the DB shard group to delete.

', 'DescribeDBShardGroupsMessage$DBShardGroupIdentifier' => '

The user-supplied DB shard group identifier. If this parameter is specified, information for only the specific DB shard group is returned. This parameter isn\'t case-sensitive.

Constraints:

  • If supplied, must match an existing DB shard group identifier.

', 'ModifyDBShardGroupMessage$DBShardGroupIdentifier' => '

The name of the DB shard group to modify.

', 'RebootDBShardGroupMessage$DBShardGroupIdentifier' => '

The name of the DB shard group to reboot.

', ], ], 'DBShardGroupsList' => [ 'base' => NULL, 'refs' => [ 'DescribeDBShardGroupsResponse$DBShardGroups' => '

Contains a list of DB shard groups for the user.

', ], ], 'DBSnapshot' => [ 'base' => '

Contains the details of an Amazon RDS DB snapshot.

This data type is used as a response element in the DescribeDBSnapshots action.

', 'refs' => [ 'CopyDBSnapshotResult$DBSnapshot' => NULL, 'CreateDBSnapshotResult$DBSnapshot' => NULL, 'DBSnapshotList$member' => NULL, 'DeleteDBSnapshotResult$DBSnapshot' => NULL, 'ModifyDBSnapshotResult$DBSnapshot' => NULL, ], ], 'DBSnapshotAlreadyExistsFault' => [ 'base' => '

DBSnapshotIdentifier is already used by an existing snapshot.

', 'refs' => [], ], 'DBSnapshotAttribute' => [ 'base' => '

Contains the name and values of a manual DB snapshot attribute

Manual DB snapshot attributes are used to authorize other Amazon Web Services accounts to restore a manual DB snapshot. For more information, see the ModifyDBSnapshotAttribute API.

', 'refs' => [ 'DBSnapshotAttributeList$member' => NULL, ], ], 'DBSnapshotAttributeList' => [ 'base' => NULL, 'refs' => [ 'DBSnapshotAttributesResult$DBSnapshotAttributes' => '

The list of attributes and values for the manual DB snapshot.

', ], ], 'DBSnapshotAttributesResult' => [ 'base' => '

Contains the results of a successful call to the DescribeDBSnapshotAttributes API action.

Manual DB snapshot attributes are used to authorize other Amazon Web Services accounts to copy or restore a manual DB snapshot. For more information, see the ModifyDBSnapshotAttribute API action.

', 'refs' => [ 'DescribeDBSnapshotAttributesResult$DBSnapshotAttributesResult' => NULL, 'ModifyDBSnapshotAttributeResult$DBSnapshotAttributesResult' => NULL, ], ], 'DBSnapshotList' => [ 'base' => NULL, 'refs' => [ 'DBSnapshotMessage$DBSnapshots' => '

A list of DBSnapshot instances.

', ], ], 'DBSnapshotMessage' => [ 'base' => '

Contains the result of a successful invocation of the DescribeDBSnapshots action.

', 'refs' => [], ], 'DBSnapshotNotFoundFault' => [ 'base' => '

DBSnapshotIdentifier doesn\'t refer to an existing DB snapshot.

', 'refs' => [], ], 'DBSnapshotTenantDatabase' => [ 'base' => '

Contains the details of a tenant database in a snapshot of a DB instance.

', 'refs' => [ 'DBSnapshotTenantDatabasesList$member' => NULL, ], ], 'DBSnapshotTenantDatabaseNotFoundFault' => [ 'base' => '

The specified snapshot tenant database wasn\'t found.

', 'refs' => [], ], 'DBSnapshotTenantDatabasesList' => [ 'base' => NULL, 'refs' => [ 'DBSnapshotTenantDatabasesMessage$DBSnapshotTenantDatabases' => '

A list of DB snapshot tenant databases.

', ], ], 'DBSnapshotTenantDatabasesMessage' => [ 'base' => NULL, 'refs' => [], ], 'DBSubnetGroup' => [ 'base' => '

Contains the details of an Amazon RDS DB subnet group.

This data type is used as a response element in the DescribeDBSubnetGroups action.

', 'refs' => [ 'CreateDBSubnetGroupResult$DBSubnetGroup' => NULL, 'DBInstance$DBSubnetGroup' => '

Information about the subnet group associated with the DB instance, including the name, description, and subnets in the subnet group.

', 'DBSubnetGroups$member' => NULL, 'ModifyDBSubnetGroupResult$DBSubnetGroup' => NULL, ], ], 'DBSubnetGroupAlreadyExistsFault' => [ 'base' => '

DBSubnetGroupName is already used by an existing DB subnet group.

', 'refs' => [], ], 'DBSubnetGroupDoesNotCoverEnoughAZs' => [ 'base' => '

Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

', 'refs' => [], ], 'DBSubnetGroupMessage' => [ 'base' => '

Contains the result of a successful invocation of the DescribeDBSubnetGroups action.

', 'refs' => [], ], 'DBSubnetGroupNotAllowedFault' => [ 'base' => '

The DBSubnetGroup shouldn\'t be specified while creating read replicas that lie in the same region as the source instance.

', 'refs' => [], ], 'DBSubnetGroupNotFoundFault' => [ 'base' => '

DBSubnetGroupName doesn\'t refer to an existing DB subnet group.

', 'refs' => [], ], 'DBSubnetGroupQuotaExceededFault' => [ 'base' => '

The request would result in the user exceeding the allowed number of DB subnet groups.

', 'refs' => [], ], 'DBSubnetGroups' => [ 'base' => NULL, 'refs' => [ 'DBSubnetGroupMessage$DBSubnetGroups' => '

A list of DBSubnetGroup instances.

', ], ], 'DBSubnetQuotaExceededFault' => [ 'base' => '

The request would result in the user exceeding the allowed number of subnets in a DB subnet groups.

', 'refs' => [], ], 'DBUpgradeDependencyFailureFault' => [ 'base' => '

The DB upgrade failed because a resource the DB depends on can\'t be modified.

', 'refs' => [], ], 'DataFilter' => [ 'base' => NULL, 'refs' => [ 'CreateIntegrationMessage$DataFilter' => '

Data filtering options for the integration. For more information, see Data filtering for Aurora zero-ETL integrations with Amazon Redshift or Data filtering for Amazon RDS zero-ETL integrations with Amazon Redshift.

', 'Integration$DataFilter' => '

Data filters for the integration. These filters determine which tables from the source database are sent to the target Amazon Redshift data warehouse.

', 'ModifyIntegrationMessage$DataFilter' => '

A new data filter for the integration. For more information, see Data filtering for Aurora zero-ETL integrations with Amazon Redshift or Data filtering for Amazon RDS zero-ETL integrations with Amazon Redshift.

', ], ], 'DatabaseArn' => [ 'base' => NULL, 'refs' => [ 'BlueGreenDeployment$Source' => '

The source database for the blue/green deployment.

Before switchover, the source database is the production database in the blue environment.

', 'BlueGreenDeployment$Target' => '

The target database for the blue/green deployment.

Before switchover, the target database is the clone database in the green environment.

', 'CreateBlueGreenDeploymentRequest$Source' => '

The Amazon Resource Name (ARN) of the source production database.

Specify the database that you want to clone. The blue/green deployment creates this database in the green environment. You can make updates to the database in the green environment, such as an engine version upgrade. When you are ready, you can switch the database in the green environment to be the production database.

', 'SwitchoverDetail$SourceMember' => '

The Amazon Resource Name (ARN) of a resource in the blue environment.

', 'SwitchoverDetail$TargetMember' => '

The Amazon Resource Name (ARN) of a resource in the green environment.

', ], ], 'DeleteBlueGreenDeploymentRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteBlueGreenDeploymentResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteCustomDBEngineVersionMessage' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBClusterAutomatedBackupMessage' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBClusterAutomatedBackupResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBClusterEndpointMessage' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBClusterMessage' => [ 'base' => '

', 'refs' => [], ], 'DeleteDBClusterParameterGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'DeleteDBClusterResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBClusterSnapshotMessage' => [ 'base' => '

', 'refs' => [], ], 'DeleteDBClusterSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBInstanceAutomatedBackupMessage' => [ 'base' => '

Parameter input for the DeleteDBInstanceAutomatedBackup operation.

', 'refs' => [], ], 'DeleteDBInstanceAutomatedBackupResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBInstanceMessage' => [ 'base' => '

', 'refs' => [], ], 'DeleteDBInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBParameterGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'DeleteDBProxyEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBProxyEndpointResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBProxyRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBProxyResponse' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBSecurityGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'DeleteDBShardGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBSnapshotMessage' => [ 'base' => '

', 'refs' => [], ], 'DeleteDBSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteDBSubnetGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'DeleteEventSubscriptionMessage' => [ 'base' => '

', 'refs' => [], ], 'DeleteEventSubscriptionResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteGlobalClusterMessage' => [ 'base' => NULL, 'refs' => [], ], 'DeleteGlobalClusterResult' => [ 'base' => NULL, 'refs' => [], ], 'DeleteIntegrationMessage' => [ 'base' => NULL, 'refs' => [], ], 'DeleteOptionGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'DeleteTenantDatabaseMessage' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTenantDatabaseResult' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterDBProxyTargetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeregisterDBProxyTargetsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeAccountAttributesMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeBlueGreenDeploymentsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeBlueGreenDeploymentsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeCertificatesMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeDBClusterAutomatedBackupsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBClusterBacktracksMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeDBClusterEndpointsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBClusterParameterGroupsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeDBClusterParametersMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeDBClusterSnapshotAttributesMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeDBClusterSnapshotAttributesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBClusterSnapshotsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeDBClustersMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeDBEngineVersionsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBInstanceAutomatedBackupsMessage' => [ 'base' => '

Parameter input for DescribeDBInstanceAutomatedBackups.

', 'refs' => [], ], 'DescribeDBInstancesMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeDBLogFilesDetails' => [ 'base' => '

This data type is used as a response element to DescribeDBLogFiles.

', 'refs' => [ 'DescribeDBLogFilesList$member' => NULL, ], ], 'DescribeDBLogFilesList' => [ 'base' => NULL, 'refs' => [ 'DescribeDBLogFilesResponse$DescribeDBLogFiles' => '

The DB log files returned.

', ], ], 'DescribeDBLogFilesMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeDBLogFilesResponse' => [ 'base' => '

The response from a call to DescribeDBLogFiles.

', 'refs' => [], ], 'DescribeDBMajorEngineVersionsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBMajorEngineVersionsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBParameterGroupsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeDBParametersMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBProxiesRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBProxiesResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBProxyEndpointsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBProxyEndpointsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBProxyTargetGroupsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBProxyTargetGroupsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBProxyTargetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBProxyTargetsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBRecommendationsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBSecurityGroupsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeDBShardGroupsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBShardGroupsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBSnapshotAttributesMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeDBSnapshotAttributesResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBSnapshotTenantDatabasesMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDBSnapshotsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeDBSubnetGroupsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeEngineDefaultClusterParametersMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeEngineDefaultClusterParametersResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEngineDefaultParametersMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeEngineDefaultParametersResult' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEventCategoriesMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeEventSubscriptionsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeEventsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeExportTasksMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeGlobalClustersMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIntegrationsMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeIntegrationsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeOptionGroupOptionsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeOptionGroupsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeOrderableDBInstanceOptionsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribePendingMaintenanceActionsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeReservedDBInstancesMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeReservedDBInstancesOfferingsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeSourceRegionsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeTenantDatabasesMessage' => [ 'base' => NULL, 'refs' => [], ], 'DescribeValidDBInstanceModificationsMessage' => [ 'base' => '

', 'refs' => [], ], 'DescribeValidDBInstanceModificationsResult' => [ 'base' => NULL, 'refs' => [], ], 'Description' => [ 'base' => NULL, 'refs' => [ 'CreateCustomDBEngineVersionMessage$Description' => '

An optional description of your CEV.

', 'ModifyCustomDBEngineVersionMessage$Description' => '

An optional description of your CEV.

', 'UserAuthConfig$Description' => '

A user-specified description about the authentication used by a proxy to log in as a specific database user.

', ], ], 'DisableHttpEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'DisableHttpEndpointResponse' => [ 'base' => NULL, 'refs' => [], ], 'DocLink' => [ 'base' => '

A link to documentation that provides additional information for a recommendation.

', 'refs' => [ 'DocLinkList$member' => NULL, ], ], 'DocLinkList' => [ 'base' => NULL, 'refs' => [ 'DBRecommendation$Links' => '

A link to documentation that provides additional information about the recommendation.

', ], ], 'DomainMembership' => [ 'base' => '

An Active Directory Domain membership record associated with the DB instance or cluster.

', 'refs' => [ 'DomainMembershipList$member' => NULL, ], ], 'DomainMembershipList' => [ 'base' => NULL, 'refs' => [ 'DBCluster$DomainMemberships' => '

The Active Directory Domain membership records associated with the DB cluster.

', 'DBInstance$DomainMemberships' => '

The Active Directory Domain membership records associated with the DB instance.

', ], ], 'DomainNotFoundFault' => [ 'base' => '

Domain doesn\'t refer to an existing Active Directory domain.

', 'refs' => [], ], 'Double' => [ 'base' => NULL, 'refs' => [ 'DoubleRange$From' => '

The minimum value in the range.

', 'DoubleRange$To' => '

The maximum value in the range.

', 'RecurringCharge$RecurringChargeAmount' => '

The amount of the recurring charge.

', 'ReservedDBInstance$FixedPrice' => '

The fixed price charged for this reserved DB instance.

', 'ReservedDBInstance$UsagePrice' => '

The hourly price charged for this reserved DB instance.

', 'ReservedDBInstancesOffering$FixedPrice' => '

The fixed price charged for this offering.

', 'ReservedDBInstancesOffering$UsagePrice' => '

The hourly price charged for this offering.

', 'ScalarReferenceDetails$Value' => '

The value of a scalar reference.

', ], ], 'DoubleOptional' => [ 'base' => NULL, 'refs' => [ 'CreateDBShardGroupMessage$MaxACU' => '

The maximum capacity of the DB shard group in Aurora capacity units (ACUs).

', 'CreateDBShardGroupMessage$MinACU' => '

The minimum capacity of the DB shard group in Aurora capacity units (ACUs).

', 'DBShardGroup$MaxACU' => '

The maximum capacity of the DB shard group in Aurora capacity units (ACUs).

', 'DBShardGroup$MinACU' => '

The minimum capacity of the DB shard group in Aurora capacity units (ACUs).

', 'LimitlessDatabase$MinRequiredACU' => '

The minimum required capacity for Aurora Limitless Database in Aurora capacity units (ACUs).

', 'ModifyDBShardGroupMessage$MaxACU' => '

The maximum capacity of the DB shard group in Aurora capacity units (ACUs).

', 'ModifyDBShardGroupMessage$MinACU' => '

The minimum capacity of the DB shard group in Aurora capacity units (ACUs).

', 'OrderableDBInstanceOption$MinIopsPerGib' => '

Minimum provisioned IOPS per GiB for a DB instance.

', 'OrderableDBInstanceOption$MaxIopsPerGib' => '

Maximum provisioned IOPS per GiB for a DB instance.

', 'OrderableDBInstanceOption$MinStorageThroughputPerIops' => '

Minimum storage throughput to provisioned IOPS ratio for a DB instance.

', 'OrderableDBInstanceOption$MaxStorageThroughputPerIops' => '

Maximum storage throughput to provisioned IOPS ratio for a DB instance.

', 'ServerlessV2FeaturesSupport$MinCapacity' => '

If the minimum capacity is 0 ACUs, the engine version supports the automatic pause/resume feature of Aurora Serverless v2.

', 'ServerlessV2FeaturesSupport$MaxCapacity' => '

Specifies the upper Aurora Serverless v2 capacity limit for a particular engine version. Depending on the engine version, the maximum capacity for an Aurora Serverless v2 cluster might be 256 or 128.

', 'ServerlessV2ScalingConfiguration$MinCapacity' => '

The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 8, 8.5, 9, and so on. For Aurora versions that support the Aurora Serverless v2 auto-pause feature, the smallest value that you can use is 0. For versions that don\'t support Aurora Serverless v2 auto-pause, the smallest value that you can use is 0.5.

', 'ServerlessV2ScalingConfiguration$MaxCapacity' => '

The maximum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 32, 32.5, 33, and so on. The largest value that you can use is 256 for recent Aurora versions, or 128 for older versions.

', 'ServerlessV2ScalingConfigurationInfo$MinCapacity' => '

The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 8, 8.5, 9, and so on. For Aurora versions that support the Aurora Serverless v2 auto-pause feature, the smallest value that you can use is 0. For versions that don\'t support Aurora Serverless v2 auto-pause, the smallest value that you can use is 0.5.

', 'ServerlessV2ScalingConfigurationInfo$MaxCapacity' => '

The maximum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 32, 32.5, 33, and so on. The largest value that you can use is 256 for recent Aurora versions, or 128 for older versions.

', ], ], 'DoubleRange' => [ 'base' => '

A range of double values.

', 'refs' => [ 'DoubleRangeList$member' => NULL, ], ], 'DoubleRangeList' => [ 'base' => NULL, 'refs' => [ 'ValidStorageOptions$IopsToStorageRatio' => '

The valid range of Provisioned IOPS to gibibytes of storage multiplier. For example, 3-10, which means that provisioned IOPS can be between 3 and 10 times storage.

', 'ValidStorageOptions$StorageThroughputToIopsRatio' => '

The valid range of storage throughput to provisioned IOPS ratios. For example, 0-0.25.

', ], ], 'DownloadDBLogFilePortionDetails' => [ 'base' => '

This data type is used as a response element to DownloadDBLogFilePortion.

', 'refs' => [], ], 'DownloadDBLogFilePortionMessage' => [ 'base' => '

', 'refs' => [], ], 'EC2SecurityGroup' => [ 'base' => '

This data type is used as a response element in the following actions:

  • AuthorizeDBSecurityGroupIngress

  • DescribeDBSecurityGroups

  • RevokeDBSecurityGroupIngress

', 'refs' => [ 'EC2SecurityGroupList$member' => NULL, ], ], 'EC2SecurityGroupList' => [ 'base' => NULL, 'refs' => [ 'DBSecurityGroup$EC2SecurityGroups' => '

Contains a list of EC2SecurityGroup elements.

', ], ], 'Ec2ImagePropertiesNotSupportedFault' => [ 'base' => '

The AMI configuration prerequisite has not been met.

', 'refs' => [], ], 'EnableHttpEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'EnableHttpEndpointResponse' => [ 'base' => NULL, 'refs' => [], ], 'EncryptionContextMap' => [ 'base' => NULL, 'refs' => [ 'CreateIntegrationMessage$AdditionalEncryptionContext' => '

An optional set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see Encryption context in the Amazon Web Services Key Management Service Developer Guide.

You can only include this parameter if you specify the KMSKeyId parameter.

', 'Integration$AdditionalEncryptionContext' => '

The encryption context for the integration. For more information, see Encryption context in the Amazon Web Services Key Management Service Developer Guide.

', ], ], 'Endpoint' => [ 'base' => '

This data type represents the information you need to connect to an Amazon RDS DB instance. This data type is used as a response element in the following actions:

  • CreateDBInstance

  • DescribeDBInstances

  • DeleteDBInstance

For the data structure that represents Amazon Aurora DB cluster endpoints, see DBClusterEndpoint.

', 'refs' => [ 'DBInstance$Endpoint' => '

The connection endpoint for the DB instance.

The endpoint might not be shown for instances with the status of creating.

', 'DBInstance$ListenerEndpoint' => '

The listener connection endpoint for SQL Server Always On.

', ], ], 'Engine' => [ 'base' => NULL, 'refs' => [ 'DescribeDBMajorEngineVersionsRequest$Engine' => '

The database engine to return major version details for.

Valid Values:

  • aurora-mysql

  • aurora-postgresql

  • custom-sqlserver-ee

  • custom-sqlserver-se

  • custom-sqlserver-web

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

', ], ], 'EngineDefaults' => [ 'base' => '

Contains the result of a successful invocation of the DescribeEngineDefaultParameters action.

', 'refs' => [ 'DescribeEngineDefaultClusterParametersResult$EngineDefaults' => NULL, 'DescribeEngineDefaultParametersResult$EngineDefaults' => NULL, ], ], 'EngineFamily' => [ 'base' => NULL, 'refs' => [ 'CreateDBProxyRequest$EngineFamily' => '

The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. For Aurora MySQL, RDS for MariaDB, and RDS for MySQL databases, specify MYSQL. For Aurora PostgreSQL and RDS for PostgreSQL databases, specify POSTGRESQL. For RDS for Microsoft SQL Server, specify SQLSERVER.

', ], ], 'EngineModeList' => [ 'base' => NULL, 'refs' => [ 'DBEngineVersion$SupportedEngineModes' => '

A list of the supported DB engine modes.

', 'OrderableDBInstanceOption$SupportedEngineModes' => '

A list of the supported DB engine modes.

', 'Parameter$SupportedEngineModes' => '

The valid DB engine modes.

', 'UpgradeTarget$SupportedEngineModes' => '

A list of the supported DB engine modes for the target engine version.

', ], ], 'Event' => [ 'base' => '

This data type is used as a response element in the DescribeEvents action.

', 'refs' => [ 'EventList$member' => NULL, ], ], 'EventCategoriesList' => [ 'base' => NULL, 'refs' => [ 'CreateEventSubscriptionMessage$EventCategories' => '

A list of event categories for a particular source type (SourceType) that you want to subscribe to. You can see a list of the categories for a given source type in the "Amazon RDS event categories and event messages" section of the Amazon RDS User Guide or the Amazon Aurora User Guide . You can also see this list by using the DescribeEventCategories operation.

', 'DescribeEventsMessage$EventCategories' => '

A list of event categories that trigger notifications for a event notification subscription.

', 'Event$EventCategories' => '

Specifies the category for the event.

', 'EventCategoriesMap$EventCategories' => '

The event categories for the specified source type

', 'EventSubscription$EventCategoriesList' => '

A list of event categories for the RDS event notification subscription.

', 'ModifyEventSubscriptionMessage$EventCategories' => '

A list of event categories for a source type (SourceType) that you want to subscribe to. You can see a list of the categories for a given source type in Events in the Amazon RDS User Guide or by using the DescribeEventCategories operation.

', ], ], 'EventCategoriesMap' => [ 'base' => '

Contains the results of a successful invocation of the DescribeEventCategories operation.

', 'refs' => [ 'EventCategoriesMapList$member' => NULL, ], ], 'EventCategoriesMapList' => [ 'base' => NULL, 'refs' => [ 'EventCategoriesMessage$EventCategoriesMapList' => '

A list of EventCategoriesMap data types.

', ], ], 'EventCategoriesMessage' => [ 'base' => '

Data returned from the DescribeEventCategories operation.

', 'refs' => [], ], 'EventList' => [ 'base' => NULL, 'refs' => [ 'EventsMessage$Events' => '

A list of Event instances.

', ], ], 'EventSubscription' => [ 'base' => '

Contains the results of a successful invocation of the DescribeEventSubscriptions action.

', 'refs' => [ 'AddSourceIdentifierToSubscriptionResult$EventSubscription' => NULL, 'CreateEventSubscriptionResult$EventSubscription' => NULL, 'DeleteEventSubscriptionResult$EventSubscription' => NULL, 'EventSubscriptionsList$member' => NULL, 'ModifyEventSubscriptionResult$EventSubscription' => NULL, 'RemoveSourceIdentifierFromSubscriptionResult$EventSubscription' => NULL, ], ], 'EventSubscriptionQuotaExceededFault' => [ 'base' => '

You have reached the maximum number of event subscriptions.

', 'refs' => [], ], 'EventSubscriptionsList' => [ 'base' => NULL, 'refs' => [ 'EventSubscriptionsMessage$EventSubscriptionsList' => '

A list of EventSubscriptions data types.

', ], ], 'EventSubscriptionsMessage' => [ 'base' => '

Data returned by the DescribeEventSubscriptions action.

', 'refs' => [], ], 'EventsMessage' => [ 'base' => '

Contains the result of a successful invocation of the DescribeEvents action.

', 'refs' => [], ], 'ExportSourceType' => [ 'base' => NULL, 'refs' => [ 'DescribeExportTasksMessage$SourceType' => '

The type of source for the export.

', 'ExportTask$SourceType' => '

The type of source for the export.

', ], ], 'ExportTask' => [ 'base' => '

Contains the details of a snapshot or cluster export to Amazon S3.

This data type is used as a response element in the DescribeExportTasks operation.

', 'refs' => [ 'ExportTasksList$member' => NULL, ], ], 'ExportTaskAlreadyExistsFault' => [ 'base' => '

You can\'t start an export task that\'s already running.

', 'refs' => [], ], 'ExportTaskNotFoundFault' => [ 'base' => '

The export task doesn\'t exist.

', 'refs' => [], ], 'ExportTasksList' => [ 'base' => NULL, 'refs' => [ 'ExportTasksMessage$ExportTasks' => '

Information about an export of a snapshot or cluster to Amazon S3.

', ], ], 'ExportTasksMessage' => [ 'base' => NULL, 'refs' => [], ], 'FailoverDBClusterMessage' => [ 'base' => '

', 'refs' => [], ], 'FailoverDBClusterResult' => [ 'base' => NULL, 'refs' => [], ], 'FailoverGlobalClusterMessage' => [ 'base' => NULL, 'refs' => [], ], 'FailoverGlobalClusterResult' => [ 'base' => NULL, 'refs' => [], ], 'FailoverState' => [ 'base' => '

Contains the state of scheduled or in-process operations on a global cluster (Aurora global database). This data type is empty unless a switchover or failover operation is scheduled or is in progress on the Aurora global database.

', 'refs' => [ 'GlobalCluster$FailoverState' => '

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.

', ], ], 'FailoverStatus' => [ 'base' => NULL, 'refs' => [ 'FailoverState$Status' => '

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 – Aurora is promoting the chosen secondary Aurora DB cluster to become the new primary DB cluster to fail over the global cluster.

  • 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.

  • switching-over – This status covers the range of Aurora internal operations that take place during the switchover process, such as demoting the primary Aurora DB cluster, promoting the secondary Aurora DB cluster, and synchronizing replicas.

', ], ], 'FeatureNameList' => [ 'base' => NULL, 'refs' => [ 'DBEngineVersion$SupportedFeatureNames' => '

A list of features supported by the DB engine.

The supported features vary by DB engine and DB engine version.

To determine the supported features for a specific DB engine and DB engine version using the CLI, use the following command:

aws rds describe-db-engine-versions --engine <engine_name> --engine-version <engine_version>

For example, to determine the supported features for RDS for PostgreSQL version 13.3 using the CLI, use the following command:

aws rds describe-db-engine-versions --engine postgres --engine-version 13.3

The supported features are listed under SupportedFeatureNames in the output.

', ], ], 'Filter' => [ 'base' => '

A filter name and value pair that is used to return a more specific list of results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as IDs. The filters supported by a describe operation are documented with the describe operation.

Currently, wildcards are not supported in filters.

The following actions can be filtered:

  • DescribeDBClusterBacktracks

  • DescribeDBClusterEndpoints

  • DescribeDBClusters

  • DescribeDBInstances

  • DescribeDBRecommendations

  • DescribeDBShardGroups

  • DescribePendingMaintenanceActions

', 'refs' => [ 'FilterList$member' => NULL, ], ], 'FilterList' => [ 'base' => NULL, 'refs' => [ 'DescribeBlueGreenDeploymentsRequest$Filters' => '

A filter that specifies one or more blue/green deployments to describe.

Valid Values:

  • blue-green-deployment-identifier - Accepts system-generated identifiers for blue/green deployments. The results list only includes information about the blue/green deployments with the specified identifiers.

  • blue-green-deployment-name - Accepts user-supplied names for blue/green deployments. The results list only includes information about the blue/green deployments with the specified names.

  • source - Accepts source databases for a blue/green deployment. The results list only includes information about the blue/green deployments with the specified source databases.

  • target - Accepts target databases for a blue/green deployment. The results list only includes information about the blue/green deployments with the specified target databases.

', 'DescribeCertificatesMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeDBClusterAutomatedBackupsMessage$Filters' => '

A filter that specifies which resources to return based on status.

Supported filters are the following:

  • status

    • retained - Automated backups for deleted clusters and after backup replication is stopped.

  • db-cluster-id - Accepts DB cluster identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB cluster automated backups identified by these ARNs.

  • db-cluster-resource-id - Accepts DB resource identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB cluster resources identified by these ARNs.

Returns all resources by default. The status for each resource is specified in the response.

', 'DescribeDBClusterBacktracksMessage$Filters' => '

A filter that specifies one or more DB clusters to describe. Supported filters include the following:

  • db-cluster-backtrack-id - Accepts backtrack identifiers. The results list includes information about only the backtracks identified by these identifiers.

  • db-cluster-backtrack-status - Accepts any of the following backtrack status values:

    • applying

    • completed

    • failed

    • pending

    The results list includes information about only the backtracks identified by these values.

', 'DescribeDBClusterEndpointsMessage$Filters' => '

A set of name-value pairs that define which endpoints to include in the output. The filters are specified as name-value pairs, in the format Name=endpoint_type,Values=endpoint_type1,endpoint_type2,.... Name can be one of: db-cluster-endpoint-type, db-cluster-endpoint-custom-type, db-cluster-endpoint-id, db-cluster-endpoint-status. Values for the db-cluster-endpoint-type filter can be one or more of: reader, writer, custom. Values for the db-cluster-endpoint-custom-type filter can be one or more of: reader, any. Values for the db-cluster-endpoint-status filter can be one or more of: available, creating, deleting, inactive, modifying.

', 'DescribeDBClusterParameterGroupsMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeDBClusterParametersMessage$Filters' => '

A filter that specifies one or more DB cluster parameters to describe.

The only supported filter is parameter-name. The results list only includes information about the DB cluster parameters with these names.

', 'DescribeDBClusterSnapshotsMessage$Filters' => '

A filter that specifies one or more DB cluster snapshots to describe.

Supported filters:

  • db-cluster-id - Accepts DB cluster identifiers and DB cluster Amazon Resource Names (ARNs).

  • db-cluster-snapshot-id - Accepts DB cluster snapshot identifiers.

  • snapshot-type - Accepts types of DB cluster snapshots.

  • engine - Accepts names of database engines.

', 'DescribeDBClustersMessage$Filters' => '

A filter that specifies one or more DB clusters to describe.

Supported Filters:

  • clone-group-id - Accepts clone group identifiers. The results list only includes information about the DB clusters associated with these clone groups.

  • db-cluster-id - Accepts DB cluster identifiers and DB cluster Amazon Resource Names (ARNs). The results list only includes information about the DB clusters identified by these ARNs.

  • db-cluster-resource-id - Accepts DB cluster resource identifiers. The results list will only include information about the DB clusters identified by these DB cluster resource identifiers.

  • domain - Accepts Active Directory directory IDs. The results list only includes information about the DB clusters associated with these domains.

  • engine - Accepts engine names. The results list only includes information about the DB clusters for these engines.

', 'DescribeDBEngineVersionsMessage$Filters' => '

A filter that specifies one or more DB engine versions to describe.

Supported filters:

  • db-parameter-group-family - Accepts parameter groups family names. The results list only includes information about the DB engine versions for these parameter group families.

  • engine - Accepts engine names. The results list only includes information about the DB engine versions for these engines.

  • engine-mode - Accepts DB engine modes. The results list only includes information about the DB engine versions for these engine modes. Valid DB engine modes are the following:

    • global

    • multimaster

    • parallelquery

    • provisioned

    • serverless

  • engine-version - Accepts engine versions. The results list only includes information about the DB engine versions for these engine versions.

  • status - Accepts engine version statuses. The results list only includes information about the DB engine versions for these statuses. Valid statuses are the following:

    • available

    • deprecated

', 'DescribeDBInstanceAutomatedBackupsMessage$Filters' => '

A filter that specifies which resources to return based on status.

Supported filters are the following:

  • status

    • active - Automated backups for current instances.

    • creating - Automated backups that are waiting for the first automated snapshot to be available.

    • retained - Automated backups for deleted instances and after backup replication is stopped.

  • db-instance-id - Accepts DB instance identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB instance automated backups identified by these ARNs.

  • dbi-resource-id - Accepts DB resource identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB instance resources identified by these ARNs.

Returns all resources by default. The status for each resource is specified in the response.

', 'DescribeDBInstancesMessage$Filters' => '

A filter that specifies one or more DB instances to describe.

Supported Filters:

  • db-cluster-id - Accepts DB cluster identifiers and DB cluster Amazon Resource Names (ARNs). The results list only includes information about the DB instances associated with the DB clusters identified by these ARNs.

  • db-instance-id - Accepts DB instance identifiers and DB instance Amazon Resource Names (ARNs). The results list only includes information about the DB instances identified by these ARNs.

  • dbi-resource-id - Accepts DB instance resource identifiers. The results list only includes information about the DB instances identified by these DB instance resource identifiers.

  • domain - Accepts Active Directory directory IDs. The results list only includes information about the DB instances associated with these domains.

  • engine - Accepts engine names. The results list only includes information about the DB instances for these engines.

', 'DescribeDBLogFilesMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeDBParameterGroupsMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeDBParametersMessage$Filters' => '

A filter that specifies one or more DB parameters to describe.

The only supported filter is parameter-name. The results list only includes information about the DB parameters with these names.

', 'DescribeDBProxiesRequest$Filters' => '

This parameter is not currently supported.

', 'DescribeDBProxyEndpointsRequest$Filters' => '

This parameter is not currently supported.

', 'DescribeDBProxyTargetGroupsRequest$Filters' => '

This parameter is not currently supported.

', 'DescribeDBProxyTargetsRequest$Filters' => '

This parameter is not currently supported.

', 'DescribeDBRecommendationsMessage$Filters' => '

A filter that specifies one or more recommendations to describe.

Supported Filters:

  • recommendation-id - Accepts a list of recommendation identifiers. The results list only includes the recommendations whose identifier is one of the specified filter values.

  • status - Accepts a list of recommendation statuses.

    Valid values:

    • active - The recommendations which are ready for you to apply.

    • pending - The applied or scheduled recommendations which are in progress.

    • resolved - The recommendations which are completed.

    • dismissed - The recommendations that you dismissed.

    The results list only includes the recommendations whose status is one of the specified filter values.

  • severity - Accepts a list of recommendation severities. The results list only includes the recommendations whose severity is one of the specified filter values.

    Valid values:

    • high

    • medium

    • low

    • informational

  • type-id - Accepts a list of recommendation type identifiers. The results list only includes the recommendations whose type is one of the specified filter values.

  • dbi-resource-id - Accepts a list of database resource identifiers. The results list only includes the recommendations that generated for the specified databases.

  • cluster-resource-id - Accepts a list of cluster resource identifiers. The results list only includes the recommendations that generated for the specified clusters.

  • pg-arn - Accepts a list of parameter group ARNs. The results list only includes the recommendations that generated for the specified parameter groups.

  • cluster-pg-arn - Accepts a list of cluster parameter group ARNs. The results list only includes the recommendations that generated for the specified cluster parameter groups.

', 'DescribeDBSecurityGroupsMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeDBShardGroupsMessage$Filters' => '

A filter that specifies one or more DB shard groups to describe.

', 'DescribeDBSnapshotTenantDatabasesMessage$Filters' => '

A filter that specifies one or more tenant databases to describe.

Supported filters:

  • tenant-db-name - Tenant database names. The results list only includes information about the tenant databases that match these tenant DB names.

  • tenant-database-resource-id - Tenant database resource identifiers. The results list only includes information about the tenant databases contained within the DB snapshots.

  • dbi-resource-id - DB instance resource identifiers. The results list only includes information about snapshots containing tenant databases contained within the DB instances identified by these resource identifiers.

  • db-instance-id - Accepts DB instance identifiers and DB instance Amazon Resource Names (ARNs).

  • db-snapshot-id - Accepts DB snapshot identifiers.

  • snapshot-type - Accepts types of DB snapshots.

', 'DescribeDBSnapshotsMessage$Filters' => '

A filter that specifies one or more DB snapshots to describe.

Supported filters:

  • db-instance-id - Accepts DB instance identifiers and DB instance Amazon Resource Names (ARNs).

  • db-snapshot-id - Accepts DB snapshot identifiers.

  • dbi-resource-id - Accepts identifiers of source DB instances.

  • snapshot-type - Accepts types of DB snapshots.

  • engine - Accepts names of database engines.

', 'DescribeDBSubnetGroupsMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeEngineDefaultClusterParametersMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeEngineDefaultParametersMessage$Filters' => '

A filter that specifies one or more parameters to describe.

The only supported filter is parameter-name. The results list only includes information about the parameters with these names.

', 'DescribeEventCategoriesMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeEventSubscriptionsMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeEventsMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeExportTasksMessage$Filters' => '

Filters specify one or more snapshot or cluster exports to describe. The filters are specified as name-value pairs that define what to include in the output. Filter names and values are case-sensitive.

Supported filters include the following:

  • export-task-identifier - An identifier for the snapshot or cluster export task.

  • s3-bucket - The Amazon S3 bucket the data is exported to.

  • source-arn - The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon S3.

  • status - The status of the export task. Must be lowercase. Valid statuses are the following:

    • canceled

    • canceling

    • complete

    • failed

    • in_progress

    • starting

', 'DescribeGlobalClustersMessage$Filters' => '

A filter that specifies one or more global database clusters to describe. This parameter is case-sensitive.

Currently, the only supported filter is region.

If used, the request returns information about any global cluster with at least one member (primary or secondary) in the specified Amazon Web Services Regions.

', 'DescribeIntegrationsMessage$Filters' => '

A filter that specifies one or more resources to return.

', 'DescribeOptionGroupOptionsMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeOptionGroupsMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeOrderableDBInstanceOptionsMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribePendingMaintenanceActionsMessage$Filters' => '

A filter that specifies one or more resources to return pending maintenance actions for.

Supported filters:

  • db-cluster-id - Accepts DB cluster identifiers and DB cluster Amazon Resource Names (ARNs). The results list only includes pending maintenance actions for the DB clusters identified by these ARNs.

  • db-instance-id - Accepts DB instance identifiers and DB instance ARNs. The results list only includes pending maintenance actions for the DB instances identified by these ARNs.

', 'DescribeReservedDBInstancesMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeReservedDBInstancesOfferingsMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeSourceRegionsMessage$Filters' => '

This parameter isn\'t currently supported.

', 'DescribeTenantDatabasesMessage$Filters' => '

A filter that specifies one or more database tenants to describe.

Supported filters:

  • tenant-db-name - Tenant database names. The results list only includes information about the tenant databases that match these tenant DB names.

  • tenant-database-resource-id - Tenant database resource identifiers.

  • dbi-resource-id - DB instance resource identifiers. The results list only includes information about the tenants contained within the DB instances identified by these resource identifiers.

', 'ListTagsForResourceMessage$Filters' => '

This parameter isn\'t currently supported.

', ], ], 'FilterValueList' => [ 'base' => NULL, 'refs' => [ 'Filter$Values' => '

One or more filter values. Filter values are case-sensitive.

', ], ], 'FreeTierRestrictionError' => [ 'base' => NULL, 'refs' => [], ], 'GlobalCluster' => [ 'base' => '

A data type representing an Aurora global database.

', 'refs' => [ 'CreateGlobalClusterResult$GlobalCluster' => NULL, 'DeleteGlobalClusterResult$GlobalCluster' => NULL, 'FailoverGlobalClusterResult$GlobalCluster' => NULL, 'GlobalClusterList$member' => NULL, 'ModifyGlobalClusterResult$GlobalCluster' => NULL, 'RemoveFromGlobalClusterResult$GlobalCluster' => NULL, 'SwitchoverGlobalClusterResult$GlobalCluster' => NULL, ], ], 'GlobalClusterAlreadyExistsFault' => [ 'base' => '

The GlobalClusterIdentifier already exists. Specify a new global database identifier (unique name) to create a new global database cluster or to rename an existing one.

', 'refs' => [], ], 'GlobalClusterIdentifier' => [ 'base' => NULL, 'refs' => [ 'CreateDBClusterMessage$GlobalClusterIdentifier' => '

The global cluster ID of an Aurora cluster that becomes the primary cluster in the new global database cluster.

Valid for Cluster Type: Aurora DB clusters only

', 'CreateGlobalClusterMessage$GlobalClusterIdentifier' => '

The cluster identifier for this global database cluster. This parameter is stored as a lowercase string.

', 'DeleteGlobalClusterMessage$GlobalClusterIdentifier' => '

The cluster identifier of the global database cluster being deleted.

', 'DescribeGlobalClustersMessage$GlobalClusterIdentifier' => '

The user-supplied DB cluster identifier. If this parameter is specified, information from only the specific DB cluster is returned. This parameter isn\'t case-sensitive.

Constraints:

  • If supplied, must match an existing DBClusterIdentifier.

', 'FailoverGlobalClusterMessage$GlobalClusterIdentifier' => '

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.

', 'GlobalCluster$GlobalClusterIdentifier' => '

Contains a user-supplied global database cluster identifier. This identifier is the unique key that identifies a global database cluster.

', 'ModifyGlobalClusterMessage$GlobalClusterIdentifier' => '

The cluster identifier for the global cluster to modify. This parameter isn\'t case-sensitive.

Constraints:

  • Must match the identifier of an existing global database cluster.

', 'ModifyGlobalClusterMessage$NewGlobalClusterIdentifier' => '

The new cluster identifier for the global database cluster. This value is stored as a lowercase string.

Constraints:

  • 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

', 'RemoveFromGlobalClusterMessage$GlobalClusterIdentifier' => '

The cluster identifier to detach from the Aurora global database cluster.

', 'SwitchoverGlobalClusterMessage$GlobalClusterIdentifier' => '

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).

', ], ], 'GlobalClusterList' => [ 'base' => NULL, 'refs' => [ 'GlobalClustersMessage$GlobalClusters' => '

The list of global clusters returned by this request.

', ], ], 'GlobalClusterMember' => [ 'base' => '

A data structure with information about any primary and secondary clusters associated with a global cluster (Aurora global database).

', 'refs' => [ 'GlobalClusterMemberList$member' => NULL, ], ], 'GlobalClusterMemberList' => [ 'base' => NULL, 'refs' => [ 'GlobalCluster$GlobalClusterMembers' => '

The list of primary and secondary clusters within the global database cluster.

', ], ], 'GlobalClusterMemberSynchronizationStatus' => [ 'base' => NULL, 'refs' => [ 'GlobalClusterMember$SynchronizationStatus' => '

The status of synchronization of each Aurora DB cluster in the global cluster.

', ], ], 'GlobalClusterNotFoundFault' => [ 'base' => '

The GlobalClusterIdentifier doesn\'t refer to an existing global database cluster.

', 'refs' => [], ], 'GlobalClusterQuotaExceededFault' => [ 'base' => '

The number of global database clusters for this account is already at the maximum allowed.

', 'refs' => [], ], 'GlobalClustersMessage' => [ 'base' => NULL, 'refs' => [], ], 'IAMAuthMode' => [ 'base' => NULL, 'refs' => [ 'UserAuthConfig$IAMAuth' => '

A value that indicates whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy. The ENABLED value is valid only for proxies with RDS for Microsoft SQL Server.

', 'UserAuthConfigInfo$IAMAuth' => '

Whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy.

', ], ], 'IPRange' => [ 'base' => '

This data type is used as a response element in the DescribeDBSecurityGroups action.

', 'refs' => [ 'IPRangeList$member' => NULL, ], ], 'IPRangeList' => [ 'base' => NULL, 'refs' => [ 'DBSecurityGroup$IPRanges' => '

Contains a list of IPRange elements.

', ], ], 'IamRoleMissingPermissionsFault' => [ 'base' => '

The IAM role requires additional permissions to export to an Amazon S3 bucket.

', 'refs' => [], ], 'IamRoleNotFoundFault' => [ 'base' => '

The IAM role is missing for exporting to an Amazon S3 bucket.

', 'refs' => [], ], 'InstanceQuotaExceededFault' => [ 'base' => '

The request would result in the user exceeding the allowed number of DB instances.

', 'refs' => [], ], 'InsufficientAvailableIPsInSubnetFault' => [ 'base' => '

The requested operation can\'t be performed because there aren\'t enough available IP addresses in the proxy\'s subnets. Add more CIDR blocks to the VPC or remove IP address that aren\'t required from the subnets.

', 'refs' => [], ], 'InsufficientDBClusterCapacityFault' => [ 'base' => '

The DB cluster doesn\'t have enough capacity for the current operation.

', 'refs' => [], ], 'InsufficientDBInstanceCapacityFault' => [ 'base' => '

The specified DB instance class isn\'t available in the specified Availability Zone.

', 'refs' => [], ], 'InsufficientStorageClusterCapacityFault' => [ 'base' => '

There is insufficient storage available for the current action. You might be able to resolve this error by updating your subnet group to use different Availability Zones that have more storage available.

', 'refs' => [], ], 'Integer' => [ 'base' => NULL, 'refs' => [ 'ConnectionPoolConfigurationInfo$MaxConnectionsPercent' => '

The maximum size of the connection pool for each target in a target group. The value is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group.

', 'ConnectionPoolConfigurationInfo$MaxIdleConnectionsPercent' => '

Controls how actively the proxy closes idle database connections in the connection pool. The value is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group. With a high value, the proxy leaves a high percentage of idle database connections open. A low value causes the proxy to close more idle connections and return them to the database.

', 'ConnectionPoolConfigurationInfo$ConnectionBorrowTimeout' => '

The number of seconds for a proxy to wait for a connection to become available in the connection pool. Only applies when the proxy has opened its maximum number of connections and all connections are busy with client sessions.

', 'DBClusterAutomatedBackup$AllocatedStorage' => '

For all database engines except Amazon Aurora, AllocatedStorage specifies the allocated storage size in gibibytes (GiB). For Aurora, AllocatedStorage always returns 1, because Aurora DB cluster storage size isn\'t fixed, but instead automatically adjusts as needed.

', 'DBClusterAutomatedBackup$Port' => '

The port number that the automated backup used for connections.

Default: Inherits from the source DB cluster

Valid Values: 1150-65535

', 'DBClusterSnapshot$AllocatedStorage' => '

The allocated storage size of the DB cluster snapshot in gibibytes (GiB).

', 'DBClusterSnapshot$Port' => '

The port that the DB cluster was listening on at the time of the snapshot.

', 'DBClusterSnapshot$PercentProgress' => '

The percentage of the estimated data that has been transferred.

', 'DBInstance$AllocatedStorage' => '

The amount of storage in gibibytes (GiB) allocated for the DB instance.

', 'DBInstance$BackupRetentionPeriod' => '

The number of days for which automatic DB snapshots are retained.

', 'DBInstance$DbInstancePort' => '

The port that the DB instance listens on. If the DB instance is part of a DB cluster, this can be a different port than the DB cluster port.

', 'DBInstanceAutomatedBackup$AllocatedStorage' => '

The allocated storage size for the the automated backup in gibibytes (GiB).

', 'DBInstanceAutomatedBackup$Port' => '

The port number that the automated backup used for connections.

Default: Inherits from the source DB instance

Valid Values: 1150-65535

', 'DBProxy$IdleClientTimeout' => '

The number of seconds a connection to the proxy can have no activity before the proxy drops the client connection. The proxy keeps the underlying database connection open and puts it back into the connection pool for reuse by later connection requests.

Default: 1800 (30 minutes)

Constraints: 1 to 28,800

', 'DBProxyTarget$Port' => '

The port that the RDS Proxy uses to connect to the target RDS DB instance or Aurora DB cluster.

', 'DBSnapshot$AllocatedStorage' => '

Specifies the allocated storage size in gibibytes (GiB).

', 'DBSnapshot$Port' => '

Specifies the port that the database engine was listening on at the time of the snapshot.

', 'DBSnapshot$PercentProgress' => '

The percentage of the estimated data that has been transferred.

', 'DownloadDBLogFilePortionMessage$NumberOfLines' => '

The number of lines to download. If the number of lines specified results in a file over 1 MB in size, the file is truncated at 1 MB in size.

If the NumberOfLines parameter is specified, then the block of lines returned can be from the beginning or the end of the log file, depending on the value of the Marker parameter.

  • If neither Marker or NumberOfLines are specified, the entire log file is returned up to a maximum of 10000 lines, starting with the most recent log entries first.

  • If NumberOfLines is specified and Marker isn\'t specified, then the most recent lines from the end of the log file are returned.

  • If Marker is specified as "0", then the specified number of lines from the beginning of the log file are returned.

  • You can download the log file in blocks of lines by specifying the size of the block using the NumberOfLines parameter, and by specifying a value of "0" for the Marker parameter in your first request. Include the Marker value returned in the response as the Marker value for the next request, continuing until the AdditionalDataPending response element returns false.

', 'Endpoint$Port' => '

Specifies the port that the database engine is listening on.

', 'ExportTask$PercentProgress' => '

The progress of the snapshot or cluster export task as a percentage.

', 'ExportTask$TotalExtractedDataInGB' => '

The total amount of data exported, in gigabytes.

', 'PerformanceInsightsMetricDimensionGroup$Limit' => '

The maximum number of items to fetch for this dimension group.

', 'Range$From' => '

The minimum value in the range.

', 'Range$To' => '

The maximum value in the range.

', 'ReservedDBInstance$Duration' => '

The duration of the reservation in seconds.

', 'ReservedDBInstance$DBInstanceCount' => '

The number of reserved DB instances.

', 'ReservedDBInstancesOffering$Duration' => '

The duration of the offering in seconds.

', ], ], 'IntegerOptional' => [ 'base' => NULL, 'refs' => [ 'ClusterPendingModifiedValues$BackupRetentionPeriod' => '

The number of days for which automatic DB snapshots are retained.

', 'ClusterPendingModifiedValues$AllocatedStorage' => '

The allocated storage size in gibibytes (GiB) for all database engines except Amazon Aurora. For Aurora, AllocatedStorage always returns 1, because Aurora DB cluster storage size isn\'t fixed, but instead automatically adjusts as needed.

', 'ClusterPendingModifiedValues$Iops' => '

The Provisioned IOPS (I/O operations per second) value. This setting is only for non-Aurora Multi-AZ DB clusters.

', 'ConnectionPoolConfiguration$MaxConnectionsPercent' => '

The maximum size of the connection pool for each target in a target group. The value is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group.

If you specify MaxIdleConnectionsPercent, then you must also include a value for this parameter.

Default: 10 for RDS for Microsoft SQL Server, and 100 for all other engines

Constraints:

  • Must be between 1 and 100.

', 'ConnectionPoolConfiguration$MaxIdleConnectionsPercent' => '

A value that controls how actively the proxy closes idle database connections in the connection pool. The value is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group. With a high value, the proxy leaves a high percentage of idle database connections open. A low value causes the proxy to close more idle connections and return them to the database.

If you specify this parameter, then you must also include a value for MaxConnectionsPercent.

Default: The default value is half of the value of MaxConnectionsPercent. For example, if MaxConnectionsPercent is 80, then the default value of MaxIdleConnectionsPercent is 40. If the value of MaxConnectionsPercent isn\'t specified, then for SQL Server, MaxIdleConnectionsPercent is 5, and for all other engines, the default is 50.

Constraints:

  • Must be between 0 and the value of MaxConnectionsPercent.

', 'ConnectionPoolConfiguration$ConnectionBorrowTimeout' => '

The number of seconds for a proxy to wait for a connection to become available in the connection pool. This setting only applies when the proxy has opened its maximum number of connections and all connections are busy with client sessions.

Default: 120

Constraints:

  • Must be between 0 and 300.

', 'CreateDBClusterMessage$BackupRetentionPeriod' => '

The number of days for which automated backups are retained.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Default: 1

Constraints:

  • Must be a value from 1 to 35.

', 'CreateDBClusterMessage$Port' => '

The port number on which the instances in the DB cluster accept connections.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values: 1150-65535

Default:

  • RDS for MySQL and Aurora MySQL - 3306

  • RDS for PostgreSQL and Aurora PostgreSQL - 5432

', 'CreateDBClusterMessage$AllocatedStorage' => '

The amount of storage in gibibytes (GiB) to allocate to each DB instance in the Multi-AZ DB cluster.

Valid for Cluster Type: Multi-AZ DB clusters only

This setting is required to create a Multi-AZ DB cluster.

', 'CreateDBClusterMessage$Iops' => '

The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for each DB instance in the Multi-AZ DB cluster.

For information about valid IOPS values, see Provisioned IOPS storage in the Amazon RDS User Guide.

This setting is required to create a Multi-AZ DB cluster.

Valid for Cluster Type: Multi-AZ DB clusters only

Constraints:

  • Must be a multiple between .5 and 50 of the storage amount for the DB cluster.

', 'CreateDBClusterMessage$MonitoringInterval' => '

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0.

If MonitoringRoleArn is specified, also set MonitoringInterval to a value other than 0.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60

Default: 0

', 'CreateDBClusterMessage$PerformanceInsightsRetentionPeriod' => '

The number of days to retain Performance Insights data.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

If you specify a retention period that isn\'t valid, such as 94, Amazon RDS issues an error.

', 'CreateDBInstanceMessage$AllocatedStorage' => '

The amount of storage in gibibytes (GiB) to allocate for the DB instance.

This setting doesn\'t apply to Amazon Aurora DB instances. Aurora cluster volumes automatically grow as the amount of data in your database increases, though you are only charged for the space that you use in an Aurora cluster volume.

Amazon RDS Custom

Constraints to the amount of storage for each storage type are the following:

  • General Purpose (SSD) storage (gp2, gp3): Must be an integer from 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server.

  • Provisioned IOPS storage (io1, io2): Must be an integer from 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server.

RDS for Db2

Constraints to the amount of storage for each storage type are the following:

  • General Purpose (SSD) storage (gp3): Must be an integer from 20 to 65536.

  • Provisioned IOPS storage (io1, io2): Must be an integer from 100 to 65536.

RDS for MariaDB

Constraints to the amount of storage for each storage type are the following:

  • General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20 to 65536.

  • Provisioned IOPS storage (io1, io2): Must be an integer from 100 to 65536.

  • Magnetic storage (standard): Must be an integer from 5 to 3072.

RDS for MySQL

Constraints to the amount of storage for each storage type are the following:

  • General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20 to 65536.

  • Provisioned IOPS storage (io1, io2): Must be an integer from 100 to 65536.

  • Magnetic storage (standard): Must be an integer from 5 to 3072.

RDS for Oracle

Constraints to the amount of storage for each storage type are the following:

  • General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20 to 65536.

  • Provisioned IOPS storage (io1, io2): Must be an integer from 100 to 65536.

  • Magnetic storage (standard): Must be an integer from 10 to 3072.

RDS for PostgreSQL

Constraints to the amount of storage for each storage type are the following:

  • General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20 to 65536.

  • Provisioned IOPS storage (io1, io2): Must be an integer from 100 to 65536.

  • Magnetic storage (standard): Must be an integer from 5 to 3072.

RDS for SQL Server

Constraints to the amount of storage for each storage type are the following:

  • General Purpose (SSD) storage (gp2, gp3):

    • Enterprise and Standard editions: Must be an integer from 20 to 16384.

    • Web and Express editions: Must be an integer from 20 to 16384.

  • Provisioned IOPS storage (io1, io2):

    • Enterprise and Standard editions: Must be an integer from 100 to 16384.

    • Web and Express editions: Must be an integer from 100 to 16384.

  • Magnetic storage (standard):

    • Enterprise and Standard editions: Must be an integer from 20 to 1024.

    • Web and Express editions: Must be an integer from 20 to 1024.

', 'CreateDBInstanceMessage$BackupRetentionPeriod' => '

The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups.

This setting doesn\'t apply to Amazon Aurora DB instances. The retention period for automated backups is managed by the DB cluster.

Default: 1

Constraints:

  • Must be a value from 0 to 35.

  • Can\'t be set to 0 if the DB instance is a source to read replicas.

  • Can\'t be set to 0 for an RDS Custom for Oracle DB instance.

', 'CreateDBInstanceMessage$Port' => '

The port number on which the database accepts connections.

This setting doesn\'t apply to Aurora DB instances. The port number is managed by the cluster.

Valid Values: 1150-65535

Default:

  • RDS for Db2 - 50000

  • RDS for MariaDB - 3306

  • RDS for Microsoft SQL Server - 1433

  • RDS for MySQL - 3306

  • RDS for Oracle - 1521

  • RDS for PostgreSQL - 5432

Constraints:

  • For RDS for Microsoft SQL Server, the value can\'t be 1234, 1434, 3260, 3343, 3389, 47001, or 49152-49156.

', 'CreateDBInstanceMessage$Iops' => '

The amount of Provisioned IOPS (input/output operations per second) to initially allocate for the DB instance. For information about valid IOPS values, see Amazon RDS DB instance storage in the Amazon RDS User Guide.

This setting doesn\'t apply to Amazon Aurora DB instances. Storage is managed by the DB cluster.

Constraints:

  • For RDS for Db2, MariaDB, MySQL, Oracle, and PostgreSQL - Must be a multiple between .5 and 50 of the storage amount for the DB instance.

  • For RDS for SQL Server - Must be a multiple between 1 and 50 of the storage amount for the DB instance.

', 'CreateDBInstanceMessage$StorageThroughput' => '

The storage throughput value, in mebibyte per second (MiBps), for the DB instance.

This setting applies only to the gp3 storage type.

This setting doesn\'t apply to Amazon Aurora or RDS Custom DB instances.

', 'CreateDBInstanceMessage$MonitoringInterval' => '

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To disable collection of Enhanced Monitoring metrics, specify 0.

If MonitoringRoleArn is specified, then you must set MonitoringInterval to a value other than 0.

This setting doesn\'t apply to RDS Custom DB instances.

Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60

Default: 0

', 'CreateDBInstanceMessage$PromotionTier' => '

The order of priority in which an Aurora Replica is promoted to the primary instance after a failure of the existing primary instance. For more information, see Fault Tolerance for an Aurora DB Cluster in the Amazon Aurora User Guide.

This setting doesn\'t apply to RDS Custom DB instances.

Default: 1

Valid Values: 0 - 15

', 'CreateDBInstanceMessage$PerformanceInsightsRetentionPeriod' => '

The number of days to retain Performance Insights data.

This setting doesn\'t apply to RDS Custom DB instances.

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

If you specify a retention period that isn\'t valid, such as 94, Amazon RDS returns an error.

', 'CreateDBInstanceMessage$MaxAllocatedStorage' => '

The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance.

For more information about this setting, including limitations that apply to it, see Managing capacity automatically with Amazon RDS storage autoscaling in the Amazon RDS User Guide.

This setting doesn\'t apply to the following DB instances:

  • Amazon Aurora (Storage is managed by the DB cluster.)

  • RDS Custom

', 'CreateDBInstanceReadReplicaMessage$Port' => '

The port number that the DB instance uses for connections.

Valid Values: 1150-65535

Default: Inherits the value from the source DB instance.

', 'CreateDBInstanceReadReplicaMessage$Iops' => '

The amount of Provisioned IOPS (input/output operations per second) to initially allocate for the DB instance.

', 'CreateDBInstanceReadReplicaMessage$StorageThroughput' => '

Specifies the storage throughput value for the read replica.

This setting doesn\'t apply to RDS Custom or Amazon Aurora DB instances.

', 'CreateDBInstanceReadReplicaMessage$MonitoringInterval' => '

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the read replica. To disable collection of Enhanced Monitoring metrics, specify 0. The default is 0.

If MonitoringRoleArn is specified, then you must set MonitoringInterval to a value other than 0.

This setting doesn\'t apply to RDS Custom DB instances.

Valid Values: 0, 1, 5, 10, 15, 30, 60

Default: 0

', 'CreateDBInstanceReadReplicaMessage$PerformanceInsightsRetentionPeriod' => '

The number of days to retain Performance Insights data.

This setting doesn\'t apply to RDS Custom DB instances.

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

If you specify a retention period that isn\'t valid, such as 94, Amazon RDS returns an error.

', 'CreateDBInstanceReadReplicaMessage$MaxAllocatedStorage' => '

The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance.

For more information about this setting, including limitations that apply to it, see Managing capacity automatically with Amazon RDS storage autoscaling in the Amazon RDS User Guide.

', 'CreateDBInstanceReadReplicaMessage$AllocatedStorage' => '

The amount of storage (in gibibytes) to allocate initially for the read replica. Follow the allocation rules specified in CreateDBInstance.

This setting isn\'t valid for RDS for SQL Server.

Be sure to allocate enough storage for your read replica so that the create operation can succeed. You can also allocate additional storage for future growth.

', 'CreateDBProxyRequest$IdleClientTimeout' => '

The number of seconds that a connection to the proxy can be inactive before the proxy disconnects it. You can set this value higher or lower than the connection timeout limit for the associated database.

', 'CreateDBShardGroupMessage$ComputeRedundancy' => '

Specifies whether to create standby standby DB data access shard for the DB shard group. Valid values are the following:

  • 0 - Creates a DB shard group without a standby DB data access shard. This is the default value.

  • 1 - Creates a DB shard group with a standby DB data access shard in a different Availability Zone (AZ).

  • 2 - Creates a DB shard group with two standby DB data access shard in two different AZs.

', 'DBCluster$AllocatedStorage' => '

AllocatedStorage specifies the allocated storage size in gibibytes (GiB). For Aurora, AllocatedStorage can vary because Aurora DB cluster storage size adjusts as needed.

', 'DBCluster$BackupRetentionPeriod' => '

The number of days for which automatic DB snapshots are retained.

', 'DBCluster$Port' => '

The port that the database engine is listening on.

', 'DBCluster$Capacity' => '

The current capacity of an Aurora Serverless v1 DB cluster. The capacity is 0 (zero) when the cluster is paused.

For more information about Aurora Serverless v1, see Using Amazon Aurora Serverless v1 in the Amazon Aurora User Guide.

', 'DBCluster$Iops' => '

The Provisioned IOPS (I/O operations per second) value.

This setting is only for non-Aurora Multi-AZ DB clusters.

', 'DBCluster$StorageThroughput' => '

The storage throughput for the DB cluster. The throughput is automatically set based on the IOPS that you provision, and is not configurable.

This setting is only for non-Aurora Multi-AZ DB clusters.

', 'DBCluster$MonitoringInterval' => '

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster.

This setting is only for -Aurora DB clusters and Multi-AZ DB clusters.

', 'DBCluster$PerformanceInsightsRetentionPeriod' => '

The number of days to retain Performance Insights data.

This setting is only for Aurora DB clusters and Multi-AZ DB clusters.

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

', 'DBClusterAutomatedBackup$BackupRetentionPeriod' => '

The retention period for the automated backups.

', 'DBClusterAutomatedBackup$Iops' => '

The IOPS (I/O operations per second) value for the automated backup.

This setting is only for non-Aurora Multi-AZ DB clusters.

', 'DBClusterAutomatedBackup$StorageThroughput' => '

The storage throughput for the automated backup. The throughput is automatically set based on the IOPS that you provision, and is not configurable.

This setting is only for non-Aurora Multi-AZ DB clusters.

', 'DBClusterCapacityInfo$PendingCapacity' => '

A value that specifies the capacity that the DB cluster scales to next.

', 'DBClusterCapacityInfo$CurrentCapacity' => '

The current capacity of the DB cluster.

', 'DBClusterCapacityInfo$SecondsBeforeTimeout' => '

The number of seconds before a call to ModifyCurrentDBClusterCapacity times out.

', 'DBClusterMember$PromotionTier' => '

A value that specifies the order in which an Aurora Replica is promoted to the primary instance after a failure of the existing primary instance. For more information, see Fault Tolerance for an Aurora DB Cluster in the Amazon Aurora User Guide.

', 'DBClusterSnapshot$StorageThroughput' => '

The storage throughput for the DB cluster snapshot. The throughput is automatically set based on the IOPS that you provision, and is not configurable.

This setting is only for non-Aurora Multi-AZ DB clusters.

', 'DBInstance$Iops' => '

The Provisioned IOPS (I/O operations per second) value for the DB instance.

', 'DBInstance$StorageThroughput' => '

The storage throughput for the DB instance.

This setting applies only to the gp3 storage type.

', 'DBInstance$MonitoringInterval' => '

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance.

', 'DBInstance$PromotionTier' => '

The order of priority in which an Aurora Replica is promoted to the primary instance after a failure of the existing primary instance. For more information, see Fault Tolerance for an Aurora DB Cluster in the Amazon Aurora User Guide.

', 'DBInstance$PerformanceInsightsRetentionPeriod' => '

The number of days to retain Performance Insights data.

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

', 'DBInstance$MaxAllocatedStorage' => '

The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance.

', 'DBInstanceAutomatedBackup$Iops' => '

The IOPS (I/O operations per second) value for the automated backup.

', 'DBInstanceAutomatedBackup$StorageThroughput' => '

The storage throughput for the automated backup.

', 'DBInstanceAutomatedBackup$BackupRetentionPeriod' => '

The retention period for the automated backups.

', 'DBShardGroup$ComputeRedundancy' => '

Specifies whether to create standby DB shard groups for the DB shard group. Valid values are the following:

  • 0 - Creates a DB shard group without a standby DB shard group. This is the default value.

  • 1 - Creates a DB shard group with a standby DB shard group in a different Availability Zone (AZ).

  • 2 - Creates a DB shard group with two standby DB shard groups in two different AZs.

', 'DBSnapshot$Iops' => '

Specifies the Provisioned IOPS (I/O operations per second) value of the DB instance at the time of the snapshot.

', 'DBSnapshot$StorageThroughput' => '

Specifies the storage throughput for the DB snapshot.

', 'DescribeCertificatesMessage$MaxRecords' => '

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBClusterAutomatedBackupsMessage$MaxRecords' => '

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.

', 'DescribeDBClusterBacktracksMessage$MaxRecords' => '

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBClusterEndpointsMessage$MaxRecords' => '

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBClusterParameterGroupsMessage$MaxRecords' => '

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBClusterParametersMessage$MaxRecords' => '

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBClusterSnapshotsMessage$MaxRecords' => '

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBClustersMessage$MaxRecords' => '

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100

', 'DescribeDBEngineVersionsMessage$MaxRecords' => '

The maximum number of records to include in the response. If more than the MaxRecords value is available, a pagination token called a marker is included in the response so you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBInstanceAutomatedBackupsMessage$MaxRecords' => '

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.

', 'DescribeDBInstancesMessage$MaxRecords' => '

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.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBLogFilesMessage$MaxRecords' => '

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 you can retrieve the remaining results.

', 'DescribeDBParameterGroupsMessage$MaxRecords' => '

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.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBParametersMessage$MaxRecords' => '

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.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBRecommendationsMessage$MaxRecords' => '

The maximum number of recommendations 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.

', 'DescribeDBSecurityGroupsMessage$MaxRecords' => '

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.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBSnapshotTenantDatabasesMessage$MaxRecords' => '

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.

', 'DescribeDBSnapshotsMessage$MaxRecords' => '

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.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBSubnetGroupsMessage$MaxRecords' => '

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.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeEngineDefaultClusterParametersMessage$MaxRecords' => '

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeEngineDefaultParametersMessage$MaxRecords' => '

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeEventSubscriptionsMessage$MaxRecords' => '

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.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeEventsMessage$Duration' => '

The number of minutes to retrieve events for.

Default: 60

', 'DescribeEventsMessage$MaxRecords' => '

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.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeGlobalClustersMessage$MaxRecords' => '

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.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeIntegrationsMessage$MaxRecords' => '

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.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeOptionGroupOptionsMessage$MaxRecords' => '

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.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeOptionGroupsMessage$MaxRecords' => '

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.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeOrderableDBInstanceOptionsMessage$MaxRecords' => '

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.

Default: 100

Constraints: Minimum 20, maximum 1000.

', 'DescribePendingMaintenanceActionsMessage$MaxRecords' => '

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.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeReservedDBInstancesMessage$MaxRecords' => '

The maximum number of records to include in the response. If more than the MaxRecords value is available, a pagination token called a marker is included in the response so you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeReservedDBInstancesOfferingsMessage$MaxRecords' => '

The maximum number of records to include in the response. If more than the MaxRecords value is available, a pagination token called a marker is included in the response so you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeSourceRegionsMessage$MaxRecords' => '

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeTenantDatabasesMessage$MaxRecords' => '

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.

', 'ModifyCurrentDBClusterCapacityMessage$Capacity' => '

The DB cluster capacity.

When you change the capacity of a paused Aurora Serverless v1 DB cluster, it automatically resumes.

Constraints:

  • For Aurora MySQL, valid capacity values are 1, 2, 4, 8, 16, 32, 64, 128, and 256.

  • For Aurora PostgreSQL, valid capacity values are 2, 4, 8, 16, 32, 64, 192, and 384.

', 'ModifyCurrentDBClusterCapacityMessage$SecondsBeforeTimeout' => '

The amount of time, in seconds, that Aurora Serverless v1 tries to find a scaling point to perform seamless scaling before enforcing the timeout action. The default is 300.

Specify a value between 10 and 600 seconds.

', 'ModifyDBClusterMessage$BackupRetentionPeriod' => '

The number of days for which automated backups are retained. Specify a minimum value of 1.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Default: 1

Constraints:

  • Must be a value from 1 to 35.

', 'ModifyDBClusterMessage$Port' => '

The port number on which the DB cluster accepts connections.

Valid for Cluster Type: Aurora DB clusters only

Valid Values: 1150-65535

Default: The same port as the original DB cluster.

', 'ModifyDBClusterMessage$AllocatedStorage' => '

The amount of storage in gibibytes (GiB) to allocate to each DB instance in the Multi-AZ DB cluster.

Valid for Cluster Type: Multi-AZ DB clusters only

', 'ModifyDBClusterMessage$Iops' => '

The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for each DB instance in the Multi-AZ DB cluster.

For information about valid IOPS values, see Amazon RDS Provisioned IOPS storage in the Amazon RDS User Guide.

Valid for Cluster Type: Multi-AZ DB clusters only

Constraints:

  • Must be a multiple between .5 and 50 of the storage amount for the DB cluster.

', 'ModifyDBClusterMessage$MonitoringInterval' => '

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0.

If MonitoringRoleArn is specified, also set MonitoringInterval to a value other than 0.

Valid for Cluster Type: Multi-AZ DB clusters only

Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60

Default: 0

', 'ModifyDBClusterMessage$PerformanceInsightsRetentionPeriod' => '

The number of days to retain Performance Insights data.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

If you specify a retention period that isn\'t valid, such as 94, Amazon RDS issues an error.

', 'ModifyDBInstanceMessage$AllocatedStorage' => '

The new amount of storage in gibibytes (GiB) to allocate for the DB instance.

For RDS for Db2, MariaDB, RDS for MySQL, RDS for Oracle, and RDS for PostgreSQL, the value supplied must be at least 10% greater than the current value. Values that are not at least 10% greater than the existing value are rounded up so that they are 10% greater than the current value.

For the valid values for allocated storage for each engine, see CreateDBInstance.

Constraints:

  • When you increase the allocated storage for a DB instance that uses Provisioned IOPS (gp3, io1, or io2 storage type), you must also specify the Iops parameter. You can use the current value for Iops.

', 'ModifyDBInstanceMessage$BackupRetentionPeriod' => '

The number of days to retain automated backups. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups.

Enabling and disabling backups can result in a brief I/O suspension that lasts from a few seconds to a few minutes, depending on the size and class of your DB instance.

These changes are applied during the next maintenance window unless the ApplyImmediately parameter is enabled for this request. If you change the parameter from one non-zero value to another non-zero value, the change is asynchronously applied as soon as possible.

This setting doesn\'t apply to Amazon Aurora DB instances. The retention period for automated backups is managed by the DB cluster. For more information, see ModifyDBCluster.

Default: Uses existing setting

Constraints:

  • Must be a value from 0 to 35.

  • Can\'t be set to 0 if the DB instance is a source to read replicas.

  • Can\'t be set to 0 for an RDS Custom for Oracle DB instance.

', 'ModifyDBInstanceMessage$Iops' => '

The new Provisioned IOPS (I/O operations per second) value for the RDS instance.

Changing this setting doesn\'t result in an outage and the change is applied during the next maintenance window unless the ApplyImmediately parameter is enabled for this request. If you are migrating from Provisioned IOPS to standard storage, set this value to 0. The DB instance will require a reboot for the change in storage type to take effect.

If you choose to migrate your DB instance from using standard storage to Provisioned IOPS (io1), or from Provisioned IOPS to standard storage, the process can take time. The duration of the migration depends on several factors such as database load, storage size, storage type (standard or Provisioned IOPS), amount of IOPS provisioned (if any), and the number of prior scale storage operations. Typical migration times are under 24 hours, but the process can take up to several days in some cases. During the migration, the DB instance is available for use, but might experience performance degradation. While the migration takes place, nightly backups for the instance are suspended. No other Amazon RDS operations can take place for the instance, including modifying the instance, rebooting the instance, deleting the instance, creating a read replica for the instance, and creating a DB snapshot of the instance.

Constraints:

  • For RDS for MariaDB, RDS for MySQL, RDS for Oracle, and RDS for PostgreSQL - The value supplied must be at least 10% greater than the current value. Values that are not at least 10% greater than the existing value are rounded up so that they are 10% greater than the current value.

  • When you increase the Provisioned IOPS, you must also specify the AllocatedStorage parameter. You can use the current value for AllocatedStorage.

Default: Uses existing setting

', 'ModifyDBInstanceMessage$StorageThroughput' => '

The storage throughput value for the DB instance.

This setting applies only to the gp3 storage type.

This setting doesn\'t apply to Amazon Aurora or RDS Custom DB instances.

', 'ModifyDBInstanceMessage$MonitoringInterval' => '

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To disable collection of Enhanced Monitoring metrics, specify 0.

If MonitoringRoleArn is specified, set MonitoringInterval to a value other than 0.

This setting doesn\'t apply to RDS Custom DB instances.

Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60

Default: 0

', 'ModifyDBInstanceMessage$DBPortNumber' => '

The port number on which the database accepts connections.

The value of the DBPortNumber parameter must not match any of the port values specified for options in the option group for the DB instance.

If you change the DBPortNumber value, your database restarts regardless of the value of the ApplyImmediately parameter.

This setting doesn\'t apply to RDS Custom DB instances.

Valid Values: 1150-65535

Default:

  • Amazon Aurora - 3306

  • RDS for Db2 - 50000

  • RDS for MariaDB - 3306

  • RDS for Microsoft SQL Server - 1433

  • RDS for MySQL - 3306

  • RDS for Oracle - 1521

  • RDS for PostgreSQL - 5432

Constraints:

  • For RDS for Microsoft SQL Server, the value can\'t be 1234, 1434, 3260, 3343, 3389, 47001, or 49152-49156.

', 'ModifyDBInstanceMessage$PromotionTier' => '

The order of priority in which an Aurora Replica is promoted to the primary instance after a failure of the existing primary instance. For more information, see Fault Tolerance for an Aurora DB Cluster in the Amazon Aurora User Guide.

This setting doesn\'t apply to RDS Custom DB instances.

Default: 1

Valid Values: 0 - 15

', 'ModifyDBInstanceMessage$PerformanceInsightsRetentionPeriod' => '

The number of days to retain Performance Insights data.

This setting doesn\'t apply to RDS Custom DB instances.

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

If you specify a retention period that isn\'t valid, such as 94, Amazon RDS returns an error.

', 'ModifyDBInstanceMessage$MaxAllocatedStorage' => '

The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance.

For more information about this setting, including limitations that apply to it, see Managing capacity automatically with Amazon RDS storage autoscaling in the Amazon RDS User Guide.

This setting doesn\'t apply to RDS Custom DB instances.

', 'ModifyDBInstanceMessage$ResumeFullAutomationModeMinutes' => '

The number of minutes to pause the automation. When the time period ends, RDS Custom resumes full automation.

Default: 60

Constraints:

  • Must be at least 60.

  • Must be no more than 1,440.

', 'ModifyDBProxyRequest$IdleClientTimeout' => '

The number of seconds that a connection to the proxy can be inactive before the proxy disconnects it. You can set this value higher or lower than the connection timeout limit for the associated database.

', 'Option$Port' => '

If required, the port configured for this option to use.

', 'OptionConfiguration$Port' => '

The optional port for the option.

', 'OptionGroupOption$DefaultPort' => '

If the option requires a port, specifies the default port for the option.

', 'OrderableDBInstanceOption$MinStorageSize' => '

Minimum storage size for a DB instance.

', 'OrderableDBInstanceOption$MaxStorageSize' => '

Maximum storage size for a DB instance.

', 'OrderableDBInstanceOption$MinIopsPerDbInstance' => '

Minimum total provisioned IOPS for a DB instance.

', 'OrderableDBInstanceOption$MaxIopsPerDbInstance' => '

Maximum total provisioned IOPS for a DB instance.

', 'OrderableDBInstanceOption$MinStorageThroughputPerDbInstance' => '

Minimum storage throughput for a DB instance.

', 'OrderableDBInstanceOption$MaxStorageThroughputPerDbInstance' => '

Maximum storage throughput for a DB instance.

', 'PendingModifiedValues$AllocatedStorage' => '

The allocated storage size for the DB instance specified in gibibytes (GiB).

', 'PendingModifiedValues$Port' => '

The port for the DB instance.

', 'PendingModifiedValues$BackupRetentionPeriod' => '

The number of days for which automated backups are retained.

', 'PendingModifiedValues$Iops' => '

The Provisioned IOPS value for the DB instance.

', 'PendingModifiedValues$StorageThroughput' => '

The storage throughput of the DB instance.

', 'PromoteReadReplicaMessage$BackupRetentionPeriod' => '

The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups.

Default: 1

Constraints:

  • Must be a value from 0 to 35.

  • Can\'t be set to 0 if the DB instance is a source to read replicas.

', 'PurchaseReservedDBInstancesOfferingMessage$DBInstanceCount' => '

The number of instances to reserve.

Default: 1

', 'Range$Step' => '

The step value for the range. For example, if you have a range of 5,000 to 10,000, with a step value of 1,000, the valid values start at 5,000 and step up by 1,000. Even though 7,500 is within the range, it isn\'t a valid value for the range. The valid values are 5,000, 6,000, 7,000, 8,000...

', 'RestoreDBClusterFromS3Message$BackupRetentionPeriod' => '

The number of days for which automated backups of the restored DB cluster are retained. You must specify a minimum value of 1.

Default: 1

Constraints:

  • Must be a value from 1 to 35

', 'RestoreDBClusterFromS3Message$Port' => '

The port number on which the instances in the restored DB cluster accept connections.

Default: 3306

', 'RestoreDBClusterFromSnapshotMessage$Port' => '

The port number on which the new DB cluster accepts connections.

Constraints: This value must be 1150-65535

Default: The same port as the original DB cluster.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$Iops' => '

The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for each DB instance in the Multi-AZ DB cluster.

For information about valid IOPS values, see Amazon RDS Provisioned IOPS storage in the Amazon RDS User Guide.

Constraints: Must be a multiple between .5 and 50 of the storage amount for the DB instance.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$MonitoringInterval' => '

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0.

If MonitoringRoleArn is specified, also set MonitoringInterval to a value other than 0.

Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60

Default: 0

', 'RestoreDBClusterFromSnapshotMessage$PerformanceInsightsRetentionPeriod' => '

The number of days to retain Performance Insights data.

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

If you specify a retention period that isn\'t valid, such as 94, Amazon RDS issues an error.

', 'RestoreDBClusterToPointInTimeMessage$Port' => '

The port number on which the new DB cluster accepts connections.

Constraints: A value from 1150-65535.

Default: The default port for the engine.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterToPointInTimeMessage$Iops' => '

The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for each DB instance in the Multi-AZ DB cluster.

For information about valid IOPS values, see Amazon RDS Provisioned IOPS storage in the Amazon RDS User Guide.

Constraints: Must be a multiple between .5 and 50 of the storage amount for the DB instance.

Valid for: Multi-AZ DB clusters only

', 'RestoreDBClusterToPointInTimeMessage$MonitoringInterval' => '

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0.

If MonitoringRoleArn is specified, also set MonitoringInterval to a value other than 0.

Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60

Default: 0

', 'RestoreDBClusterToPointInTimeMessage$PerformanceInsightsRetentionPeriod' => '

The number of days to retain Performance Insights data.

Valid Values:

  • 7

  • month * 31, where month is a number of months from 1-23. Examples: 93 (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)

  • 731

Default: 7 days

If you specify a retention period that isn\'t valid, such as 94, Amazon RDS issues an error.

', 'RestoreDBInstanceFromDBSnapshotMessage$Port' => '

The port number on which the database accepts connections.

Default: The same port as the original DB instance

Constraints: Value must be 1150-65535

', 'RestoreDBInstanceFromDBSnapshotMessage$Iops' => '

Specifies the amount of provisioned IOPS for the DB instance, expressed in I/O operations per second. If this parameter isn\'t specified, the IOPS value is taken from the backup. If this parameter is set to 0, the new instance is converted to a non-PIOPS instance. The conversion takes additional time, though your DB instance is available for connections before the conversion starts.

The provisioned IOPS value must follow the requirements for your database engine. For more information, see Amazon RDS Provisioned IOPS storage in the Amazon RDS User Guide.

Constraints: Must be an integer greater than 1000.

', 'RestoreDBInstanceFromDBSnapshotMessage$StorageThroughput' => '

Specifies the storage throughput value for the DB instance.

This setting doesn\'t apply to RDS Custom or Amazon Aurora.

', 'RestoreDBInstanceFromDBSnapshotMessage$AllocatedStorage' => '

The amount of storage (in gibibytes) to allocate initially for the DB instance. Follow the allocation rules specified in CreateDBInstance.

This setting isn\'t valid for RDS for SQL Server.

Be sure to allocate enough storage for your new DB instance so that the restore operation can succeed. You can also allocate additional storage for future growth.

', 'RestoreDBInstanceFromS3Message$AllocatedStorage' => '

The amount of storage (in gibibytes) to allocate initially for the DB instance. Follow the allocation rules specified in CreateDBInstance.

This setting isn\'t valid for RDS for SQL Server.

Be sure to allocate enough storage for your new DB instance so that the restore operation can succeed. You can also allocate additional storage for future growth.

', 'RestoreDBInstanceFromS3Message$BackupRetentionPeriod' => '

The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. For more information, see CreateDBInstance.

', 'RestoreDBInstanceFromS3Message$Port' => '

The port number on which the database accepts connections.

Type: Integer

Valid Values: 1150-65535

Default: 3306

', 'RestoreDBInstanceFromS3Message$Iops' => '

The amount of Provisioned IOPS (input/output operations per second) to allocate initially for the DB instance. For information about valid IOPS values, see Amazon RDS Provisioned IOPS storage in the Amazon RDS User Guide.

', 'RestoreDBInstanceFromS3Message$StorageThroughput' => '

Specifies the storage throughput value for the DB instance.

This setting doesn\'t apply to RDS Custom or Amazon Aurora.

', 'RestoreDBInstanceFromS3Message$MonitoringInterval' => '

The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To disable collecting Enhanced Monitoring metrics, specify 0.

If MonitoringRoleArn is specified, then you must also set MonitoringInterval to a value other than 0.

Valid Values: 0, 1, 5, 10, 15, 30, 60

Default: 0

', 'RestoreDBInstanceFromS3Message$PerformanceInsightsRetentionPeriod' => '

The number of days to retain Performance Insights data. The default is 7 days. The following values are valid:

  • 7

  • month * 31, where month is a number of months from 1-23

  • 731

For example, the following values are valid:

  • 93 (3 months * 31)

  • 341 (11 months * 31)

  • 589 (19 months * 31)

  • 731

If you specify a retention period such as 94, which isn\'t a valid value, RDS issues an error.

', 'RestoreDBInstanceFromS3Message$MaxAllocatedStorage' => '

The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance.

For more information about this setting, including limitations that apply to it, see Managing capacity automatically with Amazon RDS storage autoscaling in the Amazon RDS User Guide.

', 'RestoreDBInstanceToPointInTimeMessage$Port' => '

The port number on which the database accepts connections.

Default: The same port as the original DB instance.

Constraints:

  • The value must be 1150-65535.

', 'RestoreDBInstanceToPointInTimeMessage$Iops' => '

The amount of Provisioned IOPS (input/output operations per second) to initially allocate for the DB instance.

This setting doesn\'t apply to SQL Server.

Constraints:

  • Must be an integer greater than 1000.

', 'RestoreDBInstanceToPointInTimeMessage$StorageThroughput' => '

The storage throughput value for the DB instance.

This setting doesn\'t apply to RDS Custom or Amazon Aurora.

', 'RestoreDBInstanceToPointInTimeMessage$MaxAllocatedStorage' => '

The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance.

For more information about this setting, including limitations that apply to it, see Managing capacity automatically with Amazon RDS storage autoscaling in the Amazon RDS User Guide.

This setting doesn\'t apply to RDS Custom.

', 'RestoreDBInstanceToPointInTimeMessage$AllocatedStorage' => '

The amount of storage (in gibibytes) to allocate initially for the DB instance. Follow the allocation rules specified in CreateDBInstance.

This setting isn\'t valid for RDS for SQL Server.

Be sure to allocate enough storage for your new DB instance so that the restore operation can succeed. You can also allocate additional storage for future growth.

', 'ScalingConfiguration$MinCapacity' => '

The minimum capacity for an Aurora DB cluster in serverless DB engine mode.

For Aurora MySQL, valid capacity values are 1, 2, 4, 8, 16, 32, 64, 128, and 256.

For Aurora PostgreSQL, valid capacity values are 2, 4, 8, 16, 32, 64, 192, and 384.

The minimum capacity must be less than or equal to the maximum capacity.

', 'ScalingConfiguration$MaxCapacity' => '

The maximum capacity for an Aurora DB cluster in serverless DB engine mode.

For Aurora MySQL, valid capacity values are 1, 2, 4, 8, 16, 32, 64, 128, and 256.

For Aurora PostgreSQL, valid capacity values are 2, 4, 8, 16, 32, 64, 192, and 384.

The maximum capacity must be greater than or equal to the minimum capacity.

', 'ScalingConfiguration$SecondsUntilAutoPause' => '

The time, in seconds, before an Aurora DB cluster in serverless mode is paused.

Specify a value between 300 and 86,400 seconds.

', 'ScalingConfiguration$SecondsBeforeTimeout' => '

The amount of time, in seconds, that Aurora Serverless v1 tries to find a scaling point to perform seamless scaling before enforcing the timeout action. The default is 300.

Specify a value between 60 and 600 seconds.

', 'ScalingConfigurationInfo$MinCapacity' => '

The minimum capacity for an Aurora DB cluster in serverless DB engine mode.

', 'ScalingConfigurationInfo$MaxCapacity' => '

The maximum capacity for an Aurora DB cluster in serverless DB engine mode.

', 'ScalingConfigurationInfo$SecondsUntilAutoPause' => '

The remaining amount of time, in seconds, before the Aurora DB cluster in serverless mode is paused. A DB cluster can be paused only when it\'s idle (it has no connections).

', 'ScalingConfigurationInfo$SecondsBeforeTimeout' => '

The number of seconds before scaling times out. What happens when an attempted scaling action times out is determined by the TimeoutAction setting.

', 'ServerlessV2ScalingConfiguration$SecondsUntilAutoPause' => '

Specifies the number of seconds an Aurora Serverless v2 DB instance must be idle before Aurora attempts to automatically pause it.

Specify a value between 300 seconds (five minutes) and 86,400 seconds (one day). The default is 300 seconds.

', 'ServerlessV2ScalingConfigurationInfo$SecondsUntilAutoPause' => '

The number of seconds an Aurora Serverless v2 DB instance must be idle before Aurora attempts to automatically pause it. This property is only shown when the minimum capacity for the cluster is set to 0 ACUs. Changing the minimum capacity to a nonzero value removes this property. If you later change the minimum capacity back to 0 ACUs, this property is reset to its default value unless you specify it again.

This value ranges between 300 seconds (five minutes) and 86,400 seconds (one day). The default is 300 seconds.

', 'StartDBInstanceAutomatedBackupsReplicationMessage$BackupRetentionPeriod' => '

The retention period for the replicated automated backups.

', ], ], 'Integration' => [ 'base' => '

A zero-ETL integration with Amazon Redshift.

', 'refs' => [ 'IntegrationList$member' => NULL, ], ], 'IntegrationAlreadyExistsFault' => [ 'base' => '

The integration you are trying to create already exists.

', 'refs' => [], ], 'IntegrationArn' => [ 'base' => NULL, 'refs' => [ 'Integration$IntegrationArn' => '

The ARN of the integration.

', ], ], 'IntegrationConflictOperationFault' => [ 'base' => '

A conflicting conditional operation is currently in progress against this resource. Typically occurs when there are multiple requests being made to the same resource at the same time, and these requests conflict with each other.

', 'refs' => [], ], 'IntegrationDescription' => [ 'base' => NULL, 'refs' => [ 'CreateIntegrationMessage$Description' => '

A description of the integration.

', 'Integration$Description' => '

A description of the integration.

', 'ModifyIntegrationMessage$Description' => '

A new description for the integration.

', ], ], 'IntegrationError' => [ 'base' => '

An error associated with a zero-ETL integration with Amazon Redshift.

', 'refs' => [ 'IntegrationErrorList$member' => NULL, ], ], 'IntegrationErrorList' => [ 'base' => NULL, 'refs' => [ 'Integration$Errors' => '

Any errors associated with the integration.

', ], ], 'IntegrationIdentifier' => [ 'base' => NULL, 'refs' => [ 'DeleteIntegrationMessage$IntegrationIdentifier' => '

The unique identifier of the integration.

', 'DescribeIntegrationsMessage$IntegrationIdentifier' => '

The unique identifier of the integration.

', 'ModifyIntegrationMessage$IntegrationIdentifier' => '

The unique identifier of the integration to modify.

', ], ], 'IntegrationList' => [ 'base' => NULL, 'refs' => [ 'DescribeIntegrationsResponse$Integrations' => '

A list of integrations.

', ], ], 'IntegrationName' => [ 'base' => NULL, 'refs' => [ 'CreateIntegrationMessage$IntegrationName' => '

The name of the integration.

', 'Integration$IntegrationName' => '

The name of the integration.

', 'ModifyIntegrationMessage$IntegrationName' => '

A new name for the integration.

', ], ], 'IntegrationNotFoundFault' => [ 'base' => '

The specified integration could not be found.

', 'refs' => [], ], 'IntegrationQuotaExceededFault' => [ 'base' => '

You can\'t crate any more zero-ETL integrations because the quota has been reached.

', 'refs' => [], ], 'IntegrationStatus' => [ 'base' => NULL, 'refs' => [ 'Integration$Status' => '

The current status of the integration.

', ], ], 'InvalidBlueGreenDeploymentStateFault' => [ 'base' => '

The blue/green deployment can\'t be switched over or deleted because there is an invalid configuration in the green environment.

', 'refs' => [], ], 'InvalidCustomDBEngineVersionStateFault' => [ 'base' => '

You can\'t delete the CEV.

', 'refs' => [], ], 'InvalidDBClusterAutomatedBackupStateFault' => [ 'base' => '

The automated backup is in an invalid state. For example, this automated backup is associated with an active cluster.

', 'refs' => [], ], 'InvalidDBClusterCapacityFault' => [ 'base' => '

Capacity isn\'t a valid Aurora Serverless DB cluster capacity. Valid capacity values are 2, 4, 8, 16, 32, 64, 128, and 256.

', 'refs' => [], ], 'InvalidDBClusterEndpointStateFault' => [ 'base' => '

The requested operation can\'t be performed on the endpoint while the endpoint is in this state.

', 'refs' => [], ], 'InvalidDBClusterSnapshotStateFault' => [ 'base' => '

The supplied value isn\'t a valid DB cluster snapshot state.

', 'refs' => [], ], 'InvalidDBClusterStateFault' => [ 'base' => '

The requested operation can\'t be performed while the cluster is in this state.

', 'refs' => [], ], 'InvalidDBInstanceAutomatedBackupStateFault' => [ 'base' => '

The automated backup is in an invalid state. For example, this automated backup is associated with an active instance.

', 'refs' => [], ], 'InvalidDBInstanceStateFault' => [ 'base' => '

The DB instance isn\'t in a valid state.

', 'refs' => [], ], 'InvalidDBParameterGroupStateFault' => [ 'base' => '

The DB parameter group is in use or is in an invalid state. If you are attempting to delete the parameter group, you can\'t delete it when the parameter group is in this state.

', 'refs' => [], ], 'InvalidDBProxyEndpointStateFault' => [ 'base' => '

You can\'t perform this operation while the DB proxy endpoint is in a particular state.

', 'refs' => [], ], 'InvalidDBProxyStateFault' => [ 'base' => '

The requested operation can\'t be performed while the proxy is in this state.

', 'refs' => [], ], 'InvalidDBSecurityGroupStateFault' => [ 'base' => '

The state of the DB security group doesn\'t allow deletion.

', 'refs' => [], ], 'InvalidDBSnapshotStateFault' => [ 'base' => '

The state of the DB snapshot doesn\'t allow deletion.

', 'refs' => [], ], 'InvalidDBSubnetGroupFault' => [ 'base' => '

The DBSubnetGroup doesn\'t belong to the same VPC as that of an existing cross-region read replica of the same source instance.

', 'refs' => [], ], 'InvalidDBSubnetGroupStateFault' => [ 'base' => '

The DB subnet group cannot be deleted because it\'s in use.

', 'refs' => [], ], 'InvalidDBSubnetStateFault' => [ 'base' => '

The DB subnet isn\'t in the available state.

', 'refs' => [], ], 'InvalidExportOnlyFault' => [ 'base' => '

The export is invalid for exporting to an Amazon S3 bucket.

', 'refs' => [], ], 'InvalidExportSourceStateFault' => [ 'base' => '

The state of the export snapshot is invalid for exporting to an Amazon S3 bucket.

', 'refs' => [], ], 'InvalidExportTaskStateFault' => [ 'base' => '

You can\'t cancel an export task that has completed.

', 'refs' => [], ], 'InvalidGlobalClusterStateFault' => [ 'base' => '

The global cluster is in an invalid state and can\'t perform the requested operation.

', 'refs' => [], ], 'InvalidIntegrationStateFault' => [ 'base' => '

The integration is in an invalid state and can\'t perform the requested operation.

', 'refs' => [], ], 'InvalidOptionGroupStateFault' => [ 'base' => '

The option group isn\'t in the available state.

', 'refs' => [], ], 'InvalidResourceStateFault' => [ 'base' => '

The operation can\'t be performed because another operation is in progress.

', 'refs' => [], ], 'InvalidRestoreFault' => [ 'base' => '

Cannot restore from VPC backup to non-VPC DB instance.

', 'refs' => [], ], 'InvalidS3BucketFault' => [ 'base' => '

The specified Amazon S3 bucket name can\'t be found or Amazon RDS isn\'t authorized to access the specified Amazon S3 bucket. Verify the SourceS3BucketName and S3IngestionRoleArn values and try again.

', 'refs' => [], ], 'InvalidSubnet' => [ 'base' => '

The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

', 'refs' => [], ], 'InvalidVPCNetworkStateFault' => [ 'base' => '

The DB subnet group doesn\'t cover all Availability Zones after it\'s created because of users\' change.

', 'refs' => [], ], 'IssueDetails' => [ 'base' => '

The details of an issue with your DB instances, DB clusters, and DB parameter groups.

', 'refs' => [ 'DBRecommendation$IssueDetails' => '

Details of the issue that caused the recommendation.

', 'RecommendedAction$IssueDetails' => '

The details of the issue.

', ], ], 'KMSKeyNotAccessibleFault' => [ 'base' => '

An error occurred accessing an Amazon Web Services KMS key.

', 'refs' => [], ], 'KeyList' => [ 'base' => NULL, 'refs' => [ 'RemoveTagsFromResourceMessage$TagKeys' => '

The tag key (name) of the tag to be removed.

', ], ], 'KmsKeyIdOrArn' => [ 'base' => NULL, 'refs' => [ 'CreateCustomDBEngineVersionMessage$KMSKeyId' => '

The Amazon Web Services KMS key identifier for an encrypted CEV. A symmetric encryption KMS key is required for RDS Custom, but optional for Amazon RDS.

If you have an existing symmetric encryption KMS key in your account, you can use it with RDS Custom. No further action is necessary. If you don\'t already have a symmetric encryption KMS key in your account, follow the instructions in Creating a symmetric encryption KMS key in the Amazon Web Services Key Management Service Developer Guide.

You can choose the same symmetric encryption key when you create a CEV and a DB instance, or choose different keys.

', ], ], 'LifecycleSupportName' => [ 'base' => NULL, 'refs' => [ 'SupportedEngineLifecycle$LifecycleSupportName' => '

The type of lifecycle support that the engine version is in.

This parameter returns the following values:

  • open-source-rds-standard-support - Indicates RDS standard support or Aurora standard support.

  • open-source-rds-extended-support - Indicates Amazon RDS Extended Support.

For Amazon RDS for MySQL, Amazon RDS for PostgreSQL, Aurora MySQL, and Aurora PostgreSQL, this parameter returns both open-source-rds-standard-support and open-source-rds-extended-support.

For Amazon RDS for MariaDB, this parameter only returns the value open-source-rds-standard-support.

For information about Amazon RDS Extended Support, see Amazon RDS Extended Support with Amazon RDS in the Amazon RDS User Guide and Amazon RDS Extended Support with Amazon Aurora in the Amazon Aurora User Guide.

', ], ], 'LimitlessDatabase' => [ 'base' => '

Contains details for Aurora Limitless Database.

', 'refs' => [ 'DBCluster$LimitlessDatabase' => '

The details for Aurora Limitless Database.

', ], ], 'LimitlessDatabaseStatus' => [ 'base' => NULL, 'refs' => [ 'LimitlessDatabase$Status' => '

The status of Aurora Limitless Database.

', ], ], 'ListTagsForResourceMessage' => [ 'base' => '

', 'refs' => [], ], 'LogTypeList' => [ 'base' => NULL, 'refs' => [ 'CloudwatchLogsExportConfiguration$EnableLogTypes' => '

The list of log types to enable.

The following values are valid for each DB engine:

  • Aurora MySQL - audit | error | general | slowquery

  • Aurora PostgreSQL - postgresql

  • RDS for MySQL - error | general | slowquery

  • RDS for PostgreSQL - postgresql | upgrade

', 'CloudwatchLogsExportConfiguration$DisableLogTypes' => '

The list of log types to disable.

The following values are valid for each DB engine:

  • Aurora MySQL - audit | error | general | slowquery

  • Aurora PostgreSQL - postgresql

  • RDS for MySQL - error | general | slowquery

  • RDS for PostgreSQL - postgresql | upgrade

', 'CreateDBClusterMessage$EnableCloudwatchLogsExports' => '

The list of log types that need to be enabled for exporting to CloudWatch Logs.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

The following values are valid for each DB engine:

  • Aurora MySQL - audit | error | general | instance | slowquery | iam-db-auth-error

  • Aurora PostgreSQL - instance | postgresql | iam-db-auth-error

  • RDS for MySQL - error | general | slowquery | iam-db-auth-error

  • RDS for PostgreSQL - postgresql | upgrade | iam-db-auth-error

For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.

', 'CreateDBInstanceMessage$EnableCloudwatchLogsExports' => '

The list of log types to enable for exporting to CloudWatch Logs. For more information, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

This setting doesn\'t apply to the following DB instances:

  • Amazon Aurora (CloudWatch Logs exports are managed by the DB cluster.)

  • RDS Custom

The following values are valid for each DB engine:

  • RDS for Db2 - diag.log | notify.log | iam-db-auth-error

  • RDS for MariaDB - audit | error | general | slowquery | iam-db-auth-error

  • RDS for Microsoft SQL Server - agent | error

  • RDS for MySQL - audit | error | general | slowquery | iam-db-auth-error

  • RDS for Oracle - alert | audit | listener | trace | oemagent

  • RDS for PostgreSQL - postgresql | upgrade | iam-db-auth-error

', 'CreateDBInstanceReadReplicaMessage$EnableCloudwatchLogsExports' => '

The list of logs that the new DB instance is to export to CloudWatch Logs. The values in the list depend on the DB engine being used. For more information, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

This setting doesn\'t apply to RDS Custom DB instances.

', 'DBCluster$EnabledCloudwatchLogsExports' => '

A list of log types that this DB cluster is configured to export to CloudWatch Logs.

Log types vary by DB engine. For information about the log types for each DB engine, see Amazon RDS Database Log Files in the Amazon Aurora User Guide.

', 'DBEngineVersion$ExportableLogTypes' => '

The types of logs that the database engine has available for export to CloudWatch Logs.

', 'DBInstance$EnabledCloudwatchLogsExports' => '

A list of log types that this DB instance is configured to export to CloudWatch Logs.

Log types vary by DB engine. For information about the log types for each DB engine, see Monitoring Amazon RDS log files in the Amazon RDS User Guide.

', 'PendingCloudwatchLogsExports$LogTypesToEnable' => '

Log types that are in the process of being deactivated. After they are deactivated, these log types aren\'t exported to CloudWatch Logs.

', 'PendingCloudwatchLogsExports$LogTypesToDisable' => '

Log types that are in the process of being enabled. After they are enabled, these log types are exported to CloudWatch Logs.

', 'RestoreDBClusterFromS3Message$EnableCloudwatchLogsExports' => '

The list of logs that the restored DB cluster is to export to CloudWatch Logs. The values in the list depend on the DB engine being used.

Aurora MySQL

Possible values are audit, error, general, instance, slowquery, and iam-db-auth-error.

Aurora PostgreSQL

Possible value are instance, postgresql, and iam-db-auth-error.

For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.

', 'RestoreDBClusterFromSnapshotMessage$EnableCloudwatchLogsExports' => '

The list of logs that the restored DB cluster is to export to Amazon CloudWatch Logs. The values in the list depend on the DB engine being used.

RDS for MySQL

Possible values are error, general, slowquery, and iam-db-auth-error.

RDS for PostgreSQL

Possible values are postgresql, upgrade, and iam-db-auth-error.

Aurora MySQL

Possible values are audit, error, general, instance, slowquery, and iam-db-auth-error.

Aurora PostgreSQL

Possible value are instance, postgresql, and iam-db-auth-error.

For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterToPointInTimeMessage$EnableCloudwatchLogsExports' => '

The list of logs that the restored DB cluster is to export to CloudWatch Logs. The values in the list depend on the DB engine being used.

RDS for MySQL

Possible values are error, general, slowquery, and iam-db-auth-error.

RDS for PostgreSQL

Possible values are postgresql, upgrade, and iam-db-auth-error.

Aurora MySQL

Possible values are audit, error, general, instance, slowquery, and iam-db-auth-error.

Aurora PostgreSQL

Possible value are instance, postgresql, and iam-db-auth-error.

For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBInstanceFromDBSnapshotMessage$EnableCloudwatchLogsExports' => '

The list of logs for the restored DB instance to export to CloudWatch Logs. The values in the list depend on the DB engine. For more information, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

This setting doesn\'t apply to RDS Custom.

', 'RestoreDBInstanceFromS3Message$EnableCloudwatchLogsExports' => '

The list of logs that the restored DB instance is to export to CloudWatch Logs. The values in the list depend on the DB engine being used. For more information, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

', 'RestoreDBInstanceToPointInTimeMessage$EnableCloudwatchLogsExports' => '

The list of logs that the restored DB instance is to export to CloudWatch Logs. The values in the list depend on the DB engine being used. For more information, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

This setting doesn\'t apply to RDS Custom.

', ], ], 'Long' => [ 'base' => NULL, 'refs' => [ 'AccountQuota$Used' => '

The amount currently used toward the quota maximum.

', 'AccountQuota$Max' => '

The maximum allowed value for the quota.

', 'DescribeDBLogFilesDetails$LastWritten' => '

A POSIX timestamp when the last log entry was written.

', 'DescribeDBLogFilesDetails$Size' => '

The size, in bytes, of the log file for the specified DB instance.

', 'DescribeDBLogFilesMessage$FileLastWritten' => '

Filters the available log files for files written since the specified date, in POSIX timestamp format with milliseconds.

', 'DescribeDBLogFilesMessage$FileSize' => '

Filters the available log files for files larger than the specified size.

', ], ], 'LongOptional' => [ 'base' => NULL, 'refs' => [ 'CreateDBClusterMessage$BacktrackWindow' => '

The target backtrack window, in seconds. To disable backtracking, set this value to 0.

Valid for Cluster Type: Aurora MySQL DB clusters only

Default: 0

Constraints:

  • If specified, this value must be set to a number from 0 to 259,200 (72 hours).

', 'DBCluster$BacktrackWindow' => '

The target backtrack window, in seconds. If this value is set to 0, backtracking is disabled for the DB cluster. Otherwise, backtracking is enabled.

', 'DBCluster$BacktrackConsumedChangeRecords' => '

The number of change records stored for Backtrack.

', 'ModifyDBClusterMessage$BacktrackWindow' => '

The target backtrack window, in seconds. To disable backtracking, set this value to 0.

Valid for Cluster Type: Aurora MySQL DB clusters only

Default: 0

Constraints:

  • If specified, this value must be set to a number from 0 to 259,200 (72 hours).

', 'RestoreDBClusterFromS3Message$BacktrackWindow' => '

The target backtrack window, in seconds. To disable backtracking, set this value to 0.

Currently, Backtrack is only supported for Aurora MySQL DB clusters.

Default: 0

Constraints:

  • If specified, this value must be set to a number from 0 to 259,200 (72 hours).

', 'RestoreDBClusterFromSnapshotMessage$BacktrackWindow' => '

The target backtrack window, in seconds. To disable backtracking, set this value to 0.

Currently, Backtrack is only supported for Aurora MySQL DB clusters.

Default: 0

Constraints:

  • If specified, this value must be set to a number from 0 to 259,200 (72 hours).

Valid for: Aurora DB clusters only

', 'RestoreDBClusterToPointInTimeMessage$BacktrackWindow' => '

The target backtrack window, in seconds. To disable backtracking, set this value to 0.

Default: 0

Constraints:

  • If specified, this value must be set to a number from 0 to 259,200 (72 hours).

Valid for: Aurora MySQL DB clusters only

', ], ], 'MajorEngineVersion' => [ 'base' => NULL, 'refs' => [ 'DescribeDBMajorEngineVersionsRequest$MajorEngineVersion' => '

A specific database major engine version to return details for.

Example: 8.4

', ], ], 'Marker' => [ 'base' => NULL, 'refs' => [ 'DescribeDBMajorEngineVersionsRequest$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeIntegrationsMessage$Marker' => '

An optional pagination token provided by a previous DescribeIntegrations request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeIntegrationsResponse$Marker' => '

A pagination token that can be used in a later DescribeIntegrations request.

', ], ], 'MasterUserSecret' => [ 'base' => '

Contains the secret managed by RDS in Amazon Web Services Secrets Manager for the master user password.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide and Password management with Amazon Web Services Secrets Manager in the Amazon Aurora User Guide.

', 'refs' => [ 'DBCluster$MasterUserSecret' => '

The secret managed by RDS in Amazon Web Services Secrets Manager for the master user password.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide and Password management with Amazon Web Services Secrets Manager in the Amazon Aurora User Guide.

', 'DBInstance$MasterUserSecret' => '

The secret managed by RDS in Amazon Web Services Secrets Manager for the master user password.

For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.

', 'TenantDatabase$MasterUserSecret' => NULL, ], ], 'MaxRecords' => [ 'base' => NULL, 'refs' => [ 'DescribeBlueGreenDeploymentsRequest$MaxRecords' => '

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 you can retrieve the remaining results.

Default: 100

Constraints:

  • Must be a minimum of 20.

  • Can\'t exceed 100.

', 'DescribeDBMajorEngineVersionsRequest$MaxRecords' => '

The maximum number of records to include in the response. If more than the MaxRecords value is available, a pagination token called a marker is included in the response so you can retrieve the remaining results.

Default: 100

', 'DescribeDBProxiesRequest$MaxRecords' => '

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 the remaining results can be retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBProxyEndpointsRequest$MaxRecords' => '

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 the remaining results can be retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBProxyTargetGroupsRequest$MaxRecords' => '

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 the remaining results can be retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBProxyTargetsRequest$MaxRecords' => '

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 the remaining results can be retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

', 'DescribeDBShardGroupsMessage$MaxRecords' => '

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 you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100

', 'DescribeExportTasksMessage$MaxRecords' => '

The maximum number of records to include in the response. If more records exist than the specified value, a pagination token called a marker is included in the response. You can use the marker in a later DescribeExportTasks request to retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

', ], ], 'Metric' => [ 'base' => '

The representation of a metric.

', 'refs' => [ 'MetricList$member' => NULL, ], ], 'MetricList' => [ 'base' => NULL, 'refs' => [ 'PerformanceIssueDetails$Metrics' => '

The metrics that are relevant to the performance issue.

', ], ], 'MetricQuery' => [ 'base' => '

The query to retrieve metric data points.

', 'refs' => [ 'Metric$MetricQuery' => '

The query to retrieve metric data points.

', ], ], 'MetricReference' => [ 'base' => '

The reference (threshold) for a metric.

', 'refs' => [ 'MetricReferenceList$member' => NULL, ], ], 'MetricReferenceList' => [ 'base' => NULL, 'refs' => [ 'Metric$References' => '

A list of metric references (thresholds).

', ], ], 'MinimumEngineVersionPerAllowedValue' => [ 'base' => '

The minimum DB engine version required for each corresponding allowed value for an option setting.

', 'refs' => [ 'MinimumEngineVersionPerAllowedValueList$member' => NULL, ], ], 'MinimumEngineVersionPerAllowedValueList' => [ 'base' => NULL, 'refs' => [ 'OptionGroupOptionSetting$MinimumEngineVersionPerAllowedValue' => '

The minimum DB engine version required for the corresponding allowed value for this option setting.

', ], ], 'ModifyActivityStreamRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyActivityStreamResponse' => [ 'base' => NULL, 'refs' => [], ], 'ModifyCertificatesMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyCertificatesResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyCurrentDBClusterCapacityMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyCustomDBEngineVersionMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBClusterEndpointMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBClusterMessage' => [ 'base' => '

', 'refs' => [], ], 'ModifyDBClusterParameterGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'ModifyDBClusterResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBClusterSnapshotAttributeMessage' => [ 'base' => '

', 'refs' => [], ], 'ModifyDBClusterSnapshotAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBInstanceMessage' => [ 'base' => '

', 'refs' => [], ], 'ModifyDBInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBParameterGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'ModifyDBProxyEndpointRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBProxyEndpointResponse' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBProxyRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBProxyResponse' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBProxyTargetGroupRequest' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBProxyTargetGroupResponse' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBRecommendationMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBShardGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBSnapshotAttributeMessage' => [ 'base' => '

', 'refs' => [], ], 'ModifyDBSnapshotAttributeResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBSnapshotMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyDBSubnetGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'ModifyDBSubnetGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyEventSubscriptionMessage' => [ 'base' => '

', 'refs' => [], ], 'ModifyEventSubscriptionResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyGlobalClusterMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyGlobalClusterResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyIntegrationMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyOptionGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'ModifyOptionGroupResult' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTenantDatabaseMessage' => [ 'base' => NULL, 'refs' => [], ], 'ModifyTenantDatabaseResult' => [ 'base' => NULL, 'refs' => [], ], 'NetworkTypeNotSupported' => [ 'base' => '

The network type is invalid for the DB instance. Valid nework type values are IPV4 and DUAL.

', 'refs' => [], ], 'Option' => [ 'base' => '

The details of an option.

', 'refs' => [ 'OptionsList$member' => NULL, ], ], 'OptionConfiguration' => [ 'base' => '

A list of all available options for an option group.

', 'refs' => [ 'OptionConfigurationList$member' => NULL, ], ], 'OptionConfigurationList' => [ 'base' => NULL, 'refs' => [ 'ModifyOptionGroupMessage$OptionsToInclude' => '

Options in this list are added to the option group or, if already present, the specified configuration is used to update the existing configuration.

', ], ], 'OptionGroup' => [ 'base' => '

', 'refs' => [ 'CopyOptionGroupResult$OptionGroup' => NULL, 'CreateOptionGroupResult$OptionGroup' => NULL, 'ModifyOptionGroupResult$OptionGroup' => NULL, 'OptionGroupsList$member' => NULL, ], ], 'OptionGroupAlreadyExistsFault' => [ 'base' => '

The option group you are trying to create already exists.

', 'refs' => [], ], 'OptionGroupMembership' => [ 'base' => '

Provides information on the option groups the DB instance is a member of.

', 'refs' => [ 'OptionGroupMembershipList$member' => NULL, ], ], 'OptionGroupMembershipList' => [ 'base' => NULL, 'refs' => [ 'DBInstance$OptionGroupMemberships' => '

The list of option group memberships for this DB instance.

', ], ], 'OptionGroupNotFoundFault' => [ 'base' => '

The specified option group could not be found.

', 'refs' => [], ], 'OptionGroupOption' => [ 'base' => '

Available option.

', 'refs' => [ 'OptionGroupOptionsList$member' => NULL, ], ], 'OptionGroupOptionSetting' => [ 'base' => '

Option group option settings are used to display settings available for each option with their default values and other information. These values are used with the DescribeOptionGroupOptions action.

', 'refs' => [ 'OptionGroupOptionSettingsList$member' => NULL, ], ], 'OptionGroupOptionSettingsList' => [ 'base' => NULL, 'refs' => [ 'OptionGroupOption$OptionGroupOptionSettings' => '

The option settings that are available (and the default value) for each option in an option group.

', ], ], 'OptionGroupOptionVersionsList' => [ 'base' => NULL, 'refs' => [ 'OptionGroupOption$OptionGroupOptionVersions' => '

The versions that are available for the option.

', ], ], 'OptionGroupOptionsList' => [ 'base' => '

List of available option group options.

', 'refs' => [ 'OptionGroupOptionsMessage$OptionGroupOptions' => NULL, ], ], 'OptionGroupOptionsMessage' => [ 'base' => '

', 'refs' => [], ], 'OptionGroupQuotaExceededFault' => [ 'base' => '

The quota of 20 option groups was exceeded for this Amazon Web Services account.

', 'refs' => [], ], 'OptionGroups' => [ 'base' => '

List of option groups.

', 'refs' => [], ], 'OptionGroupsList' => [ 'base' => NULL, 'refs' => [ 'OptionGroups$OptionGroupsList' => '

List of option groups.

', ], ], 'OptionNamesList' => [ 'base' => NULL, 'refs' => [ 'ModifyOptionGroupMessage$OptionsToRemove' => '

Options in this list are removed from the option group.

', ], ], 'OptionSetting' => [ 'base' => '

Option settings are the actual settings being applied or configured for that option. It is used when you modify an option group or describe option groups. For example, the NATIVE_NETWORK_ENCRYPTION option has a setting called SQLNET.ENCRYPTION_SERVER that can have several different values.

', 'refs' => [ 'OptionSettingConfigurationList$member' => NULL, 'OptionSettingsList$member' => NULL, ], ], 'OptionSettingConfigurationList' => [ 'base' => NULL, 'refs' => [ 'Option$OptionSettings' => '

The option settings for this option.

', ], ], 'OptionSettingsList' => [ 'base' => NULL, 'refs' => [ 'OptionConfiguration$OptionSettings' => '

The option settings to include in an option group.

', ], ], 'OptionVersion' => [ 'base' => '

The version for an option. Option group option versions are returned by the DescribeOptionGroupOptions action.

', 'refs' => [ 'OptionGroupOptionVersionsList$member' => NULL, ], ], 'OptionsConflictsWith' => [ 'base' => NULL, 'refs' => [ 'OptionGroupOption$OptionsConflictsWith' => '

The options that conflict with this option.

', ], ], 'OptionsDependedOn' => [ 'base' => NULL, 'refs' => [ 'OptionGroupOption$OptionsDependedOn' => '

The options that are prerequisites for this option.

', ], ], 'OptionsList' => [ 'base' => NULL, 'refs' => [ 'OptionGroup$Options' => '

Indicates what options are available in the option group.

', ], ], 'OrderableDBInstanceOption' => [ 'base' => '

Contains a list of available options for a DB instance.

This data type is used as a response element in the DescribeOrderableDBInstanceOptions action.

', 'refs' => [ 'OrderableDBInstanceOptionsList$member' => NULL, ], ], 'OrderableDBInstanceOptionsList' => [ 'base' => NULL, 'refs' => [ 'OrderableDBInstanceOptionsMessage$OrderableDBInstanceOptions' => '

An OrderableDBInstanceOption structure containing information about orderable options for the DB instance.

', ], ], 'OrderableDBInstanceOptionsMessage' => [ 'base' => '

Contains the result of a successful invocation of the DescribeOrderableDBInstanceOptions action.

', 'refs' => [], ], 'Outpost' => [ 'base' => '

A data type that represents an Outpost.

For more information about RDS on Outposts, see Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

', 'refs' => [ 'Subnet$SubnetOutpost' => '

If the subnet is associated with an Outpost, this value specifies the Outpost.

For more information about RDS on Outposts, see Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

', ], ], 'Parameter' => [ 'base' => '

This data type is used as a request parameter in the ModifyDBParameterGroup and ResetDBParameterGroup actions.

This data type is used as a response element in the DescribeEngineDefaultParameters and DescribeDBParameters actions.

', 'refs' => [ 'ParametersList$member' => NULL, ], ], 'ParametersList' => [ 'base' => NULL, 'refs' => [ 'DBClusterParameterGroupDetails$Parameters' => '

Provides a list of parameters for the DB cluster parameter group.

', 'DBParameterGroupDetails$Parameters' => '

A list of Parameter values.

', 'EngineDefaults$Parameters' => '

Contains a list of engine default parameters.

', 'ModifyDBClusterParameterGroupMessage$Parameters' => '

A list of parameters in the DB cluster parameter group to modify.

Valid Values (for the application method): immediate | pending-reboot

You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters.

When the application method is immediate, changes to dynamic parameters are applied immediately to the DB clusters associated with the parameter group. When the application method is pending-reboot, changes to dynamic and static parameters are applied after a reboot without failover to the DB clusters associated with the parameter group.

', 'ModifyDBParameterGroupMessage$Parameters' => '

An array of parameter names, values, and the application methods for the parameter update. At least one parameter name, value, and application method must be supplied; later arguments are optional. A maximum of 20 parameters can be modified in a single request.

Valid Values (for the application method): immediate | pending-reboot

You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters.

When the application method is immediate, changes to dynamic parameters are applied immediately to the DB instances associated with the parameter group.

When the application method is pending-reboot, changes to dynamic and static parameters are applied after a reboot without failover to the DB instances associated with the parameter group.

You can\'t use pending-reboot with dynamic parameters on RDS for SQL Server DB instances. Use immediate.

For more information on modifying DB parameters, see Working with DB parameter groups in the Amazon RDS User Guide.

', 'ResetDBClusterParameterGroupMessage$Parameters' => '

A list of parameter names in the DB cluster parameter group to reset to the default values. You can\'t use this parameter if the ResetAllParameters parameter is enabled.

', 'ResetDBParameterGroupMessage$Parameters' => '

To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

MySQL

Valid Values (for Apply method): immediate | pending-reboot

You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters, and changes are applied when DB instance reboots.

MariaDB

Valid Values (for Apply method): immediate | pending-reboot

You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters, and changes are applied when DB instance reboots.

Oracle

Valid Values (for Apply method): pending-reboot

', ], ], 'PendingCloudwatchLogsExports' => [ 'base' => '

A list of the log types whose configuration is still pending. In other words, these log types are in the process of being activated or deactivated.

', 'refs' => [ 'ClusterPendingModifiedValues$PendingCloudwatchLogsExports' => NULL, 'PendingModifiedValues$PendingCloudwatchLogsExports' => NULL, ], ], 'PendingMaintenanceAction' => [ 'base' => '

Provides information about a pending maintenance action for a resource.

', 'refs' => [ 'PendingMaintenanceActionDetails$member' => NULL, ], ], 'PendingMaintenanceActionDetails' => [ 'base' => NULL, 'refs' => [ 'ResourcePendingMaintenanceActions$PendingMaintenanceActionDetails' => '

A list that provides details about the pending maintenance actions for the resource.

', ], ], 'PendingMaintenanceActions' => [ 'base' => NULL, 'refs' => [ 'PendingMaintenanceActionsMessage$PendingMaintenanceActions' => '

A list of the pending maintenance actions for the resource.

', ], ], 'PendingMaintenanceActionsMessage' => [ 'base' => '

Data returned from the DescribePendingMaintenanceActions action.

', 'refs' => [], ], 'PendingModifiedValues' => [ 'base' => '

This data type is used as a response element in the ModifyDBInstance operation and contains changes that will be applied during the next maintenance window.

', 'refs' => [ 'DBInstance$PendingModifiedValues' => '

Information about pending changes to the DB instance. This information is returned only when there are pending changes. Specific changes are identified by subelements.

', ], ], 'PerformanceInsightsMetricDimensionGroup' => [ 'base' => '

A logical grouping of Performance Insights metrics for a related subject area. For example, the db.sql dimension group consists of the following dimensions:

  • db.sql.id - The hash of a running SQL statement, generated by Performance Insights.

  • db.sql.db_id - Either the SQL ID generated by the database engine, or a value generated by Performance Insights that begins with pi-.

  • db.sql.statement - The full text of the SQL statement that is running, for example, SELECT * FROM employees.

  • db.sql_tokenized.id - The hash of the SQL digest generated by Performance Insights.

Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned.

', 'refs' => [ 'PerformanceInsightsMetricQuery$GroupBy' => '

A specification for how to aggregate the data points from a query result. You must specify a valid dimension group. Performance Insights will return all of the dimensions within that group, unless you provide the names of specific dimensions within that group. You can also request that Performance Insights return a limited number of values for a dimension.

', ], ], 'PerformanceInsightsMetricQuery' => [ 'base' => '

A single Performance Insights metric query to process. You must provide the metric to the query. If other parameters aren\'t specified, Performance Insights returns all data points for the specified metric. Optionally, you can request the data points to be aggregated by dimension group (GroupBy) and return only those data points that match your criteria (Filter).

Constraints:

  • Must be a valid Performance Insights query.

', 'refs' => [ 'MetricQuery$PerformanceInsightsMetricQuery' => '

The Performance Insights query that you can use to retrieve Performance Insights metric data points.

', ], ], 'PerformanceIssueDetails' => [ 'base' => '

Details of the performance issue.

', 'refs' => [ 'IssueDetails$PerformanceIssueDetails' => '

A detailed description of the issue when the recommendation category is performance.

', ], ], 'PointInTimeRestoreNotEnabledFault' => [ 'base' => '

SourceDBInstanceIdentifier refers to a DB instance with BackupRetentionPeriod equal to 0.

', 'refs' => [], ], 'PotentiallySensitiveOptionSettingValue' => [ 'base' => NULL, 'refs' => [ 'OptionSetting$Value' => '

The current value of the option setting.

', ], ], 'PotentiallySensitiveParameterValue' => [ 'base' => NULL, 'refs' => [ 'Parameter$ParameterValue' => '

The value of the parameter.

', ], ], 'ProcessorFeature' => [ 'base' => '

Contains the processor features of a DB instance class.

To specify the number of CPU cores, use the coreCount feature name for the Name parameter. To specify the number of threads per core, use the threadsPerCore feature name for the Name parameter.

You can set the processor features of the DB instance class for a DB instance when you call one of the following actions:

  • CreateDBInstance

  • ModifyDBInstance

  • RestoreDBInstanceFromDBSnapshot

  • RestoreDBInstanceFromS3

  • RestoreDBInstanceToPointInTime

You can view the valid processor values for a particular instance class by calling the DescribeOrderableDBInstanceOptions action and specifying the instance class for the DBInstanceClass parameter.

In addition, you can use the following actions for DB instance class processor information:

  • DescribeDBInstances

  • DescribeDBSnapshots

  • DescribeValidDBInstanceModifications

If you call DescribeDBInstances, ProcessorFeature returns non-null values only if the following conditions are met:

  • You are accessing an Oracle DB instance.

  • Your Oracle DB instance class supports configuring the number of CPU cores and threads per core.

  • The current number CPU cores and threads is set to a non-default value.

For more information, see Configuring the processor for a DB instance class in RDS for Oracle in the Amazon RDS User Guide.

', 'refs' => [ 'ProcessorFeatureList$member' => NULL, ], ], 'ProcessorFeatureList' => [ 'base' => NULL, 'refs' => [ 'CreateDBInstanceMessage$ProcessorFeatures' => '

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

This setting doesn\'t apply to Amazon Aurora or RDS Custom DB instances.

', 'CreateDBInstanceReadReplicaMessage$ProcessorFeatures' => '

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

This setting doesn\'t apply to RDS Custom DB instances.

', 'DBInstance$ProcessorFeatures' => '

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

', 'DBSnapshot$ProcessorFeatures' => '

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance when the DB snapshot was created.

', 'ModifyDBInstanceMessage$ProcessorFeatures' => '

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

This setting doesn\'t apply to RDS Custom DB instances.

', 'PendingModifiedValues$ProcessorFeatures' => '

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

', 'RestoreDBInstanceFromDBSnapshotMessage$ProcessorFeatures' => '

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

This setting doesn\'t apply to RDS Custom.

', 'RestoreDBInstanceFromS3Message$ProcessorFeatures' => '

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

', 'RestoreDBInstanceToPointInTimeMessage$ProcessorFeatures' => '

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

This setting doesn\'t apply to RDS Custom.

', ], ], 'PromoteReadReplicaDBClusterMessage' => [ 'base' => '

', 'refs' => [], ], 'PromoteReadReplicaDBClusterResult' => [ 'base' => NULL, 'refs' => [], ], 'PromoteReadReplicaMessage' => [ 'base' => '

', 'refs' => [], ], 'PromoteReadReplicaResult' => [ 'base' => NULL, 'refs' => [], ], 'ProvisionedIopsNotAvailableInAZFault' => [ 'base' => '

Provisioned IOPS not available in the specified Availability Zone.

', 'refs' => [], ], 'PurchaseReservedDBInstancesOfferingMessage' => [ 'base' => '

', 'refs' => [], ], 'PurchaseReservedDBInstancesOfferingResult' => [ 'base' => NULL, 'refs' => [], ], 'Range' => [ 'base' => '

A range of integer values.

', 'refs' => [ 'RangeList$member' => NULL, ], ], 'RangeList' => [ 'base' => NULL, 'refs' => [ 'ValidStorageOptions$StorageSize' => '

The valid range of storage in gibibytes (GiB). For example, 100 to 16,384.

', 'ValidStorageOptions$ProvisionedIops' => '

The valid range of provisioned IOPS. For example, 1000-256,000.

', 'ValidStorageOptions$ProvisionedStorageThroughput' => '

The valid range of provisioned storage throughput. For example, 500-4,000 mebibytes per second (MiBps).

', ], ], 'RdsCustomClusterConfiguration' => [ 'base' => '

Reserved for future use.

', 'refs' => [ 'ClusterPendingModifiedValues$RdsCustomClusterConfiguration' => '

Reserved for future use.

', 'CreateDBClusterMessage$RdsCustomClusterConfiguration' => '

Reserved for future use.

', 'DBCluster$RdsCustomClusterConfiguration' => '

Reserved for future use.

', 'RestoreDBClusterFromSnapshotMessage$RdsCustomClusterConfiguration' => '

Reserved for future use.

', 'RestoreDBClusterToPointInTimeMessage$RdsCustomClusterConfiguration' => '

Reserved for future use.

', ], ], 'ReadReplicaDBClusterIdentifierList' => [ 'base' => NULL, 'refs' => [ 'DBInstance$ReadReplicaDBClusterIdentifiers' => '

The identifiers of Aurora DB clusters to which the RDS DB instance is replicated as a read replica. For example, when you create an Aurora read replica of an RDS for MySQL DB instance, the Aurora MySQL DB cluster for the Aurora read replica is shown. This output doesn\'t contain information about cross-Region Aurora read replicas.

Currently, each RDS DB instance can have only one Aurora read replica.

', ], ], 'ReadReplicaDBInstanceIdentifierList' => [ 'base' => NULL, 'refs' => [ 'DBInstance$ReadReplicaDBInstanceIdentifiers' => '

The identifiers of the read replicas associated with this DB instance.

', ], ], 'ReadReplicaIdentifierList' => [ 'base' => NULL, 'refs' => [ 'DBCluster$ReadReplicaIdentifiers' => '

Contains one or more identifiers of the read replicas associated with this DB cluster.

', ], ], 'ReadersArnList' => [ 'base' => NULL, 'refs' => [ 'GlobalClusterMember$Readers' => '

The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the global cluster.

', ], ], 'RebootDBClusterMessage' => [ 'base' => NULL, 'refs' => [], ], 'RebootDBClusterResult' => [ 'base' => NULL, 'refs' => [], ], 'RebootDBInstanceMessage' => [ 'base' => '

', 'refs' => [], ], 'RebootDBInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'RebootDBShardGroupMessage' => [ 'base' => NULL, 'refs' => [], ], 'RecommendedAction' => [ 'base' => '

The recommended actions to apply to resolve the issues associated with your DB instances, DB clusters, and DB parameter groups.

', 'refs' => [ 'RecommendedActionList$member' => NULL, ], ], 'RecommendedActionList' => [ 'base' => NULL, 'refs' => [ 'DBRecommendation$RecommendedActions' => '

A list of recommended actions.

', ], ], 'RecommendedActionParameter' => [ 'base' => '

A single parameter to use with the RecommendedAction API operation to apply the action.

', 'refs' => [ 'RecommendedActionParameterList$member' => NULL, ], ], 'RecommendedActionParameterList' => [ 'base' => NULL, 'refs' => [ 'RecommendedAction$Parameters' => '

The parameters for the API operation.

', ], ], 'RecommendedActionUpdate' => [ 'base' => '

The recommended status to update for the specified recommendation action ID.

', 'refs' => [ 'RecommendedActionUpdateList$member' => NULL, ], ], 'RecommendedActionUpdateList' => [ 'base' => NULL, 'refs' => [ 'ModifyDBRecommendationMessage$RecommendedActionUpdates' => '

The list of recommended action status to update. You can update multiple recommended actions at one time.

', ], ], 'RecurringCharge' => [ 'base' => '

This data type is used as a response element in the DescribeReservedDBInstances and DescribeReservedDBInstancesOfferings actions.

', 'refs' => [ 'RecurringChargeList$member' => NULL, ], ], 'RecurringChargeList' => [ 'base' => NULL, 'refs' => [ 'ReservedDBInstance$RecurringCharges' => '

The recurring price charged to run this reserved DB instance.

', 'ReservedDBInstancesOffering$RecurringCharges' => '

The recurring price charged to run this reserved DB instance.

', ], ], 'ReferenceDetails' => [ 'base' => '

The reference details of a metric.

', 'refs' => [ 'MetricReference$ReferenceDetails' => '

The details of a performance issue.

', ], ], 'RegisterDBProxyTargetsRequest' => [ 'base' => NULL, 'refs' => [], ], 'RegisterDBProxyTargetsResponse' => [ 'base' => NULL, 'refs' => [], ], 'RemoveFromGlobalClusterMessage' => [ 'base' => NULL, 'refs' => [], ], 'RemoveFromGlobalClusterResult' => [ 'base' => NULL, 'refs' => [], ], 'RemoveRoleFromDBClusterMessage' => [ 'base' => NULL, 'refs' => [], ], 'RemoveRoleFromDBInstanceMessage' => [ 'base' => NULL, 'refs' => [], ], 'RemoveSourceIdentifierFromSubscriptionMessage' => [ 'base' => '

', 'refs' => [], ], 'RemoveSourceIdentifierFromSubscriptionResult' => [ 'base' => NULL, 'refs' => [], ], 'RemoveTagsFromResourceMessage' => [ 'base' => '

', 'refs' => [], ], 'ReplicaMode' => [ 'base' => NULL, 'refs' => [ 'CreateDBInstanceReadReplicaMessage$ReplicaMode' => '

The open mode of the replica database.

This parameter is only supported for Db2 DB instances and Oracle DB instances.

Db2

Standby DB replicas are included in Db2 Advanced Edition (AE) and Db2 Standard Edition (SE). The main use case for standby replicas is cross-Region disaster recovery. Because it doesn\'t accept user connections, a standby replica can\'t serve a read-only workload.

You can create a combination of standby and read-only DB replicas for the same primary DB instance. For more information, see Working with read replicas for Amazon RDS for Db2 in the Amazon RDS User Guide.

To create standby DB replicas for RDS for Db2, set this parameter to mounted.

Oracle

Mounted DB replicas are included in Oracle Database Enterprise Edition. The main use case for mounted replicas is cross-Region disaster recovery. The primary database doesn\'t use Active Data Guard to transmit information to the mounted replica. Because it doesn\'t accept user connections, a mounted replica can\'t serve a read-only workload.

You can create a combination of mounted and read-only DB replicas for the same primary DB instance. For more information, see Working with read replicas for Amazon RDS for Oracle in the Amazon RDS User Guide.

For RDS Custom, you must specify this parameter and set it to mounted. The value won\'t be set by default. After replica creation, you can manage the open mode manually.

', 'DBInstance$ReplicaMode' => '

The open mode of a Db2 or an Oracle read replica. The default is open-read-only. For more information, see Working with read replicas for Amazon RDS for Db2 and Working with read replicas for Amazon RDS for Oracle in the Amazon RDS User Guide.

This attribute is only supported in RDS for Db2, RDS for Oracle, and RDS Custom for Oracle.

', 'ModifyDBInstanceMessage$ReplicaMode' => '

The open mode of a replica database.

This parameter is only supported for Db2 DB instances and Oracle DB instances.

Db2

Standby DB replicas are included in Db2 Advanced Edition (AE) and Db2 Standard Edition (SE). The main use case for standby replicas is cross-Region disaster recovery. Because it doesn\'t accept user connections, a standby replica can\'t serve a read-only workload.

You can create a combination of standby and read-only DB replicas for the same primary DB instance. For more information, see Working with read replicas for Amazon RDS for Db2 in the Amazon RDS User Guide.

To create standby DB replicas for RDS for Db2, set this parameter to mounted.

Oracle

Mounted DB replicas are included in Oracle Database Enterprise Edition. The main use case for mounted replicas is cross-Region disaster recovery. The primary database doesn\'t use Active Data Guard to transmit information to the mounted replica. Because it doesn\'t accept user connections, a mounted replica can\'t serve a read-only workload.

You can create a combination of mounted and read-only DB replicas for the same primary DB instance. For more information, see Working with read replicas for Amazon RDS for Oracle in the Amazon RDS User Guide.

For RDS Custom, you must specify this parameter and set it to mounted. The value won\'t be set by default. After replica creation, you can manage the open mode manually.

', 'RdsCustomClusterConfiguration$ReplicaMode' => '

Reserved for future use.

', ], ], 'ReservedDBInstance' => [ 'base' => '

This data type is used as a response element in the DescribeReservedDBInstances and PurchaseReservedDBInstancesOffering actions.

', 'refs' => [ 'PurchaseReservedDBInstancesOfferingResult$ReservedDBInstance' => NULL, 'ReservedDBInstanceList$member' => NULL, ], ], 'ReservedDBInstanceAlreadyExistsFault' => [ 'base' => '

User already has a reservation with the given identifier.

', 'refs' => [], ], 'ReservedDBInstanceList' => [ 'base' => NULL, 'refs' => [ 'ReservedDBInstanceMessage$ReservedDBInstances' => '

A list of reserved DB instances.

', ], ], 'ReservedDBInstanceMessage' => [ 'base' => '

Contains the result of a successful invocation of the DescribeReservedDBInstances action.

', 'refs' => [], ], 'ReservedDBInstanceNotFoundFault' => [ 'base' => '

The specified reserved DB Instance not found.

', 'refs' => [], ], 'ReservedDBInstanceQuotaExceededFault' => [ 'base' => '

Request would exceed the user\'s DB Instance quota.

', 'refs' => [], ], 'ReservedDBInstancesOffering' => [ 'base' => '

This data type is used as a response element in the DescribeReservedDBInstancesOfferings action.

', 'refs' => [ 'ReservedDBInstancesOfferingList$member' => NULL, ], ], 'ReservedDBInstancesOfferingList' => [ 'base' => NULL, 'refs' => [ 'ReservedDBInstancesOfferingMessage$ReservedDBInstancesOfferings' => '

A list of reserved DB instance offerings.

', ], ], 'ReservedDBInstancesOfferingMessage' => [ 'base' => '

Contains the result of a successful invocation of the DescribeReservedDBInstancesOfferings action.

', 'refs' => [], ], 'ReservedDBInstancesOfferingNotFoundFault' => [ 'base' => '

Specified offering does not exist.

', 'refs' => [], ], 'ResetDBClusterParameterGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'ResetDBParameterGroupMessage' => [ 'base' => '

', 'refs' => [], ], 'ResourceNotFoundFault' => [ 'base' => '

The specified resource ID was not found.

', 'refs' => [], ], 'ResourcePendingMaintenanceActions' => [ 'base' => '

Describes the pending maintenance actions for a resource.

', 'refs' => [ 'ApplyPendingMaintenanceActionResult$ResourcePendingMaintenanceActions' => NULL, 'PendingMaintenanceActions$member' => NULL, ], ], 'RestoreDBClusterFromS3Message' => [ 'base' => NULL, 'refs' => [], ], 'RestoreDBClusterFromS3Result' => [ 'base' => NULL, 'refs' => [], ], 'RestoreDBClusterFromSnapshotMessage' => [ 'base' => '

', 'refs' => [], ], 'RestoreDBClusterFromSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'RestoreDBClusterToPointInTimeMessage' => [ 'base' => '

', 'refs' => [], ], 'RestoreDBClusterToPointInTimeResult' => [ 'base' => NULL, 'refs' => [], ], 'RestoreDBInstanceFromDBSnapshotMessage' => [ 'base' => '

', 'refs' => [], ], 'RestoreDBInstanceFromDBSnapshotResult' => [ 'base' => NULL, 'refs' => [], ], 'RestoreDBInstanceFromS3Message' => [ 'base' => NULL, 'refs' => [], ], 'RestoreDBInstanceFromS3Result' => [ 'base' => NULL, 'refs' => [], ], 'RestoreDBInstanceToPointInTimeMessage' => [ 'base' => '

', 'refs' => [], ], 'RestoreDBInstanceToPointInTimeResult' => [ 'base' => NULL, 'refs' => [], ], 'RestoreWindow' => [ 'base' => '

Earliest and latest time an instance can be restored to:

', 'refs' => [ 'DBClusterAutomatedBackup$RestoreWindow' => NULL, 'DBInstanceAutomatedBackup$RestoreWindow' => '

The earliest and latest time a DB instance can be restored to.

', ], ], 'RevokeDBSecurityGroupIngressMessage' => [ 'base' => '

', 'refs' => [], ], 'RevokeDBSecurityGroupIngressResult' => [ 'base' => NULL, 'refs' => [], ], 'SNSInvalidTopicFault' => [ 'base' => '

SNS has responded that there is a problem with the SNS topic specified.

', 'refs' => [], ], 'SNSNoAuthorizationFault' => [ 'base' => '

You do not have permission to publish to the SNS topic ARN.

', 'refs' => [], ], 'SNSTopicArnNotFoundFault' => [ 'base' => '

The SNS topic ARN does not exist.

', 'refs' => [], ], 'ScalarReferenceDetails' => [ 'base' => '

The metric reference details when the reference is a scalar.

', 'refs' => [ 'ReferenceDetails$ScalarReferenceDetails' => '

The metric reference details when the reference is a scalar.

', ], ], 'ScalingConfiguration' => [ 'base' => '

Contains the scaling configuration of an Aurora Serverless v1 DB cluster.

For more information, see Using Amazon Aurora Serverless v1 in the Amazon Aurora User Guide.

', 'refs' => [ 'CreateDBClusterMessage$ScalingConfiguration' => '

For DB clusters in serverless DB engine mode, the scaling properties of the DB cluster.

Valid for Cluster Type: Aurora DB clusters only

', 'ModifyDBClusterMessage$ScalingConfiguration' => '

The scaling properties of the DB cluster. You can only modify scaling properties for DB clusters in serverless DB engine mode.

Valid for Cluster Type: Aurora DB clusters only

', 'RestoreDBClusterFromSnapshotMessage$ScalingConfiguration' => '

For DB clusters in serverless DB engine mode, the scaling properties of the DB cluster.

Valid for: Aurora DB clusters only

', 'RestoreDBClusterToPointInTimeMessage$ScalingConfiguration' => '

For DB clusters in serverless DB engine mode, the scaling properties of the DB cluster.

Valid for: Aurora DB clusters only

', ], ], 'ScalingConfigurationInfo' => [ 'base' => '

The scaling configuration for an Aurora DB cluster in serverless DB engine mode.

For more information, see Using Amazon Aurora Serverless v1 in the Amazon Aurora User Guide.

', 'refs' => [ 'DBCluster$ScalingConfigurationInfo' => NULL, ], ], 'SensitiveString' => [ 'base' => NULL, 'refs' => [ 'ClusterPendingModifiedValues$MasterUserPassword' => '

The master credentials for the DB cluster.

', 'CopyDBClusterSnapshotMessage$PreSignedUrl' => '

When you are copying a DB cluster snapshot from one Amazon Web Services GovCloud (US) Region to another, the URL that contains a Signature Version 4 signed request for the CopyDBClusterSnapshot API operation in the Amazon Web Services Region that contains the source DB cluster snapshot to copy. Use the PreSignedUrl parameter when copying an encrypted DB cluster snapshot from another Amazon Web Services Region. Don\'t specify PreSignedUrl when copying an encrypted DB cluster snapshot in the same Amazon Web Services Region.

This setting applies only to Amazon Web Services GovCloud (US) Regions. It\'s ignored in other Amazon Web Services Regions.

The presigned URL must be a valid request for the CopyDBClusterSnapshot API operation that can run in the source Amazon Web Services Region that contains the encrypted DB cluster snapshot to copy. The presigned URL request must contain the following parameter values:

  • KmsKeyId - The KMS key identifier for the KMS key to use to encrypt the copy of the DB cluster snapshot in the destination Amazon Web Services Region. This is the same identifier for both the CopyDBClusterSnapshot operation that is called in the destination Amazon Web Services Region, and the operation contained in the presigned URL.

  • DestinationRegion - The name of the Amazon Web Services Region that the DB cluster snapshot is to be created in.

  • SourceDBClusterSnapshotIdentifier - The DB cluster snapshot identifier for the encrypted DB cluster snapshot to be copied. This identifier must be in the Amazon Resource Name (ARN) format for the source Amazon Web Services Region. For example, if you are copying an encrypted DB cluster snapshot from the us-west-2 Amazon Web Services Region, then your SourceDBClusterSnapshotIdentifier looks like the following example: arn:aws:rds:us-west-2:123456789012:cluster-snapshot:aurora-cluster1-snapshot-20161115.

To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4) and Signature Version 4 Signing Process.

If you are using an Amazon Web Services SDK tool or the CLI, you can specify SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl manually. Specifying SourceRegion autogenerates a presigned URL that is a valid request for the operation that can run in the source Amazon Web Services Region.

', 'CopyDBSnapshotMessage$PreSignedUrl' => '

When you are copying a snapshot from one Amazon Web Services GovCloud (US) Region to another, the URL that contains a Signature Version 4 signed request for the CopyDBSnapshot API operation in the source Amazon Web Services Region that contains the source DB snapshot to copy.

This setting applies only to Amazon Web Services GovCloud (US) Regions. It\'s ignored in other Amazon Web Services Regions.

You must specify this parameter when you copy an encrypted DB snapshot from another Amazon Web Services Region by using the Amazon RDS API. Don\'t specify PreSignedUrl when you are copying an encrypted DB snapshot in the same Amazon Web Services Region.

The presigned URL must be a valid request for the CopyDBClusterSnapshot API operation that can run in the source Amazon Web Services Region that contains the encrypted DB cluster snapshot to copy. The presigned URL request must contain the following parameter values:

  • DestinationRegion - The Amazon Web Services Region that the encrypted DB snapshot is copied to. This Amazon Web Services Region is the same one where the CopyDBSnapshot operation is called that contains this presigned URL.

    For example, if you copy an encrypted DB snapshot from the us-west-2 Amazon Web Services Region to the us-east-1 Amazon Web Services Region, then you call the CopyDBSnapshot operation in the us-east-1 Amazon Web Services Region and provide a presigned URL that contains a call to the CopyDBSnapshot operation in the us-west-2 Amazon Web Services Region. For this example, the DestinationRegion in the presigned URL must be set to the us-east-1 Amazon Web Services Region.

  • KmsKeyId - The KMS key identifier for the KMS key to use to encrypt the copy of the DB snapshot in the destination Amazon Web Services Region. This is the same identifier for both the CopyDBSnapshot operation that is called in the destination Amazon Web Services Region, and the operation contained in the presigned URL.

  • SourceDBSnapshotIdentifier - The DB snapshot identifier for the encrypted snapshot to be copied. This identifier must be in the Amazon Resource Name (ARN) format for the source Amazon Web Services Region. For example, if you are copying an encrypted DB snapshot from the us-west-2 Amazon Web Services Region, then your SourceDBSnapshotIdentifier looks like the following example: arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20161115.

To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4) and Signature Version 4 Signing Process.

If you are using an Amazon Web Services SDK tool or the CLI, you can specify SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl manually. Specifying SourceRegion autogenerates a presigned URL that is a valid request for the operation that can run in the source Amazon Web Services Region.

', 'CreateDBClusterMessage$MasterUserPassword' => '

The password for the master database user.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • Must contain from 8 to 41 characters.

  • Can contain any printable ASCII character except "/", """, or "@".

  • Can\'t be specified if ManageMasterUserPassword is turned on.

', 'CreateDBClusterMessage$PreSignedUrl' => '

When you are replicating a DB cluster from one Amazon Web Services GovCloud (US) Region to another, an URL that contains a Signature Version 4 signed request for the CreateDBCluster operation to be called in the source Amazon Web Services Region where the DB cluster is replicated from. Specify PreSignedUrl only when you are performing cross-Region replication from an encrypted DB cluster.

The presigned URL must be a valid request for the CreateDBCluster API operation that can run in the source Amazon Web Services Region that contains the encrypted DB cluster to copy.

The presigned URL request must contain the following parameter values:

  • KmsKeyId - The KMS key identifier for the KMS key to use to encrypt the copy of the DB cluster in the destination Amazon Web Services Region. This should refer to the same KMS key for both the CreateDBCluster operation that is called in the destination Amazon Web Services Region, and the operation contained in the presigned URL.

  • DestinationRegion - The name of the Amazon Web Services Region that Aurora read replica will be created in.

  • ReplicationSourceIdentifier - The DB cluster identifier for the encrypted DB cluster to be copied. This identifier must be in the Amazon Resource Name (ARN) format for the source Amazon Web Services Region. For example, if you are copying an encrypted DB cluster from the us-west-2 Amazon Web Services Region, then your ReplicationSourceIdentifier would look like Example: arn:aws:rds:us-west-2:123456789012:cluster:aurora-cluster1.

To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4) and Signature Version 4 Signing Process.

If you are using an Amazon Web Services SDK tool or the CLI, you can specify SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl manually. Specifying SourceRegion autogenerates a presigned URL that is a valid request for the operation that can run in the source Amazon Web Services Region.

Valid for Cluster Type: Aurora DB clusters only

', 'CreateDBInstanceMessage$MasterUserPassword' => '

The password for the master user.

This setting doesn\'t apply to Amazon Aurora DB instances. The password for the master user is managed by the DB cluster.

Constraints:

  • Can\'t be specified if ManageMasterUserPassword is turned on.

  • Can include any printable ASCII character except "/", """, or "@". For RDS for Oracle, can\'t include the "&" (ampersand) or the "\'" (single quotes) character.

Length Constraints:

  • RDS for Db2 - Must contain from 8 to 255 characters.

  • RDS for MariaDB - Must contain from 8 to 41 characters.

  • RDS for Microsoft SQL Server - Must contain from 8 to 128 characters.

  • RDS for MySQL - Must contain from 8 to 41 characters.

  • RDS for Oracle - Must contain from 8 to 30 characters.

  • RDS for PostgreSQL - Must contain from 8 to 128 characters.

', 'CreateDBInstanceMessage$TdeCredentialPassword' => '

The password for the given ARN from the key store in order to access the device.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceReadReplicaMessage$PreSignedUrl' => '

When you are creating a read replica from one Amazon Web Services GovCloud (US) Region to another or from one China Amazon Web Services Region to another, the URL that contains a Signature Version 4 signed request for the CreateDBInstanceReadReplica API operation in the source Amazon Web Services Region that contains the source DB instance.

This setting applies only to Amazon Web Services GovCloud (US) Regions and China Amazon Web Services Regions. It\'s ignored in other Amazon Web Services Regions.

This setting applies only when replicating from a source DB instance. Source DB clusters aren\'t supported in Amazon Web Services GovCloud (US) Regions and China Amazon Web Services Regions.

You must specify this parameter when you create an encrypted read replica from another Amazon Web Services Region by using the Amazon RDS API. Don\'t specify PreSignedUrl when you are creating an encrypted read replica in the same Amazon Web Services Region.

The presigned URL must be a valid request for the CreateDBInstanceReadReplica API operation that can run in the source Amazon Web Services Region that contains the encrypted source DB instance. The presigned URL request must contain the following parameter values:

  • DestinationRegion - The Amazon Web Services Region that the encrypted read replica is created in. This Amazon Web Services Region is the same one where the CreateDBInstanceReadReplica operation is called that contains this presigned URL.

    For example, if you create an encrypted DB instance in the us-west-1 Amazon Web Services Region, from a source DB instance in the us-east-2 Amazon Web Services Region, then you call the CreateDBInstanceReadReplica operation in the us-east-1 Amazon Web Services Region and provide a presigned URL that contains a call to the CreateDBInstanceReadReplica operation in the us-west-2 Amazon Web Services Region. For this example, the DestinationRegion in the presigned URL must be set to the us-east-1 Amazon Web Services Region.

  • KmsKeyId - The KMS key identifier for the key to use to encrypt the read replica in the destination Amazon Web Services Region. This is the same identifier for both the CreateDBInstanceReadReplica operation that is called in the destination Amazon Web Services Region, and the operation contained in the presigned URL.

  • SourceDBInstanceIdentifier - The DB instance identifier for the encrypted DB instance to be replicated. This identifier must be in the Amazon Resource Name (ARN) format for the source Amazon Web Services Region. For example, if you are creating an encrypted read replica from a DB instance in the us-west-2 Amazon Web Services Region, then your SourceDBInstanceIdentifier looks like the following example: arn:aws:rds:us-west-2:123456789012:instance:mysql-instance1-20161115.

To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4) and Signature Version 4 Signing Process.

If you are using an Amazon Web Services SDK tool or the CLI, you can specify SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl manually. Specifying SourceRegion autogenerates a presigned URL that is a valid request for the operation that can run in the source Amazon Web Services Region.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateTenantDatabaseMessage$MasterUserPassword' => '

The password for the master user in your tenant database.

Constraints:

  • Must be 8 to 30 characters.

  • Can include any printable ASCII character except forward slash (/), double quote ("), at symbol (@), ampersand (&), or single quote (\').

  • Can\'t be specified when ManageMasterUserPassword is enabled.

', 'DownloadDBLogFilePortionDetails$LogFileData' => '

Entries from the specified log file.

', 'ModifyDBClusterMessage$MasterUserPassword' => '

The new password for the master database user.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • Must contain from 8 to 41 characters.

  • Can contain any printable ASCII character except "/", """, or "@".

  • Can\'t be specified if ManageMasterUserPassword is turned on.

', 'ModifyDBInstanceMessage$MasterUserPassword' => '

The new password for the master user.

Changing this parameter doesn\'t result in an outage and the change is asynchronously applied as soon as possible. Between the time of the request and the completion of the request, the MasterUserPassword element exists in the PendingModifiedValues element of the operation response.

Amazon RDS API operations never return the password, so this operation provides a way to regain access to a primary instance user if the password is lost. This includes restoring privileges that might have been accidentally revoked.

This setting doesn\'t apply to the following DB instances:

  • Amazon Aurora

    The password for the master user is managed by the DB cluster. For more information, see ModifyDBCluster.

  • RDS Custom

  • RDS for Oracle CDBs in the multi-tenant configuration

    Specify the master password in ModifyTenantDatabase instead.

Default: Uses existing setting

Constraints:

  • Can\'t be specified if ManageMasterUserPassword is turned on.

  • Can include any printable ASCII character except "/", """, or "@". For RDS for Oracle, can\'t include the "&" (ampersand) or the "\'" (single quotes) character.

Length Constraints:

  • RDS for Db2 - Must contain from 8 to 255 characters.

  • RDS for MariaDB - Must contain from 8 to 41 characters.

  • RDS for Microsoft SQL Server - Must contain from 8 to 128 characters.

  • RDS for MySQL - Must contain from 8 to 41 characters.

  • RDS for Oracle - Must contain from 8 to 30 characters.

  • RDS for PostgreSQL - Must contain from 8 to 128 characters.

', 'ModifyDBInstanceMessage$TdeCredentialPassword' => '

The password for the given ARN from the key store in order to access the device.

This setting doesn\'t apply to RDS Custom DB instances.

', 'ModifyTenantDatabaseMessage$MasterUserPassword' => '

The new password for the master user of the specified tenant database in your DB instance.

Amazon RDS operations never return the password, so this action provides a way to regain access to a tenant database user if the password is lost. This includes restoring privileges that might have been accidentally revoked.

Constraints:

  • Can include any printable ASCII character except /, " (double quote), @, & (ampersand), and \' (single quote).

Length constraints:

  • Must contain between 8 and 30 characters.

', 'PendingModifiedValues$MasterUserPassword' => '

The master credentials for the DB instance.

', 'RestoreDBClusterFromS3Message$MasterUserPassword' => '

The password for the master database user. This password can contain any printable ASCII character except "/", """, or "@".

Constraints:

  • Must contain from 8 to 41 characters.

  • Can\'t be specified if ManageMasterUserPassword is turned on.

', 'RestoreDBInstanceFromDBSnapshotMessage$TdeCredentialPassword' => '

The password for the given ARN from the key store in order to access the device.

This setting doesn\'t apply to RDS Custom.

', 'RestoreDBInstanceFromS3Message$MasterUserPassword' => '

The password for the master user.

Constraints:

  • Can\'t be specified if ManageMasterUserPassword is turned on.

  • Can include any printable ASCII character except "/", """, or "@". For RDS for Oracle, can\'t include the "&" (ampersand) or the "\'" (single quotes) character.

Length Constraints:

  • RDS for Db2 - Must contain from 8 to 128 characters.

  • RDS for MariaDB - Must contain from 8 to 41 characters.

  • RDS for Microsoft SQL Server - Must contain from 8 to 128 characters.

  • RDS for MySQL - Must contain from 8 to 41 characters.

  • RDS for Oracle - Must contain from 8 to 30 characters.

  • RDS for PostgreSQL - Must contain from 8 to 128 characters.

', 'RestoreDBInstanceToPointInTimeMessage$TdeCredentialPassword' => '

The password for the given ARN from the key store in order to access the device.

This setting doesn\'t apply to RDS Custom.

', 'StartDBInstanceAutomatedBackupsReplicationMessage$PreSignedUrl' => '

In an Amazon Web Services GovCloud (US) Region, an URL that contains a Signature Version 4 signed request for the StartDBInstanceAutomatedBackupsReplication operation to call in the Amazon Web Services Region of the source DB instance. The presigned URL must be a valid request for the StartDBInstanceAutomatedBackupsReplication API operation that can run in the Amazon Web Services Region that contains the source DB instance.

This setting applies only to Amazon Web Services GovCloud (US) Regions. It\'s ignored in other Amazon Web Services Regions.

To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4) and Signature Version 4 Signing Process.

If you are using an Amazon Web Services SDK tool or the CLI, you can specify SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl manually. Specifying SourceRegion autogenerates a presigned URL that is a valid request for the operation that can run in the source Amazon Web Services Region.

', 'TenantDatabasePendingModifiedValues$MasterUserPassword' => '

The master password for the tenant database.

', ], ], 'ServerlessV2FeaturesSupport' => [ 'base' => '

Specifies any Aurora Serverless v2 properties or limits that differ between Aurora engine versions. You can test the values of this attribute when deciding which Aurora version to use in a new or upgraded DB cluster. You can also retrieve the version of an existing DB cluster and check whether that version supports certain Aurora Serverless v2 features before you attempt to use those features.

', 'refs' => [ 'DBEngineVersion$ServerlessV2FeaturesSupport' => '

Specifies any Aurora Serverless v2 properties or limits that differ between Aurora engine versions. You can test the values of this attribute when deciding which Aurora version to use in a new or upgraded DB cluster. You can also retrieve the version of an existing DB cluster and check whether that version supports certain Aurora Serverless v2 features before you attempt to use those features.

', ], ], 'ServerlessV2ScalingConfiguration' => [ 'base' => '

Contains the scaling configuration of an Aurora Serverless v2 DB cluster.

For more information, see Using Amazon Aurora Serverless v2 in the Amazon Aurora User Guide.

', 'refs' => [ 'CreateDBClusterMessage$ServerlessV2ScalingConfiguration' => NULL, 'ModifyDBClusterMessage$ServerlessV2ScalingConfiguration' => NULL, 'RestoreDBClusterFromS3Message$ServerlessV2ScalingConfiguration' => NULL, 'RestoreDBClusterFromSnapshotMessage$ServerlessV2ScalingConfiguration' => NULL, 'RestoreDBClusterToPointInTimeMessage$ServerlessV2ScalingConfiguration' => NULL, ], ], 'ServerlessV2ScalingConfigurationInfo' => [ 'base' => '

The scaling configuration for an Aurora Serverless v2 DB cluster.

For more information, see Using Amazon Aurora Serverless v2 in the Amazon Aurora User Guide.

', 'refs' => [ 'DBCluster$ServerlessV2ScalingConfiguration' => NULL, ], ], 'SharedSnapshotQuotaExceededFault' => [ 'base' => '

You have exceeded the maximum number of accounts that you can share a manual DB snapshot with.

', 'refs' => [], ], 'SnapshotQuotaExceededFault' => [ 'base' => '

The request would result in the user exceeding the allowed number of DB snapshots.

', 'refs' => [], ], 'SourceArn' => [ 'base' => NULL, 'refs' => [ 'CreateIntegrationMessage$SourceArn' => '

The Amazon Resource Name (ARN) of the database to use as the source for replication.

', 'Integration$SourceArn' => '

The Amazon Resource Name (ARN) of the database used as the source for replication.

', ], ], 'SourceClusterNotSupportedFault' => [ 'base' => '

The source DB cluster isn\'t supported for a blue/green deployment.

', 'refs' => [], ], 'SourceDatabaseNotSupportedFault' => [ 'base' => '

The source DB instance isn\'t supported for a blue/green deployment.

', 'refs' => [], ], 'SourceIdsList' => [ 'base' => NULL, 'refs' => [ 'CreateEventSubscriptionMessage$SourceIds' => '

The list of identifiers of the event sources for which events are returned. If not specified, then all sources are included in the response. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens. It can\'t end with a hyphen or contain two consecutive hyphens.

Constraints:

  • If SourceIds are supplied, SourceType must also be provided.

  • If the source type is a DB instance, a DBInstanceIdentifier value must be supplied.

  • If the source type is a DB cluster, a DBClusterIdentifier value must be supplied.

  • If the source type is a DB parameter group, a DBParameterGroupName value must be supplied.

  • If the source type is a DB security group, a DBSecurityGroupName value must be supplied.

  • If the source type is a DB snapshot, a DBSnapshotIdentifier value must be supplied.

  • If the source type is a DB cluster snapshot, a DBClusterSnapshotIdentifier value must be supplied.

  • If the source type is an RDS Proxy, a DBProxyName value must be supplied.

', 'EventSubscription$SourceIdsList' => '

A list of source IDs for the RDS event notification subscription.

', ], ], 'SourceNotFoundFault' => [ 'base' => '

The requested source could not be found.

', 'refs' => [], ], 'SourceRegion' => [ 'base' => '

Contains an Amazon Web Services Region name as the result of a successful call to the DescribeSourceRegions action.

', 'refs' => [ 'SourceRegionList$member' => NULL, ], ], 'SourceRegionList' => [ 'base' => NULL, 'refs' => [ 'SourceRegionMessage$SourceRegions' => '

A list of SourceRegion instances that contains each source Amazon Web Services Region that the current Amazon Web Services Region can get a read replica or a DB snapshot from.

', ], ], 'SourceRegionMessage' => [ 'base' => '

Contains the result of a successful invocation of the DescribeSourceRegions action.

', 'refs' => [], ], 'SourceType' => [ 'base' => NULL, 'refs' => [ 'DescribeEventsMessage$SourceType' => '

The event source to retrieve events for. If no value is specified, all events are returned.

', 'Event$SourceType' => '

Specifies the source type for this event.

', ], ], 'StartActivityStreamRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartActivityStreamResponse' => [ 'base' => NULL, 'refs' => [], ], 'StartDBClusterMessage' => [ 'base' => NULL, 'refs' => [], ], 'StartDBClusterResult' => [ 'base' => NULL, 'refs' => [], ], 'StartDBInstanceAutomatedBackupsReplicationMessage' => [ 'base' => NULL, 'refs' => [], ], 'StartDBInstanceAutomatedBackupsReplicationResult' => [ 'base' => NULL, 'refs' => [], ], 'StartDBInstanceMessage' => [ 'base' => NULL, 'refs' => [], ], 'StartDBInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'StartExportTaskMessage' => [ 'base' => NULL, 'refs' => [], ], 'StopActivityStreamRequest' => [ 'base' => NULL, 'refs' => [], ], 'StopActivityStreamResponse' => [ 'base' => NULL, 'refs' => [], ], 'StopDBClusterMessage' => [ 'base' => NULL, 'refs' => [], ], 'StopDBClusterResult' => [ 'base' => NULL, 'refs' => [], ], 'StopDBInstanceAutomatedBackupsReplicationMessage' => [ 'base' => NULL, 'refs' => [], ], 'StopDBInstanceAutomatedBackupsReplicationResult' => [ 'base' => NULL, 'refs' => [], ], 'StopDBInstanceMessage' => [ 'base' => NULL, 'refs' => [], ], 'StopDBInstanceResult' => [ 'base' => NULL, 'refs' => [], ], 'StorageQuotaExceededFault' => [ 'base' => '

The request would result in the user exceeding the allowed amount of storage available across all DB instances.

', 'refs' => [], ], 'StorageTypeNotAvailableFault' => [ 'base' => '

The aurora-iopt1 storage type isn\'t available, because you modified the DB cluster to use this storage type less than one month ago.

', 'refs' => [], ], 'StorageTypeNotSupportedFault' => [ 'base' => '

The specified StorageType can\'t be associated with the DB instance.

', 'refs' => [], ], 'String' => [ 'base' => NULL, 'refs' => [ 'AccountQuota$AccountQuotaName' => '

The name of the Amazon RDS quota for this Amazon Web Services account.

', 'ActivityStreamModeList$member' => NULL, 'AddRoleToDBClusterMessage$DBClusterIdentifier' => '

The name of the DB cluster to associate the IAM role with.

', 'AddRoleToDBClusterMessage$RoleArn' => '

The Amazon Resource Name (ARN) of the IAM role to associate with the Aurora DB cluster, for example arn:aws:iam::123456789012:role/AuroraAccessRole.

', 'AddRoleToDBClusterMessage$FeatureName' => '

The name of the feature for the DB cluster that the IAM role is to be associated with. For information about supported feature names, see DBEngineVersion.

', 'AddRoleToDBInstanceMessage$DBInstanceIdentifier' => '

The name of the DB instance to associate the IAM role with.

', 'AddRoleToDBInstanceMessage$RoleArn' => '

The Amazon Resource Name (ARN) of the IAM role to associate with the DB instance, for example arn:aws:iam::123456789012:role/AccessRole.

', 'AddRoleToDBInstanceMessage$FeatureName' => '

The name of the feature for the DB instance that the IAM role is to be associated with. For information about supported feature names, see DBEngineVersion.

', 'AddSourceIdentifierToSubscriptionMessage$SubscriptionName' => '

The name of the RDS event notification subscription you want to add a source identifier to.

', 'AddSourceIdentifierToSubscriptionMessage$SourceIdentifier' => '

The identifier of the event source to be added.

Constraints:

  • If the source type is a DB instance, a DBInstanceIdentifier value must be supplied.

  • If the source type is a DB cluster, a DBClusterIdentifier value must be supplied.

  • If the source type is a DB parameter group, a DBParameterGroupName value must be supplied.

  • If the source type is a DB security group, a DBSecurityGroupName value must be supplied.

  • If the source type is a DB snapshot, a DBSnapshotIdentifier value must be supplied.

  • If the source type is a DB cluster snapshot, a DBClusterSnapshotIdentifier value must be supplied.

  • If the source type is an RDS Proxy, a DBProxyName value must be supplied.

', 'AddTagsToResourceMessage$ResourceName' => '

The Amazon RDS resource that the tags are added to. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN).

', 'ApplyPendingMaintenanceActionMessage$ResourceIdentifier' => '

The RDS Amazon Resource Name (ARN) of the resource that the pending maintenance action applies to. For information about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN).

', 'ApplyPendingMaintenanceActionMessage$ApplyAction' => '

The pending maintenance action to apply to this resource.

Valid Values:

  • ca-certificate-rotation

  • db-upgrade

  • hardware-maintenance

  • os-upgrade

  • system-update

For more information about these actions, see Maintenance actions for Amazon Aurora or Maintenance actions for Amazon RDS.

', 'ApplyPendingMaintenanceActionMessage$OptInType' => '

A value that specifies the type of opt-in request, or undoes an opt-in request. An opt-in request of type immediate can\'t be undone.

Valid Values:

  • immediate - Apply the maintenance action immediately.

  • next-maintenance - Apply the maintenance action during the next maintenance window for the resource.

  • undo-opt-in - Cancel any existing next-maintenance opt-in requests.

', 'AttributeValueList$member' => NULL, 'AuthorizeDBSecurityGroupIngressMessage$DBSecurityGroupName' => '

The name of the DB security group to add authorization to.

', 'AuthorizeDBSecurityGroupIngressMessage$CIDRIP' => '

The IP range to authorize.

', 'AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupName' => '

Name of the EC2 security group to authorize. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

', 'AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupId' => '

Id of the EC2 security group to authorize. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

', 'AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupOwnerId' => '

Amazon Web Services account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter. The Amazon Web Services access key ID isn\'t an acceptable value. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

', 'AvailabilityZone$Name' => '

The name of the Availability Zone.

', 'AvailabilityZones$member' => NULL, 'AvailableProcessorFeature$Name' => '

The name of the processor feature. Valid names are coreCount and threadsPerCore.

', 'AvailableProcessorFeature$DefaultValue' => '

The default value for the processor feature of the DB instance class.

', 'AvailableProcessorFeature$AllowedValues' => '

The allowed values for the processor feature of the DB instance class.

', 'BacktrackDBClusterMessage$DBClusterIdentifier' => '

The DB cluster identifier of the DB cluster to be backtracked. This parameter is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 alphanumeric characters or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

Example: my-cluster1

', 'CACertificateIdentifiersList$member' => NULL, 'CancelExportTaskMessage$ExportTaskIdentifier' => '

The identifier of the snapshot or cluster export task to cancel.

', 'Certificate$CertificateIdentifier' => '

The unique key that identifies a certificate.

', 'Certificate$CertificateType' => '

The type of the certificate.

', 'Certificate$Thumbprint' => '

The thumbprint of the certificate.

', 'Certificate$CertificateArn' => '

The Amazon Resource Name (ARN) for the certificate.

', 'CertificateDetails$CAIdentifier' => '

The CA identifier of the CA certificate used for the DB instance\'s server certificate.

', 'CertificateMessage$Marker' => '

An optional pagination token provided by a previous DescribeCertificates request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords .

', 'CharacterSet$CharacterSetName' => '

The name of the character set.

', 'CharacterSet$CharacterSetDescription' => '

The description of the character set.

', 'ClusterPendingModifiedValues$DBClusterIdentifier' => '

The DBClusterIdentifier value for the DB cluster.

', 'ClusterPendingModifiedValues$EngineVersion' => '

The database engine version.

', 'ClusterPendingModifiedValues$StorageType' => '

The storage type for the DB cluster.

', 'ConnectionPoolConfiguration$InitQuery' => '

Add an initialization query, or modify the current one. You can specify one or more SQL statements for the proxy to run when opening each new database connection. The setting is typically used with SET statements to make sure that each connection has identical settings. Make sure the query added here is valid. This is an optional field, so you can choose to leave it empty. For including multiple variables in a single SET statement, use a comma separator.

For example: SET variable1=value1, variable2=value2

Default: no initialization query

Since you can access initialization query as part of target group configuration, it is not protected by authentication or cryptographic methods. Anyone with access to view or manage your proxy target group configuration can view the initialization query. You should not add sensitive data, such as passwords or long-lived encryption keys, to this option.

', 'ConnectionPoolConfigurationInfo$InitQuery' => '

One or more SQL statements for the proxy to run when opening each new database connection. The setting is typically used with SET statements to make sure that each connection has identical settings. The query added here must be valid. For including multiple variables in a single SET statement, use a comma separator. This is an optional field.

For example: SET variable1=value1, variable2=value2

Since you can access initialization query as part of target group configuration, it is not protected by authentication or cryptographic methods. Anyone with access to view or manage your proxy target group configuration can view the initialization query. You should not add sensitive data, such as passwords or long-lived encryption keys, to this option.

', 'ContextAttribute$Key' => '

The key of ContextAttribute.

', 'ContextAttribute$Value' => '

The value of ContextAttribute.

', 'CopyDBClusterParameterGroupMessage$SourceDBClusterParameterGroupIdentifier' => '

The identifier or Amazon Resource Name (ARN) for the source DB cluster parameter group. For information about creating an ARN, see Constructing an ARN for Amazon RDS in the Amazon Aurora User Guide.

Constraints:

  • Must specify a valid DB cluster parameter group.

', 'CopyDBClusterParameterGroupMessage$TargetDBClusterParameterGroupIdentifier' => '

The identifier for the copied DB cluster parameter group.

Constraints:

  • Can\'t be null, empty, or blank

  • Must contain from 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Can\'t end with a hyphen or contain two consecutive hyphens

Example: my-cluster-param-group1

', 'CopyDBClusterParameterGroupMessage$TargetDBClusterParameterGroupDescription' => '

A description for the copied DB cluster parameter group.

', 'CopyDBClusterSnapshotMessage$SourceDBClusterSnapshotIdentifier' => '

The identifier of the DB cluster snapshot to copy. This parameter isn\'t case-sensitive.

You can\'t copy an encrypted, shared DB cluster snapshot from one Amazon Web Services Region to another.

Constraints:

  • Must specify a valid system snapshot in the "available" state.

  • If the source snapshot is in the same Amazon Web Services Region as the copy, specify a valid DB snapshot identifier.

  • If the source snapshot is in a different Amazon Web Services Region than the copy, specify a valid DB cluster snapshot ARN. For more information, go to Copying Snapshots Across Amazon Web Services Regions in the Amazon Aurora User Guide.

Example: my-cluster-snapshot1

', 'CopyDBClusterSnapshotMessage$TargetDBClusterSnapshotIdentifier' => '

The identifier of the new DB cluster snapshot to create from the source DB cluster snapshot. This parameter isn\'t case-sensitive.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

Example: my-cluster-snapshot2

', 'CopyDBClusterSnapshotMessage$KmsKeyId' => '

The Amazon Web Services KMS key identifier for an encrypted DB cluster snapshot. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the Amazon Web Services KMS key.

If you copy an encrypted DB cluster snapshot from your Amazon Web Services account, you can specify a value for KmsKeyId to encrypt the copy with a new KMS key. If you don\'t specify a value for KmsKeyId, then the copy of the DB cluster snapshot is encrypted with the same KMS key as the source DB cluster snapshot.

If you copy an encrypted DB cluster snapshot that is shared from another Amazon Web Services account, then you must specify a value for KmsKeyId.

To copy an encrypted DB cluster snapshot to another Amazon Web Services Region, you must set KmsKeyId to the Amazon Web Services KMS key identifier you want to use to encrypt the copy of the DB cluster snapshot in the destination Amazon Web Services Region. KMS keys are specific to the Amazon Web Services Region that they are created in, and you can\'t use KMS keys from one Amazon Web Services Region in another Amazon Web Services Region.

If you copy an unencrypted DB cluster snapshot and specify a value for the KmsKeyId parameter, an error is returned.

', 'CopyDBParameterGroupMessage$SourceDBParameterGroupIdentifier' => '

The identifier or ARN for the source DB parameter group. For information about creating an ARN, see Constructing an ARN for Amazon RDS in the Amazon RDS User Guide.

Constraints:

  • Must specify a valid DB parameter group.

', 'CopyDBParameterGroupMessage$TargetDBParameterGroupIdentifier' => '

The identifier for the copied DB parameter group.

Constraints:

  • Can\'t be null, empty, or blank

  • Must contain from 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Can\'t end with a hyphen or contain two consecutive hyphens

Example: my-db-parameter-group

', 'CopyDBParameterGroupMessage$TargetDBParameterGroupDescription' => '

A description for the copied DB parameter group.

', 'CopyDBSnapshotMessage$SourceDBSnapshotIdentifier' => '

The identifier for the source DB snapshot.

If the source snapshot is in the same Amazon Web Services Region as the copy, specify a valid DB snapshot identifier. For example, you might specify rds:mysql-instance1-snapshot-20130805.

If the source snapshot is in a different Amazon Web Services Region than the copy, specify a valid DB snapshot ARN. For example, you might specify arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805.

If you are copying from a shared manual DB snapshot, this parameter must be the Amazon Resource Name (ARN) of the shared DB snapshot.

If you are copying an encrypted snapshot this parameter must be in the ARN format for the source Amazon Web Services Region.

Constraints:

  • Must specify a valid system snapshot in the "available" state.

Example: rds:mydb-2012-04-02-00-01

Example: arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805

', 'CopyDBSnapshotMessage$TargetDBSnapshotIdentifier' => '

The identifier for the copy of the snapshot.

Constraints:

  • Can\'t be null, empty, or blank

  • Must contain from 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Can\'t end with a hyphen or contain two consecutive hyphens

Example: my-db-snapshot

', 'CopyDBSnapshotMessage$KmsKeyId' => '

The Amazon Web Services KMS key identifier for an encrypted DB snapshot. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you copy an encrypted DB snapshot from your Amazon Web Services account, you can specify a value for this parameter to encrypt the copy with a new KMS key. If you don\'t specify a value for this parameter, then the copy of the DB snapshot is encrypted with the same Amazon Web Services KMS key as the source DB snapshot.

If you copy an encrypted DB snapshot that is shared from another Amazon Web Services account, then you must specify a value for this parameter.

If you specify this parameter when you copy an unencrypted snapshot, the copy is encrypted.

If you copy an encrypted snapshot to a different Amazon Web Services Region, then you must specify an Amazon Web Services KMS key identifier for the destination Amazon Web Services Region. KMS keys are specific to the Amazon Web Services Region that they are created in, and you can\'t use KMS keys from one Amazon Web Services Region in another Amazon Web Services Region.

', 'CopyDBSnapshotMessage$OptionGroupName' => '

The name of an option group to associate with the copy of the snapshot.

Specify this option if you are copying a snapshot from one Amazon Web Services Region to another, and your DB instance uses a nondefault option group. If your source DB instance uses Transparent Data Encryption for Oracle or Microsoft SQL Server, you must specify this option when copying across Amazon Web Services Regions. For more information, see Option group considerations in the Amazon RDS User Guide.

', 'CopyDBSnapshotMessage$TargetCustomAvailabilityZone' => '

The external custom Availability Zone (CAZ) identifier for the target CAZ.

Example: rds-caz-aiqhTgQv.

', 'CopyOptionGroupMessage$SourceOptionGroupIdentifier' => '

The identifier for the source option group.

Constraints:

  • Must specify a valid option group.

', 'CopyOptionGroupMessage$TargetOptionGroupIdentifier' => '

The identifier for the copied option group.

Constraints:

  • Can\'t be null, empty, or blank

  • Must contain from 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Can\'t end with a hyphen or contain two consecutive hyphens

Example: my-option-group

', 'CopyOptionGroupMessage$TargetOptionGroupDescription' => '

The description for the copied option group.

', 'CreateDBClusterEndpointMessage$DBClusterIdentifier' => '

The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

', 'CreateDBClusterEndpointMessage$DBClusterEndpointIdentifier' => '

The identifier to use for the new endpoint. This parameter is stored as a lowercase string.

', 'CreateDBClusterEndpointMessage$EndpointType' => '

The type of the endpoint, one of: READER, WRITER, ANY.

', 'CreateDBClusterMessage$CharacterSetName' => '

The name of the character set (CharacterSet) to associate the DB cluster with.

Valid for Cluster Type: Aurora DB clusters only

', 'CreateDBClusterMessage$DatabaseName' => '

The name for your database of up to 64 alphanumeric characters. A database named postgres is always created. If this parameter is specified, an additional database with this name is created.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'CreateDBClusterMessage$DBClusterIdentifier' => '

The identifier for this DB cluster. This parameter is stored as a lowercase string.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • Must contain from 1 to 63 (for Aurora DB clusters) or 1 to 52 (for Multi-AZ DB clusters) letters, numbers, or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

Example: my-cluster1

', 'CreateDBClusterMessage$DBClusterParameterGroupName' => '

The name of the DB cluster parameter group to associate with this DB cluster. If you don\'t specify a value, then the default DB cluster parameter group for the specified DB engine and version is used.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • If supplied, must match the name of an existing DB cluster parameter group.

', 'CreateDBClusterMessage$DBSubnetGroupName' => '

A DB subnet group to associate with this DB cluster.

This setting is required to create a Multi-AZ DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • Must match the name of an existing DB subnet group.

Example: mydbsubnetgroup

', 'CreateDBClusterMessage$Engine' => '

The database engine to use for this DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values:

  • aurora-mysql

  • aurora-postgresql

  • mysql

  • postgres

  • neptune - For information about using Amazon Neptune, see the Amazon Neptune User Guide .

', 'CreateDBClusterMessage$EngineVersion' => '

The version number of the database engine to use.

To list all of the available engine versions for Aurora MySQL version 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use the following command:

aws rds describe-db-engine-versions --engine aurora-mysql --query "DBEngineVersions[].EngineVersion"

You can supply either 5.7 or 8.0 to use the default engine version for Aurora MySQL version 2 or version 3, respectively.

To list all of the available engine versions for Aurora PostgreSQL, use the following command:

aws rds describe-db-engine-versions --engine aurora-postgresql --query "DBEngineVersions[].EngineVersion"

To list all of the available engine versions for RDS for MySQL, use the following command:

aws rds describe-db-engine-versions --engine mysql --query "DBEngineVersions[].EngineVersion"

To list all of the available engine versions for RDS for PostgreSQL, use the following command:

aws rds describe-db-engine-versions --engine postgres --query "DBEngineVersions[].EngineVersion"

For information about a specific engine, see the following topics:

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'CreateDBClusterMessage$MasterUsername' => '

The name of the master user for the DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • Must be 1 to 16 letters or numbers.

  • First character must be a letter.

  • Can\'t be a reserved word for the chosen database engine.

', 'CreateDBClusterMessage$OptionGroupName' => '

The option group to associate the DB cluster with.

DB clusters are associated with a default option group that can\'t be modified.

', 'CreateDBClusterMessage$PreferredBackupWindow' => '

The daily time range during which automated backups are created if automated backups are enabled using the BackupRetentionPeriod parameter.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

The default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region. To view the time blocks available, see Backup window in the Amazon Aurora User Guide.

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.

', 'CreateDBClusterMessage$PreferredMaintenanceWindow' => '

The weekly time range during which system maintenance can occur.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

The default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region, occurring on a random day of the week. To see the time blocks available, see Adjusting the Preferred DB Cluster Maintenance Window in the Amazon Aurora User Guide.

Constraints:

  • Must be in the format ddd:hh24:mi-ddd:hh24:mi.

  • Days must be one of Mon | Tue | Wed | Thu | Fri | Sat | Sun.

  • Must be in Universal Coordinated Time (UTC).

  • Must be at least 30 minutes.

', 'CreateDBClusterMessage$ReplicationSourceIdentifier' => '

The Amazon Resource Name (ARN) of the source DB instance or DB cluster if this DB cluster is created as a read replica.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'CreateDBClusterMessage$KmsKeyId' => '

The Amazon Web Services KMS key identifier for an encrypted DB cluster.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

When a KMS key isn\'t specified in KmsKeyId:

  • If ReplicationSourceIdentifier identifies an encrypted source, then Amazon RDS uses the KMS key used to encrypt the source. Otherwise, Amazon RDS uses your default KMS key.

  • If the StorageEncrypted parameter is enabled and ReplicationSourceIdentifier isn\'t specified, then Amazon RDS uses your default KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

If you create a read replica of an encrypted DB cluster in another Amazon Web Services Region, make sure to set KmsKeyId to a KMS key identifier that is valid in the destination Amazon Web Services Region. This KMS key is used to encrypt the read replica in that Amazon Web Services Region.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'CreateDBClusterMessage$EngineMode' => '

The DB engine mode of the DB cluster, either provisioned or serverless.

The serverless engine mode only applies for Aurora Serverless v1 DB clusters. Aurora Serverless v2 DB clusters use the provisioned engine mode.

For information about limitations and requirements for Serverless DB clusters, see the following sections in the Amazon Aurora User Guide:

Valid for Cluster Type: Aurora DB clusters only

', 'CreateDBClusterMessage$DBClusterInstanceClass' => '

The compute and memory capacity of each DB instance in the Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines.

For the full list of DB instance classes and availability for your engine, see DB instance class in the Amazon RDS User Guide.

This setting is required to create a Multi-AZ DB cluster.

Valid for Cluster Type: Multi-AZ DB clusters only

', 'CreateDBClusterMessage$StorageType' => '

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 | io2 | gp3

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.

', 'CreateDBClusterMessage$Domain' => '

The Active Directory directory ID to create the DB cluster in.

For Amazon Aurora DB clusters, Amazon RDS can use Kerberos authentication to authenticate users that connect to the DB cluster.

For more information, see Kerberos authentication in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters only

', 'CreateDBClusterMessage$DomainIAMRoleName' => '

The name of the IAM role to use when making API calls to the Directory Service.

Valid for Cluster Type: Aurora DB clusters only

', 'CreateDBClusterMessage$MonitoringRoleArn' => '

The Amazon Resource Name (ARN) for the IAM role that permits RDS to send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example is arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, see Setting up and enabling Enhanced Monitoring in the Amazon RDS User Guide.

If MonitoringInterval is set to a value other than 0, supply a MonitoringRoleArn value.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'CreateDBClusterMessage$PerformanceInsightsKMSKeyId' => '

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you don\'t specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'CreateDBClusterMessage$DBSystemId' => '

Reserved for future use.

', 'CreateDBClusterMessage$MasterUserSecretKmsKeyId' => '

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB cluster.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If you don\'t specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can\'t use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'CreateDBClusterMessage$CACertificateIdentifier' => '

The CA certificate identifier to use for the DB cluster\'s server certificate.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide.

Valid for Cluster Type: Multi-AZ DB clusters

', 'CreateDBClusterMessage$EngineLifecycleSupport' => '

The life cycle type for this DB cluster.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, creating the DB cluster will fail if the DB major version is past its end of standard support date.

You can use this setting to enroll your DB cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections:

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

', 'CreateDBClusterParameterGroupMessage$DBClusterParameterGroupName' => '

The name of the DB cluster parameter group.

Constraints:

  • Must not match the name of an existing DB cluster parameter group.

This value is stored as a lowercase string.

', 'CreateDBClusterParameterGroupMessage$DBParameterGroupFamily' => '

The DB cluster parameter group family name. A DB cluster parameter group can be associated with one and only one DB cluster parameter group family, and can be applied only to a DB cluster running a database engine and engine version compatible with that DB cluster parameter group family.

Aurora MySQL

Example: aurora-mysql5.7, aurora-mysql8.0

Aurora PostgreSQL

Example: aurora-postgresql14

RDS for MySQL

Example: mysql8.0

RDS for PostgreSQL

Example: postgres13

To list all of the available parameter group families for a DB engine, use the following command:

aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>

For example, to list all of the available parameter group families for the Aurora PostgreSQL DB engine, use the following command:

aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine aurora-postgresql

The output contains duplicates.

The following are the valid DB engine values:

  • aurora-mysql

  • aurora-postgresql

  • mysql

  • postgres

', 'CreateDBClusterParameterGroupMessage$Description' => '

The description for the DB cluster parameter group.

', 'CreateDBClusterSnapshotMessage$DBClusterSnapshotIdentifier' => '

The identifier of the DB cluster snapshot. This parameter is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

Example: my-cluster1-snapshot1

', 'CreateDBClusterSnapshotMessage$DBClusterIdentifier' => '

The identifier of the DB cluster to create a snapshot for. This parameter isn\'t case-sensitive.

Constraints:

  • Must match the identifier of an existing DBCluster.

Example: my-cluster1

', 'CreateDBInstanceMessage$DBName' => '

The meaning of this parameter differs according to the database engine you use.

Amazon Aurora MySQL

The name of the database to create when the primary DB instance of the Aurora MySQL DB cluster is created. If this parameter isn\'t specified for an Aurora MySQL DB cluster, no database is created in the DB cluster.

Constraints:

  • Must contain 1 to 64 alphanumeric characters.

  • Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).

  • Can\'t be a word reserved by the database engine.

Amazon Aurora PostgreSQL

The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is created. A database named postgres is always created. If this parameter is specified, an additional database with this name is created.

Constraints:

  • It must contain 1 to 63 alphanumeric characters.

  • Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0 to 9).

  • Can\'t be a word reserved by the database engine.

Amazon RDS Custom for Oracle

The Oracle System ID (SID) of the created RDS Custom DB instance. If you don\'t specify a value, the default value is ORCL for non-CDBs and RDSCDB for CDBs.

Default: ORCL

Constraints:

  • Must contain 1 to 8 alphanumeric characters.

  • Must contain a letter.

  • Can\'t be a word reserved by the database engine.

Amazon RDS Custom for SQL Server

Not applicable. Must be null.

RDS for Db2

The name of the database to create when the DB instance is created. If this parameter isn\'t specified, no database is created in the DB instance. In some cases, we recommend that you don\'t add a database name. For more information, see Additional considerations in the Amazon RDS User Guide.

Constraints:

  • Must contain 1 to 64 letters or numbers.

  • Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).

  • Can\'t be a word reserved by the specified database engine.

RDS for MariaDB

The name of the database to create when the DB instance is created. If this parameter isn\'t specified, no database is created in the DB instance.

Constraints:

  • Must contain 1 to 64 letters or numbers.

  • Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).

  • Can\'t be a word reserved by the specified database engine.

RDS for MySQL

The name of the database to create when the DB instance is created. If this parameter isn\'t specified, no database is created in the DB instance.

Constraints:

  • Must contain 1 to 64 letters or numbers.

  • Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).

  • Can\'t be a word reserved by the specified database engine.

RDS for Oracle

The Oracle System ID (SID) of the created DB instance. If you don\'t specify a value, the default value is ORCL. You can\'t specify the string null, or any other reserved word, for DBName.

Default: ORCL

Constraints:

  • Can\'t be longer than 8 characters.

RDS for PostgreSQL

The name of the database to create when the DB instance is created. A database named postgres is always created. If this parameter is specified, an additional database with this name is created.

Constraints:

  • Must contain 1 to 63 letters, numbers, or underscores.

  • Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).

  • Can\'t be a word reserved by the specified database engine.

RDS for SQL Server

Not applicable. Must be null.

', 'CreateDBInstanceMessage$DBInstanceIdentifier' => '

The identifier for this DB instance. This parameter is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

Example: mydbinstance

', 'CreateDBInstanceMessage$DBInstanceClass' => '

The compute and memory capacity of the DB instance, for example db.m5.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB instance classes in the Amazon RDS User Guide or Aurora DB instance classes in the Amazon Aurora User Guide.

', 'CreateDBInstanceMessage$Engine' => '

The database engine to use for this DB instance.

Not every database engine is available in every Amazon Web Services Region.

Valid Values:

  • aurora-mysql (for Aurora MySQL DB instances)

  • aurora-postgresql (for Aurora PostgreSQL DB instances)

  • custom-oracle-ee (for RDS Custom for Oracle DB instances)

  • custom-oracle-ee-cdb (for RDS Custom for Oracle DB instances)

  • custom-oracle-se2 (for RDS Custom for Oracle DB instances)

  • custom-oracle-se2-cdb (for RDS Custom for Oracle DB instances)

  • custom-sqlserver-ee (for RDS Custom for SQL Server DB instances)

  • custom-sqlserver-se (for RDS Custom for SQL Server DB instances)

  • custom-sqlserver-web (for RDS Custom for SQL Server DB instances)

  • custom-sqlserver-dev (for RDS Custom for SQL Server DB instances)

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

', 'CreateDBInstanceMessage$MasterUsername' => '

The name for the master user.

This setting doesn\'t apply to Amazon Aurora DB instances. The name for the master user is managed by the DB cluster.

This setting is required for RDS DB instances.

Constraints:

  • Must be 1 to 16 letters, numbers, or underscores.

  • First character must be a letter.

  • Can\'t be a reserved word for the chosen database engine.

', 'CreateDBInstanceMessage$AvailabilityZone' => '

The Availability Zone (AZ) where the database will be created. For information on Amazon Web Services Regions and Availability Zones, see Regions and Availability Zones.

For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don\'t specify one.

Default: A random, system-chosen Availability Zone in the endpoint\'s Amazon Web Services Region.

Constraints:

  • The AvailabilityZone parameter can\'t be specified if the DB instance is a Multi-AZ deployment.

  • The specified Availability Zone must be in the same Amazon Web Services Region as the current endpoint.

Example: us-east-1d

', 'CreateDBInstanceMessage$DBSubnetGroupName' => '

A DB subnet group to associate with this DB instance.

Constraints:

  • Must match the name of an existing DB subnet group.

Example: mydbsubnetgroup

', 'CreateDBInstanceMessage$PreferredMaintenanceWindow' => '

The time range each week during which system maintenance can occur. For more information, see Amazon RDS Maintenance Window in the Amazon RDS User Guide.

The default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region, occurring on a random day of the week.

Constraints:

  • Must be in the format ddd:hh24:mi-ddd:hh24:mi.

  • The day values must be mon | tue | wed | thu | fri | sat | sun.

  • Must be in Universal Coordinated Time (UTC).

  • Must not conflict with the preferred backup window.

  • Must be at least 30 minutes.

', 'CreateDBInstanceMessage$DBParameterGroupName' => '

The name of the DB parameter group to associate with this DB instance. If you don\'t specify a value, then Amazon RDS uses the default DB parameter group for the specified DB engine and version.

This setting doesn\'t apply to RDS Custom DB instances.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.

  • The first character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

', 'CreateDBInstanceMessage$PreferredBackupWindow' => '

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 Amazon Web Services Region. For more information, see Backup window in the Amazon RDS User Guide.

This setting doesn\'t apply to Amazon Aurora DB instances. The daily time range for creating automated backups is managed by the DB cluster.

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.

', 'CreateDBInstanceMessage$EngineVersion' => '

The version number of the database engine to use.

This setting doesn\'t apply to Amazon Aurora DB instances. The version number of the database engine the DB instance uses is managed by the DB cluster.

For a list of valid engine versions, use the DescribeDBEngineVersions operation.

The following are the database engines and links to information about the major and minor versions that are available with Amazon RDS. Not every database engine is available for every Amazon Web Services Region.

Amazon RDS Custom for Oracle

A custom engine version (CEV) that you have previously created. This setting is required for RDS Custom for Oracle. The CEV name has the following format: 19.customized_string. A valid CEV name is 19.my_cev1. For more information, see Creating an RDS Custom for Oracle DB instance in the Amazon RDS User Guide.

Amazon RDS Custom for SQL Server

See RDS Custom for SQL Server general requirements in the Amazon RDS User Guide.

RDS for Db2

For information, see Db2 on Amazon RDS versions in the Amazon RDS User Guide.

RDS for MariaDB

For information, see MariaDB on Amazon RDS versions in the Amazon RDS User Guide.

RDS for Microsoft SQL Server

For information, see Microsoft SQL Server versions on Amazon RDS in the Amazon RDS User Guide.

RDS for MySQL

For information, see MySQL on Amazon RDS versions in the Amazon RDS User Guide.

RDS for Oracle

For information, see Oracle Database Engine release notes in the Amazon RDS User Guide.

RDS for PostgreSQL

For information, see Amazon RDS for PostgreSQL versions and extensions in the Amazon RDS User Guide.

', 'CreateDBInstanceMessage$LicenseModel' => '

The license model information for this DB instance.

License models for RDS for Db2 require additional configuration. The Bring Your Own License (BYOL) model requires a custom parameter group and an Amazon Web Services License Manager self-managed license. The Db2 license through Amazon Web Services Marketplace model requires an Amazon Web Services Marketplace subscription. For more information, see Amazon RDS for Db2 licensing options in the Amazon RDS User Guide.

The default for RDS for Db2 is bring-your-own-license.

This setting doesn\'t apply to Amazon Aurora or RDS Custom DB instances.

Valid Values:

  • RDS for Db2 - bring-your-own-license | marketplace-license

  • RDS for MariaDB - general-public-license

  • RDS for Microsoft SQL Server - license-included

  • RDS for MySQL - general-public-license

  • RDS for Oracle - bring-your-own-license | license-included

  • RDS for PostgreSQL - postgresql-license

', 'CreateDBInstanceMessage$OptionGroupName' => '

The option group to associate the DB instance with.

Permanent options, such as the TDE option for Oracle Advanced Security TDE, can\'t be removed from an option group. Also, that option group can\'t be removed from a DB instance after it is associated with a DB instance.

This setting doesn\'t apply to Amazon Aurora or RDS Custom DB instances.

', 'CreateDBInstanceMessage$CharacterSetName' => '

For supported engines, the character set (CharacterSet) to associate the DB instance with.

This setting doesn\'t apply to the following DB instances:

  • Amazon Aurora - The character set is managed by the DB cluster. For more information, see CreateDBCluster.

  • RDS Custom - However, if you need to change the character set, you can change it on the database itself.

', 'CreateDBInstanceMessage$NcharCharacterSetName' => '

The name of the NCHAR character set for the Oracle DB instance.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceMessage$DBClusterIdentifier' => '

The identifier of the DB cluster that this DB instance will belong to.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceMessage$StorageType' => '

The storage type to associate with the DB instance.

If you specify io1, io2, or gp3, you must also include a value for the Iops parameter.

This setting doesn\'t apply to Amazon Aurora DB instances. Storage is managed by the DB cluster.

Valid Values: gp2 | gp3 | io1 | io2 | standard

Default: io1, if the Iops parameter is specified. Otherwise, gp3.

', 'CreateDBInstanceMessage$TdeCredentialArn' => '

The ARN from the key store with which to associate the instance for TDE encryption.

This setting doesn\'t apply to Amazon Aurora or RDS Custom DB instances.

', 'CreateDBInstanceMessage$KmsKeyId' => '

The Amazon Web Services KMS key identifier for an encrypted DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

This setting doesn\'t apply to Amazon Aurora DB instances. The Amazon Web Services KMS key identifier is managed by the DB cluster. For more information, see CreateDBCluster.

If StorageEncrypted is enabled, and you do not specify a value for the KmsKeyId parameter, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

For Amazon RDS Custom, a KMS key is required for DB instances. For most RDS engines, if you leave this parameter empty while enabling StorageEncrypted, the engine uses the default KMS key. However, RDS Custom doesn\'t use the default key when this parameter is empty. You must explicitly specify a key.

', 'CreateDBInstanceMessage$Domain' => '

The Active Directory directory ID to create the DB instance in. Currently, you can create only Db2, MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances in an Active Directory Domain.

For more information, see Kerberos Authentication in the Amazon RDS User Guide.

This setting doesn\'t apply to the following DB instances:

  • Amazon Aurora (The domain is managed by the DB cluster.)

  • RDS Custom

', 'CreateDBInstanceMessage$DomainFqdn' => '

The fully qualified domain name (FQDN) of an Active Directory domain.

Constraints:

  • Can\'t be longer than 64 characters.

Example: mymanagedADtest.mymanagedAD.mydomain

', 'CreateDBInstanceMessage$DomainOu' => '

The Active Directory organizational unit for your DB instance to join.

Constraints:

  • Must be in the distinguished name format.

  • Can\'t be longer than 64 characters.

Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain

', 'CreateDBInstanceMessage$DomainAuthSecretArn' => '

The ARN for the Secrets Manager secret with the credentials for the user joining the domain.

Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456

', 'CreateDBInstanceMessage$MonitoringRoleArn' => '

The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. For example, arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, see Setting Up and Enabling Enhanced Monitoring in the Amazon RDS User Guide.

If MonitoringInterval is set to a value other than 0, then you must supply a MonitoringRoleArn value.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceMessage$DomainIAMRoleName' => '

The name of the IAM role to use when making API calls to the Directory Service.

This setting doesn\'t apply to the following DB instances:

  • Amazon Aurora (The domain is managed by the DB cluster.)

  • RDS Custom

', 'CreateDBInstanceMessage$Timezone' => '

The time zone of the DB instance. The time zone parameter is currently supported only by RDS for Db2 and RDS for SQL Server.

', 'CreateDBInstanceMessage$PerformanceInsightsKMSKeyId' => '

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you don\'t specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceMessage$NetworkType' => '

The network type of the DB instance.

The network type is determined by the DBSubnetGroup specified for the DB instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

Valid Values: IPV4 | DUAL

', 'CreateDBInstanceMessage$CustomIamInstanceProfile' => '

The instance profile associated with the underlying Amazon EC2 instance of an RDS Custom DB instance.

This setting is required for RDS Custom.

Constraints:

  • The profile must exist in your account.

  • The profile must have an IAM role that Amazon EC2 has permissions to assume.

  • The instance profile name and the associated IAM role name must start with the prefix AWSRDSCustom.

For the list of permissions required for the IAM role, see Configure IAM and your VPC in the Amazon RDS User Guide.

', 'CreateDBInstanceMessage$DBSystemId' => '

The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database files. In this context, the term "Oracle database instance" refers exclusively to the system global area (SGA) and Oracle background processes. If you don\'t specify a SID, the value defaults to RDSCDB. The Oracle SID is also the name of your CDB.

', 'CreateDBInstanceMessage$CACertificateIdentifier' => '

The CA certificate identifier to use for the DB instance\'s server certificate.

This setting doesn\'t apply to RDS Custom DB instances.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

', 'CreateDBInstanceMessage$MasterUserSecretKmsKeyId' => '

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If you don\'t specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can\'t use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

', 'CreateDBInstanceMessage$EngineLifecycleSupport' => '

The life cycle type for this DB instance.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB instance into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, creating the DB instance will fail if the DB major version is past its end of standard support date.

This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster.

You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see Amazon RDS Extended Support with Amazon RDS in the Amazon RDS User Guide.

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

', 'CreateDBInstanceReadReplicaMessage$DBInstanceIdentifier' => '

The DB instance identifier of the read replica. This identifier is the unique key that identifies a DB instance. This parameter is stored as a lowercase string.

', 'CreateDBInstanceReadReplicaMessage$SourceDBInstanceIdentifier' => '

The identifier of the DB instance that will act as the source for the read replica. Each DB instance can have up to 15 read replicas, except for the following engines:

  • Db2 - Can have up to three replicas.

  • Oracle - Can have up to five read replicas.

  • SQL Server - Can have up to five read replicas.

Constraints:

  • Must be the identifier of an existing Db2, MariaDB, MySQL, Oracle, PostgreSQL, or SQL Server DB instance.

  • Can\'t be specified if the SourceDBClusterIdentifier parameter is also specified.

  • For the limitations of Oracle read replicas, see Version and licensing considerations for RDS for Oracle replicas in the Amazon RDS User Guide.

  • For the limitations of SQL Server read replicas, see Read replica limitations with SQL Server in the Amazon RDS User Guide.

  • The specified DB instance must have automatic backups enabled, that is, its backup retention period must be greater than 0.

  • If the source DB instance is in the same Amazon Web Services Region as the read replica, specify a valid DB instance identifier.

  • If the source DB instance is in a different Amazon Web Services Region from the read replica, specify a valid DB instance ARN. For more information, see Constructing an ARN for Amazon RDS in the Amazon RDS User Guide. This doesn\'t apply to SQL Server or RDS Custom, which don\'t support cross-Region replicas.

', 'CreateDBInstanceReadReplicaMessage$DBInstanceClass' => '

The compute and memory capacity of the read replica, for example db.m4.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide.

Default: Inherits the value from the source DB instance.

', 'CreateDBInstanceReadReplicaMessage$AvailabilityZone' => '

The Availability Zone (AZ) where the read replica will be created.

Default: A random, system-chosen Availability Zone in the endpoint\'s Amazon Web Services Region.

Example: us-east-1d

', 'CreateDBInstanceReadReplicaMessage$OptionGroupName' => '

The option group to associate the DB instance with. If not specified, RDS uses the option group associated with the source DB instance or cluster.

For SQL Server, you must use the option group associated with the source.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceReadReplicaMessage$DBParameterGroupName' => '

The name of the DB parameter group to associate with this read replica DB instance.

For the Db2 DB engine, if your source DB instance uses the Bring Your Own License model, then a custom parameter group must be associated with the replica. For a same Amazon Web Services Region replica, if you don\'t specify a custom parameter group, Amazon RDS associates the custom parameter group associated with the source DB instance. For a cross-Region replica, you must specify a custom parameter group. This custom parameter group must include your IBM Site ID and IBM Customer ID. For more information, see IBM IDs for Bring Your Own License for Db2.

For Single-AZ or Multi-AZ DB instance read replica instances, if you don\'t specify a value for DBParameterGroupName, then Amazon RDS uses the DBParameterGroup of the source DB instance for a same Region read replica, or the default DBParameterGroup for the specified DB engine for a cross-Region read replica.

For Multi-AZ DB cluster same Region read replica instances, if you don\'t specify a value for DBParameterGroupName, then Amazon RDS uses the default DBParameterGroup.

Specifying a parameter group for this operation is only supported for MySQL DB instances for cross-Region read replicas, for Multi-AZ DB cluster read replica instances, for Db2 DB instances, and for Oracle DB instances. It isn\'t supported for MySQL DB instances for same Region read replicas or for RDS Custom.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

', 'CreateDBInstanceReadReplicaMessage$DBSubnetGroupName' => '

A DB subnet group for the DB instance. The new DB instance is created in the VPC associated with the DB subnet group. If no DB subnet group is specified, then the new DB instance isn\'t created in a VPC.

Constraints:

  • If supplied, must match the name of an existing DB subnet group.

  • The specified DB subnet group must be in the same Amazon Web Services Region in which the operation is running.

  • All read replicas in one Amazon Web Services Region that are created from the same source DB instance must either:

    • Specify DB subnet groups from the same VPC. All these read replicas are created in the same VPC.

    • Not specify a DB subnet group. All these read replicas are created outside of any VPC.

Example: mydbsubnetgroup

', 'CreateDBInstanceReadReplicaMessage$StorageType' => '

The storage type to associate with the read replica.

If you specify io1, io2, or gp3, you must also include a value for the Iops parameter.

Valid Values: gp2 | gp3 | io1 | io2 | standard

Default: io1 if the Iops parameter is specified. Otherwise, gp3.

', 'CreateDBInstanceReadReplicaMessage$MonitoringRoleArn' => '

The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. For example, arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, go to To create an IAM role for Amazon RDS Enhanced Monitoring in the Amazon RDS User Guide.

If MonitoringInterval is set to a value other than 0, then you must supply a MonitoringRoleArn value.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceReadReplicaMessage$KmsKeyId' => '

The Amazon Web Services KMS key identifier for an encrypted read replica.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you create an encrypted read replica in the same Amazon Web Services Region as the source DB instance or Multi-AZ DB cluster, don\'t specify a value for this parameter. A read replica in the same Amazon Web Services Region is always encrypted with the same KMS key as the source DB instance or cluster.

If you create an encrypted read replica in a different Amazon Web Services Region, then you must specify a KMS key identifier for the destination Amazon Web Services Region. KMS keys are specific to the Amazon Web Services Region that they are created in, and you can\'t use KMS keys from one Amazon Web Services Region in another Amazon Web Services Region.

You can\'t create an encrypted read replica from an unencrypted DB instance or Multi-AZ DB cluster.

This setting doesn\'t apply to RDS Custom, which uses the same KMS key as the primary replica.

', 'CreateDBInstanceReadReplicaMessage$PerformanceInsightsKMSKeyId' => '

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceReadReplicaMessage$Domain' => '

The Active Directory directory ID to create the DB instance in. Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances can be created in an Active Directory Domain.

For more information, see Kerberos Authentication in the Amazon RDS User Guide.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceReadReplicaMessage$DomainIAMRoleName' => '

The name of the IAM role to use when making API calls to the Directory Service.

This setting doesn\'t apply to RDS Custom DB instances.

', 'CreateDBInstanceReadReplicaMessage$DomainFqdn' => '

The fully qualified domain name (FQDN) of an Active Directory domain.

Constraints:

  • Can\'t be longer than 64 characters.

Example: mymanagedADtest.mymanagedAD.mydomain

', 'CreateDBInstanceReadReplicaMessage$DomainOu' => '

The Active Directory organizational unit for your DB instance to join.

Constraints:

  • Must be in the distinguished name format.

  • Can\'t be longer than 64 characters.

Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain

', 'CreateDBInstanceReadReplicaMessage$DomainAuthSecretArn' => '

The ARN for the Secrets Manager secret with the credentials for the user joining the domain.

Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456

', 'CreateDBInstanceReadReplicaMessage$NetworkType' => '

The network type of the DB instance.

Valid Values:

  • IPV4

  • DUAL

The network type is determined by the DBSubnetGroup specified for read replica. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

', 'CreateDBInstanceReadReplicaMessage$CustomIamInstanceProfile' => '

The instance profile associated with the underlying Amazon EC2 instance of an RDS Custom DB instance. The instance profile must meet the following requirements:

  • The profile must exist in your account.

  • The profile must have an IAM role that Amazon EC2 has permissions to assume.

  • The instance profile name and the associated IAM role name must start with the prefix AWSRDSCustom.

For the list of permissions required for the IAM role, see Configure IAM and your VPC in the Amazon RDS User Guide.

This setting is required for RDS Custom DB instances.

', 'CreateDBInstanceReadReplicaMessage$SourceDBClusterIdentifier' => '

The identifier of the Multi-AZ DB cluster that will act as the source for the read replica. Each DB cluster can have up to 15 read replicas.

Constraints:

  • Must be the identifier of an existing Multi-AZ DB cluster.

  • Can\'t be specified if the SourceDBInstanceIdentifier parameter is also specified.

  • The specified DB cluster must have automatic backups enabled, that is, its backup retention period must be greater than 0.

  • The source DB cluster must be in the same Amazon Web Services Region as the read replica. Cross-Region replication isn\'t supported.

', 'CreateDBParameterGroupMessage$DBParameterGroupName' => '

The name of the DB parameter group.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter

  • Can\'t end with a hyphen or contain two consecutive hyphens

This value is stored as a lowercase string.

', 'CreateDBParameterGroupMessage$DBParameterGroupFamily' => '

The DB parameter group family name. A DB parameter group can be associated with one and only one DB parameter group family, and can be applied only to a DB instance running a database engine and engine version compatible with that DB parameter group family.

To list all of the available parameter group families for a DB engine, use the following command:

aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>

For example, to list all of the available parameter group families for the MySQL DB engine, use the following command:

aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine mysql

The output contains duplicates.

The following are the valid DB engine values:

  • aurora-mysql

  • aurora-postgresql

  • db2-ae

  • db2-se

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

', 'CreateDBParameterGroupMessage$Description' => '

The description for the DB parameter group.

', 'CreateDBSecurityGroupMessage$DBSecurityGroupName' => '

The name for the DB security group. This value is stored as a lowercase string.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter

  • Can\'t end with a hyphen or contain two consecutive hyphens

  • Must not be "Default"

Example: mysecuritygroup

', 'CreateDBSecurityGroupMessage$DBSecurityGroupDescription' => '

The description for the DB security group.

', 'CreateDBShardGroupMessage$DBShardGroupIdentifier' => '

The name of the DB shard group.

', 'CreateDBShardGroupMessage$DBClusterIdentifier' => '

The name of the primary DB cluster for the DB shard group.

', 'CreateDBSnapshotMessage$DBSnapshotIdentifier' => '

The identifier for the DB snapshot.

Constraints:

  • Can\'t be null, empty, or blank

  • Must contain from 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Can\'t end with a hyphen or contain two consecutive hyphens

Example: my-snapshot-id

', 'CreateDBSnapshotMessage$DBInstanceIdentifier' => '

The identifier of the DB instance that you want to create the snapshot of.

Constraints:

  • Must match the identifier of an existing DBInstance.

', 'CreateDBSubnetGroupMessage$DBSubnetGroupName' => '

The name for the DB subnet group. This value is stored as a lowercase string.

Constraints:

  • Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens.

  • Must not be default.

  • First character must be a letter.

Example: mydbsubnetgroup

', 'CreateDBSubnetGroupMessage$DBSubnetGroupDescription' => '

The description for the DB subnet group.

', 'CreateEventSubscriptionMessage$SubscriptionName' => '

The name of the subscription.

Constraints: The name must be less than 255 characters.

', 'CreateEventSubscriptionMessage$SnsTopicArn' => '

The Amazon Resource Name (ARN) of the SNS topic created for event notification. SNS automatically creates the ARN when you create a topic and subscribe to it.

RDS doesn\'t support FIFO (first in, first out) topics. For more information, see Message ordering and deduplication (FIFO topics) in the Amazon Simple Notification Service Developer Guide.

', 'CreateEventSubscriptionMessage$SourceType' => '

The type of source that is generating the events. For example, if you want to be notified of events generated by a DB instance, you set this parameter to db-instance. For RDS Proxy events, specify db-proxy. If this value isn\'t specified, all events are returned.

Valid Values: db-instance | db-cluster | db-parameter-group | db-security-group | db-snapshot | db-cluster-snapshot | db-proxy | zero-etl | custom-engine-version | blue-green-deployment

', 'CreateGlobalClusterMessage$SourceDBClusterIdentifier' => '

The Amazon Resource Name (ARN) to use as the primary cluster of the global database.

If you provide a value for this parameter, don\'t specify values for the following settings because Amazon Aurora uses the values from the specified source DB cluster:

  • DatabaseName

  • Engine

  • EngineVersion

  • StorageEncrypted

', 'CreateGlobalClusterMessage$Engine' => '

The database engine to use for this global database cluster.

Valid Values: aurora-mysql | aurora-postgresql

Constraints:

  • Can\'t be specified if SourceDBClusterIdentifier is specified. In this case, Amazon Aurora uses the engine of the source DB cluster.

', 'CreateGlobalClusterMessage$EngineVersion' => '

The engine version to use for this global database cluster.

Constraints:

  • Can\'t be specified if SourceDBClusterIdentifier is specified. In this case, Amazon Aurora uses the engine version of the source DB cluster.

', 'CreateGlobalClusterMessage$EngineLifecycleSupport' => '

The life cycle type for this global database cluster.

By default, this value is set to open-source-rds-extended-support, which enrolls your global cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, creating the global cluster will fail if the DB major version is past its end of standard support date.

This setting only applies to Aurora PostgreSQL-based global databases.

You can use this setting to enroll your global cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your global cluster past the end of standard support for that engine version. For more information, see Amazon RDS Extended Support with Amazon Aurora in the Amazon Aurora User Guide.

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

', 'CreateGlobalClusterMessage$DatabaseName' => '

The name for your database of up to 64 alphanumeric characters. If you don\'t specify a name, Amazon Aurora doesn\'t create a database in the global database cluster.

Constraints:

  • Can\'t be specified if SourceDBClusterIdentifier is specified. In this case, Amazon Aurora uses the database name from the source DB cluster.

', 'CreateIntegrationMessage$KMSKeyId' => '

The Amazon Web Services Key Management System (Amazon Web Services KMS) key identifier for the key to use to encrypt the integration. If you don\'t specify an encryption key, RDS uses a default Amazon Web Services owned key.

', 'CreateOptionGroupMessage$OptionGroupName' => '

Specifies the name of the option group to be created.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Can\'t end with a hyphen or contain two consecutive hyphens

Example: myoptiongroup

', 'CreateOptionGroupMessage$EngineName' => '

The name of the engine to associate this option group with.

Valid Values:

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

', 'CreateOptionGroupMessage$MajorEngineVersion' => '

Specifies the major version of the engine that this option group should be associated with.

', 'CreateOptionGroupMessage$OptionGroupDescription' => '

The description of the option group.

', 'CreateTenantDatabaseMessage$DBInstanceIdentifier' => '

The user-supplied DB instance identifier. RDS creates your tenant database in this DB instance. This parameter isn\'t case-sensitive.

', 'CreateTenantDatabaseMessage$TenantDBName' => '

The user-supplied name of the tenant database that you want to create in your DB instance. This parameter has the same constraints as DBName in CreateDBInstance.

', 'CreateTenantDatabaseMessage$MasterUsername' => '

The name for the master user account in your tenant database. RDS creates this user account in the tenant database and grants privileges to the master user. This parameter is case-sensitive.

Constraints:

  • Must be 1 to 16 letters, numbers, or underscores.

  • First character must be a letter.

  • Can\'t be a reserved word for the chosen database engine.

', 'CreateTenantDatabaseMessage$CharacterSetName' => '

The character set for your tenant database. If you don\'t specify a value, the character set name defaults to AL32UTF8.

', 'CreateTenantDatabaseMessage$NcharCharacterSetName' => '

The NCHAR value for the tenant database.

', 'CreateTenantDatabaseMessage$MasterUserSecretKmsKeyId' => '

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If you don\'t specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can\'t use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

', 'CustomDBEngineVersionAMI$ImageId' => '

A value that indicates the ID of the AMI.

', 'CustomDBEngineVersionAMI$Status' => '

A value that indicates the status of a custom engine version (CEV).

', 'DBCluster$CharacterSetName' => '

If present, specifies the name of the character set that this cluster is associated with.

', 'DBCluster$DatabaseName' => '

The name of the initial database that was specified for the DB cluster when it was created, if one was provided. This same name is returned for the life of the DB cluster.

', 'DBCluster$DBClusterIdentifier' => '

The user-supplied identifier for the DB cluster. This identifier is the unique key that identifies a DB cluster.

', 'DBCluster$DBClusterParameterGroup' => '

The name of the DB cluster parameter group for the DB cluster.

', 'DBCluster$DBSubnetGroup' => '

Information about the subnet group associated with the DB cluster, including the name, description, and subnets in the subnet group.

', 'DBCluster$Status' => '

The current state of this DB cluster.

', 'DBCluster$PercentProgress' => '

The progress of the operation as a percentage.

', 'DBCluster$Endpoint' => '

The connection endpoint for the primary instance of the DB cluster.

', 'DBCluster$ReaderEndpoint' => '

The reader endpoint for the DB cluster. The reader endpoint for a DB cluster load-balances connections across the Aurora Replicas that are available in a DB cluster. As clients request new connections to the reader endpoint, Aurora distributes the connection requests among the Aurora Replicas in the DB cluster. This functionality can help balance your read workload across multiple Aurora Replicas in your DB cluster.

If a failover occurs, and the Aurora Replica that you are connected to is promoted to be the primary instance, your connection is dropped. To continue sending your read workload to other Aurora Replicas in the cluster, you can then reconnect to the reader endpoint.

', 'DBCluster$Engine' => '

The database engine used for this DB cluster.

', 'DBCluster$EngineVersion' => '

The version of the database engine.

', 'DBCluster$MasterUsername' => '

The master username for the DB cluster.

', 'DBCluster$PreferredBackupWindow' => '

The daily time range during which automated backups are created if automated backups are enabled, as determined by the BackupRetentionPeriod.

', 'DBCluster$PreferredMaintenanceWindow' => '

The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).

', 'DBCluster$ReplicationSourceIdentifier' => '

The identifier of the source DB cluster if this DB cluster is a read replica.

', 'DBCluster$HostedZoneId' => '

The ID that Amazon Route 53 assigns when you create a hosted zone.

', 'DBCluster$KmsKeyId' => '

If StorageEncrypted is enabled, the Amazon Web Services KMS key identifier for the encrypted DB cluster.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

', 'DBCluster$DbClusterResourceId' => '

The Amazon Web Services Region-unique, immutable identifier for the DB cluster. This identifier is found in Amazon Web Services CloudTrail log entries whenever the KMS key for the DB cluster is accessed.

', 'DBCluster$DBClusterArn' => '

The Amazon Resource Name (ARN) for the DB cluster.

', 'DBCluster$CloneGroupId' => '

The ID of the clone group with which the DB cluster is associated. For newly created clusters, the ID is typically null.

If you clone a DB cluster when the ID is null, the operation populates the ID value for the source cluster and the clone because both clusters become part of the same clone group. Even if you delete the clone cluster, the clone group ID remains for the lifetime of the source cluster to show that it was used in a cloning operation.

For PITR, the clone group ID is inherited from the source cluster. For snapshot restore operations, the clone group ID isn\'t inherited from the source cluster.

', 'DBCluster$EngineMode' => '

The DB engine mode of the DB cluster, either provisioned or serverless.

For more information, see CreateDBCluster.

', 'DBCluster$DBClusterInstanceClass' => '

The name of the compute and memory capacity class of the DB instance.

This setting is only for non-Aurora Multi-AZ DB clusters.

', 'DBCluster$StorageType' => '

The storage type associated with the DB cluster.

', 'DBCluster$ActivityStreamKmsKeyId' => '

The Amazon Web Services KMS key identifier used for encrypting messages in the database activity stream.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

', 'DBCluster$ActivityStreamKinesisStreamName' => '

The name of the Amazon Kinesis data stream used for the database activity stream.

', 'DBCluster$MonitoringRoleArn' => '

The ARN for the IAM role that permits RDS to send Enhanced Monitoring metrics to Amazon CloudWatch Logs.

This setting is only for Aurora DB clusters and Multi-AZ DB clusters.

', 'DBCluster$PerformanceInsightsKMSKeyId' => '

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

This setting is only for Aurora DB clusters and Multi-AZ DB clusters.

', 'DBCluster$DBSystemId' => '

Reserved for future use.

', 'DBCluster$EngineLifecycleSupport' => '

The lifecycle type for the DB cluster.

For more information, see CreateDBCluster.

', 'DBClusterAutomatedBackup$Engine' => '

The name of the database engine for this automated backup.

', 'DBClusterAutomatedBackup$VpcId' => '

The VPC ID associated with the DB cluster.

', 'DBClusterAutomatedBackup$DBClusterAutomatedBackupsArn' => '

The Amazon Resource Name (ARN) for the automated backups.

', 'DBClusterAutomatedBackup$DBClusterIdentifier' => '

The identifier for the source DB cluster, which can\'t be changed and which is unique to an Amazon Web Services Region.

', 'DBClusterAutomatedBackup$MasterUsername' => '

The master user name of the automated backup.

', 'DBClusterAutomatedBackup$DbClusterResourceId' => '

The resource ID for the source DB cluster, which can\'t be changed and which is unique to an Amazon Web Services Region.

', 'DBClusterAutomatedBackup$Region' => '

The Amazon Web Services Region associated with the automated backup.

', 'DBClusterAutomatedBackup$LicenseModel' => '

The license model information for this DB cluster automated backup.

', 'DBClusterAutomatedBackup$Status' => '

A list of status information for an automated backup:

  • retained - Automated backups for deleted clusters.

', 'DBClusterAutomatedBackup$EngineVersion' => '

The version of the database engine for the automated backup.

', 'DBClusterAutomatedBackup$DBClusterArn' => '

The Amazon Resource Name (ARN) for the source DB cluster.

', 'DBClusterAutomatedBackup$EngineMode' => '

The engine mode of the database engine for the automated backup.

', 'DBClusterAutomatedBackup$KmsKeyId' => '

The Amazon Web Services KMS key ID for an automated backup.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

', 'DBClusterAutomatedBackup$StorageType' => '

The storage type associated with the DB cluster.

This setting is only for non-Aurora Multi-AZ DB clusters.

', 'DBClusterAutomatedBackupMessage$Marker' => '

The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.

', 'DBClusterBacktrack$DBClusterIdentifier' => '

Contains a user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster.

', 'DBClusterBacktrack$BacktrackIdentifier' => '

Contains the backtrack identifier.

', 'DBClusterBacktrack$Status' => '

The status of the backtrack. This property returns one of the following values:

  • applying - The backtrack is currently being applied to or rolled back from the DB cluster.

  • completed - The backtrack has successfully been applied to or rolled back from the DB cluster.

  • failed - An error occurred while the backtrack was applied to or rolled back from the DB cluster.

  • pending - The backtrack is currently pending application to or rollback from the DB cluster.

', 'DBClusterBacktrackMessage$Marker' => '

A pagination token that can be used in a later DescribeDBClusterBacktracks request.

', 'DBClusterCapacityInfo$DBClusterIdentifier' => '

A user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster.

', 'DBClusterCapacityInfo$TimeoutAction' => '

The timeout action of a call to ModifyCurrentDBClusterCapacity, either ForceApplyCapacityChange or RollbackCapacityChange.

', 'DBClusterEndpoint$DBClusterEndpointIdentifier' => '

The identifier associated with the endpoint. This parameter is stored as a lowercase string.

', 'DBClusterEndpoint$DBClusterIdentifier' => '

The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

', 'DBClusterEndpoint$DBClusterEndpointResourceIdentifier' => '

A unique system-generated identifier for an endpoint. It remains the same for the whole life of the endpoint.

', 'DBClusterEndpoint$Endpoint' => '

The DNS address of the endpoint.

', 'DBClusterEndpoint$Status' => '

The current status of the endpoint. One of: creating, available, deleting, inactive, modifying. The inactive state applies to an endpoint that can\'t be used for a certain kind of cluster, such as a writer endpoint for a read-only secondary cluster in a global database.

', 'DBClusterEndpoint$EndpointType' => '

The type of the endpoint. One of: READER, WRITER, CUSTOM.

', 'DBClusterEndpoint$CustomEndpointType' => '

The type associated with a custom endpoint. One of: READER, WRITER, ANY.

', 'DBClusterEndpoint$DBClusterEndpointArn' => '

The Amazon Resource Name (ARN) for the endpoint.

', 'DBClusterEndpointMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBClusterEndpoints request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DBClusterMember$DBInstanceIdentifier' => '

Specifies the instance identifier for this member of the DB cluster.

', 'DBClusterMember$DBClusterParameterGroupStatus' => '

Specifies the status of the DB cluster parameter group for this member of the DB cluster.

', 'DBClusterMessage$Marker' => '

A pagination token that can be used in a later DescribeDBClusters request.

', 'DBClusterOptionGroupStatus$DBClusterOptionGroupName' => '

Specifies the name of the DB cluster option group.

', 'DBClusterOptionGroupStatus$Status' => '

Specifies the status of the DB cluster option group.

', 'DBClusterParameterGroup$DBClusterParameterGroupName' => '

The name of the DB cluster parameter group.

', 'DBClusterParameterGroup$DBParameterGroupFamily' => '

The name of the DB parameter group family that this DB cluster parameter group is compatible with.

', 'DBClusterParameterGroup$Description' => '

Provides the customer-specified description for this DB cluster parameter group.

', 'DBClusterParameterGroup$DBClusterParameterGroupArn' => '

The Amazon Resource Name (ARN) for the DB cluster parameter group.

', 'DBClusterParameterGroupDetails$Marker' => '

An optional pagination token provided by a previous DescribeDBClusterParameters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DBClusterParameterGroupNameMessage$DBClusterParameterGroupName' => '

The name of the DB cluster parameter group.

Constraints:

  • Must be 1 to 255 letters or numbers.

  • First character must be a letter

  • Can\'t end with a hyphen or contain two consecutive hyphens

This value is stored as a lowercase string.

', 'DBClusterParameterGroupsMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBClusterParameterGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DBClusterRole$RoleArn' => '

The Amazon Resource Name (ARN) of the IAM role that is associated with the DB cluster.

', 'DBClusterRole$Status' => '

Describes the state of association between the IAM role and the DB cluster. The Status property returns one of the following values:

  • ACTIVE - the IAM role ARN is associated with the DB cluster and can be used to access other Amazon Web Services on your behalf.

  • PENDING - the IAM role ARN is being associated with the DB cluster.

  • INVALID - the IAM role ARN is associated with the DB cluster, but the DB cluster is unable to assume the IAM role in order to access other Amazon Web Services on your behalf.

', 'DBClusterRole$FeatureName' => '

The name of the feature associated with the Amazon Web Services Identity and Access Management (IAM) role. For information about supported feature names, see DBEngineVersion.

', 'DBClusterSnapshot$DBClusterSnapshotIdentifier' => '

The identifier for the DB cluster snapshot.

', 'DBClusterSnapshot$DBClusterIdentifier' => '

The DB cluster identifier of the DB cluster that this DB cluster snapshot was created from.

', 'DBClusterSnapshot$Engine' => '

The name of the database engine for this DB cluster snapshot.

', 'DBClusterSnapshot$EngineMode' => '

The engine mode of the database engine for this DB cluster snapshot.

', 'DBClusterSnapshot$Status' => '

The status of this DB cluster snapshot. Valid statuses are the following:

  • available

  • copying

  • creating

', 'DBClusterSnapshot$VpcId' => '

The VPC ID associated with the DB cluster snapshot.

', 'DBClusterSnapshot$MasterUsername' => '

The master username for this DB cluster snapshot.

', 'DBClusterSnapshot$EngineVersion' => '

The version of the database engine for this DB cluster snapshot.

', 'DBClusterSnapshot$LicenseModel' => '

The license model information for this DB cluster snapshot.

', 'DBClusterSnapshot$SnapshotType' => '

The type of the DB cluster snapshot.

', 'DBClusterSnapshot$KmsKeyId' => '

If StorageEncrypted is true, the Amazon Web Services KMS key identifier for the encrypted DB cluster snapshot.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

', 'DBClusterSnapshot$DBClusterSnapshotArn' => '

The Amazon Resource Name (ARN) for the DB cluster snapshot.

', 'DBClusterSnapshot$SourceDBClusterSnapshotArn' => '

If the DB cluster snapshot was copied from a source DB cluster snapshot, the Amazon Resource Name (ARN) for the source DB cluster snapshot, otherwise, a null value.

', 'DBClusterSnapshot$StorageType' => '

The storage type associated with the DB cluster snapshot.

This setting is only for Aurora DB clusters.

', 'DBClusterSnapshot$DbClusterResourceId' => '

The resource ID of the DB cluster that this DB cluster snapshot was created from.

', 'DBClusterSnapshot$DBSystemId' => '

Reserved for future use.

', 'DBClusterSnapshotAttribute$AttributeName' => '

The name of the manual DB cluster snapshot attribute.

The attribute named restore refers to the list of Amazon Web Services accounts that have permission to copy or restore the manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

', 'DBClusterSnapshotAttributesResult$DBClusterSnapshotIdentifier' => '

The identifier of the manual DB cluster snapshot that the attributes apply to.

', 'DBClusterSnapshotMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBClusterSnapshots request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DBClusterStatusInfo$StatusType' => '

Reserved for future use.

', 'DBClusterStatusInfo$Status' => '

Reserved for future use.

', 'DBClusterStatusInfo$Message' => '

Reserved for future use.

', 'DBEngineVersion$Engine' => '

The name of the database engine.

', 'DBEngineVersion$MajorEngineVersion' => '

The major engine version of the CEV.

', 'DBEngineVersion$EngineVersion' => '

The version number of the database engine.

', 'DBEngineVersion$DatabaseInstallationFilesS3BucketName' => '

The name of the Amazon S3 bucket that contains your database installation files.

', 'DBEngineVersion$DatabaseInstallationFilesS3Prefix' => '

The Amazon S3 directory that contains the database installation files. If not specified, then no prefix is assumed.

', 'DBEngineVersion$DBParameterGroupFamily' => '

The name of the DB parameter group family for the database engine.

', 'DBEngineVersion$DBEngineDescription' => '

The description of the database engine.

', 'DBEngineVersion$DBEngineVersionArn' => '

The ARN of the custom engine version.

', 'DBEngineVersion$DBEngineVersionDescription' => '

The description of the database engine version.

', 'DBEngineVersion$DBEngineMediaType' => '

A value that indicates the source media provider of the AMI based on the usage operation. Applicable for RDS Custom for SQL Server.

', 'DBEngineVersion$KMSKeyId' => '

The Amazon Web Services KMS key identifier for an encrypted CEV. This parameter is required for RDS Custom, but optional for Amazon RDS.

', 'DBEngineVersion$Status' => '

The status of the DB engine version, either available or deprecated.

', 'DBEngineVersionMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DBInstance$DBInstanceIdentifier' => '

The user-supplied database identifier. This identifier is the unique key that identifies a DB instance.

', 'DBInstance$DBInstanceClass' => '

The name of the compute and memory capacity class of the DB instance.

', 'DBInstance$Engine' => '

The database engine used for this DB instance.

', 'DBInstance$DBInstanceStatus' => '

The current state of this database.

For information about DB instance statuses, see Viewing DB instance status in the Amazon RDS User Guide.

', 'DBInstance$MasterUsername' => '

The master username for the DB instance.

', 'DBInstance$DBName' => '

The initial database name that you provided (if required) when you created the DB instance. This name is returned for the life of your DB instance. For an RDS for Oracle CDB instance, the name identifies the PDB rather than the CDB.

', 'DBInstance$PreferredBackupWindow' => '

The daily time range during which automated backups are created if automated backups are enabled, as determined by the BackupRetentionPeriod.

', 'DBInstance$AvailabilityZone' => '

The name of the Availability Zone where the DB instance is located.

', 'DBInstance$PreferredMaintenanceWindow' => '

The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).

', 'DBInstance$EngineVersion' => '

The version of the database engine.

', 'DBInstance$ReadReplicaSourceDBInstanceIdentifier' => '

The identifier of the source DB instance if this DB instance is a read replica.

', 'DBInstance$LicenseModel' => '

The license model information for this DB instance. This setting doesn\'t apply to Amazon Aurora or RDS Custom DB instances.

', 'DBInstance$CharacterSetName' => '

If present, specifies the name of the character set that this instance is associated with.

', 'DBInstance$NcharCharacterSetName' => '

The name of the NCHAR character set for the Oracle DB instance. This character set specifies the Unicode encoding for data stored in table columns of type NCHAR, NCLOB, or NVARCHAR2.

', 'DBInstance$SecondaryAvailabilityZone' => '

If present, specifies the name of the secondary Availability Zone for a DB instance with multi-AZ support.

', 'DBInstance$StorageType' => '

The storage type associated with the DB instance.

', 'DBInstance$TdeCredentialArn' => '

The ARN from the key store with which the instance is associated for TDE encryption.

', 'DBInstance$DBClusterIdentifier' => '

If the DB instance is a member of a DB cluster, indicates the name of the DB cluster that the DB instance is a member of.

', 'DBInstance$KmsKeyId' => '

If StorageEncrypted is enabled, the Amazon Web Services KMS key identifier for the encrypted DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

', 'DBInstance$DbiResourceId' => '

The Amazon Web Services Region-unique, immutable identifier for the DB instance. This identifier is found in Amazon Web Services CloudTrail log entries whenever the Amazon Web Services KMS key for the DB instance is accessed.

', 'DBInstance$CACertificateIdentifier' => '

The identifier of the CA certificate for this DB instance.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

', 'DBInstance$EnhancedMonitoringResourceArn' => '

The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log stream that receives the Enhanced Monitoring metrics data for the DB instance.

', 'DBInstance$MonitoringRoleArn' => '

The ARN for the IAM role that permits RDS to send Enhanced Monitoring metrics to Amazon CloudWatch Logs.

', 'DBInstance$DBInstanceArn' => '

The Amazon Resource Name (ARN) for the DB instance.

', 'DBInstance$Timezone' => '

The time zone of the DB instance. In most cases, the Timezone element is empty. Timezone content appears only for RDS for Db2 and RDS for SQL Server DB instances that were created with a time zone specified.

', 'DBInstance$PerformanceInsightsKMSKeyId' => '

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

', 'DBInstance$NetworkType' => '

The network type of the DB instance.

The network type is determined by the DBSubnetGroup specified for the DB instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide and Working with a DB instance in a VPC in the Amazon Aurora User Guide.

Valid Values: IPV4 | DUAL

', 'DBInstance$ActivityStreamKmsKeyId' => '

The Amazon Web Services KMS key identifier used for encrypting messages in the database activity stream. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

', 'DBInstance$ActivityStreamKinesisStreamName' => '

The name of the Amazon Kinesis data stream used for the database activity stream.

', 'DBInstance$AwsBackupRecoveryPointArn' => '

The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services Backup.

', 'DBInstance$CustomIamInstanceProfile' => '

The instance profile associated with the underlying Amazon EC2 instance of an RDS Custom DB instance. The instance profile must meet the following requirements:

  • The profile must exist in your account.

  • The profile must have an IAM role that Amazon EC2 has permissions to assume.

  • The instance profile name and the associated IAM role name must start with the prefix AWSRDSCustom.

For the list of permissions required for the IAM role, see Configure IAM and your VPC in the Amazon RDS User Guide.

', 'DBInstance$DBSystemId' => '

The Oracle system ID (Oracle SID) for a container database (CDB). The Oracle SID is also the name of the CDB. This setting is only valid for RDS Custom DB instances.

', 'DBInstance$ReadReplicaSourceDBClusterIdentifier' => '

The identifier of the source DB cluster if this DB instance is a read replica.

', 'DBInstance$PercentProgress' => '

The progress of the storage optimization operation as a percentage.

', 'DBInstance$EngineLifecycleSupport' => '

The lifecycle type for the DB instance.

For more information, see CreateDBInstance.

', 'DBInstanceAutomatedBackup$DBInstanceArn' => '

The Amazon Resource Name (ARN) for the automated backups.

', 'DBInstanceAutomatedBackup$DbiResourceId' => '

The resource ID for the source DB instance, which can\'t be changed and which is unique to an Amazon Web Services Region.

', 'DBInstanceAutomatedBackup$Region' => '

The Amazon Web Services Region associated with the automated backup.

', 'DBInstanceAutomatedBackup$DBInstanceIdentifier' => '

The identifier for the source DB instance, which can\'t be changed and which is unique to an Amazon Web Services Region.

', 'DBInstanceAutomatedBackup$Status' => '

A list of status information for an automated backup:

  • active - Automated backups for current instances.

  • retained - Automated backups for deleted instances.

  • creating - Automated backups that are waiting for the first automated snapshot to be available.

', 'DBInstanceAutomatedBackup$AvailabilityZone' => '

The Availability Zone that the automated backup was created in. For information on Amazon Web Services Regions and Availability Zones, see Regions and Availability Zones.

', 'DBInstanceAutomatedBackup$VpcId' => '

The VPC ID associated with the DB instance.

', 'DBInstanceAutomatedBackup$MasterUsername' => '

The master user name of an automated backup.

', 'DBInstanceAutomatedBackup$Engine' => '

The name of the database engine for this automated backup.

', 'DBInstanceAutomatedBackup$EngineVersion' => '

The version of the database engine for the automated backup.

', 'DBInstanceAutomatedBackup$LicenseModel' => '

The license model information for the automated backup.

', 'DBInstanceAutomatedBackup$OptionGroupName' => '

The option group the automated backup is associated with. If omitted, the default option group for the engine specified is used.

', 'DBInstanceAutomatedBackup$TdeCredentialArn' => '

The ARN from the key store with which the automated backup is associated for TDE encryption.

', 'DBInstanceAutomatedBackup$StorageType' => '

The storage type associated with the automated backup.

', 'DBInstanceAutomatedBackup$KmsKeyId' => '

The Amazon Web Services KMS key ID for an automated backup.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

', 'DBInstanceAutomatedBackup$Timezone' => '

The time zone of the automated backup. In most cases, the Timezone element is empty. Timezone content appears only for Microsoft SQL Server DB instances that were created with a time zone specified.

', 'DBInstanceAutomatedBackup$DBInstanceAutomatedBackupsArn' => '

The Amazon Resource Name (ARN) for the replicated automated backups.

', 'DBInstanceAutomatedBackupMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DBInstanceAutomatedBackupsReplication$DBInstanceAutomatedBackupsArn' => '

The Amazon Resource Name (ARN) of the replicated automated backups.

', 'DBInstanceMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords .

', 'DBInstanceRole$RoleArn' => '

The Amazon Resource Name (ARN) of the IAM role that is associated with the DB instance.

', 'DBInstanceRole$FeatureName' => '

The name of the feature associated with the Amazon Web Services Identity and Access Management (IAM) role. For information about supported feature names, see DBEngineVersion.

', 'DBInstanceRole$Status' => '

Information about the state of association between the IAM role and the DB instance. The Status property returns one of the following values:

  • ACTIVE - the IAM role ARN is associated with the DB instance and can be used to access other Amazon Web Services services on your behalf.

  • PENDING - the IAM role ARN is being associated with the DB instance.

  • INVALID - the IAM role ARN is associated with the DB instance, but the DB instance is unable to assume the IAM role in order to access other Amazon Web Services services on your behalf.

', 'DBInstanceStatusInfo$StatusType' => '

This value is currently "read replication."

', 'DBInstanceStatusInfo$Status' => '

The status of the DB instance. For a StatusType of read replica, the values can be replicating, replication stop point set, replication stop point reached, error, stopped, or terminated.

', 'DBInstanceStatusInfo$Message' => '

Details of the error if there is an error for the instance. If the instance isn\'t in an error state, this value is blank.

', 'DBMajorEngineVersion$Engine' => '

The name of the database engine.

', 'DBMajorEngineVersion$MajorEngineVersion' => '

The major version number of the database engine.

', 'DBParameterGroup$DBParameterGroupName' => '

The name of the DB parameter group.

', 'DBParameterGroup$DBParameterGroupFamily' => '

The name of the DB parameter group family that this DB parameter group is compatible with.

', 'DBParameterGroup$Description' => '

Provides the customer-specified description for this DB parameter group.

', 'DBParameterGroup$DBParameterGroupArn' => '

The Amazon Resource Name (ARN) for the DB parameter group.

', 'DBParameterGroupDetails$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DBParameterGroupNameMessage$DBParameterGroupName' => '

The name of the DB parameter group.

', 'DBParameterGroupStatus$DBParameterGroupName' => '

The name of the DB parameter group.

', 'DBParameterGroupStatus$ParameterApplyStatus' => '

The status of parameter updates. Valid values are:

  • applying: The parameter group change is being applied to the database.

  • failed-to-apply: The parameter group is in an invalid state.

  • in-sync: The parameter group change is synchronized with the database.

  • pending-database-upgrade: The parameter group change will be applied after the DB instance is upgraded.

  • pending-reboot: The parameter group change will be applied after the DB instance reboots.

', 'DBParameterGroupsMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DBProxy$DBProxyName' => '

The identifier for the proxy. This name must be unique for all proxies owned by your Amazon Web Services account in the specified Amazon Web Services Region.

', 'DBProxy$DBProxyArn' => '

The Amazon Resource Name (ARN) for the proxy.

', 'DBProxy$EngineFamily' => '

The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. MYSQL supports Aurora MySQL, RDS for MariaDB, and RDS for MySQL databases. POSTGRESQL supports Aurora PostgreSQL and RDS for PostgreSQL databases. SQLSERVER supports RDS for Microsoft SQL Server databases.

', 'DBProxy$VpcId' => '

Provides the VPC ID of the DB proxy.

', 'DBProxy$RoleArn' => '

The Amazon Resource Name (ARN) for the IAM role that the proxy uses to access Amazon Secrets Manager.

', 'DBProxy$Endpoint' => '

The endpoint that you can use to connect to the DB proxy. You include the endpoint value in the connection string for a database client application.

', 'DBProxyEndpoint$DBProxyEndpointName' => '

The name for the DB proxy endpoint. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can\'t end with a hyphen or contain two consecutive hyphens.

', 'DBProxyEndpoint$DBProxyEndpointArn' => '

The Amazon Resource Name (ARN) for the DB proxy endpoint.

', 'DBProxyEndpoint$DBProxyName' => '

The identifier for the DB proxy that is associated with this DB proxy endpoint.

', 'DBProxyEndpoint$VpcId' => '

Provides the VPC ID of the DB proxy endpoint.

', 'DBProxyEndpoint$Endpoint' => '

The endpoint that you can use to connect to the DB proxy. You include the endpoint value in the connection string for a database client application.

', 'DBProxyTarget$TargetArn' => '

The Amazon Resource Name (ARN) for the RDS DB instance or Aurora DB cluster.

', 'DBProxyTarget$Endpoint' => '

The writer endpoint for the RDS DB instance or Aurora DB cluster.

', 'DBProxyTarget$TrackedClusterId' => '

The DB cluster identifier when the target represents an Aurora DB cluster. This field is blank when the target represents an RDS DB instance.

', 'DBProxyTarget$RdsResourceId' => '

The identifier representing the target. It can be the instance identifier for an RDS DB instance, or the cluster identifier for an Aurora DB cluster.

', 'DBProxyTargetGroup$DBProxyName' => '

The identifier for the RDS proxy associated with this target group.

', 'DBProxyTargetGroup$TargetGroupName' => '

The identifier for the target group. This name must be unique for all target groups owned by your Amazon Web Services account in the specified Amazon Web Services Region.

', 'DBProxyTargetGroup$TargetGroupArn' => '

The Amazon Resource Name (ARN) representing the target group.

', 'DBProxyTargetGroup$Status' => '

The current status of this target group. A status of available means the target group is correctly associated with a database. Other values indicate that you must wait for the target group to be ready, or take some action to resolve an issue.

', 'DBRecommendation$RecommendationId' => '

The unique identifier of the recommendation.

', 'DBRecommendation$TypeId' => '

A value that indicates the type of recommendation. This value determines how the description is rendered.

', 'DBRecommendation$Severity' => '

The severity level of the recommendation. The severity level can help you decide the urgency with which to address the recommendation.

Valid values:

  • high

  • medium

  • low

  • informational

', 'DBRecommendation$ResourceArn' => '

The Amazon Resource Name (ARN) of the RDS resource associated with the recommendation.

', 'DBRecommendation$Status' => '

The current status of the recommendation.

Valid values:

  • active - The recommendations which are ready for you to apply.

  • pending - The applied or scheduled recommendations which are in progress.

  • resolved - The recommendations which are completed.

  • dismissed - The recommendations that you dismissed.

', 'DBRecommendation$Detection' => '

A short description of the issue identified for this recommendation. The description might contain markdown.

', 'DBRecommendation$Recommendation' => '

A short description of the recommendation to resolve an issue. The description might contain markdown.

', 'DBRecommendation$Description' => '

A detailed description of the recommendation. The description might contain markdown.

', 'DBRecommendation$Reason' => '

The reason why this recommendation was created. The information might contain markdown.

', 'DBRecommendation$Category' => '

The category of the recommendation.

Valid values:

  • performance efficiency

  • security

  • reliability

  • cost optimization

  • operational excellence

  • sustainability

', 'DBRecommendation$Source' => '

The Amazon Web Services service that generated the recommendations.

', 'DBRecommendation$TypeDetection' => '

A short description of the recommendation type. The description might contain markdown.

', 'DBRecommendation$TypeRecommendation' => '

A short description that summarizes the recommendation to fix all the issues of the recommendation type. The description might contain markdown.

', 'DBRecommendation$Impact' => '

A short description that explains the possible impact of an issue.

', 'DBRecommendation$AdditionalInfo' => '

Additional information about the recommendation. The information might contain markdown.

', 'DBRecommendationsMessage$Marker' => '

An optional pagination token provided by a previous DBRecommendationsMessage request. This token can be used later in a DescribeDBRecomendations request.

', 'DBSecurityGroup$OwnerId' => '

Provides the Amazon Web Services ID of the owner of a specific DB security group.

', 'DBSecurityGroup$DBSecurityGroupName' => '

Specifies the name of the DB security group.

', 'DBSecurityGroup$DBSecurityGroupDescription' => '

Provides the description of the DB security group.

', 'DBSecurityGroup$VpcId' => '

Provides the VpcId of the DB security group.

', 'DBSecurityGroup$DBSecurityGroupArn' => '

The Amazon Resource Name (ARN) for the DB security group.

', 'DBSecurityGroupMembership$DBSecurityGroupName' => '

The name of the DB security group.

', 'DBSecurityGroupMembership$Status' => '

The status of the DB security group.

', 'DBSecurityGroupMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DBSecurityGroupNameList$member' => NULL, 'DBShardGroup$DBShardGroupResourceId' => '

The Amazon Web Services Region-unique, immutable identifier for the DB shard group.

', 'DBShardGroup$DBClusterIdentifier' => '

The name of the primary DB cluster for the DB shard group.

', 'DBShardGroup$Status' => '

The status of the DB shard group.

', 'DBShardGroup$Endpoint' => '

The connection endpoint for the DB shard group.

', 'DBSnapshot$DBSnapshotIdentifier' => '

Specifies the identifier for the DB snapshot.

', 'DBSnapshot$DBInstanceIdentifier' => '

Specifies the DB instance identifier of the DB instance this DB snapshot was created from.

', 'DBSnapshot$Engine' => '

Specifies the name of the database engine.

', 'DBSnapshot$Status' => '

Specifies the status of this DB snapshot.

', 'DBSnapshot$AvailabilityZone' => '

Specifies the name of the Availability Zone the DB instance was located in at the time of the DB snapshot.

', 'DBSnapshot$VpcId' => '

Provides the VPC ID associated with the DB snapshot.

', 'DBSnapshot$MasterUsername' => '

Provides the master username for the DB snapshot.

', 'DBSnapshot$EngineVersion' => '

Specifies the version of the database engine.

', 'DBSnapshot$LicenseModel' => '

License model information for the restored DB instance.

', 'DBSnapshot$SnapshotType' => '

Provides the type of the DB snapshot.

', 'DBSnapshot$OptionGroupName' => '

Provides the option group name for the DB snapshot.

', 'DBSnapshot$SourceRegion' => '

The Amazon Web Services Region that the DB snapshot was created in or copied from.

', 'DBSnapshot$SourceDBSnapshotIdentifier' => '

The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was copied from. It only has a value in the case of a cross-account or cross-Region copy.

', 'DBSnapshot$StorageType' => '

Specifies the storage type associated with DB snapshot.

', 'DBSnapshot$TdeCredentialArn' => '

The ARN from the key store with which to associate the instance for TDE encryption.

', 'DBSnapshot$KmsKeyId' => '

If Encrypted is true, the Amazon Web Services KMS key identifier for the encrypted DB snapshot.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

', 'DBSnapshot$DBSnapshotArn' => '

The Amazon Resource Name (ARN) for the DB snapshot.

', 'DBSnapshot$Timezone' => '

The time zone of the DB snapshot. In most cases, the Timezone element is empty. Timezone content appears only for snapshots taken from Microsoft SQL Server DB instances that were created with a time zone specified.

', 'DBSnapshot$DbiResourceId' => '

The identifier for the source DB instance, which can\'t be changed and which is unique to an Amazon Web Services Region.

', 'DBSnapshot$DBSystemId' => '

The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database files. The Oracle SID is also the name of your CDB.

', 'DBSnapshotAttribute$AttributeName' => '

The name of the manual DB snapshot attribute.

The attribute named restore refers to the list of Amazon Web Services accounts that have permission to copy or restore the manual DB cluster snapshot. For more information, see the ModifyDBSnapshotAttribute API action.

', 'DBSnapshotAttributesResult$DBSnapshotIdentifier' => '

The identifier of the manual DB snapshot that the attributes apply to.

', 'DBSnapshotMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DBSnapshotTenantDatabase$DBSnapshotIdentifier' => '

The identifier for the snapshot of the DB instance.

', 'DBSnapshotTenantDatabase$DBInstanceIdentifier' => '

The ID for the DB instance that contains the tenant databases.

', 'DBSnapshotTenantDatabase$DbiResourceId' => '

The resource identifier of the source CDB instance. This identifier can\'t be changed and is unique to an Amazon Web Services Region.

', 'DBSnapshotTenantDatabase$EngineName' => '

The name of the database engine.

', 'DBSnapshotTenantDatabase$SnapshotType' => '

The type of DB snapshot.

', 'DBSnapshotTenantDatabase$TenantDBName' => '

The name of the tenant database.

', 'DBSnapshotTenantDatabase$MasterUsername' => '

The master username of the tenant database.

', 'DBSnapshotTenantDatabase$TenantDatabaseResourceId' => '

The resource ID of the tenant database.

', 'DBSnapshotTenantDatabase$CharacterSetName' => '

The name of the character set of a tenant database.

', 'DBSnapshotTenantDatabase$DBSnapshotTenantDatabaseARN' => '

The Amazon Resource Name (ARN) for the snapshot tenant database.

', 'DBSnapshotTenantDatabase$NcharCharacterSetName' => '

The NCHAR character set name of the tenant database.

', 'DBSnapshotTenantDatabasesMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DBSubnetGroup$DBSubnetGroupName' => '

The name of the DB subnet group.

', 'DBSubnetGroup$DBSubnetGroupDescription' => '

Provides the description of the DB subnet group.

', 'DBSubnetGroup$VpcId' => '

Provides the VpcId of the DB subnet group.

', 'DBSubnetGroup$SubnetGroupStatus' => '

Provides the status of the DB subnet group.

', 'DBSubnetGroup$DBSubnetGroupArn' => '

The Amazon Resource Name (ARN) for the DB subnet group.

', 'DBSubnetGroupMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DeleteDBClusterAutomatedBackupMessage$DbClusterResourceId' => '

The identifier for the source DB cluster, which can\'t be changed and which is unique to an Amazon Web Services Region.

', 'DeleteDBClusterEndpointMessage$DBClusterEndpointIdentifier' => '

The identifier associated with the custom endpoint. This parameter is stored as a lowercase string.

', 'DeleteDBClusterMessage$DBClusterIdentifier' => '

The DB cluster identifier for the DB cluster to be deleted. This parameter isn\'t case-sensitive.

Constraints:

  • Must match an existing DBClusterIdentifier.

', 'DeleteDBClusterMessage$FinalDBSnapshotIdentifier' => '

The DB cluster snapshot identifier of the new DB cluster snapshot created when SkipFinalSnapshot is disabled.

If you specify this parameter and also skip the creation of a final DB cluster snapshot with the SkipFinalShapshot parameter, the request results in an error.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter

  • Can\'t end with a hyphen or contain two consecutive hyphens

', 'DeleteDBClusterParameterGroupMessage$DBClusterParameterGroupName' => '

The name of the DB cluster parameter group.

Constraints:

  • Must be the name of an existing DB cluster parameter group.

  • You can\'t delete a default DB cluster parameter group.

  • Can\'t be associated with any DB clusters.

', 'DeleteDBClusterSnapshotMessage$DBClusterSnapshotIdentifier' => '

The identifier of the DB cluster snapshot to delete.

Constraints: Must be the name of an existing DB cluster snapshot in the available state.

', 'DeleteDBInstanceAutomatedBackupMessage$DbiResourceId' => '

The identifier for the source DB instance, which can\'t be changed and which is unique to an Amazon Web Services Region.

', 'DeleteDBInstanceAutomatedBackupMessage$DBInstanceAutomatedBackupsArn' => '

The Amazon Resource Name (ARN) of the automated backups to delete, for example, arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE.

This setting doesn\'t apply to RDS Custom.

', 'DeleteDBInstanceMessage$DBInstanceIdentifier' => '

The DB instance identifier for the DB instance to be deleted. This parameter isn\'t case-sensitive.

Constraints:

  • Must match the name of an existing DB instance.

', 'DeleteDBInstanceMessage$FinalDBSnapshotIdentifier' => '

The DBSnapshotIdentifier of the new DBSnapshot created when the SkipFinalSnapshot parameter is disabled.

If you enable this parameter and also enable SkipFinalShapshot, the command results in an error.

This setting doesn\'t apply to RDS Custom.

Constraints:

  • Must be 1 to 255 letters or numbers.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

  • Can\'t be specified when deleting a read replica.

', 'DeleteDBParameterGroupMessage$DBParameterGroupName' => '

The name of the DB parameter group.

Constraints:

  • Must be the name of an existing DB parameter group

  • You can\'t delete a default DB parameter group

  • Can\'t be associated with any DB instances

', 'DeleteDBSecurityGroupMessage$DBSecurityGroupName' => '

The name of the DB security group to delete.

You can\'t delete the default DB security group.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter

  • Can\'t end with a hyphen or contain two consecutive hyphens

  • Must not be "Default"

', 'DeleteDBSnapshotMessage$DBSnapshotIdentifier' => '

The DB snapshot identifier.

Constraints: Must be the name of an existing DB snapshot in the available state.

', 'DeleteDBSubnetGroupMessage$DBSubnetGroupName' => '

The name of the database subnet group to delete.

You can\'t delete the default subnet group.

Constraints: Must match the name of an existing DBSubnetGroup. Must not be default.

Example: mydbsubnetgroup

', 'DeleteEventSubscriptionMessage$SubscriptionName' => '

The name of the RDS event notification subscription you want to delete.

', 'DeleteOptionGroupMessage$OptionGroupName' => '

The name of the option group to be deleted.

You can\'t delete default option groups.

', 'DeleteTenantDatabaseMessage$DBInstanceIdentifier' => '

The user-supplied identifier for the DB instance that contains the tenant database that you want to delete.

', 'DeleteTenantDatabaseMessage$TenantDBName' => '

The user-supplied name of the tenant database that you want to remove from your DB instance. Amazon RDS deletes the tenant database with this name. This parameter isn’t case-sensitive.

', 'DeleteTenantDatabaseMessage$FinalDBSnapshotIdentifier' => '

The DBSnapshotIdentifier of the new DBSnapshot created when the SkipFinalSnapshot parameter is disabled.

If you enable this parameter and also enable SkipFinalShapshot, the command results in an error.

', 'DescribeBlueGreenDeploymentsRequest$Marker' => '

An optional pagination token provided by a previous DescribeBlueGreenDeployments request. If you specify this parameter, the response only includes records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeBlueGreenDeploymentsResponse$Marker' => '

A pagination token that can be used in a later DescribeBlueGreenDeployments request.

', 'DescribeCertificatesMessage$CertificateIdentifier' => '

The user-supplied certificate identifier. If this parameter is specified, information for only the identified certificate is returned. This parameter isn\'t case-sensitive.

Constraints:

  • Must match an existing CertificateIdentifier.

', 'DescribeCertificatesMessage$Marker' => '

An optional pagination token provided by a previous DescribeCertificates request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBClusterAutomatedBackupsMessage$DbClusterResourceId' => '

The resource ID of the DB cluster that is the source of the automated backup. This parameter isn\'t case-sensitive.

', 'DescribeDBClusterAutomatedBackupsMessage$DBClusterIdentifier' => '

(Optional) The user-supplied DB cluster identifier. If this parameter is specified, it must match the identifier of an existing DB cluster. It returns information from the specific DB cluster\'s automated backup. This parameter isn\'t case-sensitive.

', 'DescribeDBClusterAutomatedBackupsMessage$Marker' => '

The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.

', 'DescribeDBClusterBacktracksMessage$DBClusterIdentifier' => '

The DB cluster identifier of the DB cluster to be described. This parameter is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 alphanumeric characters or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

Example: my-cluster1

', 'DescribeDBClusterBacktracksMessage$BacktrackIdentifier' => '

If specified, this value is the backtrack identifier of the backtrack to be described.

Constraints:

Example: 123e4567-e89b-12d3-a456-426655440000

', 'DescribeDBClusterBacktracksMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBClusterBacktracks request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBClusterEndpointsMessage$DBClusterIdentifier' => '

The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

', 'DescribeDBClusterEndpointsMessage$DBClusterEndpointIdentifier' => '

The identifier of the endpoint to describe. This parameter is stored as a lowercase string.

', 'DescribeDBClusterEndpointsMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBClusterEndpoints request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBClusterParameterGroupsMessage$DBClusterParameterGroupName' => '

The name of a specific DB cluster parameter group to return details for.

Constraints:

  • If supplied, must match the name of an existing DBClusterParameterGroup.

', 'DescribeDBClusterParameterGroupsMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBClusterParameterGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBClusterParametersMessage$DBClusterParameterGroupName' => '

The name of a specific DB cluster parameter group to return parameter details for.

Constraints:

  • If supplied, must match the name of an existing DBClusterParameterGroup.

', 'DescribeDBClusterParametersMessage$Source' => '

A specific source to return parameters for.

Valid Values:

  • engine-default

  • system

  • user

', 'DescribeDBClusterParametersMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBClusterParameters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBClusterSnapshotAttributesMessage$DBClusterSnapshotIdentifier' => '

The identifier for the DB cluster snapshot to describe the attributes for.

', 'DescribeDBClusterSnapshotsMessage$DBClusterIdentifier' => '

The ID of the DB cluster to retrieve the list of DB cluster snapshots for. This parameter can\'t be used in conjunction with the DBClusterSnapshotIdentifier parameter. This parameter isn\'t case-sensitive.

Constraints:

  • If supplied, must match the identifier of an existing DBCluster.

', 'DescribeDBClusterSnapshotsMessage$DBClusterSnapshotIdentifier' => '

A specific DB cluster snapshot identifier to describe. This parameter can\'t be used in conjunction with the DBClusterIdentifier parameter. This value is stored as a lowercase string.

Constraints:

  • If supplied, must match the identifier of an existing DBClusterSnapshot.

  • If this identifier is for an automated snapshot, the SnapshotType parameter must also be specified.

', 'DescribeDBClusterSnapshotsMessage$SnapshotType' => '

The type of DB cluster snapshots to be returned. You can specify one of the following values:

  • automated - Return all DB cluster snapshots that have been automatically taken by Amazon RDS for my Amazon Web Services account.

  • manual - Return all DB cluster snapshots that have been taken by my Amazon Web Services account.

  • shared - Return all manual DB cluster snapshots that have been shared to my Amazon Web Services account.

  • public - Return all DB cluster snapshots that have been marked as public.

If you don\'t specify a SnapshotType value, then both automated and manual DB cluster snapshots are returned. You can include shared DB cluster snapshots with these results by enabling the IncludeShared parameter. You can include public DB cluster snapshots with these results by enabling the IncludePublic parameter.

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.

', 'DescribeDBClusterSnapshotsMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBClusterSnapshots request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBClusterSnapshotsMessage$DbClusterResourceId' => '

A specific DB cluster resource ID to describe.

', 'DescribeDBClustersMessage$DBClusterIdentifier' => '

The user-supplied DB cluster identifier or the Amazon Resource Name (ARN) of the DB cluster. If this parameter is specified, information for only the specific DB cluster is returned. This parameter isn\'t case-sensitive.

Constraints:

  • If supplied, must match an existing DB cluster identifier.

', 'DescribeDBClustersMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBClusters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBEngineVersionsMessage$Engine' => '

The database engine to return version details for.

Valid Values:

  • aurora-mysql

  • aurora-postgresql

  • custom-oracle-ee

  • custom-oracle-ee-cdb

  • custom-oracle-se2

  • custom-oracle-se2-cdb

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

', 'DescribeDBEngineVersionsMessage$EngineVersion' => '

A specific database engine version to return details for.

Example: 5.1.49

', 'DescribeDBEngineVersionsMessage$DBParameterGroupFamily' => '

The name of a specific DB parameter group family to return details for.

Constraints:

  • If supplied, must match an existing DB parameter group family.

', 'DescribeDBEngineVersionsMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBInstanceAutomatedBackupsMessage$DbiResourceId' => '

The resource ID of the DB instance that is the source of the automated backup. This parameter isn\'t case-sensitive.

', 'DescribeDBInstanceAutomatedBackupsMessage$DBInstanceIdentifier' => '

(Optional) The user-supplied instance identifier. If this parameter is specified, it must match the identifier of an existing DB instance. It returns information from the specific DB instance\'s automated backup. This parameter isn\'t case-sensitive.

', 'DescribeDBInstanceAutomatedBackupsMessage$Marker' => '

The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.

', 'DescribeDBInstanceAutomatedBackupsMessage$DBInstanceAutomatedBackupsArn' => '

The Amazon Resource Name (ARN) of the replicated automated backups, for example, arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE.

This setting doesn\'t apply to RDS Custom.

', 'DescribeDBInstancesMessage$DBInstanceIdentifier' => '

The user-supplied instance identifier or the Amazon Resource Name (ARN) of the DB instance. If this parameter is specified, information from only the specific DB instance is returned. This parameter isn\'t case-sensitive.

Constraints:

  • If supplied, must match the identifier of an existing DB instance.

', 'DescribeDBInstancesMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBInstances request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBLogFilesDetails$LogFileName' => '

The name of the log file for the specified DB instance.

', 'DescribeDBLogFilesMessage$DBInstanceIdentifier' => '

The customer-assigned name of the DB instance that contains the log files you want to list.

Constraints:

  • Must match the identifier of an existing DBInstance.

', 'DescribeDBLogFilesMessage$FilenameContains' => '

Filters the available log files for log file names that contain the specified string.

', 'DescribeDBLogFilesMessage$Marker' => '

The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.

', 'DescribeDBLogFilesResponse$Marker' => '

A pagination token that can be used in a later DescribeDBLogFiles request.

', 'DescribeDBMajorEngineVersionsResponse$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBParameterGroupsMessage$DBParameterGroupName' => '

The name of a specific DB parameter group to return details for.

Constraints:

  • If supplied, must match the name of an existing DBClusterParameterGroup.

', 'DescribeDBParameterGroupsMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBParameterGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBParametersMessage$DBParameterGroupName' => '

The name of a specific DB parameter group to return details for.

Constraints:

  • If supplied, must match the name of an existing DBParameterGroup.

', 'DescribeDBParametersMessage$Source' => '

The parameter types to return.

Default: All parameter types returned

Valid Values: user | system | engine-default

', 'DescribeDBParametersMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBParameters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBProxiesRequest$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBProxiesResponse$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBProxyEndpointsRequest$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBProxyEndpointsResponse$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBProxyTargetGroupsRequest$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBProxyTargetGroupsResponse$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBProxyTargetsRequest$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBProxyTargetsResponse$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBRecommendationsMessage$Locale' => '

The language that you choose to return the list of recommendations.

Valid values:

  • en

  • en_UK

  • de

  • es

  • fr

  • id

  • it

  • ja

  • ko

  • pt_BR

  • zh_TW

  • zh_CN

', 'DescribeDBRecommendationsMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBRecommendations request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBSecurityGroupsMessage$DBSecurityGroupName' => '

The name of the DB security group to return details for.

', 'DescribeDBSecurityGroupsMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBSecurityGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBShardGroupsMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBShardGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBShardGroupsResponse$Marker' => '

A pagination token that can be used in a later DescribeDBClusters request.

', 'DescribeDBSnapshotAttributesMessage$DBSnapshotIdentifier' => '

The identifier for the DB snapshot to describe the attributes for.

', 'DescribeDBSnapshotTenantDatabasesMessage$DBInstanceIdentifier' => '

The ID of the DB instance used to create the DB snapshots. This parameter isn\'t case-sensitive.

Constraints:

  • If supplied, must match the identifier of an existing DBInstance.

', 'DescribeDBSnapshotTenantDatabasesMessage$DBSnapshotIdentifier' => '

The ID of a DB snapshot that contains the tenant databases to describe. This value is stored as a lowercase string.

Constraints:

  • If you specify this parameter, the value must match the ID of an existing DB snapshot.

  • If you specify an automatic snapshot, you must also specify SnapshotType.

', 'DescribeDBSnapshotTenantDatabasesMessage$SnapshotType' => '

The type of DB snapshots to be returned. You can specify one of the following values:

  • automated – All DB snapshots that have been automatically taken by Amazon RDS for my Amazon Web Services account.

  • manual – All DB snapshots that have been taken by my Amazon Web Services account.

  • shared – All manual DB snapshots that have been shared to my Amazon Web Services account.

  • public – All DB snapshots that have been marked as public.

  • awsbackup – All DB snapshots managed by the Amazon Web Services Backup service.

', 'DescribeDBSnapshotTenantDatabasesMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBSnapshotTenantDatabases request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBSnapshotTenantDatabasesMessage$DbiResourceId' => '

A specific DB resource identifier to describe.

', 'DescribeDBSnapshotsMessage$DBInstanceIdentifier' => '

The ID of the DB instance to retrieve the list of DB snapshots for. This parameter isn\'t case-sensitive.

Constraints:

  • If supplied, must match the identifier of an existing DBInstance.

', 'DescribeDBSnapshotsMessage$DBSnapshotIdentifier' => '

A specific DB snapshot identifier to describe. This value is stored as a lowercase string.

Constraints:

  • If supplied, must match the identifier of an existing DBSnapshot.

  • If this identifier is for an automated snapshot, the SnapshotType parameter must also be specified.

', 'DescribeDBSnapshotsMessage$SnapshotType' => '

The type of snapshots to be returned. You can specify one of the following values:

  • automated - Return all DB snapshots that have been automatically taken by Amazon RDS for my Amazon Web Services account.

  • manual - Return all DB snapshots that have been taken by my Amazon Web Services account.

  • shared - Return all manual DB snapshots that have been shared to my Amazon Web Services account.

  • public - Return all DB snapshots that have been marked as public.

  • awsbackup - Return the DB snapshots managed by the Amazon Web Services Backup service.

    For information about Amazon Web Services Backup, see the Amazon Web Services Backup Developer Guide.

    The awsbackup type does not apply to Aurora.

If you don\'t specify a SnapshotType value, then both automated and manual snapshots are returned. Shared and public DB snapshots are not included in the returned results by default. You can include shared snapshots with these results by enabling the IncludeShared parameter. You can include public snapshots with these results by enabling the IncludePublic parameter.

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.

', 'DescribeDBSnapshotsMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBSnapshots request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeDBSnapshotsMessage$DbiResourceId' => '

A specific DB resource ID to describe.

', 'DescribeDBSubnetGroupsMessage$DBSubnetGroupName' => '

The name of the DB subnet group to return details for.

', 'DescribeDBSubnetGroupsMessage$Marker' => '

An optional pagination token provided by a previous DescribeDBSubnetGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeEngineDefaultClusterParametersMessage$DBParameterGroupFamily' => '

The name of the DB cluster parameter group family to return engine parameter information for.

', 'DescribeEngineDefaultClusterParametersMessage$Marker' => '

An optional pagination token provided by a previous DescribeEngineDefaultClusterParameters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeEngineDefaultParametersMessage$DBParameterGroupFamily' => '

The name of the DB parameter group family.

Valid Values:

  • aurora-mysql5.7

  • aurora-mysql8.0

  • aurora-postgresql10

  • aurora-postgresql11

  • aurora-postgresql12

  • aurora-postgresql13

  • aurora-postgresql14

  • custom-oracle-ee-19

  • custom-oracle-ee-cdb-19

  • db2-ae

  • db2-se

  • mariadb10.2

  • mariadb10.3

  • mariadb10.4

  • mariadb10.5

  • mariadb10.6

  • mysql5.7

  • mysql8.0

  • oracle-ee-19

  • oracle-ee-cdb-19

  • oracle-ee-cdb-21

  • oracle-se2-19

  • oracle-se2-cdb-19

  • oracle-se2-cdb-21

  • postgres10

  • postgres11

  • postgres12

  • postgres13

  • postgres14

  • sqlserver-ee-11.0

  • sqlserver-ee-12.0

  • sqlserver-ee-13.0

  • sqlserver-ee-14.0

  • sqlserver-ee-15.0

  • sqlserver-ex-11.0

  • sqlserver-ex-12.0

  • sqlserver-ex-13.0

  • sqlserver-ex-14.0

  • sqlserver-ex-15.0

  • sqlserver-se-11.0

  • sqlserver-se-12.0

  • sqlserver-se-13.0

  • sqlserver-se-14.0

  • sqlserver-se-15.0

  • sqlserver-web-11.0

  • sqlserver-web-12.0

  • sqlserver-web-13.0

  • sqlserver-web-14.0

  • sqlserver-web-15.0

', 'DescribeEngineDefaultParametersMessage$Marker' => '

An optional pagination token provided by a previous DescribeEngineDefaultParameters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeEventCategoriesMessage$SourceType' => '

The type of source that is generating the events. For RDS Proxy events, specify db-proxy.

Valid Values: db-instance | db-cluster | db-parameter-group | db-security-group | db-snapshot | db-cluster-snapshot | db-proxy

', 'DescribeEventSubscriptionsMessage$SubscriptionName' => '

The name of the RDS event notification subscription you want to describe.

', 'DescribeEventSubscriptionsMessage$Marker' => '

An optional pagination token provided by a previous DescribeOrderableDBInstanceOptions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords .

', 'DescribeEventsMessage$SourceIdentifier' => '

The identifier of the event source for which events are returned. If not specified, then all sources are included in the response.

Constraints:

  • If SourceIdentifier is supplied, SourceType must also be provided.

  • If the source type is a DB instance, a DBInstanceIdentifier value must be supplied.

  • If the source type is a DB cluster, a DBClusterIdentifier value must be supplied.

  • If the source type is a DB parameter group, a DBParameterGroupName value must be supplied.

  • If the source type is a DB security group, a DBSecurityGroupName value must be supplied.

  • If the source type is a DB snapshot, a DBSnapshotIdentifier value must be supplied.

  • If the source type is a DB cluster snapshot, a DBClusterSnapshotIdentifier value must be supplied.

  • If the source type is an RDS Proxy, a DBProxyName value must be supplied.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

', 'DescribeEventsMessage$Marker' => '

An optional pagination token provided by a previous DescribeEvents request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeExportTasksMessage$ExportTaskIdentifier' => '

The identifier of the snapshot or cluster export task to be described.

', 'DescribeExportTasksMessage$SourceArn' => '

The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon S3.

', 'DescribeExportTasksMessage$Marker' => '

An optional pagination token provided by a previous DescribeExportTasks request. If you specify this parameter, the response includes only records beyond the marker, up to the value specified by the MaxRecords parameter.

', 'DescribeGlobalClustersMessage$Marker' => '

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.

', 'DescribeOptionGroupOptionsMessage$EngineName' => '

The name of the engine to describe options for.

Valid Values:

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

', 'DescribeOptionGroupOptionsMessage$MajorEngineVersion' => '

If specified, filters the results to include only options for the specified major engine version.

', 'DescribeOptionGroupOptionsMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeOptionGroupsMessage$OptionGroupName' => '

The name of the option group to describe. Can\'t be supplied together with EngineName or MajorEngineVersion.

', 'DescribeOptionGroupsMessage$Marker' => '

An optional pagination token provided by a previous DescribeOptionGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeOptionGroupsMessage$EngineName' => '

A filter to only include option groups associated with this database engine.

Valid Values:

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

', 'DescribeOptionGroupsMessage$MajorEngineVersion' => '

Filters the list of option groups to only include groups associated with a specific database engine version. If specified, then EngineName must also be specified.

', 'DescribeOrderableDBInstanceOptionsMessage$Engine' => '

The name of the database engine to describe DB instance options for.

Valid Values:

  • aurora-mysql

  • aurora-postgresql

  • custom-oracle-ee

  • custom-oracle-ee-cdb

  • custom-oracle-se2

  • custom-oracle-se2-cdb

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

', 'DescribeOrderableDBInstanceOptionsMessage$EngineVersion' => '

A filter to include only the available options for the specified engine version.

', 'DescribeOrderableDBInstanceOptionsMessage$DBInstanceClass' => '

A filter to include only the available options for the specified DB instance class.

', 'DescribeOrderableDBInstanceOptionsMessage$LicenseModel' => '

A filter to include only the available options for the specified license model.

RDS Custom supports only the BYOL licensing model.

', 'DescribeOrderableDBInstanceOptionsMessage$AvailabilityZoneGroup' => '

The Availability Zone group associated with a Local Zone. Specify this parameter to retrieve available options for the Local Zones in the group.

Omit this parameter to show the available options in the specified Amazon Web Services Region.

This setting doesn\'t apply to RDS Custom DB instances.

', 'DescribeOrderableDBInstanceOptionsMessage$Marker' => '

An optional pagination token provided by a previous DescribeOrderableDBInstanceOptions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribePendingMaintenanceActionsMessage$ResourceIdentifier' => '

The ARN of a resource to return pending maintenance actions for.

', 'DescribePendingMaintenanceActionsMessage$Marker' => '

An optional pagination token provided by a previous DescribePendingMaintenanceActions request. If this parameter is specified, the response includes only records beyond the marker, up to a number of records specified by MaxRecords.

', 'DescribeReservedDBInstancesMessage$ReservedDBInstanceId' => '

The reserved DB instance identifier filter value. Specify this parameter to show only the reservation that matches the specified reservation ID.

', 'DescribeReservedDBInstancesMessage$ReservedDBInstancesOfferingId' => '

The offering identifier filter value. Specify this parameter to show only purchased reservations matching the specified offering identifier.

', 'DescribeReservedDBInstancesMessage$DBInstanceClass' => '

The DB instance class filter value. Specify this parameter to show only those reservations matching the specified DB instances class.

', 'DescribeReservedDBInstancesMessage$Duration' => '

The duration filter value, specified in years or seconds. Specify this parameter to show only reservations for this duration.

Valid Values: 1 | 3 | 31536000 | 94608000

', 'DescribeReservedDBInstancesMessage$ProductDescription' => '

The product description filter value. Specify this parameter to show only those reservations matching the specified product description.

', 'DescribeReservedDBInstancesMessage$OfferingType' => '

The offering type filter value. Specify this parameter to show only the available offerings matching the specified offering type.

Valid Values: "Partial Upfront" | "All Upfront" | "No Upfront"

', 'DescribeReservedDBInstancesMessage$LeaseId' => '

The lease identifier filter value. Specify this parameter to show only the reservation that matches the specified lease ID.

Amazon Web Services Support might request the lease ID for an issue related to a reserved DB instance.

', 'DescribeReservedDBInstancesMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeReservedDBInstancesOfferingsMessage$ReservedDBInstancesOfferingId' => '

The offering identifier filter value. Specify this parameter to show only the available offering that matches the specified reservation identifier.

Example: 438012d3-4052-4cc7-b2e3-8d3372e0e706

', 'DescribeReservedDBInstancesOfferingsMessage$DBInstanceClass' => '

The DB instance class filter value. Specify this parameter to show only the available offerings matching the specified DB instance class.

', 'DescribeReservedDBInstancesOfferingsMessage$Duration' => '

Duration filter value, specified in years or seconds. Specify this parameter to show only reservations for this duration.

Valid Values: 1 | 3 | 31536000 | 94608000

', 'DescribeReservedDBInstancesOfferingsMessage$ProductDescription' => '

Product description filter value. Specify this parameter to show only the available offerings that contain the specified product description.

The results show offerings that partially match the filter value.

', 'DescribeReservedDBInstancesOfferingsMessage$OfferingType' => '

The offering type filter value. Specify this parameter to show only the available offerings matching the specified offering type.

Valid Values: "Partial Upfront" | "All Upfront" | "No Upfront"

', 'DescribeReservedDBInstancesOfferingsMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeSourceRegionsMessage$RegionName' => '

The source Amazon Web Services Region name. For example, us-east-1.

Constraints:

  • Must specify a valid Amazon Web Services Region name.

', 'DescribeSourceRegionsMessage$Marker' => '

An optional pagination token provided by a previous DescribeSourceRegions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeTenantDatabasesMessage$DBInstanceIdentifier' => '

The user-supplied DB instance identifier, which must match the identifier of an existing instance owned by the Amazon Web Services account. This parameter isn\'t case-sensitive.

', 'DescribeTenantDatabasesMessage$TenantDBName' => '

The user-supplied tenant database name, which must match the name of an existing tenant database on the specified DB instance owned by your Amazon Web Services account. This parameter isn’t case-sensitive.

', 'DescribeTenantDatabasesMessage$Marker' => '

An optional pagination token provided by a previous DescribeTenantDatabases request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'DescribeValidDBInstanceModificationsMessage$DBInstanceIdentifier' => '

The customer identifier or the ARN of your DB instance.

', 'DisableHttpEndpointRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the DB cluster.

', 'DisableHttpEndpointResponse$ResourceArn' => '

The ARN of the DB cluster.

', 'DocLink$Text' => '

The text with the link to documentation for the recommendation.

', 'DocLink$Url' => '

The URL for the documentation for the recommendation.

', 'DomainMembership$Domain' => '

The identifier of the Active Directory Domain.

', 'DomainMembership$Status' => '

The status of the Active Directory Domain membership for the DB instance or cluster. Values include joined, pending-join, failed, and so on.

', 'DomainMembership$FQDN' => '

The fully qualified domain name (FQDN) of the Active Directory Domain.

', 'DomainMembership$IAMRoleName' => '

The name of the IAM role used when making API calls to the Directory Service.

', 'DomainMembership$OU' => '

The Active Directory organizational unit for the DB instance or cluster.

', 'DomainMembership$AuthSecretArn' => '

The ARN for the Secrets Manager secret with the credentials for the user that\'s a member of the domain.

', 'DownloadDBLogFilePortionDetails$Marker' => '

A pagination token that can be used in a later DownloadDBLogFilePortion request.

', 'DownloadDBLogFilePortionMessage$DBInstanceIdentifier' => '

The customer-assigned name of the DB instance that contains the log files you want to list.

Constraints:

  • Must match the identifier of an existing DBInstance.

', 'DownloadDBLogFilePortionMessage$LogFileName' => '

The name of the log file to be downloaded.

', 'DownloadDBLogFilePortionMessage$Marker' => '

The pagination token provided in the previous request or "0". If the Marker parameter is specified the response includes only records beyond the marker until the end of the file or up to NumberOfLines.

', 'EC2SecurityGroup$Status' => '

Provides the status of the EC2 security group. Status can be "authorizing", "authorized", "revoking", and "revoked".

', 'EC2SecurityGroup$EC2SecurityGroupName' => '

Specifies the name of the EC2 security group.

', 'EC2SecurityGroup$EC2SecurityGroupId' => '

Specifies the id of the EC2 security group.

', 'EC2SecurityGroup$EC2SecurityGroupOwnerId' => '

Specifies the Amazon Web Services ID of the owner of the EC2 security group specified in the EC2SecurityGroupName field.

', 'EnableHttpEndpointRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the DB cluster.

', 'EnableHttpEndpointResponse$ResourceArn' => '

The ARN of the DB cluster.

', 'EncryptionContextMap$key' => NULL, 'EncryptionContextMap$value' => NULL, 'Endpoint$Address' => '

Specifies the DNS address of the DB instance.

', 'Endpoint$HostedZoneId' => '

Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.

', 'EngineDefaults$DBParameterGroupFamily' => '

Specifies the name of the DB parameter group family that the engine default parameters apply to.

', 'EngineDefaults$Marker' => '

An optional pagination token provided by a previous EngineDefaults request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords .

', 'EngineModeList$member' => NULL, 'Event$SourceIdentifier' => '

Provides the identifier for the source of the event.

', 'Event$Message' => '

Provides the text of this event.

', 'Event$SourceArn' => '

The Amazon Resource Name (ARN) for the event.

', 'EventCategoriesList$member' => NULL, 'EventCategoriesMap$SourceType' => '

The source type that the returned categories belong to

', 'EventSubscription$CustomerAwsId' => '

The Amazon Web Services customer account associated with the RDS event notification subscription.

', 'EventSubscription$CustSubscriptionId' => '

The RDS event notification subscription Id.

', 'EventSubscription$SnsTopicArn' => '

The topic ARN of the RDS event notification subscription.

', 'EventSubscription$Status' => '

The status of the RDS event notification subscription.

Constraints:

Can be one of the following: creating | modifying | deleting | active | no-permission | topic-not-exist

The status "no-permission" indicates that RDS no longer has permission to post to the SNS topic. The status "topic-not-exist" indicates that the topic was deleted after the subscription was created.

', 'EventSubscription$SubscriptionCreationTime' => '

The time the RDS event notification subscription was created.

', 'EventSubscription$SourceType' => '

The source type for the RDS event notification subscription.

', 'EventSubscription$EventSubscriptionArn' => '

The Amazon Resource Name (ARN) for the event subscription.

', 'EventSubscriptionsMessage$Marker' => '

An optional pagination token provided by a previous DescribeOrderableDBInstanceOptions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'EventsMessage$Marker' => '

An optional pagination token provided by a previous Events request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'ExportTask$ExportTaskIdentifier' => '

A unique identifier for the snapshot or cluster export task. This ID isn\'t an identifier for the Amazon S3 bucket where the data is exported.

', 'ExportTask$SourceArn' => '

The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon S3.

', 'ExportTask$S3Bucket' => '

The Amazon S3 bucket where the snapshot or cluster is exported to.

', 'ExportTask$S3Prefix' => '

The Amazon S3 bucket prefix that is the file name and path of the exported data.

', 'ExportTask$IamRoleArn' => '

The name of the IAM role that is used to write to Amazon S3 when exporting a snapshot or cluster.

', 'ExportTask$KmsKeyId' => '

The key identifier of the Amazon Web Services KMS key that is used to encrypt the data when it\'s exported to Amazon S3. The KMS key identifier is its key ARN, key ID, alias ARN, or alias name. The IAM role used for the export must have encryption and decryption permissions to use this KMS key.

', 'ExportTask$Status' => '

The progress status of the export task. The status can be one of the following:

  • CANCELED

  • CANCELING

  • COMPLETE

  • FAILED

  • IN_PROGRESS

  • STARTING

', 'ExportTask$FailureCause' => '

The reason the export failed, if it failed.

', 'ExportTask$WarningMessage' => '

A warning about the snapshot or cluster export task.

', 'ExportTasksMessage$Marker' => '

A pagination token that can be used in a later DescribeExportTasks request. A marker is used for pagination to identify the location to begin output for the next response of DescribeExportTasks.

', 'FailoverDBClusterMessage$DBClusterIdentifier' => '

The identifier of the DB cluster to force a failover for. This parameter isn\'t case-sensitive.

Constraints:

  • Must match the identifier of an existing DB cluster.

', 'FailoverDBClusterMessage$TargetDBInstanceIdentifier' => '

The name of the DB instance to promote to the primary DB instance.

Specify the DB instance identifier for an Aurora Replica or a Multi-AZ readable standby in the DB cluster, for example mydbcluster-replica1.

This setting isn\'t supported for RDS for MySQL Multi-AZ DB clusters.

', 'FailoverState$FromDbClusterArn' => '

The Amazon Resource Name (ARN) of the Aurora DB cluster that is currently being demoted, and which is associated with this state.

', 'FailoverState$ToDbClusterArn' => '

The Amazon Resource Name (ARN) of the Aurora DB cluster that is currently being promoted, and which is associated with this state.

', 'FeatureNameList$member' => NULL, 'Filter$Name' => '

The name of the filter. Filter names are case-sensitive.

', 'FilterValueList$member' => NULL, 'GlobalCluster$GlobalClusterResourceId' => '

The Amazon Web Services Region-unique, immutable identifier for the global database cluster. This identifier is found in Amazon Web Services CloudTrail log entries whenever the Amazon Web Services KMS key for the DB cluster is accessed.

', 'GlobalCluster$GlobalClusterArn' => '

The Amazon Resource Name (ARN) for the global database cluster.

', 'GlobalCluster$Status' => '

Specifies the current state of this global database cluster.

', 'GlobalCluster$Engine' => '

The Aurora database engine used by the global database cluster.

', 'GlobalCluster$EngineVersion' => '

Indicates the database engine version.

', 'GlobalCluster$EngineLifecycleSupport' => '

The lifecycle type for the global cluster.

For more information, see CreateGlobalCluster.

', 'GlobalCluster$DatabaseName' => '

The default database name within the new global database cluster.

', 'GlobalCluster$Endpoint' => '

The writer endpoint for the new global database cluster. This endpoint always points to the writer DB instance in the current primary cluster.

', 'GlobalClusterMember$DBClusterArn' => '

The Amazon Resource Name (ARN) for each Aurora DB cluster in the global cluster.

', 'GlobalClustersMessage$Marker' => '

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.

', 'IPRange$Status' => '

The status of the IP range. Status can be "authorizing", "authorized", "revoking", and "revoked".

', 'IPRange$CIDRIP' => '

The IP range.

', 'Integration$KMSKeyId' => '

The Amazon Web Services Key Management System (Amazon Web Services KMS) key identifier for the key used to to encrypt the integration.

', 'IntegrationError$ErrorCode' => '

The error code associated with the integration.

', 'IntegrationError$ErrorMessage' => '

A message explaining the error.

', 'KeyList$member' => NULL, 'ListTagsForResourceMessage$ResourceName' => '

The Amazon RDS resource with tags to be listed. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see Constructing an ARN for Amazon RDS in the Amazon RDS User Guide.

', 'LogTypeList$member' => NULL, 'MasterUserSecret$SecretArn' => '

The Amazon Resource Name (ARN) of the secret.

', 'MasterUserSecret$SecretStatus' => '

The status of the secret.

The possible status values include the following:

  • creating - The secret is being created.

  • active - The secret is available for normal use and rotation.

  • rotating - The secret is being rotated.

  • impaired - The secret can be used to access database credentials, but it can\'t be rotated. A secret might have this status if, for example, permissions are changed so that RDS can no longer access either the secret or the KMS key for the secret.

    When a secret has this status, you can correct the condition that caused the status. Alternatively, modify the DB instance to turn off automatic management of database credentials, and then modify the DB instance again to turn on automatic management of database credentials.

', 'MasterUserSecret$KmsKeyId' => '

The Amazon Web Services KMS key identifier that is used to encrypt the secret.

', 'Metric$Name' => '

The name of a metric.

', 'Metric$StatisticsDetails' => '

The details of different statistics for a metric. The description might contain markdown.

', 'MetricReference$Name' => '

The name of the metric reference.

', 'MinimumEngineVersionPerAllowedValue$AllowedValue' => '

The allowed value for an option setting.

', 'MinimumEngineVersionPerAllowedValue$MinimumEngineVersion' => '

The minimum DB engine version required for the allowed value.

', 'ModifyActivityStreamRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the RDS for Oracle or Microsoft SQL Server DB instance. For example, arn:aws:rds:us-east-1:12345667890:db:my-orcl-db.

', 'ModifyActivityStreamResponse$KmsKeyId' => '

The Amazon Web Services KMS key identifier for encryption of messages in the database activity stream.

', 'ModifyActivityStreamResponse$KinesisStreamName' => '

The name of the Amazon Kinesis data stream to be used for the database activity stream.

', 'ModifyCertificatesMessage$CertificateIdentifier' => '

The new default certificate identifier to override the current one with.

To determine the valid values, use the describe-certificates CLI command or the DescribeCertificates API operation.

', 'ModifyCurrentDBClusterCapacityMessage$DBClusterIdentifier' => '

The DB cluster identifier for the cluster being modified. This parameter isn\'t case-sensitive.

Constraints:

  • Must match the identifier of an existing DB cluster.

', 'ModifyCurrentDBClusterCapacityMessage$TimeoutAction' => '

The action to take when the timeout is reached, either ForceApplyCapacityChange or RollbackCapacityChange.

ForceApplyCapacityChange, the default, sets the capacity to the specified value as soon as possible.

RollbackCapacityChange ignores the capacity change if a scaling point isn\'t found in the timeout period.

', 'ModifyDBClusterEndpointMessage$DBClusterEndpointIdentifier' => '

The identifier of the endpoint to modify. This parameter is stored as a lowercase string.

', 'ModifyDBClusterEndpointMessage$EndpointType' => '

The type of the endpoint. One of: READER, WRITER, ANY.

', 'ModifyDBClusterMessage$DBClusterIdentifier' => '

The DB cluster identifier for the cluster being modified. This parameter isn\'t case-sensitive.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • Must match the identifier of an existing DB cluster.

', 'ModifyDBClusterMessage$NewDBClusterIdentifier' => '

The new DB cluster identifier for the DB cluster when renaming a DB cluster. This value is stored as a lowercase string.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Constraints:

  • 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

', 'ModifyDBClusterMessage$DBClusterParameterGroupName' => '

The name of the DB cluster parameter group to use for the DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'ModifyDBClusterMessage$OptionGroupName' => '

The option group to associate the DB cluster with.

DB clusters are associated with a default option group that can\'t be modified.

', 'ModifyDBClusterMessage$PreferredBackupWindow' => '

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 Amazon Web Services Region. To view the time blocks available, see Backup window in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

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.

', 'ModifyDBClusterMessage$PreferredMaintenanceWindow' => '

The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

The default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region, occurring on a random day of the week. To see the time blocks available, see Adjusting the Preferred DB Cluster Maintenance Window in the Amazon Aurora User Guide.

Constraints:

  • Must be in the format ddd:hh24:mi-ddd:hh24:mi.

  • Days must be one of Mon | Tue | Wed | Thu | Fri | Sat | Sun.

  • Must be in Universal Coordinated Time (UTC).

  • Must be at least 30 minutes.

', 'ModifyDBClusterMessage$EngineVersion' => '

The version number of the database engine to which you want to upgrade. Changing this parameter results in an outage. The change is applied during the next maintenance window unless ApplyImmediately is enabled.

If the cluster that you\'re modifying has one or more read replicas, all replicas must be running an engine version that\'s the same or later than the version you specify.

To list all of the available engine versions for Aurora MySQL, use the following command:

aws rds describe-db-engine-versions --engine aurora-mysql --query "DBEngineVersions[].EngineVersion"

To list all of the available engine versions for Aurora PostgreSQL, use the following command:

aws rds describe-db-engine-versions --engine aurora-postgresql --query "DBEngineVersions[].EngineVersion"

To list all of the available engine versions for RDS for MySQL, use the following command:

aws rds describe-db-engine-versions --engine mysql --query "DBEngineVersions[].EngineVersion"

To list all of the available engine versions for RDS for PostgreSQL, use the following command:

aws rds describe-db-engine-versions --engine postgres --query "DBEngineVersions[].EngineVersion"

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'ModifyDBClusterMessage$DBInstanceParameterGroupName' => '

The name of the DB parameter group to apply to all instances of the DB cluster.

When you apply a parameter group using the DBInstanceParameterGroupName parameter, the DB cluster isn\'t rebooted automatically. Also, parameter changes are applied immediately rather than during the next maintenance window.

Valid for Cluster Type: Aurora DB clusters only

Default: The existing name setting

Constraints:

  • The DB parameter group must be in the same DB parameter group family as this DB cluster.

  • The DBInstanceParameterGroupName parameter is valid in combination with the AllowMajorVersionUpgrade parameter for a major version upgrade only.

', 'ModifyDBClusterMessage$Domain' => '

The Active Directory directory ID to move the DB cluster to. Specify none to remove the cluster from its current domain. The domain must be created prior to this operation.

For more information, see Kerberos Authentication in the Amazon Aurora User Guide.

Valid for Cluster Type: Aurora DB clusters only

', 'ModifyDBClusterMessage$DomainIAMRoleName' => '

The name of the IAM role to use when making API calls to the Directory Service.

Valid for Cluster Type: Aurora DB clusters only

', 'ModifyDBClusterMessage$DBClusterInstanceClass' => '

The compute and memory capacity of each DB instance in the Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines.

For the full list of DB instance classes and availability for your engine, see DB Instance Class in the Amazon RDS User Guide.

Valid for Cluster Type: Multi-AZ DB clusters only

', 'ModifyDBClusterMessage$StorageType' => '

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.

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 | io2 | gp3

Default:

  • Aurora DB clusters - aurora

  • Multi-AZ DB clusters - io1

', 'ModifyDBClusterMessage$MonitoringRoleArn' => '

The Amazon Resource Name (ARN) for the IAM role that permits RDS to send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example is arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, see To create an IAM role for Amazon RDS Enhanced Monitoring in the Amazon RDS User Guide.

If MonitoringInterval is set to a value other than 0, supply a MonitoringRoleArn value.

Valid for Cluster Type: Multi-AZ DB clusters only

', 'ModifyDBClusterMessage$PerformanceInsightsKMSKeyId' => '

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you don\'t specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'ModifyDBClusterMessage$MasterUserSecretKmsKeyId' => '

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if both of the following conditions are met:

  • The DB cluster doesn\'t manage the master user password in Amazon Web Services Secrets Manager.

    If the DB cluster already manages the master user password in Amazon Web Services Secrets Manager, you can\'t change the KMS key that is used to encrypt the secret.

  • You are turning on ManageMasterUserPassword to manage the master user password in Amazon Web Services Secrets Manager.

    If you are turning on ManageMasterUserPassword and don\'t specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can\'t use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'ModifyDBClusterMessage$EngineMode' => '

The DB engine mode of the DB cluster, either provisioned or serverless.

The DB engine mode can be modified only from serverless to provisioned.

For more information, see CreateDBCluster.

Valid for Cluster Type: Aurora DB clusters only

', 'ModifyDBClusterMessage$CACertificateIdentifier' => '

The CA certificate identifier to use for the DB cluster\'s server certificate.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide.

Valid for Cluster Type: Multi-AZ DB clusters

', 'ModifyDBClusterParameterGroupMessage$DBClusterParameterGroupName' => '

The name of the DB cluster parameter group to modify.

', 'ModifyDBClusterSnapshotAttributeMessage$DBClusterSnapshotIdentifier' => '

The identifier for the DB cluster snapshot to modify the attributes for.

', 'ModifyDBClusterSnapshotAttributeMessage$AttributeName' => '

The name of the DB cluster snapshot attribute to modify.

To manage authorization for other Amazon Web Services accounts to copy or restore a manual DB cluster snapshot, set this value to restore.

To view the list of attributes available to modify, use the DescribeDBClusterSnapshotAttributes API operation.

', 'ModifyDBInstanceMessage$DBInstanceIdentifier' => '

The identifier of DB instance to modify. This value is stored as a lowercase string.

Constraints:

  • Must match the identifier of an existing DB instance.

', 'ModifyDBInstanceMessage$DBInstanceClass' => '

The new compute and memory capacity of the DB instance, for example db.m4.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide or Aurora DB instance classes in the Amazon Aurora User Guide. For RDS Custom, see DB instance class support for RDS Custom for Oracle and DB instance class support for RDS Custom for SQL Server.

If you modify the DB instance class, an outage occurs during the change. The change is applied during the next maintenance window, unless you specify ApplyImmediately in your request.

Default: Uses existing setting

Constraints:

  • If you are modifying the DB instance class and upgrading the engine version at the same time, the currently running engine version must be supported on the specified DB instance class. Otherwise, the operation returns an error. In this case, first run the operation to upgrade the engine version, and then run it again to modify the DB instance class.

', 'ModifyDBInstanceMessage$DBSubnetGroupName' => '

The new DB subnet group for the DB instance. You can use this parameter to move your DB instance to a different VPC. If your DB instance isn\'t in a VPC, you can also use this parameter to move your DB instance into a VPC. For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

Changing the subnet group causes an outage during the change. The change is applied during the next maintenance window, unless you enable ApplyImmediately.

This setting doesn\'t apply to RDS Custom DB instances.

Constraints:

  • If supplied, must match existing DB subnet group.

Example: mydbsubnetgroup

', 'ModifyDBInstanceMessage$DBParameterGroupName' => '

The name of the DB parameter group to apply to the DB instance.

Changing this setting doesn\'t result in an outage. The parameter group name itself is changed immediately, but the actual parameter changes are not applied until you reboot the instance without failover. In this case, the DB instance isn\'t rebooted automatically, and the parameter changes aren\'t applied during the next maintenance window. However, if you modify dynamic parameters in the newly associated DB parameter group, these changes are applied immediately without a reboot.

This setting doesn\'t apply to RDS Custom DB instances.

Default: Uses existing setting

Constraints:

  • Must be in the same DB parameter group family as the DB instance.

', 'ModifyDBInstanceMessage$PreferredBackupWindow' => '

The daily time range during which automated backups are created if automated backups are enabled, as determined by the BackupRetentionPeriod parameter. Changing this parameter doesn\'t result in an outage and the change is asynchronously applied as soon as possible. The default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region. For more information, see Backup window in the Amazon RDS User Guide.

This setting doesn\'t apply to Amazon Aurora DB instances. The daily time range for creating automated backups is managed by the DB cluster. For more information, see ModifyDBCluster.

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.

', 'ModifyDBInstanceMessage$PreferredMaintenanceWindow' => '

The weekly time range during which system maintenance can occur, which might result in an outage. Changing this parameter doesn\'t result in an outage, except in the following situation, and the change is asynchronously applied as soon as possible. If there are pending actions that cause a reboot, and the maintenance window is changed to include the current time, then changing this parameter causes a reboot of the DB instance. If you change this window to the current time, there must be at least 30 minutes between the current time and end of the window to ensure pending changes are applied.

For more information, see Amazon RDS Maintenance Window in the Amazon RDS User Guide.

Default: Uses existing setting

Constraints:

  • Must be in the format ddd:hh24:mi-ddd:hh24:mi.

  • The day values must be mon | tue | wed | thu | fri | sat | sun.

  • Must be in Universal Coordinated Time (UTC).

  • Must not conflict with the preferred backup window.

  • Must be at least 30 minutes.

', 'ModifyDBInstanceMessage$EngineVersion' => '

The version number of the database engine to upgrade to. Changing this parameter results in an outage and the change is applied during the next maintenance window unless the ApplyImmediately parameter is enabled for this request.

For major version upgrades, if a nondefault DB parameter group is currently in use, a new DB parameter group in the DB parameter group family for the new engine version must be specified. The new DB parameter group can be the default for that DB parameter group family.

If you specify only a major version, Amazon RDS updates the DB instance to the default minor version if the current minor version is lower. For information about valid engine versions, see CreateDBInstance, or call DescribeDBEngineVersions.

If the instance that you\'re modifying is acting as a read replica, the engine version that you specify must be the same or higher than the version that the source DB instance or cluster is running.

In RDS Custom for Oracle, this parameter is supported for read replicas only if they are in the PATCH_DB_FAILURE lifecycle.

Constraints:

  • If you are upgrading the engine version and modifying the DB instance class at the same time, the currently running engine version must be supported on the specified DB instance class. Otherwise, the operation returns an error. In this case, first run the operation to upgrade the engine version, and then run it again to modify the DB instance class.

', 'ModifyDBInstanceMessage$LicenseModel' => '

The license model for the DB instance.

This setting doesn\'t apply to Amazon Aurora or RDS Custom DB instances.

Valid Values:

  • RDS for Db2 - bring-your-own-license

  • RDS for MariaDB - general-public-license

  • RDS for Microsoft SQL Server - license-included

  • RDS for MySQL - general-public-license

  • RDS for Oracle - bring-your-own-license | license-included

  • RDS for PostgreSQL - postgresql-license

', 'ModifyDBInstanceMessage$OptionGroupName' => '

The option group to associate the DB instance with.

Changing this parameter doesn\'t result in an outage, with one exception. If the parameter change results in an option group that enables OEM, it can cause a brief period, lasting less than a second, during which new connections are rejected but existing connections aren\'t interrupted.

The change is applied during the next maintenance window unless the ApplyImmediately parameter is enabled for this request.

Permanent options, such as the TDE option for Oracle Advanced Security TDE, can\'t be removed from an option group, and that option group can\'t be removed from a DB instance after it is associated with a DB instance.

This setting doesn\'t apply to RDS Custom DB instances.

', 'ModifyDBInstanceMessage$NewDBInstanceIdentifier' => '

The new identifier for the DB instance when renaming a DB instance. When you change the DB instance identifier, an instance reboot occurs immediately if you enable ApplyImmediately, or will occur during the next maintenance window if you disable ApplyImmediately. This value is stored as a lowercase string.

This setting doesn\'t apply to RDS Custom DB instances.

Constraints:

  • 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: mydbinstance

', 'ModifyDBInstanceMessage$StorageType' => '

The storage type to associate with the DB instance.

If you specify io1, io2, or gp3 you must also include a value for the Iops parameter.

If you choose to migrate your DB instance from using standard storage to gp2 (General Purpose SSD), gp3, or Provisioned IOPS (io1), or from these storage types to standard storage, the process can take time. The duration of the migration depends on several factors such as database load, storage size, storage type (standard or Provisioned IOPS), amount of IOPS provisioned (if any), and the number of prior scale storage operations. Typical migration times are under 24 hours, but the process can take up to several days in some cases. During the migration, the DB instance is available for use, but might experience performance degradation. While the migration takes place, nightly backups for the instance are suspended. No other Amazon RDS operations can take place for the instance, including modifying the instance, rebooting the instance, deleting the instance, creating a read replica for the instance, and creating a DB snapshot of the instance.

Valid Values: gp2 | gp3 | io1 | io2 | standard

Default: io1, if the Iops parameter is specified. Otherwise, gp2.

', 'ModifyDBInstanceMessage$TdeCredentialArn' => '

The ARN from the key store with which to associate the instance for TDE encryption.

This setting doesn\'t apply to RDS Custom DB instances.

', 'ModifyDBInstanceMessage$CACertificateIdentifier' => '

The CA certificate identifier to use for the DB instance\'s server certificate.

This setting doesn\'t apply to RDS Custom DB instances.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

', 'ModifyDBInstanceMessage$Domain' => '

The Active Directory directory ID to move the DB instance to. Specify none to remove the instance from its current domain. You must create the domain before this operation. Currently, you can create only Db2, MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances in an Active Directory Domain.

For more information, see Kerberos Authentication in the Amazon RDS User Guide.

This setting doesn\'t apply to RDS Custom DB instances.

', 'ModifyDBInstanceMessage$DomainFqdn' => '

The fully qualified domain name (FQDN) of an Active Directory domain.

Constraints:

  • Can\'t be longer than 64 characters.

Example: mymanagedADtest.mymanagedAD.mydomain

', 'ModifyDBInstanceMessage$DomainOu' => '

The Active Directory organizational unit for your DB instance to join.

Constraints:

  • Must be in the distinguished name format.

  • Can\'t be longer than 64 characters.

Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain

', 'ModifyDBInstanceMessage$DomainAuthSecretArn' => '

The ARN for the Secrets Manager secret with the credentials for the user joining the domain.

Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456

', 'ModifyDBInstanceMessage$MonitoringRoleArn' => '

The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. For example, arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, see To create an IAM role for Amazon RDS Enhanced Monitoring in the Amazon RDS User Guide.

If MonitoringInterval is set to a value other than 0, supply a MonitoringRoleArn value.

This setting doesn\'t apply to RDS Custom DB instances.

', 'ModifyDBInstanceMessage$DomainIAMRoleName' => '

The name of the IAM role to use when making API calls to the Directory Service.

This setting doesn\'t apply to RDS Custom DB instances.

', 'ModifyDBInstanceMessage$PerformanceInsightsKMSKeyId' => '

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you don\'t specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

This setting doesn\'t apply to RDS Custom DB instances.

', 'ModifyDBInstanceMessage$NetworkType' => '

The network type of the DB instance.

The network type is determined by the DBSubnetGroup specified for the DB instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

Valid Values: IPV4 | DUAL

', 'ModifyDBInstanceMessage$MasterUserSecretKmsKeyId' => '

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if both of the following conditions are met:

  • The DB instance doesn\'t manage the master user password in Amazon Web Services Secrets Manager.

    If the DB instance already manages the master user password in Amazon Web Services Secrets Manager, you can\'t change the KMS key used to encrypt the secret.

  • You are turning on ManageMasterUserPassword to manage the master user password in Amazon Web Services Secrets Manager.

    If you are turning on ManageMasterUserPassword and don\'t specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can\'t use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

', 'ModifyDBInstanceMessage$Engine' => '

The target Oracle DB engine when you convert a non-CDB to a CDB. This intermediate step is necessary to upgrade an Oracle Database 19c non-CDB to an Oracle Database 21c CDB.

Note the following requirements:

  • Make sure that you specify oracle-ee-cdb or oracle-se2-cdb.

  • Make sure that your DB engine runs Oracle Database 19c with an April 2021 or later RU.

Note the following limitations:

  • You can\'t convert a CDB to a non-CDB.

  • You can\'t convert a replica database.

  • You can\'t convert a non-CDB to a CDB and upgrade the engine version in the same command.

  • You can\'t convert the existing custom parameter or option group when it has options or parameters that are permanent or persistent. In this situation, the DB instance reverts to the default option and parameter group. To avoid reverting to the default, specify a new parameter group with --db-parameter-group-name and a new option group with --option-group-name.

', 'ModifyDBParameterGroupMessage$DBParameterGroupName' => '

The name of the DB parameter group.

Constraints:

  • If supplied, must match the name of an existing DBParameterGroup.

', 'ModifyDBProxyTargetGroupRequest$NewName' => '

The new name for the modified DBProxyTarget. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can\'t end with a hyphen or contain two consecutive hyphens.

You can\'t rename the default target group.

', 'ModifyDBRecommendationMessage$RecommendationId' => '

The identifier of the recommendation to update.

', 'ModifyDBRecommendationMessage$Locale' => '

The language of the modified recommendation.

', 'ModifyDBRecommendationMessage$Status' => '

The recommendation status to update.

Valid values:

  • active

  • dismissed

', 'ModifyDBSnapshotAttributeMessage$DBSnapshotIdentifier' => '

The identifier for the DB snapshot to modify the attributes for.

', 'ModifyDBSnapshotAttributeMessage$AttributeName' => '

The name of the DB snapshot attribute to modify.

To manage authorization for other Amazon Web Services accounts to copy or restore a manual DB snapshot, set this value to restore.

To view the list of attributes available to modify, use the DescribeDBSnapshotAttributes API operation.

', 'ModifyDBSnapshotMessage$DBSnapshotIdentifier' => '

The identifier of the DB snapshot to modify.

', 'ModifyDBSnapshotMessage$EngineVersion' => '

The engine version to upgrade the DB snapshot to.

The following are the database engines and engine versions that are available when you upgrade a DB snapshot.

MySQL

For the list of engine versions that are available for upgrading a DB snapshot, see Upgrading a MySQL DB snapshot engine version in the Amazon RDS User Guide.

Oracle

  • 19.0.0.0.ru-2022-01.rur-2022-01.r1 (supported for 12.2.0.1 DB snapshots)

  • 19.0.0.0.ru-2022-07.rur-2022-07.r1 (supported for 12.1.0.2 DB snapshots)

  • 12.1.0.2.v8 (supported for 12.1.0.1 DB snapshots)

  • 11.2.0.4.v12 (supported for 11.2.0.2 DB snapshots)

  • 11.2.0.4.v11 (supported for 11.2.0.3 DB snapshots)

PostgreSQL

For the list of engine versions that are available for upgrading a DB snapshot, see Upgrading a PostgreSQL DB snapshot engine version in the Amazon RDS User Guide.

', 'ModifyDBSnapshotMessage$OptionGroupName' => '

The option group to identify with the upgraded DB snapshot.

You can specify this parameter when you upgrade an Oracle DB snapshot. The same option group considerations apply when upgrading a DB snapshot as when upgrading a DB instance. For more information, see Option group considerations in the Amazon RDS User Guide.

', 'ModifyDBSubnetGroupMessage$DBSubnetGroupName' => '

The name for the DB subnet group. This value is stored as a lowercase string. You can\'t modify the default subnet group.

Constraints: Must match the name of an existing DBSubnetGroup. Must not be default.

Example: mydbsubnetgroup

', 'ModifyDBSubnetGroupMessage$DBSubnetGroupDescription' => '

The description for the DB subnet group.

', 'ModifyEventSubscriptionMessage$SubscriptionName' => '

The name of the RDS event notification subscription.

', 'ModifyEventSubscriptionMessage$SnsTopicArn' => '

The Amazon Resource Name (ARN) of the SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it.

', 'ModifyEventSubscriptionMessage$SourceType' => '

The type of source that is generating the events. For example, if you want to be notified of events generated by a DB instance, you would set this parameter to db-instance. For RDS Proxy events, specify db-proxy. If this value isn\'t specified, all events are returned.

Valid Values: db-instance | db-cluster | db-parameter-group | db-security-group | db-snapshot | db-cluster-snapshot | db-proxy | zero-etl | custom-engine-version | blue-green-deployment

', 'ModifyGlobalClusterMessage$EngineVersion' => '

The version number of the database engine to which you want to upgrade.

To list all of the available engine versions for aurora-mysql (for MySQL-based Aurora global databases), use the following command:

aws rds describe-db-engine-versions --engine aurora-mysql --query \'*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]\'

To list all of the available engine versions for aurora-postgresql (for PostgreSQL-based Aurora global databases), use the following command:

aws rds describe-db-engine-versions --engine aurora-postgresql --query \'*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]\'

', 'ModifyOptionGroupMessage$OptionGroupName' => '

The name of the option group to be modified.

Permanent options, such as the TDE option for Oracle Advanced Security TDE, can\'t be removed from an option group, and that option group can\'t be removed from a DB instance once it is associated with a DB instance

', 'ModifyTenantDatabaseMessage$DBInstanceIdentifier' => '

The identifier of the DB instance that contains the tenant database that you are modifying. This parameter isn\'t case-sensitive.

Constraints:

  • Must match the identifier of an existing DB instance.

', 'ModifyTenantDatabaseMessage$TenantDBName' => '

The user-supplied name of the tenant database that you want to modify. This parameter isn’t case-sensitive.

Constraints:

  • Must match the identifier of an existing tenant database.

', 'ModifyTenantDatabaseMessage$NewTenantDBName' => '

The new name of the tenant database when renaming a tenant database. This parameter isn’t case-sensitive.

Constraints:

  • Can\'t be the string null or any other reserved word.

  • Can\'t be longer than 8 characters.

', 'ModifyTenantDatabaseMessage$MasterUserSecretKmsKeyId' => '

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if both of the following conditions are met:

  • The tenant database doesn\'t manage the master user password in Amazon Web Services Secrets Manager.

    If the tenant database already manages the master user password in Amazon Web Services Secrets Manager, you can\'t change the KMS key used to encrypt the secret.

  • You\'re turning on ManageMasterUserPassword to manage the master user password in Amazon Web Services Secrets Manager.

    If you\'re turning on ManageMasterUserPassword and don\'t specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can\'t use the aws/secretsmanager KMS key to encrypt the secret, and you must use a self-managed KMS key.

The Amazon Web Services KMS key identifier is any of the following:

  • Key ARN

  • Key ID

  • Alias ARN

  • Alias name for the KMS key

To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

A default KMS key exists for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

', 'Option$OptionName' => '

The name of the option.

', 'Option$OptionDescription' => '

The description of the option.

', 'Option$OptionVersion' => '

The version of the option.

', 'OptionConfiguration$OptionName' => '

The configuration of options to include in a group.

', 'OptionConfiguration$OptionVersion' => '

The version for the option.

', 'OptionGroup$OptionGroupName' => '

Specifies the name of the option group.

', 'OptionGroup$OptionGroupDescription' => '

Provides a description of the option group.

', 'OptionGroup$EngineName' => '

Indicates the name of the engine that this option group can be applied to.

', 'OptionGroup$MajorEngineVersion' => '

Indicates the major engine version associated with this option group.

', 'OptionGroup$VpcId' => '

If AllowsVpcAndNonVpcInstanceMemberships is false, this field is blank. If AllowsVpcAndNonVpcInstanceMemberships is true and this field is blank, then this option group can be applied to both VPC and non-VPC instances. If this field contains a value, then this option group can only be applied to instances that are in the VPC indicated by this field.

', 'OptionGroup$OptionGroupArn' => '

Specifies the Amazon Resource Name (ARN) for the option group.

', 'OptionGroup$SourceOptionGroup' => '

Specifies the name of the option group from which this option group is copied.

', 'OptionGroup$SourceAccountId' => '

Specifies the Amazon Web Services account ID for the option group from which this option group is copied.

', 'OptionGroupMembership$OptionGroupName' => '

The name of the option group that the instance belongs to.

', 'OptionGroupMembership$Status' => '

The status of the DB instance\'s option group membership. Valid values are: in-sync, pending-apply, pending-removal, pending-maintenance-apply, pending-maintenance-removal, applying, removing, and failed.

', 'OptionGroupOption$Name' => '

The name of the option.

', 'OptionGroupOption$Description' => '

The description of the option.

', 'OptionGroupOption$EngineName' => '

The name of the engine that this option can be applied to.

', 'OptionGroupOption$MajorEngineVersion' => '

Indicates the major engine version that the option is available for.

', 'OptionGroupOption$MinimumRequiredMinorEngineVersion' => '

The minimum required engine version for the option to be applied.

', 'OptionGroupOptionSetting$SettingName' => '

The name of the option group option.

', 'OptionGroupOptionSetting$SettingDescription' => '

The description of the option group option.

', 'OptionGroupOptionSetting$DefaultValue' => '

The default value for the option group option.

', 'OptionGroupOptionSetting$ApplyType' => '

The DB engine specific parameter type for the option group option.

', 'OptionGroupOptionSetting$AllowedValues' => '

Indicates the acceptable values for the option group option.

', 'OptionGroupOptionsMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'OptionGroups$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'OptionNamesList$member' => NULL, 'OptionSetting$Name' => '

The name of the option that has settings that you can set.

', 'OptionSetting$DefaultValue' => '

The default value of the option setting.

', 'OptionSetting$Description' => '

The description of the option setting.

', 'OptionSetting$ApplyType' => '

The DB engine specific parameter type.

', 'OptionSetting$DataType' => '

The data type of the option setting.

', 'OptionSetting$AllowedValues' => '

The allowed values of the option setting.

', 'OptionVersion$Version' => '

The version of the option.

', 'OptionsConflictsWith$member' => NULL, 'OptionsDependedOn$member' => NULL, 'OrderableDBInstanceOption$Engine' => '

The engine type of a DB instance.

', 'OrderableDBInstanceOption$EngineVersion' => '

The engine version of a DB instance.

', 'OrderableDBInstanceOption$DBInstanceClass' => '

The DB instance class for a DB instance.

', 'OrderableDBInstanceOption$LicenseModel' => '

The license model for a DB instance.

', 'OrderableDBInstanceOption$AvailabilityZoneGroup' => '

The Availability Zone group for a DB instance.

', 'OrderableDBInstanceOption$StorageType' => '

The storage type for a DB instance.

', 'OrderableDBInstanceOptionsMessage$Marker' => '

An optional pagination token provided by a previous OrderableDBInstanceOptions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'Outpost$Arn' => '

The Amazon Resource Name (ARN) of the Outpost.

', 'Parameter$ParameterName' => '

The name of the parameter.

', 'Parameter$Description' => '

Provides a description of the parameter.

', 'Parameter$Source' => '

The source of the parameter value.

', 'Parameter$ApplyType' => '

Specifies the engine specific parameters type.

', 'Parameter$DataType' => '

Specifies the valid data type for the parameter.

', 'Parameter$AllowedValues' => '

Specifies the valid range of values for the parameter.

', 'Parameter$MinimumEngineVersion' => '

The earliest engine version to which the parameter can apply.

', 'PendingMaintenanceAction$Action' => '

The type of pending maintenance action that is available for the resource.

For more information about maintenance actions, see Maintaining a DB instance.

Valid Values:

  • ca-certificate-rotation

  • db-upgrade

  • hardware-maintenance

  • os-upgrade

  • system-update

For more information about these actions, see Maintenance actions for Amazon Aurora or Maintenance actions for Amazon RDS.

', 'PendingMaintenanceAction$OptInStatus' => '

Indicates the type of opt-in request that has been received for the resource.

', 'PendingMaintenanceAction$Description' => '

A description providing more detail about the maintenance action.

', 'PendingMaintenanceActionsMessage$Marker' => '

An optional pagination token provided by a previous DescribePendingMaintenanceActions request. If this parameter is specified, the response includes only records beyond the marker, up to a number of records specified by MaxRecords.

', 'PendingModifiedValues$DBInstanceClass' => '

The name of the compute and memory capacity class for the DB instance.

', 'PendingModifiedValues$EngineVersion' => '

The database engine version.

', 'PendingModifiedValues$LicenseModel' => '

The license model for the DB instance.

Valid values: license-included | bring-your-own-license | general-public-license

', 'PendingModifiedValues$DBInstanceIdentifier' => '

The database identifier for the DB instance.

', 'PendingModifiedValues$StorageType' => '

The storage type of the DB instance.

', 'PendingModifiedValues$CACertificateIdentifier' => '

The identifier of the CA certificate for the DB instance.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

', 'PendingModifiedValues$DBSubnetGroupName' => '

The DB subnet group for the DB instance.

', 'PendingModifiedValues$Engine' => '

The database engine of the DB instance.

', 'PerformanceInsightsMetricDimensionGroup$Group' => '

The available dimension groups for Performance Insights metric type.

', 'PerformanceInsightsMetricQuery$Metric' => '

The name of a Performance Insights metric to be measured.

Valid Values:

  • db.load.avg - A scaled representation of the number of active sessions for the database engine.

  • db.sampledload.avg - The raw number of active sessions for the database engine.

  • The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide.

If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only.

', 'PerformanceIssueDetails$Analysis' => '

The analysis of the performance issue. The information might contain markdown.

', 'ProcessorFeature$Name' => '

The name of the processor feature. Valid names are coreCount and threadsPerCore.

', 'ProcessorFeature$Value' => '

The value of a processor feature.

', 'PromoteReadReplicaDBClusterMessage$DBClusterIdentifier' => '

The identifier of the DB cluster read replica to promote. This parameter isn\'t case-sensitive.

Constraints:

  • Must match the identifier of an existing DB cluster read replica.

Example: my-cluster-replica1

', 'PromoteReadReplicaMessage$DBInstanceIdentifier' => '

The DB instance identifier. This value is stored as a lowercase string.

Constraints:

  • Must match the identifier of an existing read replica DB instance.

Example: mydbinstance

', 'PromoteReadReplicaMessage$PreferredBackupWindow' => '

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 Amazon Web Services Region. To see the time blocks available, see Adjusting the Preferred Maintenance Window in the Amazon RDS User Guide.

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.

', 'PurchaseReservedDBInstancesOfferingMessage$ReservedDBInstancesOfferingId' => '

The ID of the Reserved DB instance offering to purchase.

Example: 438012d3-4052-4cc7-b2e3-8d3372e0e706

', 'PurchaseReservedDBInstancesOfferingMessage$ReservedDBInstanceId' => '

Customer-specified identifier to track this reservation.

Example: myreservationID

', 'RdsCustomClusterConfiguration$InterconnectSubnetId' => '

Reserved for future use.

', 'RdsCustomClusterConfiguration$TransitGatewayMulticastDomainId' => '

Reserved for future use.

', 'ReadReplicaDBClusterIdentifierList$member' => NULL, 'ReadReplicaDBInstanceIdentifierList$member' => NULL, 'ReadReplicaIdentifierList$member' => NULL, 'ReadersArnList$member' => NULL, 'RebootDBClusterMessage$DBClusterIdentifier' => '

The DB cluster identifier. This parameter is stored as a lowercase string.

Constraints:

  • Must match the identifier of an existing DBCluster.

', 'RebootDBInstanceMessage$DBInstanceIdentifier' => '

The DB instance identifier. This parameter is stored as a lowercase string.

Constraints:

  • Must match the identifier of an existing DBInstance.

', 'RecommendedAction$ActionId' => '

The unique identifier of the recommended action.

', 'RecommendedAction$Title' => '

A short description to summarize the action. The description might contain markdown.

', 'RecommendedAction$Description' => '

A detailed description of the action. The description might contain markdown.

', 'RecommendedAction$Operation' => '

An API operation for the action.

', 'RecommendedAction$Status' => '

The status of the action.

  • ready

  • applied

  • scheduled

  • resolved

', 'RecommendedActionParameter$Key' => '

The key of the parameter to use with the RecommendedAction API operation.

', 'RecommendedActionParameter$Value' => '

The value of the parameter to use with the RecommendedAction API operation.

', 'RecommendedActionUpdate$ActionId' => '

A unique identifier of the updated recommendation action.

', 'RecommendedActionUpdate$Status' => '

The status of the updated recommendation action.

  • applied

  • scheduled

', 'RecurringCharge$RecurringChargeFrequency' => '

The frequency of the recurring charge.

', 'RemoveFromGlobalClusterMessage$DbClusterIdentifier' => '

The Amazon Resource Name (ARN) identifying the cluster that was detached from the Aurora global database cluster.

', 'RemoveRoleFromDBClusterMessage$DBClusterIdentifier' => '

The name of the DB cluster to disassociate the IAM role from.

', 'RemoveRoleFromDBClusterMessage$RoleArn' => '

The Amazon Resource Name (ARN) of the IAM role to disassociate from the Aurora DB cluster, for example arn:aws:iam::123456789012:role/AuroraAccessRole.

', 'RemoveRoleFromDBClusterMessage$FeatureName' => '

The name of the feature for the DB cluster that the IAM role is to be disassociated from. For information about supported feature names, see DBEngineVersion.

', 'RemoveRoleFromDBInstanceMessage$DBInstanceIdentifier' => '

The name of the DB instance to disassociate the IAM role from.

', 'RemoveRoleFromDBInstanceMessage$RoleArn' => '

The Amazon Resource Name (ARN) of the IAM role to disassociate from the DB instance, for example, arn:aws:iam::123456789012:role/AccessRole.

', 'RemoveRoleFromDBInstanceMessage$FeatureName' => '

The name of the feature for the DB instance that the IAM role is to be disassociated from. For information about supported feature names, see DBEngineVersion.

', 'RemoveSourceIdentifierFromSubscriptionMessage$SubscriptionName' => '

The name of the RDS event notification subscription you want to remove a source identifier from.

', 'RemoveSourceIdentifierFromSubscriptionMessage$SourceIdentifier' => '

The source identifier to be removed from the subscription, such as the DB instance identifier for a DB instance or the name of a security group.

', 'RemoveTagsFromResourceMessage$ResourceName' => '

The Amazon RDS resource that the tags are removed from. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see Constructing an ARN for Amazon RDS in the Amazon RDS User Guide.

', 'ReservedDBInstance$ReservedDBInstanceId' => '

The unique identifier for the reservation.

', 'ReservedDBInstance$ReservedDBInstancesOfferingId' => '

The offering identifier.

', 'ReservedDBInstance$DBInstanceClass' => '

The DB instance class for the reserved DB instance.

', 'ReservedDBInstance$CurrencyCode' => '

The currency code for the reserved DB instance.

', 'ReservedDBInstance$ProductDescription' => '

The description of the reserved DB instance.

', 'ReservedDBInstance$OfferingType' => '

The offering type of this reserved DB instance.

', 'ReservedDBInstance$State' => '

The state of the reserved DB instance.

', 'ReservedDBInstance$ReservedDBInstanceArn' => '

The Amazon Resource Name (ARN) for the reserved DB instance.

', 'ReservedDBInstance$LeaseId' => '

The unique identifier for the lease associated with the reserved DB instance.

Amazon Web Services Support might request the lease ID for an issue related to a reserved DB instance.

', 'ReservedDBInstanceMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'ReservedDBInstancesOffering$ReservedDBInstancesOfferingId' => '

The offering identifier.

', 'ReservedDBInstancesOffering$DBInstanceClass' => '

The DB instance class for the reserved DB instance.

', 'ReservedDBInstancesOffering$CurrencyCode' => '

The currency code for the reserved DB instance offering.

', 'ReservedDBInstancesOffering$ProductDescription' => '

The database engine used by the offering.

', 'ReservedDBInstancesOffering$OfferingType' => '

The offering type.

', 'ReservedDBInstancesOfferingMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'ResetDBClusterParameterGroupMessage$DBClusterParameterGroupName' => '

The name of the DB cluster parameter group to reset.

', 'ResetDBParameterGroupMessage$DBParameterGroupName' => '

The name of the DB parameter group.

Constraints:

  • Must match the name of an existing DBParameterGroup.

', 'ResourcePendingMaintenanceActions$ResourceIdentifier' => '

The ARN of the resource that has pending maintenance actions.

', 'RestoreDBClusterFromS3Message$CharacterSetName' => '

A value that indicates that the restored DB cluster should be associated with the specified CharacterSet.

', 'RestoreDBClusterFromS3Message$DatabaseName' => '

The database name for the restored DB cluster.

', 'RestoreDBClusterFromS3Message$DBClusterIdentifier' => '

The name of the DB cluster to create from the source data in the Amazon S3 bucket. This parameter isn\'t case-sensitive.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

Example: my-cluster1

', 'RestoreDBClusterFromS3Message$DBClusterParameterGroupName' => '

The name of the DB cluster parameter group to associate with the restored DB cluster. If this argument is omitted, the default parameter group for the engine version is used.

Constraints:

  • If supplied, must match the name of an existing DBClusterParameterGroup.

', 'RestoreDBClusterFromS3Message$DBSubnetGroupName' => '

A DB subnet group to associate with the restored DB cluster.

Constraints: If supplied, must match the name of an existing DBSubnetGroup.

Example: mydbsubnetgroup

', 'RestoreDBClusterFromS3Message$Engine' => '

The name of the database engine to be used for this DB cluster.

Valid Values: aurora-mysql (for Aurora MySQL)

', 'RestoreDBClusterFromS3Message$EngineVersion' => '

The version number of the database engine to use.

To list all of the available engine versions for aurora-mysql (Aurora MySQL), use the following command:

aws rds describe-db-engine-versions --engine aurora-mysql --query "DBEngineVersions[].EngineVersion"

Aurora MySQL

Examples: 5.7.mysql_aurora.2.12.0, 8.0.mysql_aurora.3.04.0

', 'RestoreDBClusterFromS3Message$MasterUsername' => '

The name of the master user for the restored DB cluster.

Constraints:

  • Must be 1 to 16 letters or numbers.

  • First character must be a letter.

  • Can\'t be a reserved word for the chosen database engine.

', 'RestoreDBClusterFromS3Message$OptionGroupName' => '

A value that indicates that the restored DB cluster should be associated with the specified option group.

Permanent options can\'t be removed from an option group. An option group can\'t be removed from a DB cluster once it is associated with a DB cluster.

', 'RestoreDBClusterFromS3Message$PreferredBackupWindow' => '

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 Amazon Web Services Region. To view the time blocks available, see Backup window in the Amazon Aurora User Guide.

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.

', 'RestoreDBClusterFromS3Message$PreferredMaintenanceWindow' => '

The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).

Format: ddd:hh24:mi-ddd:hh24:mi

The default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region, occurring on a random day of the week. To see the time blocks available, see Adjusting the Preferred Maintenance Window in the Amazon Aurora User Guide.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

Constraints: Minimum 30-minute window.

', 'RestoreDBClusterFromS3Message$KmsKeyId' => '

The Amazon Web Services KMS key identifier for an encrypted DB cluster.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If the StorageEncrypted parameter is enabled, and you do not specify a value for the KmsKeyId parameter, then Amazon RDS will use your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

', 'RestoreDBClusterFromS3Message$SourceEngine' => '

The identifier for the database engine that was backed up to create the files stored in the Amazon S3 bucket.

Valid Values: mysql

', 'RestoreDBClusterFromS3Message$SourceEngineVersion' => '

The version of the database that the backup files were created from.

MySQL versions 5.7 and 8.0 are supported.

Example: 5.7.40, 8.0.28

', 'RestoreDBClusterFromS3Message$S3BucketName' => '

The name of the Amazon S3 bucket that contains the data used to create the Amazon Aurora DB cluster.

', 'RestoreDBClusterFromS3Message$S3Prefix' => '

The prefix for all of the file names that contain the data used to create the Amazon Aurora DB cluster. If you do not specify a SourceS3Prefix value, then the Amazon Aurora DB cluster is created by using all of the files in the Amazon S3 bucket.

', 'RestoreDBClusterFromS3Message$S3IngestionRoleArn' => '

The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) role that authorizes Amazon RDS to access the Amazon S3 bucket on your behalf.

', 'RestoreDBClusterFromS3Message$Domain' => '

Specify the Active Directory directory ID to restore the DB cluster in. The domain must be created prior to this operation.

For Amazon Aurora DB clusters, Amazon RDS can use Kerberos Authentication to authenticate users that connect to the DB cluster. For more information, see Kerberos Authentication in the Amazon Aurora User Guide.

', 'RestoreDBClusterFromS3Message$DomainIAMRoleName' => '

Specify the name of the IAM role to be used when making API calls to the Directory Service.

', 'RestoreDBClusterFromS3Message$StorageType' => '

Specifies the storage type to be associated with the DB cluster.

Valid Values: aurora, aurora-iopt1

Default: aurora

Valid for: Aurora DB clusters only

', 'RestoreDBClusterFromS3Message$MasterUserSecretKmsKeyId' => '

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB cluster.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If you don\'t specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can\'t use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

', 'RestoreDBClusterFromS3Message$EngineLifecycleSupport' => '

The life cycle type for this DB cluster.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB cluster to a higher engine version, if the major engine version is past its end of standard support date.

You can use this setting to enroll your DB cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections:

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

', 'RestoreDBClusterFromSnapshotMessage$DBClusterIdentifier' => '

The name of the DB cluster to create from the DB snapshot or DB cluster snapshot. This parameter isn\'t case-sensitive.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens

  • First character must be a letter

  • Can\'t end with a hyphen or contain two consecutive hyphens

Example: my-snapshot-id

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$SnapshotIdentifier' => '

The identifier for the DB snapshot or DB cluster snapshot to restore from.

You can use either the name or the Amazon Resource Name (ARN) to specify a DB cluster snapshot. However, you can use only the ARN to specify a DB snapshot.

Constraints:

  • Must match the identifier of an existing Snapshot.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$Engine' => '

The database engine to use for the new DB cluster.

Default: The same as source

Constraint: Must be compatible with the engine of the source

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$EngineVersion' => '

The version of the database engine to use for the new DB cluster. If you don\'t specify an engine version, the default version for the database engine in the Amazon Web Services Region is used.

To list all of the available engine versions for Aurora MySQL, use the following command:

aws rds describe-db-engine-versions --engine aurora-mysql --query "DBEngineVersions[].EngineVersion"

To list all of the available engine versions for Aurora PostgreSQL, use the following command:

aws rds describe-db-engine-versions --engine aurora-postgresql --query "DBEngineVersions[].EngineVersion"

To list all of the available engine versions for RDS for MySQL, use the following command:

aws rds describe-db-engine-versions --engine mysql --query "DBEngineVersions[].EngineVersion"

To list all of the available engine versions for RDS for PostgreSQL, use the following command:

aws rds describe-db-engine-versions --engine postgres --query "DBEngineVersions[].EngineVersion"

Aurora MySQL

See Database engine updates for Amazon Aurora MySQL in the Amazon Aurora User Guide.

Aurora PostgreSQL

See Amazon Aurora PostgreSQL releases and engine versions in the Amazon Aurora User Guide.

MySQL

See Amazon RDS for MySQL in the Amazon RDS User Guide.

PostgreSQL

See Amazon RDS for PostgreSQL versions and extensions in the Amazon RDS User Guide.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$DBSubnetGroupName' => '

The name of the DB subnet group to use for the new DB cluster.

Constraints: If supplied, must match the name of an existing DB subnet group.

Example: mydbsubnetgroup

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$DatabaseName' => '

The database name for the restored DB cluster.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$OptionGroupName' => '

The name of the option group to use for the restored DB cluster.

DB clusters are associated with a default option group that can\'t be modified.

', 'RestoreDBClusterFromSnapshotMessage$KmsKeyId' => '

The Amazon Web Services KMS key identifier to use when restoring an encrypted DB cluster from a DB snapshot or DB cluster snapshot.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

When you don\'t specify a value for the KmsKeyId parameter, then the following occurs:

  • If the DB snapshot or DB cluster snapshot in SnapshotIdentifier is encrypted, then the restored DB cluster is encrypted using the KMS key that was used to encrypt the DB snapshot or DB cluster snapshot.

  • If the DB snapshot or DB cluster snapshot in SnapshotIdentifier isn\'t encrypted, then the restored DB cluster isn\'t encrypted.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$EngineMode' => '

The DB engine mode of the DB cluster, either provisioned or serverless.

For more information, see CreateDBCluster.

Valid for: Aurora DB clusters only

', 'RestoreDBClusterFromSnapshotMessage$DBClusterParameterGroupName' => '

The name of the DB cluster parameter group to associate with this DB cluster. If this argument is omitted, the default DB cluster parameter group for the specified engine is used.

Constraints:

  • If supplied, must match the name of an existing default DB cluster parameter group.

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$Domain' => '

The Active Directory directory ID to restore the DB cluster in. The domain must be created prior to this operation. Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances can be created in an Active Directory Domain.

For more information, see Kerberos Authentication in the Amazon RDS User Guide.

Valid for: Aurora DB clusters only

', 'RestoreDBClusterFromSnapshotMessage$DomainIAMRoleName' => '

The name of the IAM role to be used when making API calls to the Directory Service.

Valid for: Aurora DB clusters only

', 'RestoreDBClusterFromSnapshotMessage$DBClusterInstanceClass' => '

The compute and memory capacity of the each DB instance in the Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines.

For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide.

Valid for: Multi-AZ DB clusters only

', 'RestoreDBClusterFromSnapshotMessage$StorageType' => '

Specifies the storage type to be associated with the DB cluster.

When specified for a Multi-AZ DB cluster, a value for the Iops parameter is required.

Valid Values: aurora, aurora-iopt1 (Aurora DB clusters); io1 (Multi-AZ DB clusters)

Default: aurora (Aurora DB clusters); io1 (Multi-AZ DB clusters)

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterFromSnapshotMessage$MonitoringRoleArn' => '

The Amazon Resource Name (ARN) for the IAM role that permits RDS to send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example is arn:aws:iam:123456789012:role/emaccess.

If MonitoringInterval is set to a value other than 0, supply a MonitoringRoleArn value.

', 'RestoreDBClusterFromSnapshotMessage$PerformanceInsightsKMSKeyId' => '

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you don\'t specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

', 'RestoreDBClusterFromSnapshotMessage$EngineLifecycleSupport' => '

The life cycle type for this DB cluster.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB cluster to a higher engine version, if the major engine version is past its end of standard support date.

You can use this setting to enroll your DB cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections:

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

', 'RestoreDBClusterToPointInTimeMessage$DBClusterIdentifier' => '

The name of the new DB cluster to be created.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens

  • First character must be a letter

  • Can\'t end with a hyphen or contain two consecutive hyphens

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterToPointInTimeMessage$RestoreType' => '

The type of restore to be performed. You can specify one of the following values:

  • full-copy - The new DB cluster is restored as a full copy of the source DB cluster.

  • copy-on-write - The new DB cluster is restored as a clone of the source DB cluster.

If you don\'t specify a RestoreType value, then the new DB cluster is restored as a full copy of the source DB cluster.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterToPointInTimeMessage$SourceDBClusterIdentifier' => '

The identifier of the source DB cluster from which to restore.

Constraints:

  • Must match the identifier of an existing DBCluster.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterToPointInTimeMessage$DBSubnetGroupName' => '

The DB subnet group name to use for the new DB cluster.

Constraints: If supplied, must match the name of an existing DBSubnetGroup.

Example: mydbsubnetgroup

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterToPointInTimeMessage$OptionGroupName' => '

The name of the option group for the new DB cluster.

DB clusters are associated with a default option group that can\'t be modified.

', 'RestoreDBClusterToPointInTimeMessage$KmsKeyId' => '

The Amazon Web Services KMS key identifier to use when restoring an encrypted DB cluster from an encrypted DB cluster.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

You can restore to a new DB cluster and encrypt the new DB cluster with a KMS key that is different from the KMS key used to encrypt the source DB cluster. The new DB cluster is encrypted with the KMS key identified by the KmsKeyId parameter.

If you don\'t specify a value for the KmsKeyId parameter, then the following occurs:

  • If the DB cluster is encrypted, then the restored DB cluster is encrypted using the KMS key that was used to encrypt the source DB cluster.

  • If the DB cluster isn\'t encrypted, then the restored DB cluster isn\'t encrypted.

If DBClusterIdentifier refers to a DB cluster that isn\'t encrypted, then the restore request is rejected.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterToPointInTimeMessage$DBClusterParameterGroupName' => '

The name of the custom DB cluster parameter group to associate with this DB cluster.

If the DBClusterParameterGroupName parameter is omitted, the default DB cluster parameter group for the specified engine is used.

Constraints:

  • If supplied, must match the name of an existing DB cluster parameter group.

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterToPointInTimeMessage$Domain' => '

The Active Directory directory ID to restore the DB cluster in. The domain must be created prior to this operation.

For Amazon Aurora DB clusters, Amazon RDS can use Kerberos Authentication to authenticate users that connect to the DB cluster. For more information, see Kerberos Authentication in the Amazon Aurora User Guide.

Valid for: Aurora DB clusters only

', 'RestoreDBClusterToPointInTimeMessage$DomainIAMRoleName' => '

The name of the IAM role to be used when making API calls to the Directory Service.

Valid for: Aurora DB clusters only

', 'RestoreDBClusterToPointInTimeMessage$DBClusterInstanceClass' => '

The compute and memory capacity of the each DB instance in the Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines.

For the full list of DB instance classes, and availability for your engine, see DB instance class in the Amazon RDS User Guide.

Valid for: Multi-AZ DB clusters only

', 'RestoreDBClusterToPointInTimeMessage$StorageType' => '

Specifies the storage type to be associated with the DB cluster.

When specified for a Multi-AZ DB cluster, a value for the Iops parameter is required.

Valid Values: aurora, aurora-iopt1 (Aurora DB clusters); io1 (Multi-AZ DB clusters)

Default: aurora (Aurora DB clusters); io1 (Multi-AZ DB clusters)

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterToPointInTimeMessage$SourceDbClusterResourceId' => '

The resource ID of the source DB cluster from which to restore.

', 'RestoreDBClusterToPointInTimeMessage$EngineMode' => '

The engine mode of the new cluster. Specify provisioned or serverless, depending on the type of the cluster you are creating. You can create an Aurora Serverless v1 clone from a provisioned cluster, or a provisioned clone from an Aurora Serverless v1 cluster. To create a clone that is an Aurora Serverless v1 cluster, the original cluster must be an Aurora Serverless v1 cluster or an encrypted provisioned cluster. To create a full copy that is an Aurora Serverless v1 cluster, specify the engine mode serverless.

Valid for: Aurora DB clusters only

', 'RestoreDBClusterToPointInTimeMessage$MonitoringRoleArn' => '

The Amazon Resource Name (ARN) for the IAM role that permits RDS to send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example is arn:aws:iam:123456789012:role/emaccess.

If MonitoringInterval is set to a value other than 0, supply a MonitoringRoleArn value.

', 'RestoreDBClusterToPointInTimeMessage$PerformanceInsightsKMSKeyId' => '

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you don\'t specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

', 'RestoreDBClusterToPointInTimeMessage$EngineLifecycleSupport' => '

The life cycle type for this DB cluster.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB cluster to a higher engine version, if the major engine version is past its end of standard support date.

You can use this setting to enroll your DB cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections:

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

', 'RestoreDBInstanceFromDBSnapshotMessage$DBInstanceIdentifier' => '

The name of the DB instance to create from the DB snapshot. This parameter isn\'t case-sensitive.

Constraints:

  • Must contain from 1 to 63 numbers, letters, or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

Example: my-snapshot-id

', 'RestoreDBInstanceFromDBSnapshotMessage$DBSnapshotIdentifier' => '

The identifier for the DB snapshot to restore from.

Constraints:

  • Must match the identifier of an existing DB snapshot.

  • Can\'t be specified when DBClusterSnapshotIdentifier is specified.

  • Must be specified when DBClusterSnapshotIdentifier isn\'t specified.

  • If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier must be the ARN of the shared DB snapshot.

', 'RestoreDBInstanceFromDBSnapshotMessage$DBInstanceClass' => '

The compute and memory capacity of the Amazon RDS DB instance, for example db.m4.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide.

Default: The same DBInstanceClass as the original DB instance.

', 'RestoreDBInstanceFromDBSnapshotMessage$AvailabilityZone' => '

The Availability Zone (AZ) where the DB instance will be created.

Default: A random, system-chosen Availability Zone.

Constraint: You can\'t specify the AvailabilityZone parameter if the DB instance is a Multi-AZ deployment.

Example: us-east-1a

', 'RestoreDBInstanceFromDBSnapshotMessage$DBSubnetGroupName' => '

The name of the DB subnet group to use for the new instance.

Constraints:

  • If supplied, must match the name of an existing DB subnet group.

Example: mydbsubnetgroup

', 'RestoreDBInstanceFromDBSnapshotMessage$LicenseModel' => '

License model information for the restored DB instance.

License models for RDS for Db2 require additional configuration. The Bring Your Own License (BYOL) model requires a custom parameter group and an Amazon Web Services License Manager self-managed license. The Db2 license through Amazon Web Services Marketplace model requires an Amazon Web Services Marketplace subscription. For more information, see Amazon RDS for Db2 licensing options in the Amazon RDS User Guide.

This setting doesn\'t apply to Amazon Aurora or RDS Custom DB instances.

Valid Values:

  • RDS for Db2 - bring-your-own-license | marketplace-license

  • RDS for MariaDB - general-public-license

  • RDS for Microsoft SQL Server - license-included

  • RDS for MySQL - general-public-license

  • RDS for Oracle - bring-your-own-license | license-included

  • RDS for PostgreSQL - postgresql-license

Default: Same as the source.

', 'RestoreDBInstanceFromDBSnapshotMessage$DBName' => '

The name of the database for the restored DB instance.

This parameter only applies to RDS for Oracle and RDS for SQL Server DB instances. It doesn\'t apply to the other engines or to RDS Custom DB instances.

', 'RestoreDBInstanceFromDBSnapshotMessage$Engine' => '

The database engine to use for the new instance.

This setting doesn\'t apply to RDS Custom.

Default: The same as source

Constraint: Must be compatible with the engine of the source. For example, you can restore a MariaDB 10.1 DB instance from a MySQL 5.6 snapshot.

Valid Values:

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

', 'RestoreDBInstanceFromDBSnapshotMessage$OptionGroupName' => '

The name of the option group to be used for the restored DB instance.

Permanent options, such as the TDE option for Oracle Advanced Security TDE, can\'t be removed from an option group, and that option group can\'t be removed from a DB instance after it is associated with a DB instance.

This setting doesn\'t apply to RDS Custom.

', 'RestoreDBInstanceFromDBSnapshotMessage$StorageType' => '

Specifies the storage type to be associated with the DB instance.

Valid Values: gp2 | gp3 | io1 | io2 | standard

If you specify io1, io2, or gp3, you must also include a value for the Iops parameter.

Default: io1 if the Iops parameter is specified, otherwise gp3

', 'RestoreDBInstanceFromDBSnapshotMessage$TdeCredentialArn' => '

The ARN from the key store with which to associate the instance for TDE encryption.

This setting doesn\'t apply to RDS Custom.

', 'RestoreDBInstanceFromDBSnapshotMessage$Domain' => '

The Active Directory directory ID to restore the DB instance in. The domain/ must be created prior to this operation. Currently, you can create only Db2, MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances in an Active Directory Domain.

For more information, see Kerberos Authentication in the Amazon RDS User Guide.

This setting doesn\'t apply to RDS Custom.

', 'RestoreDBInstanceFromDBSnapshotMessage$DomainFqdn' => '

The fully qualified domain name (FQDN) of an Active Directory domain.

Constraints:

  • Can\'t be longer than 64 characters.

Example: mymanagedADtest.mymanagedAD.mydomain

', 'RestoreDBInstanceFromDBSnapshotMessage$DomainOu' => '

The Active Directory organizational unit for your DB instance to join.

Constraints:

  • Must be in the distinguished name format.

  • Can\'t be longer than 64 characters.

Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain

', 'RestoreDBInstanceFromDBSnapshotMessage$DomainAuthSecretArn' => '

The ARN for the Secrets Manager secret with the credentials for the user joining the domain.

Constraints:

  • Can\'t be longer than 64 characters.

Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456

', 'RestoreDBInstanceFromDBSnapshotMessage$DomainIAMRoleName' => '

The name of the IAM role to use when making API calls to the Directory Service.

This setting doesn\'t apply to RDS Custom DB instances.

', 'RestoreDBInstanceFromDBSnapshotMessage$DBParameterGroupName' => '

The name of the DB parameter group to associate with this DB instance.

If you don\'t specify a value for DBParameterGroupName, then RDS uses the default DBParameterGroup for the specified DB engine.

This setting doesn\'t apply to RDS Custom.

Constraints:

  • If supplied, must match the name of an existing DB parameter group.

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

', 'RestoreDBInstanceFromDBSnapshotMessage$NetworkType' => '

The network type of the DB instance.

Valid Values:

  • IPV4

  • DUAL

The network type is determined by the DBSubnetGroup specified for the DB instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

', 'RestoreDBInstanceFromDBSnapshotMessage$CustomIamInstanceProfile' => '

The instance profile associated with the underlying Amazon EC2 instance of an RDS Custom DB instance. The instance profile must meet the following requirements:

  • The profile must exist in your account.

  • The profile must have an IAM role that Amazon EC2 has permissions to assume.

  • The instance profile name and the associated IAM role name must start with the prefix AWSRDSCustom.

For the list of permissions required for the IAM role, see Configure IAM and your VPC in the Amazon RDS User Guide.

This setting is required for RDS Custom.

', 'RestoreDBInstanceFromDBSnapshotMessage$DBClusterSnapshotIdentifier' => '

The identifier for the Multi-AZ DB cluster snapshot to restore from.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

Constraints:

  • Must match the identifier of an existing Multi-AZ DB cluster snapshot.

  • Can\'t be specified when DBSnapshotIdentifier is specified.

  • Must be specified when DBSnapshotIdentifier isn\'t specified.

  • If you are restoring from a shared manual Multi-AZ DB cluster snapshot, the DBClusterSnapshotIdentifier must be the ARN of the shared snapshot.

  • Can\'t be the identifier of an Aurora DB cluster snapshot.

', 'RestoreDBInstanceFromDBSnapshotMessage$EngineLifecycleSupport' => '

The life cycle type for this DB instance.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB instance into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB instance to a higher engine version, if the major engine version is past its end of standard support date.

You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see Amazon RDS Extended Support with Amazon RDS in the Amazon RDS User Guide.

This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster.

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

', 'RestoreDBInstanceFromDBSnapshotMessage$MasterUserSecretKmsKeyId' => '

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If you don\'t specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can\'t use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

', 'RestoreDBInstanceFromS3Message$DBName' => '

The name of the database to create when the DB instance is created. Follow the naming rules specified in CreateDBInstance.

', 'RestoreDBInstanceFromS3Message$DBInstanceIdentifier' => '

The DB instance identifier. This parameter is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

Example: mydbinstance

', 'RestoreDBInstanceFromS3Message$DBInstanceClass' => '

The compute and memory capacity of the DB instance, for example db.m4.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide.

Importing from Amazon S3 isn\'t supported on the db.t2.micro DB instance class.

', 'RestoreDBInstanceFromS3Message$Engine' => '

The name of the database engine to be used for this instance.

Valid Values: mysql

', 'RestoreDBInstanceFromS3Message$MasterUsername' => '

The name for the master user.

Constraints:

  • Must be 1 to 16 letters or numbers.

  • First character must be a letter.

  • Can\'t be a reserved word for the chosen database engine.

', 'RestoreDBInstanceFromS3Message$AvailabilityZone' => '

The Availability Zone that the DB instance is created in. For information about Amazon Web Services Regions and Availability Zones, see Regions and Availability Zones in the Amazon RDS User Guide.

Default: A random, system-chosen Availability Zone in the endpoint\'s Amazon Web Services Region.

Example: us-east-1d

Constraint: The AvailabilityZone parameter can\'t be specified if the DB instance is a Multi-AZ deployment. The specified Availability Zone must be in the same Amazon Web Services Region as the current endpoint.

', 'RestoreDBInstanceFromS3Message$DBSubnetGroupName' => '

A DB subnet group to associate with this DB instance.

Constraints: If supplied, must match the name of an existing DBSubnetGroup.

Example: mydbsubnetgroup

', 'RestoreDBInstanceFromS3Message$PreferredMaintenanceWindow' => '

The time range each week during which system maintenance can occur, in Universal Coordinated Time (UTC). For more information, see Amazon RDS Maintenance Window in the Amazon RDS User Guide.

Constraints:

  • Must be in the format ddd:hh24:mi-ddd:hh24:mi.

  • Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

  • Must be in Universal Coordinated Time (UTC).

  • Must not conflict with the preferred backup window.

  • Must be at least 30 minutes.

', 'RestoreDBInstanceFromS3Message$DBParameterGroupName' => '

The name of the DB parameter group to associate with this DB instance.

If you do not specify a value for DBParameterGroupName, then the default DBParameterGroup for the specified DB engine is used.

', 'RestoreDBInstanceFromS3Message$PreferredBackupWindow' => '

The time range each day during which automated backups are created if automated backups are enabled. For more information, see Backup window in the Amazon RDS User Guide.

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.

', 'RestoreDBInstanceFromS3Message$EngineVersion' => '

The version number of the database engine to use. Choose the latest minor version of your database engine. For information about engine versions, see CreateDBInstance, or call DescribeDBEngineVersions.

', 'RestoreDBInstanceFromS3Message$LicenseModel' => '

The license model for this DB instance. Use general-public-license.

', 'RestoreDBInstanceFromS3Message$OptionGroupName' => '

The name of the option group to associate with this DB instance. If this argument is omitted, the default option group for the specified engine is used.

', 'RestoreDBInstanceFromS3Message$StorageType' => '

Specifies the storage type to be associated with the DB instance.

Valid Values: gp2 | gp3 | io1 | io2 | standard

If you specify io1, io2, or gp3, you must also include a value for the Iops parameter.

Default: io1 if the Iops parameter is specified; otherwise gp2

', 'RestoreDBInstanceFromS3Message$KmsKeyId' => '

The Amazon Web Services KMS key identifier for an encrypted DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If the StorageEncrypted parameter is enabled, and you do not specify a value for the KmsKeyId parameter, then Amazon RDS will use your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

', 'RestoreDBInstanceFromS3Message$MonitoringRoleArn' => '

The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. For example, arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, see Setting Up and Enabling Enhanced Monitoring in the Amazon RDS User Guide.

If MonitoringInterval is set to a value other than 0, then you must supply a MonitoringRoleArn value.

', 'RestoreDBInstanceFromS3Message$SourceEngine' => '

The name of the engine of your source database.

Valid Values: mysql

', 'RestoreDBInstanceFromS3Message$SourceEngineVersion' => '

The version of the database that the backup files were created from.

MySQL versions 5.6 and 5.7 are supported.

Example: 5.6.40

', 'RestoreDBInstanceFromS3Message$S3BucketName' => '

The name of your Amazon S3 bucket that contains your database backup file.

', 'RestoreDBInstanceFromS3Message$S3Prefix' => '

The prefix of your Amazon S3 bucket.

', 'RestoreDBInstanceFromS3Message$S3IngestionRoleArn' => '

An Amazon Web Services Identity and Access Management (IAM) role with a trust policy and a permissions policy that allows Amazon RDS to access your Amazon S3 bucket. For information about this role, see Creating an IAM role manually in the Amazon RDS User Guide.

', 'RestoreDBInstanceFromS3Message$PerformanceInsightsKMSKeyId' => '

The Amazon Web Services KMS key identifier for encryption of Performance Insights data.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

', 'RestoreDBInstanceFromS3Message$NetworkType' => '

The network type of the DB instance.

Valid Values:

  • IPV4

  • DUAL

The network type is determined by the DBSubnetGroup specified for the DB instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

', 'RestoreDBInstanceFromS3Message$MasterUserSecretKmsKeyId' => '

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If you don\'t specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can\'t use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

', 'RestoreDBInstanceFromS3Message$EngineLifecycleSupport' => '

The life cycle type for this DB instance.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB instance into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB instance to a higher engine version, if the major engine version is past its end of standard support date.

You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see Amazon RDS Extended Support Amazon RDS in the Amazon RDS User Guide.

This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster.

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

', 'RestoreDBInstanceToPointInTimeMessage$SourceDBInstanceIdentifier' => '

The identifier of the source DB instance from which to restore.

Constraints:

  • Must match the identifier of an existing DB instance.

', 'RestoreDBInstanceToPointInTimeMessage$TargetDBInstanceIdentifier' => '

The name of the new DB instance to create.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

', 'RestoreDBInstanceToPointInTimeMessage$DBInstanceClass' => '

The compute and memory capacity of the Amazon RDS DB instance, for example db.m4.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide.

Default: The same DB instance class as the original DB instance.

', 'RestoreDBInstanceToPointInTimeMessage$AvailabilityZone' => '

The Availability Zone (AZ) where the DB instance will be created.

Default: A random, system-chosen Availability Zone.

Constraints:

  • You can\'t specify the AvailabilityZone parameter if the DB instance is a Multi-AZ deployment.

Example: us-east-1a

', 'RestoreDBInstanceToPointInTimeMessage$DBSubnetGroupName' => '

The DB subnet group name to use for the new instance.

Constraints:

  • If supplied, must match the name of an existing DB subnet group.

Example: mydbsubnetgroup

', 'RestoreDBInstanceToPointInTimeMessage$LicenseModel' => '

The license model information for the restored DB instance.

License models for RDS for Db2 require additional configuration. The Bring Your Own License (BYOL) model requires a custom parameter group and an Amazon Web Services License Manager self-managed license. The Db2 license through Amazon Web Services Marketplace model requires an Amazon Web Services Marketplace subscription. For more information, see Amazon RDS for Db2 licensing options in the Amazon RDS User Guide.

This setting doesn\'t apply to Amazon Aurora or RDS Custom DB instances.

Valid Values:

  • RDS for Db2 - bring-your-own-license | marketplace-license

  • RDS for MariaDB - general-public-license

  • RDS for Microsoft SQL Server - license-included

  • RDS for MySQL - general-public-license

  • RDS for Oracle - bring-your-own-license | license-included

  • RDS for PostgreSQL - postgresql-license

Default: Same as the source.

', 'RestoreDBInstanceToPointInTimeMessage$DBName' => '

The database name for the restored DB instance.

This parameter doesn\'t apply to the following DB instances:

  • RDS Custom

  • RDS for Db2

  • RDS for MariaDB

  • RDS for MySQL

', 'RestoreDBInstanceToPointInTimeMessage$Engine' => '

The database engine to use for the new instance.

This setting doesn\'t apply to RDS Custom.

Valid Values:

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

Default: The same as source

Constraints:

  • Must be compatible with the engine of the source.

', 'RestoreDBInstanceToPointInTimeMessage$OptionGroupName' => '

The name of the option group to use for the restored DB instance.

Permanent options, such as the TDE option for Oracle Advanced Security TDE, can\'t be removed from an option group, and that option group can\'t be removed from a DB instance after it is associated with a DB instance

This setting doesn\'t apply to RDS Custom.

', 'RestoreDBInstanceToPointInTimeMessage$StorageType' => '

The storage type to associate with the DB instance.

Valid Values: gp2 | gp3 | io1 | io2 | standard

Default: io1, if the Iops parameter is specified. Otherwise, gp3.

Constraints:

  • If you specify io1, io2, or gp3, you must also include a value for the Iops parameter.

', 'RestoreDBInstanceToPointInTimeMessage$TdeCredentialArn' => '

The ARN from the key store with which to associate the instance for TDE encryption.

This setting doesn\'t apply to RDS Custom.

', 'RestoreDBInstanceToPointInTimeMessage$Domain' => '

The Active Directory directory ID to restore the DB instance in. Create the domain before running this command. Currently, you can create only the MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances in an Active Directory Domain.

This setting doesn\'t apply to RDS Custom.

For more information, see Kerberos Authentication in the Amazon RDS User Guide.

', 'RestoreDBInstanceToPointInTimeMessage$DomainIAMRoleName' => '

The name of the IAM role to use when making API calls to the Directory Service.

This setting doesn\'t apply to RDS Custom DB instances.

', 'RestoreDBInstanceToPointInTimeMessage$DomainFqdn' => '

The fully qualified domain name (FQDN) of an Active Directory domain.

Constraints:

  • Can\'t be longer than 64 characters.

Example: mymanagedADtest.mymanagedAD.mydomain

', 'RestoreDBInstanceToPointInTimeMessage$DomainOu' => '

The Active Directory organizational unit for your DB instance to join.

Constraints:

  • Must be in the distinguished name format.

  • Can\'t be longer than 64 characters.

Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain

', 'RestoreDBInstanceToPointInTimeMessage$DomainAuthSecretArn' => '

The ARN for the Secrets Manager secret with the credentials for the user joining the domain.

Constraints:

  • Can\'t be longer than 64 characters.

Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456

', 'RestoreDBInstanceToPointInTimeMessage$DBParameterGroupName' => '

The name of the DB parameter group to associate with this DB instance.

If you do not specify a value for DBParameterGroupName, then the default DBParameterGroup for the specified DB engine is used.

This setting doesn\'t apply to RDS Custom.

Constraints:

  • If supplied, must match the name of an existing DB parameter group.

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter.

  • Can\'t end with a hyphen or contain two consecutive hyphens.

', 'RestoreDBInstanceToPointInTimeMessage$SourceDbiResourceId' => '

The resource ID of the source DB instance from which to restore.

', 'RestoreDBInstanceToPointInTimeMessage$NetworkType' => '

The network type of the DB instance.

The network type is determined by the DBSubnetGroup specified for the DB instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

Valid Values:

  • IPV4

  • DUAL

', 'RestoreDBInstanceToPointInTimeMessage$SourceDBInstanceAutomatedBackupsArn' => '

The Amazon Resource Name (ARN) of the replicated automated backups from which to restore, for example, arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE.

This setting doesn\'t apply to RDS Custom.

', 'RestoreDBInstanceToPointInTimeMessage$CustomIamInstanceProfile' => '

The instance profile associated with the underlying Amazon EC2 instance of an RDS Custom DB instance. The instance profile must meet the following requirements:

  • The profile must exist in your account.

  • The profile must have an IAM role that Amazon EC2 has permissions to assume.

  • The instance profile name and the associated IAM role name must start with the prefix AWSRDSCustom.

For the list of permissions required for the IAM role, see Configure IAM and your VPC in the Amazon RDS User Guide.

This setting is required for RDS Custom.

', 'RestoreDBInstanceToPointInTimeMessage$EngineLifecycleSupport' => '

The life cycle type for this DB instance.

By default, this value is set to open-source-rds-extended-support, which enrolls your DB instance into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB instance to a higher engine version, if the major engine version is past its end of standard support date.

You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see Amazon RDS Extended Support with Amazon RDS in the Amazon RDS User Guide.

This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster.

Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled

Default: open-source-rds-extended-support

', 'RestoreDBInstanceToPointInTimeMessage$MasterUserSecretKmsKeyId' => '

The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager.

This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.

If you don\'t specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can\'t use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key.

There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.

', 'RevokeDBSecurityGroupIngressMessage$DBSecurityGroupName' => '

The name of the DB security group to revoke ingress from.

', 'RevokeDBSecurityGroupIngressMessage$CIDRIP' => '

The IP range to revoke access from. Must be a valid CIDR range. If CIDRIP is specified, EC2SecurityGroupName, EC2SecurityGroupId and EC2SecurityGroupOwnerId can\'t be provided.

', 'RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupName' => '

The name of the EC2 security group to revoke access from. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

', 'RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupId' => '

The id of the EC2 security group to revoke access from. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

', 'RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupOwnerId' => '

The Amazon Web Services account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter. The Amazon Web Services access key ID isn\'t an acceptable value. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

', 'ScalingConfiguration$TimeoutAction' => '

The action to take when the timeout is reached, either ForceApplyCapacityChange or RollbackCapacityChange.

ForceApplyCapacityChange sets the capacity to the specified value as soon as possible.

RollbackCapacityChange, the default, ignores the capacity change if a scaling point isn\'t found in the timeout period.

If you specify ForceApplyCapacityChange, connections that prevent Aurora Serverless v1 from finding a scaling point might be dropped.

For more information, see Autoscaling for Aurora Serverless v1 in the Amazon Aurora User Guide.

', 'ScalingConfigurationInfo$TimeoutAction' => '

The action that occurs when Aurora times out while attempting to change the capacity of an Aurora Serverless v1 cluster. The value is either ForceApplyCapacityChange or RollbackCapacityChange.

ForceApplyCapacityChange, the default, sets the capacity to the specified value as soon as possible.

RollbackCapacityChange ignores the capacity change if a scaling point isn\'t found in the timeout period.

', 'SourceIdsList$member' => NULL, 'SourceRegion$RegionName' => '

The name of the source Amazon Web Services Region.

', 'SourceRegion$Endpoint' => '

The endpoint for the source Amazon Web Services Region endpoint.

', 'SourceRegion$Status' => '

The status of the source Amazon Web Services Region.

', 'SourceRegionMessage$Marker' => '

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'StartActivityStreamRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the DB cluster, for example, arn:aws:rds:us-east-1:12345667890:cluster:das-cluster.

', 'StartActivityStreamRequest$KmsKeyId' => '

The Amazon Web Services KMS key identifier for encrypting messages in the database activity stream. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

', 'StartActivityStreamResponse$KmsKeyId' => '

The Amazon Web Services KMS key identifier for encryption of messages in the database activity stream.

', 'StartActivityStreamResponse$KinesisStreamName' => '

The name of the Amazon Kinesis data stream to be used for the database activity stream.

', 'StartDBClusterMessage$DBClusterIdentifier' => '

The DB cluster identifier of the Amazon Aurora DB cluster to be started. This parameter is stored as a lowercase string.

', 'StartDBInstanceAutomatedBackupsReplicationMessage$SourceDBInstanceArn' => '

The Amazon Resource Name (ARN) of the source DB instance for the replicated automated backups, for example, arn:aws:rds:us-west-2:123456789012:db:mydatabase.

', 'StartDBInstanceAutomatedBackupsReplicationMessage$KmsKeyId' => '

The Amazon Web Services KMS key identifier for encryption of the replicated automated backups. The KMS key ID is the Amazon Resource Name (ARN) for the KMS encryption key in the destination Amazon Web Services Region, for example, arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE.

', 'StartDBInstanceMessage$DBInstanceIdentifier' => '

The user-supplied instance identifier.

', 'StartExportTaskMessage$ExportTaskIdentifier' => '

A unique identifier for the export task. This ID isn\'t an identifier for the Amazon S3 bucket where the data is to be exported.

', 'StartExportTaskMessage$SourceArn' => '

The Amazon Resource Name (ARN) of the snapshot or cluster to export to Amazon S3.

', 'StartExportTaskMessage$S3BucketName' => '

The name of the Amazon S3 bucket to export the snapshot or cluster data to.

', 'StartExportTaskMessage$IamRoleArn' => '

The name of the IAM role to use for writing to the Amazon S3 bucket when exporting a snapshot or cluster.

In the IAM policy attached to your IAM role, include the following required actions to allow the transfer of files from Amazon RDS or Amazon Aurora to an S3 bucket:

  • s3:PutObject*

  • s3:GetObject*

  • s3:ListBucket

  • s3:DeleteObject*

  • s3:GetBucketLocation

In the policy, include the resources to identify the S3 bucket and objects in the bucket. The following list of resources shows the Amazon Resource Name (ARN) format for accessing S3:

  • arn:aws:s3:::your-s3-bucket

  • arn:aws:s3:::your-s3-bucket/*

', 'StartExportTaskMessage$KmsKeyId' => '

The ID of the Amazon Web Services KMS key to use to encrypt the data exported to Amazon S3. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. The caller of this operation must be authorized to run the following operations. These can be set in the Amazon Web Services KMS key policy:

  • kms:CreateGrant

  • kms:DescribeKey

', 'StartExportTaskMessage$S3Prefix' => '

The Amazon S3 bucket prefix to use as the file name and path of the exported data.

', 'StopActivityStreamRequest$ResourceArn' => '

The Amazon Resource Name (ARN) of the DB cluster for the database activity stream. For example, arn:aws:rds:us-east-1:12345667890:cluster:das-cluster.

', 'StopActivityStreamResponse$KmsKeyId' => '

The Amazon Web Services KMS key identifier used for encrypting messages in the database activity stream.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

', 'StopActivityStreamResponse$KinesisStreamName' => '

The name of the Amazon Kinesis data stream used for the database activity stream.

', 'StopDBClusterMessage$DBClusterIdentifier' => '

The DB cluster identifier of the Amazon Aurora DB cluster to be stopped. This parameter is stored as a lowercase string.

', 'StopDBInstanceAutomatedBackupsReplicationMessage$SourceDBInstanceArn' => '

The Amazon Resource Name (ARN) of the source DB instance for which to stop replicating automate backups, for example, arn:aws:rds:us-west-2:123456789012:db:mydatabase.

', 'StopDBInstanceMessage$DBInstanceIdentifier' => '

The user-supplied instance identifier.

', 'StopDBInstanceMessage$DBSnapshotIdentifier' => '

The user-supplied instance identifier of the DB Snapshot created immediately before the DB instance is stopped.

', 'StringList$member' => NULL, 'Subnet$SubnetIdentifier' => '

The identifier of the subnet.

', 'Subnet$SubnetStatus' => '

The status of the subnet.

', 'SubnetIdentifierList$member' => NULL, 'SwitchoverReadReplicaMessage$DBInstanceIdentifier' => '

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.

', 'Tag$Key' => '

A key is the required name of the tag. The string value can be from 1 to 128 Unicode characters in length and can\'t be prefixed with aws: or rds:. The string can only contain only the set of Unicode letters, digits, white-space, \'_\', \'.\', \':\', \'/\', \'=\', \'+\', \'-\', \'@\' (Java regex: "^([\\\\p{L}\\\\p{Z}\\\\p{N}_.:/=+\\\\-@]*)$").

', 'Tag$Value' => '

A value is the optional value of the tag. The string value can be from 1 to 256 Unicode characters in length and can\'t be prefixed with aws: or rds:. The string can only contain only the set of Unicode letters, digits, white-space, \'_\', \'.\', \':\', \'/\', \'=\', \'+\', \'-\', \'@\' (Java regex: "^([\\\\p{L}\\\\p{Z}\\\\p{N}_.:/=+\\\\-@]*)$").

', 'TargetHealth$Description' => '

A description of the health of the RDS Proxy target. If the State is AVAILABLE, a description is not included.

', 'TenantDatabase$DBInstanceIdentifier' => '

The ID of the DB instance that contains the tenant database.

', 'TenantDatabase$TenantDBName' => '

The database name of the tenant database.

', 'TenantDatabase$Status' => '

The status of the tenant database.

', 'TenantDatabase$MasterUsername' => '

The master username of the tenant database.

', 'TenantDatabase$DbiResourceId' => '

The Amazon Web Services Region-unique, immutable identifier for the DB instance.

', 'TenantDatabase$TenantDatabaseResourceId' => '

The Amazon Web Services Region-unique, immutable identifier for the tenant database.

', 'TenantDatabase$TenantDatabaseARN' => '

The Amazon Resource Name (ARN) for the tenant database.

', 'TenantDatabase$CharacterSetName' => '

The character set of the tenant database.

', 'TenantDatabase$NcharCharacterSetName' => '

The NCHAR character set name of the tenant database.

', 'TenantDatabasePendingModifiedValues$TenantDBName' => '

The name of the tenant database.

', 'TenantDatabasesMessage$Marker' => '

An optional pagination token provided by a previous DescribeTenantDatabases request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

', 'Timezone$TimezoneName' => '

The name of the time zone.

', 'UpgradeTarget$Engine' => '

The name of the upgrade target database engine.

', 'UpgradeTarget$EngineVersion' => '

The version number of the upgrade target database engine.

', 'UpgradeTarget$Description' => '

The version of the database engine that a DB instance can be upgraded to.

', 'UserAuthConfigInfo$Description' => '

A user-specified description about the authentication used by a proxy to log in as a specific database user.

', 'UserAuthConfigInfo$UserName' => '

The name of the database user to which the proxy connects.

', 'UserAuthConfigInfo$SecretArn' => '

The Amazon Resource Name (ARN) representing the secret that the proxy uses to authenticate to the RDS DB instance or Aurora DB cluster. These secrets are stored within Amazon Secrets Manager.

', 'ValidStorageOptions$StorageType' => '

The valid storage types for your DB instance. For example: gp2, gp3, io1, io2.

', 'VpcSecurityGroupIdList$member' => NULL, 'VpcSecurityGroupMembership$VpcSecurityGroupId' => '

The name of the VPC security group.

', 'VpcSecurityGroupMembership$Status' => '

The membership status of the VPC security group.

Currently, the only valid status is active.

', ], ], 'String255' => [ 'base' => NULL, 'refs' => [ 'CreateCustomDBEngineVersionMessage$DatabaseInstallationFilesS3Prefix' => '

The Amazon S3 directory that contains the database installation files for your CEV. For example, a valid bucket name is 123456789012/cev1. If this setting isn\'t specified, no prefix is assumed.

', 'CreateCustomDBEngineVersionMessage$ImageId' => '

The ID of the Amazon Machine Image (AMI). For RDS Custom for SQL Server, an AMI ID is required to create a CEV. For RDS Custom for Oracle, the default is the most recent AMI available, but you can specify an AMI ID that was used in a different Oracle CEV. Find the AMIs used by your CEVs by calling the DescribeDBEngineVersions operation.

', ], ], 'StringList' => [ 'base' => NULL, 'refs' => [ 'ConnectionPoolConfiguration$SessionPinningFilters' => '

Each item in the list represents a class of SQL operations that normally cause all later statements in a session using a proxy to be pinned to the same underlying database connection. Including an item in the list exempts that class of SQL operations from the pinning behavior.

Default: no session pinning filters

', 'ConnectionPoolConfigurationInfo$SessionPinningFilters' => '

Each item in the list represents a class of SQL operations that normally cause all later statements in a session using a proxy to be pinned to the same underlying database connection. Including an item in the list exempts that class of SQL operations from the pinning behavior. This setting is only supported for MySQL engine family databases. Currently, the only allowed value is EXCLUDE_VARIABLE_SETS.

', 'CreateDBClusterEndpointMessage$StaticMembers' => '

List of DB instance identifiers that are part of the custom endpoint group.

', 'CreateDBClusterEndpointMessage$ExcludedMembers' => '

List of DB instance identifiers that aren\'t part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. This parameter is relevant only if the list of static members is empty.

', 'CreateDBInstanceMessage$DomainDnsIps' => '

The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers.

Constraints:

  • Two IP addresses must be provided. If there isn\'t a secondary domain controller, use the IP address of the primary domain controller for both entries in the list.

Example: 123.124.125.126,234.235.236.237

', 'CreateDBInstanceReadReplicaMessage$DomainDnsIps' => '

The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers.

Constraints:

  • Two IP addresses must be provided. If there isn\'t a secondary domain controller, use the IP address of the primary domain controller for both entries in the list.

Example: 123.124.125.126,234.235.236.237

', 'CreateDBProxyEndpointRequest$VpcSubnetIds' => '

The VPC subnet IDs for the DB proxy endpoint that you create. You can specify a different set of subnet IDs than for the original DB proxy.

', 'CreateDBProxyEndpointRequest$VpcSecurityGroupIds' => '

The VPC security group IDs for the DB proxy endpoint that you create. You can specify a different set of security group IDs than for the original DB proxy. The default is the default security group for the VPC.

', 'CreateDBProxyRequest$VpcSubnetIds' => '

One or more VPC subnet IDs to associate with the new proxy.

', 'CreateDBProxyRequest$VpcSecurityGroupIds' => '

One or more VPC security group IDs to associate with the new proxy.

', 'DBCluster$CustomEndpoints' => '

The custom endpoints associated with the DB cluster.

', 'DBClusterEndpoint$StaticMembers' => '

List of DB instance identifiers that are part of the custom endpoint group.

', 'DBClusterEndpoint$ExcludedMembers' => '

List of DB instance identifiers that aren\'t part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.

', 'DBProxy$VpcSecurityGroupIds' => '

Provides a list of VPC security groups that the proxy belongs to.

', 'DBProxy$VpcSubnetIds' => '

The EC2 subnet IDs for the proxy.

', 'DBProxyEndpoint$VpcSecurityGroupIds' => '

Provides a list of VPC security groups that the DB proxy endpoint belongs to.

', 'DBProxyEndpoint$VpcSubnetIds' => '

The EC2 subnet IDs for the DB proxy endpoint.

', 'DBSubnetGroup$SupportedNetworkTypes' => '

The network type of the DB subnet group.

Valid values:

  • IPV4

  • DUAL

A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

', 'DeregisterDBProxyTargetsRequest$DBInstanceIdentifiers' => '

One or more DB instance identifiers.

', 'DeregisterDBProxyTargetsRequest$DBClusterIdentifiers' => '

One or more DB cluster identifiers.

', 'DomainMembership$DnsIps' => '

The IPv4 DNS IP addresses of the primary and secondary Active Directory domain controllers.

', 'ExportTask$ExportOnly' => '

The data exported from the snapshot or cluster.

Valid Values:

  • database - Export all the data from a specified database.

  • database.table table-name - Export a table of the snapshot or cluster. This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora MySQL.

  • database.schema schema-name - Export a database schema of the snapshot or cluster. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.

  • database.schema.table table-name - Export a table of the database schema. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.

', 'ModifyDBClusterEndpointMessage$StaticMembers' => '

List of DB instance identifiers that are part of the custom endpoint group.

', 'ModifyDBClusterEndpointMessage$ExcludedMembers' => '

List of DB instance identifiers that aren\'t part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.

', 'ModifyDBInstanceMessage$DomainDnsIps' => '

The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers.

Constraints:

  • Two IP addresses must be provided. If there isn\'t a secondary domain controller, use the IP address of the primary domain controller for both entries in the list.

Example: 123.124.125.126,234.235.236.237

', 'ModifyDBProxyEndpointRequest$VpcSecurityGroupIds' => '

The VPC security group IDs for the DB proxy endpoint. When the DB proxy endpoint uses a different VPC than the original proxy, you also specify a different set of security group IDs than for the original proxy.

', 'ModifyDBProxyRequest$SecurityGroups' => '

The new list of security groups for the DBProxy.

', 'OrderableDBInstanceOption$SupportedNetworkTypes' => '

The network types supported by the DB instance (IPV4 or DUAL).

A DB instance can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

', 'PerformanceInsightsMetricDimensionGroup$Dimensions' => '

A list of specific dimensions from a dimension group. If this list isn\'t included, then all of the dimensions in the group were requested, or are present in the response.

', 'RecommendedAction$ApplyModes' => '

The methods to apply the recommended action.

Valid values:

  • manual - The action requires you to resolve the recommendation manually.

  • immediately - The action is applied immediately.

  • next-maintainance-window - The action is applied during the next scheduled maintainance.

', 'RegisterDBProxyTargetsRequest$DBInstanceIdentifiers' => '

One or more DB instance identifiers.

', 'RegisterDBProxyTargetsRequest$DBClusterIdentifiers' => '

One or more DB cluster identifiers.

', 'RestoreDBInstanceFromDBSnapshotMessage$DomainDnsIps' => '

The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers.

Constraints:

  • Two IP addresses must be provided. If there isn\'t a secondary domain controller, use the IP address of the primary domain controller for both entries in the list.

Example: 123.124.125.126,234.235.236.237

', 'RestoreDBInstanceToPointInTimeMessage$DomainDnsIps' => '

The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers.

Constraints:

  • Two IP addresses must be provided. If there isn\'t a secondary domain controller, use the IP address of the primary domain controller for both entries in the list.

Example: 123.124.125.126,234.235.236.237

', 'StartExportTaskMessage$ExportOnly' => '

The data to be exported from the snapshot or cluster. If this parameter isn\'t provided, all of the data is exported.

Valid Values:

  • database - Export all the data from a specified database.

  • database.table table-name - Export a table of the snapshot or cluster. This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora MySQL.

  • database.schema schema-name - Export a database schema of the snapshot or cluster. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.

  • database.schema.table table-name - Export a table of the database schema. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.

', ], ], 'Subnet' => [ 'base' => '

This data type is used as a response element for the DescribeDBSubnetGroups operation.

', 'refs' => [ 'SubnetList$member' => NULL, ], ], 'SubnetAlreadyInUse' => [ 'base' => '

The DB subnet is already in use in the Availability Zone.

', 'refs' => [], ], 'SubnetIdentifierList' => [ 'base' => NULL, 'refs' => [ 'CreateDBSubnetGroupMessage$SubnetIds' => '

The EC2 Subnet IDs for the DB subnet group.

', 'ModifyDBSubnetGroupMessage$SubnetIds' => '

The EC2 subnet IDs for the DB subnet group.

', ], ], 'SubnetList' => [ 'base' => NULL, 'refs' => [ 'DBSubnetGroup$Subnets' => '

Contains a list of Subnet elements. The list of subnets shown here might not reflect the current state of your VPC. For the most up-to-date information, we recommend checking your VPC configuration directly.

', ], ], 'SubscriptionAlreadyExistFault' => [ 'base' => '

The supplied subscription name already exists.

', 'refs' => [], ], 'SubscriptionCategoryNotFoundFault' => [ 'base' => '

The supplied category does not exist.

', 'refs' => [], ], 'SubscriptionNotFoundFault' => [ 'base' => '

The subscription name does not exist.

', 'refs' => [], ], 'SupportedCharacterSetsList' => [ 'base' => NULL, 'refs' => [ 'DBEngineVersion$SupportedCharacterSets' => '

A list of the character sets supported by this engine for the CharacterSetName parameter of the CreateDBInstance operation.

', 'DBEngineVersion$SupportedNcharCharacterSets' => '

A list of the character sets supported by the Oracle DB engine for the NcharCharacterSetName parameter of the CreateDBInstance operation.

', ], ], 'SupportedEngineLifecycle' => [ 'base' => '

This data type is used as a response element in the operation DescribeDBMajorEngineVersions.

You can use the information that this data type returns to plan for upgrades.

This data type only returns information for the open source engines Amazon RDS for MariaDB, Amazon RDS for MySQL, Amazon RDS for PostgreSQL, Aurora MySQL, and Aurora PostgreSQL.

', 'refs' => [ 'SupportedEngineLifecycleList$member' => NULL, ], ], 'SupportedEngineLifecycleList' => [ 'base' => NULL, 'refs' => [ 'DBMajorEngineVersion$SupportedEngineLifecycles' => '

A list of the lifecycles supported by this engine for the DescribeDBMajorEngineVersions operation.

', ], ], 'SupportedTimezonesList' => [ 'base' => NULL, 'refs' => [ 'DBEngineVersion$SupportedTimezones' => '

A list of the time zones supported by this engine for the Timezone parameter of the CreateDBInstance action.

', ], ], 'SwitchoverBlueGreenDeploymentRequest' => [ 'base' => NULL, 'refs' => [], ], 'SwitchoverBlueGreenDeploymentResponse' => [ 'base' => NULL, 'refs' => [], ], 'SwitchoverDetail' => [ 'base' => '

Contains the details about a blue/green deployment.

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.

', 'refs' => [ 'SwitchoverDetailList$member' => NULL, ], ], 'SwitchoverDetailList' => [ 'base' => NULL, 'refs' => [ 'BlueGreenDeployment$SwitchoverDetails' => '

The details about each source and target resource in the blue/green deployment.

', ], ], 'SwitchoverDetailStatus' => [ 'base' => NULL, 'refs' => [ 'SwitchoverDetail$Status' => '

The switchover status of a resource in a blue/green deployment.

Values:

  • PROVISIONING - The resource is being prepared to switch over.

  • AVAILABLE - The resource is ready to switch over.

  • SWITCHOVER_IN_PROGRESS - The resource is being switched over.

  • SWITCHOVER_COMPLETED - The resource has been switched over.

  • SWITCHOVER_FAILED - The resource attempted to switch over but failed.

  • MISSING_SOURCE - The source resource has been deleted.

  • MISSING_TARGET - The target resource has been deleted.

', ], ], 'SwitchoverGlobalClusterMessage' => [ 'base' => NULL, 'refs' => [], ], 'SwitchoverGlobalClusterResult' => [ 'base' => NULL, 'refs' => [], ], 'SwitchoverReadReplicaMessage' => [ 'base' => NULL, 'refs' => [], ], 'SwitchoverReadReplicaResult' => [ 'base' => NULL, 'refs' => [], ], 'SwitchoverTimeout' => [ 'base' => NULL, 'refs' => [ 'SwitchoverBlueGreenDeploymentRequest$SwitchoverTimeout' => '

The amount of time, in seconds, for the switchover to complete.

Default: 300

If the switchover takes longer than the specified duration, then any changes are rolled back, and no changes are made to the environments.

', ], ], 'TStamp' => [ 'base' => NULL, 'refs' => [ 'BacktrackDBClusterMessage$BacktrackTo' => '

The timestamp of the time to backtrack the DB cluster to, specified in ISO 8601 format. For more information about ISO 8601, see the ISO8601 Wikipedia page.

If the specified time isn\'t a consistent time for the DB cluster, Aurora automatically chooses the nearest possible consistent time for the DB cluster.

Constraints:

  • Must contain a valid ISO 8601 timestamp.

  • Can\'t contain a timestamp set in the future.

Example: 2017-07-08T18:00Z

', 'BlueGreenDeployment$CreateTime' => '

The time when the blue/green deployment was created, in Universal Coordinated Time (UTC).

', 'BlueGreenDeployment$DeleteTime' => '

The time when the blue/green deployment was deleted, in Universal Coordinated Time (UTC).

', 'Certificate$ValidFrom' => '

The starting date from which the certificate is valid.

', 'Certificate$ValidTill' => '

The final date that the certificate continues to be valid.

', 'Certificate$CustomerOverrideValidTill' => '

If there is an override for the default certificate identifier, when the override expires.

', 'CertificateDetails$ValidTill' => '

The expiration date of the DB instance’s server certificate.

', 'DBCluster$EarliestRestorableTime' => '

The earliest time to which a database can be restored with point-in-time restore.

', 'DBCluster$LatestRestorableTime' => '

The latest time to which a database can be restored with point-in-time restore.

', 'DBCluster$ClusterCreateTime' => '

The time when the DB cluster was created, in Universal Coordinated Time (UTC).

', 'DBCluster$EarliestBacktrackTime' => '

The earliest time to which a DB cluster can be backtracked.

', 'DBCluster$IOOptimizedNextAllowedModificationTime' => '

The next time you can modify the DB cluster to use the aurora-iopt1 storage type.

This setting is only for Aurora DB clusters.

', 'DBClusterAutomatedBackup$ClusterCreateTime' => '

The time when the DB cluster was created, in Universal Coordinated Time (UTC).

', 'DBClusterBacktrack$BacktrackTo' => '

The timestamp of the time to which the DB cluster was backtracked.

', 'DBClusterBacktrack$BacktrackedFrom' => '

The timestamp of the time from which the DB cluster was backtracked.

', 'DBClusterBacktrack$BacktrackRequestCreationTime' => '

The timestamp of the time at which the backtrack was requested.

', 'DBClusterSnapshot$SnapshotCreateTime' => '

The time when the snapshot was taken, in Universal Coordinated Time (UTC).

', 'DBClusterSnapshot$ClusterCreateTime' => '

The time when the DB cluster was created, in Universal Coordinated Time (UTC).

', 'DBEngineVersion$CreateTime' => '

The creation time of the DB engine version.

', 'DBInstance$InstanceCreateTime' => '

The date and time when the DB instance was created.

', 'DBInstance$LatestRestorableTime' => '

The latest time to which a database in this DB instance can be restored with point-in-time restore.

', 'DBInstance$ResumeFullAutomationModeTime' => '

The number of minutes to pause the automation. When the time period ends, RDS Custom resumes full automation. The minimum value is 60 (default). The maximum value is 1,440.

', 'DBInstanceAutomatedBackup$InstanceCreateTime' => '

The date and time when the DB instance was created.

', 'DBProxy$CreatedDate' => '

The date and time when the proxy was first created.

', 'DBProxy$UpdatedDate' => '

The date and time when the proxy was last updated.

', 'DBProxyEndpoint$CreatedDate' => '

The date and time when the DB proxy endpoint was first created.

', 'DBProxyTargetGroup$CreatedDate' => '

The date and time when the target group was first created.

', 'DBProxyTargetGroup$UpdatedDate' => '

The date and time when the target group was last updated.

', 'DBRecommendation$CreatedTime' => '

The time when the recommendation was created. For example, 2023-09-28T01:13:53.931000+00:00.

', 'DBRecommendation$UpdatedTime' => '

The time when the recommendation was last updated.

', 'DBSnapshot$SnapshotCreateTime' => '

Specifies when the snapshot was taken in Coordinated Universal Time (UTC). Changes for the copy when the snapshot is copied.

', 'DBSnapshot$InstanceCreateTime' => '

Specifies the time in Coordinated Universal Time (UTC) when the DB instance, from which the snapshot was taken, was created.

', 'DBSnapshot$OriginalSnapshotCreateTime' => '

Specifies the time of the CreateDBSnapshot operation in Coordinated Universal Time (UTC). Doesn\'t change when the snapshot is copied.

', 'DBSnapshotTenantDatabase$TenantDatabaseCreateTime' => '

The time the DB snapshot was taken, specified in Coordinated Universal Time (UTC). If you copy the snapshot, the creation time changes.

', 'DescribeDBRecommendationsMessage$LastUpdatedAfter' => '

A filter to include only the recommendations that were updated after this specified time.

', 'DescribeDBRecommendationsMessage$LastUpdatedBefore' => '

A filter to include only the recommendations that were updated before this specified time.

', 'DescribeEventsMessage$StartTime' => '

The beginning of the time interval to retrieve events for, specified in ISO 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia page.

Example: 2009-07-08T18:00Z

', 'DescribeEventsMessage$EndTime' => '

The end of the time interval for which to retrieve events, specified in ISO 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia page.

Example: 2009-07-08T18:00Z

', 'Event$Date' => '

Specifies the date and time of the event.

', 'ExportTask$SnapshotTime' => '

The time when the snapshot was created.

', 'ExportTask$TaskStartTime' => '

The time when the snapshot or cluster export task started.

', 'ExportTask$TaskEndTime' => '

The time when the snapshot or cluster export task ended.

', 'Integration$CreateTime' => '

The time when the integration was created, in Universal Coordinated Time (UTC).

', 'OptionGroup$CopyTimestamp' => '

Indicates when the option group was copied.

', 'PendingMaintenanceAction$AutoAppliedAfterDate' => '

The date of the maintenance window when the action is applied. The maintenance action is applied to the resource during its first maintenance window after this date.

', 'PendingMaintenanceAction$ForcedApplyDate' => '

The date when the maintenance action is automatically applied.

On this date, the maintenance action is applied to the resource as soon as possible, regardless of the maintenance window for the resource. There might be a delay of one or more days from this date before the maintenance action is applied.

', 'PendingMaintenanceAction$CurrentApplyDate' => '

The effective date when the pending maintenance action is applied to the resource. This date takes into account opt-in requests received from the ApplyPendingMaintenanceAction API, the AutoAppliedAfterDate, and the ForcedApplyDate. This value is blank if an opt-in request has not been received and nothing has been specified as AutoAppliedAfterDate or ForcedApplyDate.

', 'PendingModifiedValues$ResumeFullAutomationModeTime' => '

The number of minutes to pause the automation. When the time period ends, RDS Custom resumes full automation. The minimum value is 60 (default). The maximum value is 1,440.

', 'PerformanceIssueDetails$StartTime' => '

The time when the performance issue started.

', 'PerformanceIssueDetails$EndTime' => '

The time when the performance issue stopped.

', 'ReservedDBInstance$StartTime' => '

The time the reservation started.

', 'RestoreDBClusterToPointInTimeMessage$RestoreToTime' => '

The date and time to restore the DB cluster to.

Valid Values: Value must be a time in Universal Coordinated Time (UTC) format

Constraints:

  • Must be before the latest restorable time for the DB instance

  • Must be specified if UseLatestRestorableTime parameter isn\'t provided

  • Can\'t be specified if the UseLatestRestorableTime parameter is enabled

  • Can\'t be specified if the RestoreType parameter is copy-on-write

Example: 2015-03-07T23:45:00Z

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBInstanceToPointInTimeMessage$RestoreTime' => '

The date and time to restore from.

Constraints:

  • Must be a time in Universal Coordinated Time (UTC) format.

  • Must be before the latest restorable time for the DB instance.

  • Can\'t be specified if the UseLatestRestorableTime parameter is enabled.

Example: 2009-09-07T23:45:00Z

', 'RestoreWindow$EarliestTime' => '

The earliest time you can restore an instance to.

', 'RestoreWindow$LatestTime' => '

The latest time you can restore an instance to.

', 'SupportedEngineLifecycle$LifecycleSupportStartDate' => '

The start date for the type of support returned by LifecycleSupportName.

', 'SupportedEngineLifecycle$LifecycleSupportEndDate' => '

The end date for the type of support returned by LifecycleSupportName.

', 'TenantDatabase$TenantDatabaseCreateTime' => '

The creation time of the tenant database.

', ], ], 'Tag' => [ 'base' => '

Metadata assigned to an Amazon RDS resource consisting of a key-value pair.

For more information, see Tagging Amazon RDS resources in the Amazon RDS User Guide or Tagging Amazon Aurora and Amazon RDS resources in the Amazon Aurora User Guide.

', 'refs' => [ 'TagList$member' => NULL, ], ], 'TagList' => [ 'base' => '

A list of tags.

For more information, see Tagging Amazon RDS resources in the Amazon RDS User Guide or Tagging Amazon Aurora and Amazon RDS resources in the Amazon Aurora User Guide.

', 'refs' => [ 'AddTagsToResourceMessage$Tags' => '

The tags to be assigned to the Amazon RDS resource.

', 'BlueGreenDeployment$TagList' => NULL, 'CopyDBClusterParameterGroupMessage$Tags' => NULL, 'CopyDBClusterSnapshotMessage$Tags' => NULL, 'CopyDBParameterGroupMessage$Tags' => NULL, 'CopyDBSnapshotMessage$Tags' => NULL, 'CopyOptionGroupMessage$Tags' => NULL, 'CreateBlueGreenDeploymentRequest$Tags' => '

Tags to assign to the blue/green deployment.

', 'CreateCustomDBEngineVersionMessage$Tags' => NULL, 'CreateDBClusterEndpointMessage$Tags' => '

The tags to be assigned to the Amazon RDS resource.

', 'CreateDBClusterMessage$Tags' => '

Tags to assign to the DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'CreateDBClusterParameterGroupMessage$Tags' => '

Tags to assign to the DB cluster parameter group.

', 'CreateDBClusterSnapshotMessage$Tags' => '

The tags to be assigned to the DB cluster snapshot.

', 'CreateDBInstanceMessage$Tags' => '

Tags to assign to the DB instance.

', 'CreateDBInstanceReadReplicaMessage$Tags' => NULL, 'CreateDBParameterGroupMessage$Tags' => '

Tags to assign to the DB parameter group.

', 'CreateDBProxyEndpointRequest$Tags' => NULL, 'CreateDBProxyRequest$Tags' => '

An optional set of key-value pairs to associate arbitrary data of your choosing with the proxy.

', 'CreateDBSecurityGroupMessage$Tags' => '

Tags to assign to the DB security group.

', 'CreateDBSnapshotMessage$Tags' => NULL, 'CreateDBSubnetGroupMessage$Tags' => '

Tags to assign to the DB subnet group.

', 'CreateEventSubscriptionMessage$Tags' => NULL, 'CreateIntegrationMessage$Tags' => NULL, 'CreateOptionGroupMessage$Tags' => '

Tags to assign to the option group.

', 'CreateTenantDatabaseMessage$Tags' => NULL, 'DBCluster$TagList' => NULL, 'DBClusterSnapshot$TagList' => NULL, 'DBEngineVersion$TagList' => NULL, 'DBInstance$TagList' => NULL, 'DBSnapshot$TagList' => NULL, 'DBSnapshotTenantDatabase$TagList' => NULL, 'Integration$Tags' => NULL, 'PurchaseReservedDBInstancesOfferingMessage$Tags' => NULL, 'RestoreDBClusterFromS3Message$Tags' => NULL, 'RestoreDBClusterFromSnapshotMessage$Tags' => '

The tags to be assigned to the restored DB cluster.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterToPointInTimeMessage$Tags' => NULL, 'RestoreDBInstanceFromDBSnapshotMessage$Tags' => NULL, 'RestoreDBInstanceFromS3Message$Tags' => '

A list of tags to associate with this DB instance. For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.

', 'RestoreDBInstanceToPointInTimeMessage$Tags' => NULL, 'TagListMessage$TagList' => '

List of tags returned by the ListTagsForResource operation.

', 'TenantDatabase$TagList' => NULL, ], ], 'TagListMessage' => [ 'base' => '

', 'refs' => [], ], 'TargetDBClusterParameterGroupName' => [ 'base' => NULL, 'refs' => [ 'CreateBlueGreenDeploymentRequest$TargetDBClusterParameterGroupName' => '

The DB cluster parameter group associated with the Aurora DB cluster in the green environment.

To test parameter changes, specify a DB cluster parameter group that is different from the one associated with the source DB cluster.

', ], ], 'TargetDBInstanceClass' => [ 'base' => NULL, 'refs' => [ 'CreateBlueGreenDeploymentRequest$TargetDBInstanceClass' => '

Specify the DB instance class for the databases in the green environment.

This parameter only applies to RDS DB instances, because DB instances within an Aurora DB cluster can have multiple different instance classes. If you\'re creating a blue/green deployment from an Aurora DB cluster, don\'t specify this parameter. After the green environment is created, you can individually modify the instance classes of the DB instances within the green DB cluster.

', ], ], 'TargetDBParameterGroupName' => [ 'base' => NULL, 'refs' => [ 'CreateBlueGreenDeploymentRequest$TargetDBParameterGroupName' => '

The DB parameter group associated with the DB instance in the green environment.

To test parameter changes, specify a DB parameter group that is different from the one associated with the source DB instance.

', ], ], 'TargetEngineVersion' => [ 'base' => NULL, 'refs' => [ 'CreateBlueGreenDeploymentRequest$TargetEngineVersion' => '

The engine version of the database in the green environment.

Specify the engine version to upgrade to in the green environment.

', ], ], 'TargetGroupList' => [ 'base' => NULL, 'refs' => [ 'DescribeDBProxyTargetGroupsResponse$TargetGroups' => '

An arbitrary number of DBProxyTargetGroup objects, containing details of the corresponding target groups.

', ], ], 'TargetHealth' => [ 'base' => '

Information about the connection health of an RDS Proxy target.

', 'refs' => [ 'DBProxyTarget$TargetHealth' => '

Information about the connection health of the RDS Proxy target.

', ], ], 'TargetHealthReason' => [ 'base' => NULL, 'refs' => [ 'TargetHealth$Reason' => '

The reason for the current health State of the RDS Proxy target.

', ], ], 'TargetList' => [ 'base' => NULL, 'refs' => [ 'DescribeDBProxyTargetsResponse$Targets' => '

An arbitrary number of DBProxyTarget objects, containing details of the corresponding targets.

', 'RegisterDBProxyTargetsResponse$DBProxyTargets' => '

One or more DBProxyTarget objects that are created when you register targets with a target group.

', ], ], 'TargetRole' => [ 'base' => NULL, 'refs' => [ 'DBProxyTarget$Role' => '

A value that indicates whether the target of the proxy can be used for read/write or read-only operations.

', ], ], 'TargetState' => [ 'base' => NULL, 'refs' => [ 'TargetHealth$State' => '

The current state of the connection health lifecycle for the RDS Proxy target. The following is a typical lifecycle example for the states of an RDS Proxy target:

registering > unavailable > available > unavailable > available

', ], ], 'TargetType' => [ 'base' => NULL, 'refs' => [ 'DBProxyTarget$Type' => '

Specifies the kind of database, such as an RDS DB instance or an Aurora DB cluster, that the target represents.

', ], ], 'TenantDatabase' => [ 'base' => '

A tenant database in the DB instance. This data type is an element in the response to the DescribeTenantDatabases action.

', 'refs' => [ 'CreateTenantDatabaseResult$TenantDatabase' => NULL, 'DeleteTenantDatabaseResult$TenantDatabase' => NULL, 'ModifyTenantDatabaseResult$TenantDatabase' => NULL, 'TenantDatabasesList$member' => NULL, ], ], 'TenantDatabaseAlreadyExistsFault' => [ 'base' => '

You attempted to either create a tenant database that already exists or modify a tenant database to use the name of an existing tenant database.

', 'refs' => [], ], 'TenantDatabaseNotFoundFault' => [ 'base' => '

The specified tenant database wasn\'t found in the DB instance.

', 'refs' => [], ], 'TenantDatabasePendingModifiedValues' => [ 'base' => '

A response element in the ModifyTenantDatabase operation that describes changes that will be applied. Specific changes are identified by subelements.

', 'refs' => [ 'TenantDatabase$PendingModifiedValues' => '

Information about pending changes for a tenant database.

', ], ], 'TenantDatabaseQuotaExceededFault' => [ 'base' => '

You attempted to create more tenant databases than are permitted in your Amazon Web Services account.

', 'refs' => [], ], 'TenantDatabasesList' => [ 'base' => NULL, 'refs' => [ 'TenantDatabasesMessage$TenantDatabases' => '

An array of the tenant databases requested by the DescribeTenantDatabases operation.

', ], ], 'TenantDatabasesMessage' => [ 'base' => NULL, 'refs' => [], ], 'Timezone' => [ 'base' => '

A time zone associated with a DBInstance or a DBSnapshot. This data type is an element in the response to the DescribeDBInstances, the DescribeDBSnapshots, and the DescribeDBEngineVersions actions.

', 'refs' => [ 'SupportedTimezonesList$member' => NULL, ], ], 'UpgradeTarget' => [ 'base' => '

The version of the database engine that a DB instance can be upgraded to.

', 'refs' => [ 'ValidUpgradeTargetList$member' => NULL, ], ], 'UserAuthConfig' => [ 'base' => '

Specifies the details of authentication used by a proxy to log in as a specific database user.

', 'refs' => [ 'UserAuthConfigList$member' => NULL, ], ], 'UserAuthConfigInfo' => [ 'base' => '

Returns the details of authentication used by a proxy to log in as a specific database user.

', 'refs' => [ 'UserAuthConfigInfoList$member' => NULL, ], ], 'UserAuthConfigInfoList' => [ 'base' => NULL, 'refs' => [ 'DBProxy$Auth' => '

One or more data structures specifying the authorization mechanism to connect to the associated RDS DB instance or Aurora DB cluster.

', ], ], 'UserAuthConfigList' => [ 'base' => NULL, 'refs' => [ 'CreateDBProxyRequest$Auth' => '

The authorization mechanism that the proxy uses.

', 'ModifyDBProxyRequest$Auth' => '

The new authentication settings for the DBProxy.

', ], ], 'ValidDBInstanceModificationsMessage' => [ 'base' => '

Information about valid modifications that you can make to your DB instance. Contains the result of a successful call to the DescribeValidDBInstanceModifications action. You can use this information when you call ModifyDBInstance.

', 'refs' => [ 'DescribeValidDBInstanceModificationsResult$ValidDBInstanceModificationsMessage' => NULL, ], ], 'ValidStorageOptions' => [ 'base' => '

Information about valid modifications that you can make to your DB instance. Contains the result of a successful call to the DescribeValidDBInstanceModifications action.

', 'refs' => [ 'ValidStorageOptionsList$member' => NULL, ], ], 'ValidStorageOptionsList' => [ 'base' => NULL, 'refs' => [ 'ValidDBInstanceModificationsMessage$Storage' => '

Valid storage options for your DB instance.

', ], ], 'ValidUpgradeTargetList' => [ 'base' => NULL, 'refs' => [ 'DBEngineVersion$ValidUpgradeTarget' => '

A list of engine versions that this database engine version can be upgraded to.

', ], ], 'VpcSecurityGroupIdList' => [ 'base' => NULL, 'refs' => [ 'CreateDBClusterMessage$VpcSecurityGroupIds' => '

A list of EC2 VPC security groups to associate with this DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'CreateDBInstanceMessage$VpcSecurityGroupIds' => '

A list of Amazon EC2 VPC security groups to associate with this DB instance.

This setting doesn\'t apply to Amazon Aurora DB instances. The associated list of EC2 VPC security groups is managed by the DB cluster.

Default: The default EC2 VPC security group for the DB subnet group\'s VPC.

', 'CreateDBInstanceReadReplicaMessage$VpcSecurityGroupIds' => '

A list of Amazon EC2 VPC security groups to associate with the read replica.

This setting doesn\'t apply to RDS Custom DB instances.

Default: The default EC2 VPC security group for the DB subnet group\'s VPC.

', 'ModifyDBClusterMessage$VpcSecurityGroupIds' => '

A list of EC2 VPC security groups to associate with this DB cluster.

Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters

', 'ModifyDBInstanceMessage$VpcSecurityGroupIds' => '

A list of Amazon EC2 VPC security groups to associate with this DB instance. This change is asynchronously applied as soon as possible.

This setting doesn\'t apply to the following DB instances:

  • Amazon Aurora (The associated list of EC2 VPC security groups is managed by the DB cluster. For more information, see ModifyDBCluster.)

  • RDS Custom

Constraints:

  • If supplied, must match existing VPC security group IDs.

', 'OptionConfiguration$VpcSecurityGroupMemberships' => '

A list of VPC security group names used for this option.

', 'RestoreDBClusterFromS3Message$VpcSecurityGroupIds' => '

A list of EC2 VPC security groups to associate with the restored DB cluster.

', 'RestoreDBClusterFromSnapshotMessage$VpcSecurityGroupIds' => '

A list of VPC security groups that the new DB cluster will belong to.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBClusterToPointInTimeMessage$VpcSecurityGroupIds' => '

A list of VPC security groups that the new DB cluster belongs to.

Valid for: Aurora DB clusters and Multi-AZ DB clusters

', 'RestoreDBInstanceFromDBSnapshotMessage$VpcSecurityGroupIds' => '

A list of EC2 VPC security groups to associate with this DB instance.

Default: The default EC2 VPC security group for the DB subnet group\'s VPC.

', 'RestoreDBInstanceFromS3Message$VpcSecurityGroupIds' => '

A list of VPC security groups to associate with this DB instance.

', 'RestoreDBInstanceToPointInTimeMessage$VpcSecurityGroupIds' => '

A list of EC2 VPC security groups to associate with this DB instance.

Default: The default EC2 VPC security group for the DB subnet group\'s VPC.

', ], ], 'VpcSecurityGroupMembership' => [ 'base' => '

This data type is used as a response element for queries on VPC security group membership.

', 'refs' => [ 'VpcSecurityGroupMembershipList$member' => NULL, ], ], 'VpcSecurityGroupMembershipList' => [ 'base' => NULL, 'refs' => [ 'DBCluster$VpcSecurityGroups' => '

The list of VPC security groups that the DB cluster belongs to.

', 'DBInstance$VpcSecurityGroups' => '

The list of Amazon EC2 VPC security groups that the DB instance belongs to.

', 'Option$VpcSecurityGroupMemberships' => '

If the option requires access to a port, then this VPC security group allows access to the port.

', ], ], 'WriteForwardingStatus' => [ 'base' => NULL, 'refs' => [ 'DBCluster$GlobalWriteForwardingStatus' => '

The status of write forwarding for a secondary cluster in an Aurora global database.

', 'GlobalClusterMember$GlobalWriteForwardingStatus' => '

The status of write forwarding for a secondary cluster in the global cluster.

', ], ], ],]; diff --git a/src/data/rds_feature/2014-10-31/endpoint-rule-set-1.json b/src/data/rds_feature/2014-10-31/endpoint-rule-set-1.json new file mode 100644 index 0000000000..1dfb5f0825 --- /dev/null +++ b/src/data/rds_feature/2014-10-31/endpoint-rule-set-1.json @@ -0,0 +1,339 @@ +{ + "version": "1.0", + "parameters": { + "Region": { + "builtIn": "AWS::Region", + "required": false, + "documentation": "The AWS region used to dispatch the request.", + "type": "String" + }, + "UseDualStack": { + "builtIn": "AWS::UseDualStack", + "required": true, + "default": false, + "documentation": "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.", + "type": "Boolean" + }, + "UseFIPS": { + "builtIn": "AWS::UseFIPS", + "required": true, + "default": false, + "documentation": "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.", + "type": "Boolean" + }, + "Endpoint": { + "builtIn": "SDK::Endpoint", + "required": false, + "documentation": "Override the endpoint used to send this request", + "type": "String" + } + }, + "rules": [ + { + "conditions": [ + { + "fn": "isSet", + "argv": [ + { + "ref": "Endpoint" + } + ] + } + ], + "rules": [ + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + { + "ref": "UseFIPS" + }, + true + ] + } + ], + "error": "Invalid Configuration: FIPS and custom endpoint are not supported", + "type": "error" + }, + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + { + "ref": "UseDualStack" + }, + true + ] + } + ], + "error": "Invalid Configuration: Dualstack and custom endpoint are not supported", + "type": "error" + }, + { + "conditions": [], + "endpoint": { + "url": { + "ref": "Endpoint" + }, + "properties": {}, + "headers": {} + }, + "type": "endpoint" + } + ], + "type": "tree" + }, + { + "conditions": [ + { + "fn": "isSet", + "argv": [ + { + "ref": "Region" + } + ] + } + ], + "rules": [ + { + "conditions": [ + { + "fn": "aws.partition", + "argv": [ + { + "ref": "Region" + } + ], + "assign": "PartitionResult" + } + ], + "rules": [ + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + { + "ref": "UseFIPS" + }, + true + ] + }, + { + "fn": "booleanEquals", + "argv": [ + { + "ref": "UseDualStack" + }, + true + ] + } + ], + "rules": [ + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + true, + { + "fn": "getAttr", + "argv": [ + { + "ref": "PartitionResult" + }, + "supportsFIPS" + ] + } + ] + }, + { + "fn": "booleanEquals", + "argv": [ + true, + { + "fn": "getAttr", + "argv": [ + { + "ref": "PartitionResult" + }, + "supportsDualStack" + ] + } + ] + } + ], + "rules": [ + { + "conditions": [], + "endpoint": { + "url": "https://rds-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", + "properties": {}, + "headers": {} + }, + "type": "endpoint" + } + ], + "type": "tree" + }, + { + "conditions": [], + "error": "FIPS and DualStack are enabled, but this partition does not support one or both", + "type": "error" + } + ], + "type": "tree" + }, + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + { + "ref": "UseFIPS" + }, + true + ] + } + ], + "rules": [ + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + { + "fn": "getAttr", + "argv": [ + { + "ref": "PartitionResult" + }, + "supportsFIPS" + ] + }, + true + ] + } + ], + "rules": [ + { + "conditions": [ + { + "fn": "stringEquals", + "argv": [ + { + "fn": "getAttr", + "argv": [ + { + "ref": "PartitionResult" + }, + "name" + ] + }, + "aws-us-gov" + ] + } + ], + "endpoint": { + "url": "https://rds.{Region}.amazonaws.com", + "properties": {}, + "headers": {} + }, + "type": "endpoint" + }, + { + "conditions": [], + "endpoint": { + "url": "https://rds-fips.{Region}.{PartitionResult#dnsSuffix}", + "properties": {}, + "headers": {} + }, + "type": "endpoint" + } + ], + "type": "tree" + }, + { + "conditions": [], + "error": "FIPS is enabled but this partition does not support FIPS", + "type": "error" + } + ], + "type": "tree" + }, + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + { + "ref": "UseDualStack" + }, + true + ] + } + ], + "rules": [ + { + "conditions": [ + { + "fn": "booleanEquals", + "argv": [ + true, + { + "fn": "getAttr", + "argv": [ + { + "ref": "PartitionResult" + }, + "supportsDualStack" + ] + } + ] + } + ], + "rules": [ + { + "conditions": [], + "endpoint": { + "url": "https://rds.{Region}.{PartitionResult#dualStackDnsSuffix}", + "properties": {}, + "headers": {} + }, + "type": "endpoint" + } + ], + "type": "tree" + }, + { + "conditions": [], + "error": "DualStack is enabled but this partition does not support DualStack", + "type": "error" + } + ], + "type": "tree" + }, + { + "conditions": [], + "endpoint": { + "url": "https://rds.{Region}.{PartitionResult#dnsSuffix}", + "properties": {}, + "headers": {} + }, + "type": "endpoint" + } + ], + "type": "tree" + } + ], + "type": "tree" + }, + { + "conditions": [], + "error": "Invalid Configuration: Missing Region", + "type": "error" + } + ] +} \ No newline at end of file diff --git a/src/data/rds_feature/2014-10-31/endpoint-rule-set-1.json.php b/src/data/rds_feature/2014-10-31/endpoint-rule-set-1.json.php new file mode 100644 index 0000000000..ae710d864c --- /dev/null +++ b/src/data/rds_feature/2014-10-31/endpoint-rule-set-1.json.php @@ -0,0 +1,3 @@ + '1.0', 'parameters' => [ 'Region' => [ 'builtIn' => 'AWS::Region', 'required' => false, 'documentation' => 'The AWS region used to dispatch the request.', 'type' => 'String', ], 'UseDualStack' => [ 'builtIn' => 'AWS::UseDualStack', 'required' => true, 'default' => false, 'documentation' => 'When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.', 'type' => 'Boolean', ], 'UseFIPS' => [ 'builtIn' => 'AWS::UseFIPS', 'required' => true, 'default' => false, 'documentation' => 'When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.', 'type' => 'Boolean', ], 'Endpoint' => [ 'builtIn' => 'SDK::Endpoint', 'required' => false, 'documentation' => 'Override the endpoint used to send this request', 'type' => 'String', ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'isSet', 'argv' => [ [ 'ref' => 'Endpoint', ], ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], ], 'error' => 'Invalid Configuration: FIPS and custom endpoint are not supported', 'type' => 'error', ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'error' => 'Invalid Configuration: Dualstack and custom endpoint are not supported', 'type' => 'error', ], [ 'conditions' => [], 'endpoint' => [ 'url' => [ 'ref' => 'Endpoint', ], 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [ [ 'fn' => 'isSet', 'argv' => [ [ 'ref' => 'Region', ], ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'aws.partition', 'argv' => [ [ 'ref' => 'Region', ], ], 'assign' => 'PartitionResult', ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsFIPS', ], ], ], ], [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsDualStack', ], ], ], ], ], 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://rds-fips.{Region}.{PartitionResult#dualStackDnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'FIPS and DualStack are enabled, but this partition does not support one or both', 'type' => 'error', ], ], 'type' => 'tree', ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseFIPS', ], true, ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsFIPS', ], ], true, ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'stringEquals', 'argv' => [ [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'name', ], ], 'aws-us-gov', ], ], ], 'endpoint' => [ 'url' => 'https://rds.{Region}.amazonaws.com', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://rds-fips.{Region}.{PartitionResult#dnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'FIPS is enabled but this partition does not support FIPS', 'type' => 'error', ], ], 'type' => 'tree', ], [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ [ 'ref' => 'UseDualStack', ], true, ], ], ], 'rules' => [ [ 'conditions' => [ [ 'fn' => 'booleanEquals', 'argv' => [ true, [ 'fn' => 'getAttr', 'argv' => [ [ 'ref' => 'PartitionResult', ], 'supportsDualStack', ], ], ], ], ], 'rules' => [ [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://rds.{Region}.{PartitionResult#dualStackDnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'DualStack is enabled but this partition does not support DualStack', 'type' => 'error', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'endpoint' => [ 'url' => 'https://rds.{Region}.{PartitionResult#dnsSuffix}', 'properties' => [], 'headers' => [], ], 'type' => 'endpoint', ], ], 'type' => 'tree', ], ], 'type' => 'tree', ], [ 'conditions' => [], 'error' => 'Invalid Configuration: Missing Region', 'type' => 'error', ], ],]; diff --git a/src/data/rds_feature/2014-10-31/endpoint-tests-1.json b/src/data/rds_feature/2014-10-31/endpoint-tests-1.json new file mode 100644 index 0000000000..8b0bc663a1 --- /dev/null +++ b/src/data/rds_feature/2014-10-31/endpoint-tests-1.json @@ -0,0 +1,691 @@ +{ + "testCases": [ + { + "documentation": "For region af-south-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.af-south-1.amazonaws.com" + } + }, + "params": { + "Region": "af-south-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-east-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-east-1.amazonaws.com" + } + }, + "params": { + "Region": "ap-east-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-northeast-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-northeast-1.amazonaws.com" + } + }, + "params": { + "Region": "ap-northeast-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-northeast-2 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-northeast-2.amazonaws.com" + } + }, + "params": { + "Region": "ap-northeast-2", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-northeast-3 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-northeast-3.amazonaws.com" + } + }, + "params": { + "Region": "ap-northeast-3", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-south-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-south-1.amazonaws.com" + } + }, + "params": { + "Region": "ap-south-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-southeast-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-southeast-1.amazonaws.com" + } + }, + "params": { + "Region": "ap-southeast-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-southeast-2 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-southeast-2.amazonaws.com" + } + }, + "params": { + "Region": "ap-southeast-2", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ap-southeast-3 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ap-southeast-3.amazonaws.com" + } + }, + "params": { + "Region": "ap-southeast-3", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ca-central-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.ca-central-1.amazonaws.com" + } + }, + "params": { + "Region": "ca-central-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region ca-central-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.ca-central-1.amazonaws.com" + } + }, + "params": { + "Region": "ca-central-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region eu-central-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.eu-central-1.amazonaws.com" + } + }, + "params": { + "Region": "eu-central-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region eu-north-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.eu-north-1.amazonaws.com" + } + }, + "params": { + "Region": "eu-north-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region eu-south-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.eu-south-1.amazonaws.com" + } + }, + "params": { + "Region": "eu-south-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region eu-west-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.eu-west-1.amazonaws.com" + } + }, + "params": { + "Region": "eu-west-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region eu-west-2 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.eu-west-2.amazonaws.com" + } + }, + "params": { + "Region": "eu-west-2", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region eu-west-3 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.eu-west-3.amazonaws.com" + } + }, + "params": { + "Region": "eu-west-3", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region me-south-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.me-south-1.amazonaws.com" + } + }, + "params": { + "Region": "me-south-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region sa-east-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.sa-east-1.amazonaws.com" + } + }, + "params": { + "Region": "sa-east-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-east-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-east-1.amazonaws.com" + } + }, + "params": { + "Region": "us-east-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-east-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-east-1.amazonaws.com" + } + }, + "params": { + "Region": "us-east-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-east-2 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-east-2.amazonaws.com" + } + }, + "params": { + "Region": "us-east-2", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-east-2 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-east-2.amazonaws.com" + } + }, + "params": { + "Region": "us-east-2", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-west-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-west-1.amazonaws.com" + } + }, + "params": { + "Region": "us-west-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-west-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-west-1.amazonaws.com" + } + }, + "params": { + "Region": "us-west-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-west-2 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-west-2.amazonaws.com" + } + }, + "params": { + "Region": "us-west-2", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-west-2 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-west-2.amazonaws.com" + } + }, + "params": { + "Region": "us-west-2", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-east-1 with FIPS enabled and DualStack enabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-east-1.api.aws" + } + }, + "params": { + "Region": "us-east-1", + "UseFIPS": true, + "UseDualStack": true + } + }, + { + "documentation": "For region us-east-1 with FIPS disabled and DualStack enabled", + "expect": { + "endpoint": { + "url": "https://rds.us-east-1.api.aws" + } + }, + "params": { + "Region": "us-east-1", + "UseFIPS": false, + "UseDualStack": true + } + }, + { + "documentation": "For region cn-north-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.cn-north-1.amazonaws.com.cn" + } + }, + "params": { + "Region": "cn-north-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region cn-northwest-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.cn-northwest-1.amazonaws.com.cn" + } + }, + "params": { + "Region": "cn-northwest-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region cn-north-1 with FIPS enabled and DualStack enabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.cn-north-1.api.amazonwebservices.com.cn" + } + }, + "params": { + "Region": "cn-north-1", + "UseFIPS": true, + "UseDualStack": true + } + }, + { + "documentation": "For region cn-north-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.cn-north-1.amazonaws.com.cn" + } + }, + "params": { + "Region": "cn-north-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region cn-north-1 with FIPS disabled and DualStack enabled", + "expect": { + "endpoint": { + "url": "https://rds.cn-north-1.api.amazonwebservices.com.cn" + } + }, + "params": { + "Region": "cn-north-1", + "UseFIPS": false, + "UseDualStack": true + } + }, + { + "documentation": "For region us-gov-east-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-gov-east-1.amazonaws.com" + } + }, + "params": { + "Region": "us-gov-east-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-gov-east-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-gov-east-1.amazonaws.com" + } + }, + "params": { + "Region": "us-gov-east-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-gov-west-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-gov-west-1.amazonaws.com" + } + }, + "params": { + "Region": "us-gov-west-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-gov-west-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-gov-west-1.amazonaws.com" + } + }, + "params": { + "Region": "us-gov-west-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-gov-east-1 with FIPS enabled and DualStack enabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-gov-east-1.api.aws" + } + }, + "params": { + "Region": "us-gov-east-1", + "UseFIPS": true, + "UseDualStack": true + } + }, + { + "documentation": "For region us-gov-east-1 with FIPS disabled and DualStack enabled", + "expect": { + "endpoint": { + "url": "https://rds.us-gov-east-1.api.aws" + } + }, + "params": { + "Region": "us-gov-east-1", + "UseFIPS": false, + "UseDualStack": true + } + }, + { + "documentation": "For region us-iso-east-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-iso-east-1.c2s.ic.gov" + } + }, + "params": { + "Region": "us-iso-east-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-iso-west-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-iso-west-1.c2s.ic.gov" + } + }, + "params": { + "Region": "us-iso-west-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-iso-east-1 with FIPS enabled and DualStack enabled", + "expect": { + "error": "FIPS and DualStack are enabled, but this partition does not support one or both" + }, + "params": { + "Region": "us-iso-east-1", + "UseFIPS": true, + "UseDualStack": true + } + }, + { + "documentation": "For region us-iso-east-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-iso-east-1.c2s.ic.gov" + } + }, + "params": { + "Region": "us-iso-east-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-iso-east-1 with FIPS disabled and DualStack enabled", + "expect": { + "error": "DualStack is enabled but this partition does not support DualStack" + }, + "params": { + "Region": "us-iso-east-1", + "UseFIPS": false, + "UseDualStack": true + } + }, + { + "documentation": "For region us-isob-east-1 with FIPS disabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds.us-isob-east-1.sc2s.sgov.gov" + } + }, + "params": { + "Region": "us-isob-east-1", + "UseFIPS": false, + "UseDualStack": false + } + }, + { + "documentation": "For region us-isob-east-1 with FIPS enabled and DualStack enabled", + "expect": { + "error": "FIPS and DualStack are enabled, but this partition does not support one or both" + }, + "params": { + "Region": "us-isob-east-1", + "UseFIPS": true, + "UseDualStack": true + } + }, + { + "documentation": "For region us-isob-east-1 with FIPS enabled and DualStack disabled", + "expect": { + "endpoint": { + "url": "https://rds-fips.us-isob-east-1.sc2s.sgov.gov" + } + }, + "params": { + "Region": "us-isob-east-1", + "UseFIPS": true, + "UseDualStack": false + } + }, + { + "documentation": "For region us-isob-east-1 with FIPS disabled and DualStack enabled", + "expect": { + "error": "DualStack is enabled but this partition does not support DualStack" + }, + "params": { + "Region": "us-isob-east-1", + "UseFIPS": false, + "UseDualStack": true + } + }, + { + "documentation": "For custom endpoint with region set and fips disabled and dualstack disabled", + "expect": { + "endpoint": { + "url": "https://example.com" + } + }, + "params": { + "Region": "us-east-1", + "UseFIPS": false, + "UseDualStack": false, + "Endpoint": "https://example.com" + } + }, + { + "documentation": "For custom endpoint with region not set and fips disabled and dualstack disabled", + "expect": { + "endpoint": { + "url": "https://example.com" + } + }, + "params": { + "UseFIPS": false, + "UseDualStack": false, + "Endpoint": "https://example.com" + } + }, + { + "documentation": "For custom endpoint with fips enabled and dualstack disabled", + "expect": { + "error": "Invalid Configuration: FIPS and custom endpoint are not supported" + }, + "params": { + "Region": "us-east-1", + "UseFIPS": true, + "UseDualStack": false, + "Endpoint": "https://example.com" + } + }, + { + "documentation": "For custom endpoint with fips disabled and dualstack enabled", + "expect": { + "error": "Invalid Configuration: Dualstack and custom endpoint are not supported" + }, + "params": { + "Region": "us-east-1", + "UseFIPS": false, + "UseDualStack": true, + "Endpoint": "https://example.com" + } + }, + { + "documentation": "Missing region", + "expect": { + "error": "Invalid Configuration: Missing Region" + } + } + ], + "version": "1.0" +} \ No newline at end of file diff --git a/src/data/rds_feature/2014-10-31/endpoint-tests-1.json.php b/src/data/rds_feature/2014-10-31/endpoint-tests-1.json.php new file mode 100644 index 0000000000..df6b1b2c15 --- /dev/null +++ b/src/data/rds_feature/2014-10-31/endpoint-tests-1.json.php @@ -0,0 +1,3 @@ + [ [ 'documentation' => 'For region af-south-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.af-south-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'af-south-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-east-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-east-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-east-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-northeast-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-northeast-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-northeast-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-northeast-2 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-northeast-2.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-northeast-2', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-northeast-3 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-northeast-3.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-northeast-3', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-south-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-south-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-south-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-southeast-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-southeast-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-southeast-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-southeast-2 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-southeast-2.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-southeast-2', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ap-southeast-3 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ap-southeast-3.amazonaws.com', ], ], 'params' => [ 'Region' => 'ap-southeast-3', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ca-central-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.ca-central-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'ca-central-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region ca-central-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.ca-central-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'ca-central-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region eu-central-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.eu-central-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'eu-central-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region eu-north-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.eu-north-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'eu-north-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region eu-south-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.eu-south-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'eu-south-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region eu-west-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.eu-west-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'eu-west-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region eu-west-2 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.eu-west-2.amazonaws.com', ], ], 'params' => [ 'Region' => 'eu-west-2', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region eu-west-3 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.eu-west-3.amazonaws.com', ], ], 'params' => [ 'Region' => 'eu-west-3', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region me-south-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.me-south-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'me-south-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region sa-east-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.sa-east-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'sa-east-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-east-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-east-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-east-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-east-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-east-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-east-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-east-2 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-east-2.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-east-2', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-east-2 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-east-2.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-east-2', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-west-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-west-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-west-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-west-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-west-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-west-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-west-2 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-west-2.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-west-2', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-west-2 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-west-2.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-west-2', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-east-1 with FIPS enabled and DualStack enabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-east-1.api.aws', ], ], 'params' => [ 'Region' => 'us-east-1', 'UseFIPS' => true, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region us-east-1 with FIPS disabled and DualStack enabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-east-1.api.aws', ], ], 'params' => [ 'Region' => 'us-east-1', 'UseFIPS' => false, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region cn-north-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.cn-north-1.amazonaws.com.cn', ], ], 'params' => [ 'Region' => 'cn-north-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region cn-northwest-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.cn-northwest-1.amazonaws.com.cn', ], ], 'params' => [ 'Region' => 'cn-northwest-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region cn-north-1 with FIPS enabled and DualStack enabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.cn-north-1.api.amazonwebservices.com.cn', ], ], 'params' => [ 'Region' => 'cn-north-1', 'UseFIPS' => true, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region cn-north-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.cn-north-1.amazonaws.com.cn', ], ], 'params' => [ 'Region' => 'cn-north-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region cn-north-1 with FIPS disabled and DualStack enabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.cn-north-1.api.amazonwebservices.com.cn', ], ], 'params' => [ 'Region' => 'cn-north-1', 'UseFIPS' => false, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region us-gov-east-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-gov-east-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-gov-east-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-gov-east-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-gov-east-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-gov-east-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-gov-west-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-gov-west-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-gov-west-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-gov-west-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-gov-west-1.amazonaws.com', ], ], 'params' => [ 'Region' => 'us-gov-west-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-gov-east-1 with FIPS enabled and DualStack enabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-gov-east-1.api.aws', ], ], 'params' => [ 'Region' => 'us-gov-east-1', 'UseFIPS' => true, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region us-gov-east-1 with FIPS disabled and DualStack enabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-gov-east-1.api.aws', ], ], 'params' => [ 'Region' => 'us-gov-east-1', 'UseFIPS' => false, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region us-iso-east-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-iso-east-1.c2s.ic.gov', ], ], 'params' => [ 'Region' => 'us-iso-east-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-iso-west-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-iso-west-1.c2s.ic.gov', ], ], 'params' => [ 'Region' => 'us-iso-west-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-iso-east-1 with FIPS enabled and DualStack enabled', 'expect' => [ 'error' => 'FIPS and DualStack are enabled, but this partition does not support one or both', ], 'params' => [ 'Region' => 'us-iso-east-1', 'UseFIPS' => true, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region us-iso-east-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-iso-east-1.c2s.ic.gov', ], ], 'params' => [ 'Region' => 'us-iso-east-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-iso-east-1 with FIPS disabled and DualStack enabled', 'expect' => [ 'error' => 'DualStack is enabled but this partition does not support DualStack', ], 'params' => [ 'Region' => 'us-iso-east-1', 'UseFIPS' => false, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region us-isob-east-1 with FIPS disabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds.us-isob-east-1.sc2s.sgov.gov', ], ], 'params' => [ 'Region' => 'us-isob-east-1', 'UseFIPS' => false, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-isob-east-1 with FIPS enabled and DualStack enabled', 'expect' => [ 'error' => 'FIPS and DualStack are enabled, but this partition does not support one or both', ], 'params' => [ 'Region' => 'us-isob-east-1', 'UseFIPS' => true, 'UseDualStack' => true, ], ], [ 'documentation' => 'For region us-isob-east-1 with FIPS enabled and DualStack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://rds-fips.us-isob-east-1.sc2s.sgov.gov', ], ], 'params' => [ 'Region' => 'us-isob-east-1', 'UseFIPS' => true, 'UseDualStack' => false, ], ], [ 'documentation' => 'For region us-isob-east-1 with FIPS disabled and DualStack enabled', 'expect' => [ 'error' => 'DualStack is enabled but this partition does not support DualStack', ], 'params' => [ 'Region' => 'us-isob-east-1', 'UseFIPS' => false, 'UseDualStack' => true, ], ], [ 'documentation' => 'For custom endpoint with region set and fips disabled and dualstack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://example.com', ], ], 'params' => [ 'Region' => 'us-east-1', 'UseFIPS' => false, 'UseDualStack' => false, 'Endpoint' => 'https://example.com', ], ], [ 'documentation' => 'For custom endpoint with region not set and fips disabled and dualstack disabled', 'expect' => [ 'endpoint' => [ 'url' => 'https://example.com', ], ], 'params' => [ 'UseFIPS' => false, 'UseDualStack' => false, 'Endpoint' => 'https://example.com', ], ], [ 'documentation' => 'For custom endpoint with fips enabled and dualstack disabled', 'expect' => [ 'error' => 'Invalid Configuration: FIPS and custom endpoint are not supported', ], 'params' => [ 'Region' => 'us-east-1', 'UseFIPS' => true, 'UseDualStack' => false, 'Endpoint' => 'https://example.com', ], ], [ 'documentation' => 'For custom endpoint with fips disabled and dualstack enabled', 'expect' => [ 'error' => 'Invalid Configuration: Dualstack and custom endpoint are not supported', ], 'params' => [ 'Region' => 'us-east-1', 'UseFIPS' => false, 'UseDualStack' => true, 'Endpoint' => 'https://example.com', ], ], [ 'documentation' => 'Missing region', 'expect' => [ 'error' => 'Invalid Configuration: Missing Region', ], ], ], 'version' => '1.0',]; diff --git a/src/data/rds_feature/2014-10-31/examples-1.json b/src/data/rds_feature/2014-10-31/examples-1.json new file mode 100644 index 0000000000..d9af9a4d97 --- /dev/null +++ b/src/data/rds_feature/2014-10-31/examples-1.json @@ -0,0 +1,5018 @@ +{ + "version": "1.0", + "examples": { + "AddRoleToDBCluster": [ + { + "input": { + "DBClusterIdentifier": "mydbcluster", + "RoleArn": "arn:aws:iam::123456789012:role/RDSLoadFromS3" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example associates a role with a DB cluster.", + "id": "to-associate-an-aws-identity-and-access-management-iam-role-with-a-db-cluster-1679691203006", + "title": "To associate an AWS Identity and Access Management (IAM) role with a DB cluster" + } + ], + "AddRoleToDBInstance": [ + { + "input": { + "DBInstanceIdentifier": "test-instance", + "FeatureName": "S3_INTEGRATION", + "RoleArn": "arn:aws:iam::111122223333:role/rds-s3-integration-role" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example adds the role to a DB instance named test-instance.", + "id": "to-associate-an-aws-identity-and-access-management-iam-role-with-a-db-instance-1679691512295", + "title": "To associate an AWS Identity and Access Management (IAM) role with a DB instance" + } + ], + "AddSourceIdentifierToSubscription": [ + { + "input": { + "SourceIdentifier": "test-instance-repl", + "SubscriptionName": "my-instance-events" + }, + "output": { + "EventSubscription": { + "CustSubscriptionId": "my-instance-events", + "CustomerAwsId": "123456789012", + "Enabled": false, + "EventCategoriesList": [ + "backup", + "recovery" + ], + "EventSubscriptionArn": "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", + "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events", + "SourceIdsList": [ + "test-instance", + "test-instance-repl" + ], + "SourceType": "db-instance", + "Status": "modifying", + "SubscriptionCreationTime": "Tue Jul 31 23:22:01 UTC 2018" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example adds another source identifier to an existing subscription.", + "id": "to-add-a-source-identifier-to-a-subscription-1679691771786", + "title": "To add a source identifier to a subscription" + } + ], + "AddTagsToResource": [ + { + "input": { + "ResourceName": "arn:aws:rds:us-east-1:992648334831:og:mymysqloptiongroup", + "Tags": [ + { + "Key": "Staging", + "Value": "LocationDB" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "This example adds a tag to an option group.", + "id": "add-tags-to-resource-fa99ef50-228b-449d-b893-ca4d4e9768ab", + "title": "To add tags to a resource" + } + ], + "ApplyPendingMaintenanceAction": [ + { + "input": { + "ApplyAction": "system-update", + "OptInType": "immediate", + "ResourceIdentifier": "arn:aws:rds:us-east-1:123456789012:cluster:my-db-cluster" + }, + "output": { + "ResourcePendingMaintenanceActions": { + "PendingMaintenanceActionDetails": [ + { + "Action": "system-update", + "CurrentApplyDate": "2021-01-23T01:07:36.100Z", + "Description": "Upgrade to Aurora PostgreSQL 3.3.2", + "OptInStatus": "immediate" + } + ], + "ResourceIdentifier": "arn:aws:rds:us-east-1:123456789012:cluster:my-db-cluster" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example applies the pending maintenance actions for a DB cluster.", + "id": "to-apply-pending-maintenance-actions-1679692228896", + "title": "To apply pending maintenance actions" + } + ], + "AuthorizeDBSecurityGroupIngress": [ + { + "input": { + "CIDRIP": "203.0.113.5/32", + "DBSecurityGroupName": "mydbsecuritygroup" + }, + "output": { + "DBSecurityGroup": {} + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "This example authorizes access to the specified security group by the specified CIDR block.", + "id": "authorize-db-security-group-ingress-ebf9ab91-8912-4b07-a32e-ca150668164f", + "title": "To authorize DB security group integress" + } + ], + "CancelExportTask": [ + { + "input": { + "ExportTaskIdentifier": "my-s3-export-1" + }, + "output": { + "ExportTaskIdentifier": "my-s3-export-1", + "IamRoleArn": "arn:aws:iam::123456789012:role/service-role/export-snap-S3-role", + "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/abcd0000-7bfd-4594-af38-aabbccddeeff", + "PercentProgress": 0, + "S3Bucket": "mybucket", + "S3Prefix": "", + "SnapshotTime": "2019-03-24T20:01:09.815Z", + "SourceArn": "arn:aws:rds:us-east-1:123456789012:snapshot:publisher-final-snapshot", + "Status": "CANCELING", + "TotalExtractedDataInGB": 0 + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example cancels an export task in progress that is exporting a snapshot to Amazon S3.", + "id": "to-cancel-a-snapshot-export-to-amazon-s3-1679694286587", + "title": "To cancel a snapshot export to Amazon S3" + } + ], + "CopyDBClusterParameterGroup": [ + { + "input": { + "SourceDBClusterParameterGroupIdentifier": "mydbclusterparametergroup", + "TargetDBClusterParameterGroupDescription": "My DB cluster parameter group copy", + "TargetDBClusterParameterGroupIdentifier": "mydbclusterparametergroup-copy" + }, + "output": { + "DBClusterParameterGroup": { + "DBClusterParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterparametergroup-copy", + "DBClusterParameterGroupName": "mydbclusterparametergroup-copy", + "DBParameterGroupFamily": "aurora-mysql5.7", + "Description": "My DB cluster parameter group copy" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "This example copies a DB cluster parameter group.", + "id": "copy-db-cluster-parameter-group-6fefaffe-cde9-4dba-9f0b-d3f593572fe4", + "title": "To copy a DB cluster parameter group" + } + ], + "CopyDBClusterSnapshot": [ + { + "input": { + "CopyTags": true, + "SourceDBClusterSnapshotIdentifier": "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:rds:myaurora-2019-06-04-09-16", + "TargetDBClusterSnapshotIdentifier": "myclustersnapshotcopy" + }, + "output": { + "DBClusterSnapshot": { + "AllocatedStorage": 0, + "AvailabilityZones": [ + "us-east-1a", + "us-east-1b", + "us-east-1e" + ], + "ClusterCreateTime": "2019-04-15T14:18:42.785Z", + "DBClusterIdentifier": "myaurora", + "DBClusterSnapshotArn": "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:myclustersnapshotcopy", + "DBClusterSnapshotIdentifier": "myclustersnapshotcopy", + "Engine": "aurora-mysql", + "EngineVersion": "5.7.mysql_aurora.2.04.2", + "IAMDatabaseAuthenticationEnabled": false, + "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", + "LicenseModel": "aurora-mysql", + "MasterUsername": "myadmin", + "PercentProgress": 100, + "Port": 0, + "SnapshotCreateTime": "2019-06-04T09:16:42.649Z", + "SnapshotType": "manual", + "Status": "available", + "StorageEncrypted": true, + "VpcId": "vpc-123example" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a copy of a DB cluster snapshot, including its tags.", + "id": "to-copy-a-db-cluster-snapshot-1679695109979", + "title": "To copy a DB cluster snapshot" + } + ], + "CopyDBParameterGroup": [ + { + "input": { + "SourceDBParameterGroupIdentifier": "mydbpg", + "TargetDBParameterGroupDescription": "Copy of mydbpg parameter group", + "TargetDBParameterGroupIdentifier": "mydbpgcopy" + }, + "output": { + "DBParameterGroup": { + "DBParameterGroupArn": "arn:aws:rds:us-east-1:814387698303:pg:mydbpgcopy", + "DBParameterGroupFamily": "mysql5.7", + "DBParameterGroupName": "mydbpgcopy", + "Description": "Copy of mydbpg parameter group" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example makes a copy of a DB parameter group.", + "id": "to-copy-a-db-parameter-group-1679695426993", + "title": "To copy a DB parameter group" + } + ], + "CopyDBSnapshot": [ + { + "input": { + "SourceDBSnapshotIdentifier": "rds:database-mysql-2019-06-06-08-38", + "TargetDBSnapshotIdentifier": "mydbsnapshotcopy" + }, + "output": { + "DBSnapshot": { + "AllocatedStorage": 100, + "AvailabilityZone": "us-east-1f", + "DBInstanceIdentifier": "database-mysql", + "DBSnapshotArn": "arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshotcopy", + "DBSnapshotIdentifier": "mydbsnapshotcopy", + "DbiResourceId": "db-ZI7UJ5BLKMBYFGX7FDENCKADC4", + "Encrypted": true, + "Engine": "mysql", + "EngineVersion": "5.6.40", + "IAMDatabaseAuthenticationEnabled": false, + "InstanceCreateTime": "2019-04-30T15:45:53.663Z", + "Iops": 1000, + "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", + "LicenseModel": "general-public-license", + "MasterUsername": "admin", + "OptionGroupName": "default:mysql-5-6", + "PercentProgress": 0, + "Port": 3306, + "ProcessorFeatures": [], + "SnapshotType": "manual", + "SourceDBSnapshotIdentifier": "arn:aws:rds:us-east-1:123456789012:snapshot:rds:database-mysql-2019-06-06-08-38", + "SourceRegion": "us-east-1", + "Status": "creating", + "StorageType": "io1", + "VpcId": "vpc-6594f31c" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a copy of a DB snapshot.", + "id": "to-copy-a-db-snapshot-1679695661487", + "title": "To copy a DB snapshot" + } + ], + "CopyOptionGroup": [ + { + "input": { + "SourceOptionGroupIdentifier": "myoptiongroup", + "TargetOptionGroupDescription": "My option group copy", + "TargetOptionGroupIdentifier": "new-option-group" + }, + "output": { + "OptionGroup": { + "AllowsVpcAndNonVpcInstanceMemberships": true, + "EngineName": "oracle-ee", + "MajorEngineVersion": "11.2", + "OptionGroupArn": "arn:aws:rds:us-east-1:123456789012:og:new-option-group", + "OptionGroupDescription": "My option group copy", + "OptionGroupName": "new-option-group", + "Options": [] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example makes a copy of an option group.", + "id": "to-copy-an-option-group-1679695800102", + "title": "To copy an option group" + } + ], + "CreateBlueGreenDeployment": [ + { + "input": { + "BlueGreenDeploymentName": "bgd-test-instance", + "Source": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", + "TargetDBParameterGroupName": "mysql-80-group", + "TargetEngineVersion": "8.0" + }, + "output": { + "BlueGreenDeployment": { + "BlueGreenDeploymentIdentifier": "bgd-v53303651eexfake", + "BlueGreenDeploymentName": "bgd-cli-test-instance", + "CreateTime": "2022-02-25T21:18:51.183000+00:00", + "Source": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", + "Status": "PROVISIONING", + "SwitchoverDetails": [ + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3" + } + ], + "Tasks": [ + { + "Name": "CREATING_READ_REPLICA_OF_SOURCE", + "Status": "PENDING" + }, + { + "Name": "DB_ENGINE_VERSION_UPGRADE", + "Status": "PENDING" + }, + { + "Name": "CONFIGURE_BACKUPS", + "Status": "PENDING" + }, + { + "Name": "CREATING_TOPOLOGY_OF_SOURCE", + "Status": "PENDING" + } + ] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a blue/green deployment for a MySQL DB instance.", + "id": "to-create-a-bluegreen-deployment-for-an-rds-for-mysql-db-instance-1679688377231", + "title": "To create a blue/green deployment for an RDS for MySQL DB instance" + }, + { + "input": { + "BlueGreenDeploymentName": "my-blue-green-deployment", + "Source": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", + "TargetDBClusterParameterGroupName": "mysql-80-cluster-group", + "TargetDBParameterGroupName": "ams-80-binlog-enabled", + "TargetEngineVersion": "8.0" + }, + "output": { + "BlueGreenDeployment": { + "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", + "BlueGreenDeploymentName": "my-blue-green-deployment", + "CreateTime": "2022-02-25T21:12:00.288000+00:00", + "Source": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", + "Status": "PROVISIONING", + "SwitchoverDetails": [ + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", + "Status": "PROVISIONING" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1", + "Status": "PROVISIONING" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2", + "Status": "PROVISIONING" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3", + "Status": "PROVISIONING" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint", + "Status": "PROVISIONING" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint", + "Status": "PROVISIONING" + } + ], + "Tasks": [ + { + "Name": "CREATING_READ_REPLICA_OF_SOURCE", + "Status": "PENDING" + }, + { + "Name": "DB_ENGINE_VERSION_UPGRADE", + "Status": "PENDING" + }, + { + "Name": "CREATE_DB_INSTANCES_FOR_CLUSTER", + "Status": "PENDING" + }, + { + "Name": "CREATE_CUSTOM_ENDPOINTS", + "Status": "PENDING" + } + ] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a blue/green deployment for an Aurora MySQL DB cluster.", + "id": "to-create-a-bluegreen-deployment-for-an-aurora-mysql-db-cluster-1679703605487", + "title": "To create a blue/green deployment for an Aurora MySQL DB cluster" + } + ], + "CreateDBCluster": [ + { + "input": { + "DBClusterIdentifier": "sample-cluster", + "DBSubnetGroupName": "default", + "Engine": "aurora-mysql", + "EngineVersion": "5.7.12", + "MasterUserPassword": "mypassword", + "MasterUsername": "admin", + "VpcSecurityGroupIds": [ + "sg-0b91305example" + ] + }, + "output": { + "DBCluster": { + "AllocatedStorage": 1, + "AssociatedRoles": [], + "AvailabilityZones": [ + "us-east-1a", + "us-east-1b", + "us-east-1e" + ], + "BackupRetentionPeriod": 1, + "ClusterCreateTime": "2019-06-07T23:21:33.048Z", + "CopyTagsToSnapshot": false, + "DBClusterArn": "arn:aws:rds:us-east-1:123456789012:cluster:sample-cluster", + "DBClusterIdentifier": "sample-cluster", + "DBClusterMembers": [], + "DBClusterParameterGroup": "default.aurora-mysql5.7", + "DBSubnetGroup": "default", + "DbClusterResourceId": "cluster-ANPAJ4AE5446DAEXAMPLE", + "DeletionProtection": false, + "Endpoint": "sample-cluster.cluster-cnpexample.us-east-1.rds.amazonaws.com", + "Engine": "aurora-mysql", + "EngineMode": "provisioned", + "EngineVersion": "5.7.12", + "HostedZoneId": "Z2R2ITUGPM61AM", + "HttpEndpointEnabled": false, + "IAMDatabaseAuthenticationEnabled": false, + "MasterUsername": "master", + "MultiAZ": false, + "Port": 3306, + "PreferredBackupWindow": "09:12-09:42", + "PreferredMaintenanceWindow": "mon:04:31-mon:05:01", + "ReadReplicaIdentifiers": [], + "ReaderEndpoint": "sample-cluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", + "Status": "creating", + "StorageEncrypted": false, + "VpcSecurityGroups": [ + { + "Status": "active", + "VpcSecurityGroupId": "sg-0b91305example" + } + ] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a MySQL 5.7-compatible Aurora DB cluster.", + "id": "to-create-a-mysql-57-compatible-db-cluster-1679699416154", + "title": "To create a MySQL 5.7-compatible DB cluster" + }, + { + "input": { + "DBClusterIdentifier": "sample-pg-cluster", + "DBSubnetGroupName": "default", + "Engine": "aurora-postgresql", + "MasterUserPassword": "mypassword", + "MasterUsername": "admin", + "VpcSecurityGroupIds": [ + "sg-0b91305example" + ] + }, + "output": { + "DBCluster": { + "AllocatedStorage": 1, + "AssociatedRoles": [], + "AvailabilityZones": [ + "us-east-1a", + "us-east-1b", + "us-east-1c" + ], + "BackupRetentionPeriod": 1, + "ClusterCreateTime": "2019-06-07T23:26:08.371Z", + "CopyTagsToSnapshot": false, + "DBClusterArn": "arn:aws:rds:us-east-1:123456789012:cluster:sample-pg-cluster", + "DBClusterIdentifier": "sample-pg-cluster", + "DBClusterMembers": [], + "DBClusterParameterGroup": "default.aurora-postgresql9.6", + "DBSubnetGroup": "default", + "DbClusterResourceId": "cluster-ANPAJ4AE5446DAEXAMPLE", + "DeletionProtection": false, + "Endpoint": "sample-pg-cluster.cluster-cnpexample.us-east-1.rds.amazonaws.com", + "Engine": "aurora-postgresql", + "EngineMode": "provisioned", + "EngineVersion": "9.6.9", + "HostedZoneId": "Z2R2ITUGPM61AM", + "HttpEndpointEnabled": false, + "IAMDatabaseAuthenticationEnabled": false, + "MasterUsername": "master", + "MultiAZ": false, + "Port": 5432, + "PreferredBackupWindow": "09:56-10:26", + "PreferredMaintenanceWindow": "wed:03:33-wed:04:03", + "ReadReplicaIdentifiers": [], + "ReaderEndpoint": "sample-pg-cluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", + "Status": "creating", + "StorageEncrypted": false, + "VpcSecurityGroups": [ + { + "Status": "active", + "VpcSecurityGroupId": "sg-0b91305example" + } + ] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a PostgreSQL-compatible Aurora DB cluster.", + "id": "to-create-a-postgresql-compatible-db-cluster-1679700161087", + "title": "To create a PostgreSQL-compatible DB cluster" + } + ], + "CreateDBClusterEndpoint": [ + { + "input": { + "DBClusterEndpointIdentifier": "mycustomendpoint", + "DBClusterIdentifier": "mydbcluster", + "EndpointType": "reader", + "StaticMembers": [ + "dbinstance1", + "dbinstance2" + ] + }, + "output": { + "CustomEndpointType": "READER", + "DBClusterEndpointArn": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:mycustomendpoint", + "DBClusterEndpointIdentifier": "mycustomendpoint", + "DBClusterEndpointResourceIdentifier": "cluster-endpoint-ANPAJ4AE5446DAEXAMPLE", + "DBClusterIdentifier": "mydbcluster", + "Endpoint": "mycustomendpoint.cluster-custom-cnpexample.us-east-1.rds.amazonaws.com", + "EndpointType": "CUSTOM", + "ExcludedMembers": [], + "StaticMembers": [ + "dbinstance1", + "dbinstance2" + ], + "Status": "creating" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a custom DB cluster endpoint and associate it with the specified Aurora DB cluster.", + "id": "to-create-a-custom-db-cluster-endpoint-1679701608522", + "title": "To create a custom DB cluster endpoint" + } + ], + "CreateDBClusterParameterGroup": [ + { + "input": { + "DBClusterParameterGroupName": "mydbclusterparametergroup", + "DBParameterGroupFamily": "aurora5.6", + "Description": "My new cluster parameter group" + }, + "output": { + "DBClusterParameterGroup": { + "DBClusterParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterparametergroup", + "DBClusterParameterGroupName": "mydbclusterparametergroup", + "DBParameterGroupFamily": "aurora5.6", + "Description": "My new cluster parameter group" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a DB cluster parameter group.", + "id": "to-create-a-db-cluster-parameter-group-1679702915771", + "title": "To create a DB cluster parameter group" + } + ], + "CreateDBClusterSnapshot": [ + { + "input": { + "DBClusterIdentifier": "mydbclustersnapshot", + "DBClusterSnapshotIdentifier": "mydbcluster" + }, + "output": { + "DBClusterSnapshot": { + "AllocatedStorage": 1, + "AvailabilityZones": [ + "us-east-1a", + "us-east-1b", + "us-east-1e" + ], + "ClusterCreateTime": "2019-04-15T14:18:42.785Z", + "DBClusterIdentifier": "mydbcluster", + "DBClusterSnapshotArn": "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:mydbclustersnapshot", + "DBClusterSnapshotIdentifier": "mydbclustersnapshot", + "Engine": "aurora-mysql", + "EngineVersion": "5.7.mysql_aurora.2.04.2", + "IAMDatabaseAuthenticationEnabled": false, + "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", + "LicenseModel": "aurora-mysql", + "MasterUsername": "myadmin", + "PercentProgress": 0, + "Port": 0, + "SnapshotCreateTime": "2019-06-18T21:21:00.469Z", + "SnapshotType": "manual", + "Status": "creating", + "StorageEncrypted": true, + "VpcId": "vpc-6594f31c" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a DB cluster snapshot.", + "id": "to-create-a-db-cluster-snapshot-1679703154423", + "title": "To create a DB cluster snapshot" + } + ], + "CreateDBInstance": [ + { + "input": { + "AllocatedStorage": 20, + "DBInstanceClass": "db.t3.micro", + "DBInstanceIdentifier": "test-mysql-instance", + "Engine": "mysql", + "MasterUserPassword": "secret99", + "MasterUsername": "admin" + }, + "output": { + "DBInstance": { + "AllocatedStorage": 20, + "AssociatedRoles": [], + "AutoMinorVersionUpgrade": true, + "BackupRetentionPeriod": 1, + "CACertificateIdentifier": "rds-ca-2019", + "CopyTagsToSnapshot": false, + "DBInstanceArn": "arn:aws:rds:us-west-2:123456789012:db:test-mysql-instance", + "DBInstanceClass": "db.t3.micro", + "DBInstanceIdentifier": "test-mysql-instance", + "DBInstanceStatus": "creating", + "DBParameterGroups": [ + { + "DBParameterGroupName": "default.mysql5.7", + "ParameterApplyStatus": "in-sync" + } + ], + "DBSecurityGroups": [], + "DBSubnetGroup": { + "DBSubnetGroupDescription": "default", + "DBSubnetGroupName": "default", + "SubnetGroupStatus": "Complete", + "Subnets": [ + { + "SubnetAvailabilityZone": { + "Name": "us-west-2c" + }, + "SubnetIdentifier": "subnet-########", + "SubnetStatus": "Active" + }, + { + "SubnetAvailabilityZone": { + "Name": "us-west-2d" + }, + "SubnetIdentifier": "subnet-########", + "SubnetStatus": "Active" + }, + { + "SubnetAvailabilityZone": { + "Name": "us-west-2a" + }, + "SubnetIdentifier": "subnet-########", + "SubnetStatus": "Active" + }, + { + "SubnetAvailabilityZone": { + "Name": "us-west-2b" + }, + "SubnetIdentifier": "subnet-########", + "SubnetStatus": "Active" + } + ], + "VpcId": "vpc-2ff2ff2f" + }, + "DbInstancePort": 0, + "DbiResourceId": "db-5555EXAMPLE44444444EXAMPLE", + "DeletionProtection": false, + "DomainMemberships": [], + "Engine": "mysql", + "EngineVersion": "5.7.22", + "IAMDatabaseAuthenticationEnabled": false, + "LicenseModel": "general-public-license", + "MasterUsername": "admin", + "MonitoringInterval": 0, + "MultiAZ": false, + "OptionGroupMemberships": [ + { + "OptionGroupName": "default:mysql-5-7", + "Status": "in-sync" + } + ], + "PendingModifiedValues": { + "MasterUserPassword": "****" + }, + "PerformanceInsightsEnabled": false, + "PreferredBackupWindow": "12:55-13:25", + "PreferredMaintenanceWindow": "sun:08:07-sun:08:37", + "PubliclyAccessible": true, + "ReadReplicaDBInstanceIdentifiers": [], + "StorageEncrypted": false, + "StorageType": "gp2", + "VpcSecurityGroups": [ + { + "Status": "active", + "VpcSecurityGroupId": "sg-12345abc" + } + ] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example uses the required options to launch a new DB instance.", + "id": "to-create-a-db-instance-1679703299533", + "title": "To create a DB instance" + } + ], + "CreateDBInstanceReadReplica": [ + { + "input": { + "DBInstanceIdentifier": "test-instance-repl", + "SourceDBInstanceIdentifier": "test-instance" + }, + "output": { + "DBInstance": { + "DBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:test-instance-repl", + "DBInstanceIdentifier": "test-instance-repl", + "IAMDatabaseAuthenticationEnabled": false, + "MonitoringInterval": 0, + "ReadReplicaSourceDBInstanceIdentifier": "test-instance" + } + }, + "comments": { + "input": {}, + "output": { + "DBInstance": "Some output ommitted." + } + }, + "description": "This example creates a read replica of an existing DB instance named test-instance. The read replica is named test-instance-repl.", + "id": "to-create-a-db-instance-read-replica-1680129486105", + "title": "To create a DB instance read replica" + } + ], + "CreateDBParameterGroup": [ + { + "input": { + "DBParameterGroupFamily": "MySQL8.0", + "DBParameterGroupName": "mydbparametergroup", + "Description": "My new parameter group" + }, + "output": { + "DBParameterGroup": { + "DBParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:pg:mydbparametergroup", + "DBParameterGroupFamily": "mysql8.0", + "DBParameterGroupName": "mydbparametergroup", + "Description": "My new parameter group" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a DB parameter group.", + "id": "to-create-a-db-parameter-group-1679939227970", + "title": "To create a DB parameter group" + } + ], + "CreateDBSecurityGroup": [ + { + "input": { + "DBSecurityGroupDescription": "My DB security group", + "DBSecurityGroupName": "mydbsecuritygroup" + }, + "output": { + "DBSecurityGroup": {} + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "This example creates a DB security group.", + "id": "create-db-security-group-41b6786a-539e-42a5-a645-a8bc3cf99353", + "title": "To create a DB security group." + } + ], + "CreateDBSnapshot": [ + { + "input": { + "DBInstanceIdentifier": "mydbsnapshot", + "DBSnapshotIdentifier": "database-mysql" + }, + "output": { + "DBSnapshot": { + "AllocatedStorage": 100, + "AvailabilityZone": "us-east-1b", + "DBInstanceIdentifier": "database-mysql", + "DBSnapshotArn": "arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshot", + "DBSnapshotIdentifier": "mydbsnapshot", + "DbiResourceId": "db-AKIAIOSFODNN7EXAMPLE", + "Encrypted": true, + "Engine": "mysql", + "EngineVersion": "8.0.32", + "IAMDatabaseAuthenticationEnabled": false, + "InstanceCreateTime": "2019-04-30T15:45:53.663Z", + "Iops": 1000, + "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", + "LicenseModel": "general-public-license", + "MasterUsername": "admin", + "OptionGroupName": "default:mysql-8-0", + "PercentProgress": 0, + "Port": 3306, + "ProcessorFeatures": [], + "SnapshotType": "manual", + "Status": "creating", + "StorageType": "io1", + "VpcId": "vpc-6594f31c" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a DB snapshot.", + "id": "to-create-a-db-snapshot-1679939585361", + "title": "To create a DB snapshot" + } + ], + "CreateDBSubnetGroup": [ + { + "input": { + "DBSubnetGroupDescription": "test DB subnet group", + "DBSubnetGroupName": "mysubnetgroup", + "SubnetIds": [ + "subnet-0a1dc4e1a6f123456", + "subnet-070dd7ecb3aaaaaaa", + "subnet-00f5b198bc0abcdef" + ] + }, + "output": { + "DBSubnetGroup": { + "DBSubnetGroupArn": "arn:aws:rds:us-west-2:0123456789012:subgrp:mysubnetgroup", + "DBSubnetGroupDescription": "test DB subnet group", + "DBSubnetGroupName": "mysubnetgroup", + "SubnetGroupStatus": "Complete", + "Subnets": [ + { + "SubnetAvailabilityZone": { + "Name": "us-west-2b" + }, + "SubnetIdentifier": "subnet-070dd7ecb3aaaaaaa", + "SubnetStatus": "Active" + }, + { + "SubnetAvailabilityZone": { + "Name": "us-west-2d" + }, + "SubnetIdentifier": "subnet-00f5b198bc0abcdef", + "SubnetStatus": "Active" + }, + { + "SubnetAvailabilityZone": { + "Name": "us-west-2b" + }, + "SubnetIdentifier": "subnet-0a1dc4e1a6f123456", + "SubnetStatus": "Active" + } + ], + "VpcId": "vpc-0f08e7610a1b2c3d4" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a DB subnet group called mysubnetgroup using existing subnets.", + "id": "to-create-a-db-subnet-group-1679942682822", + "title": "To create a DB subnet group" + } + ], + "CreateEventSubscription": [ + { + "input": { + "EventCategories": [ + "backup", + "recovery" + ], + "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events", + "SourceType": "db-instance", + "SubscriptionName": "my-instance-events" + }, + "output": { + "EventSubscription": { + "CustSubscriptionId": "my-instance-events", + "CustomerAwsId": "123456789012", + "Enabled": true, + "EventCategoriesList": [ + "backup", + "recovery" + ], + "EventSubscriptionArn": "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", + "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events", + "SourceType": "db-instance", + "Status": "creating", + "SubscriptionCreationTime": "Tue Jul 31 23:22:01 UTC 2018" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a subscription for backup and recovery events for DB instances in the current AWS account. Notifications are sent to an Amazon Simple Notification Service topic.", + "id": "to-create-an-event-subscription-1679956709288", + "title": "To create an event subscription" + } + ], + "CreateGlobalCluster": [ + { + "input": { + "Engine": "aurora-mysql", + "GlobalClusterIdentifier": "myglobalcluster" + }, + "output": { + "GlobalCluster": { + "DeletionProtection": false, + "Engine": "aurora-mysql", + "EngineVersion": "5.7.mysql_aurora.2.07.2", + "GlobalClusterArn": "arn:aws:rds::123456789012:global-cluster:myglobalcluster", + "GlobalClusterIdentifier": "myglobalcluster", + "GlobalClusterMembers": [], + "GlobalClusterResourceId": "cluster-f0e523bfe07aabb", + "Status": "available", + "StorageEncrypted": false + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a new Aurora MySQL-compatible global DB cluster.", + "id": "to-create-a-global-db-cluster-1679957040413", + "title": "To create a global DB cluster" + } + ], + "CreateIntegration": [ + { + "input": { + "IntegrationName": "my-integration", + "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", + "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" + }, + "output": { + "CreateTime": "2023-12-28T17:20:20.629Z", + "IntegrationArn": "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231", + "IntegrationName": "my-integration", + "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa", + "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", + "Status": "creating", + "Tags": [], + "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a zero-ETL integration with Amazon Redshift.", + "id": "to-create-a-zero-etl-integration-1679688377231", + "title": "To create a zero-ETL integration" + } + ], + "CreateOptionGroup": [ + { + "input": { + "EngineName": "mysql", + "MajorEngineVersion": "8.0", + "OptionGroupDescription": "MySQL 8.0 option group", + "OptionGroupName": "MyOptionGroup" + }, + "output": { + "OptionGroup": { + "AllowsVpcAndNonVpcInstanceMemberships": true, + "EngineName": "mysql", + "MajorEngineVersion": "8.0", + "OptionGroupArn": "arn:aws:rds:us-east-1:123456789012:og:myoptiongroup", + "OptionGroupDescription": "MySQL 8.0 option group", + "OptionGroupName": "myoptiongroup", + "Options": [] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example creates a new Amazon RDS option group for Oracle MySQL version 8,0 named MyOptionGroup.", + "id": "to-create-an-amazon-rds-option-group-1679958217590", + "title": "To Create an Amazon RDS option group" + } + ], + "DeleteBlueGreenDeployment": [ + { + "input": { + "BlueGreenDeploymentIdentifier": "bgd-v53303651eexfake", + "DeleteTarget": true + }, + "output": { + "BlueGreenDeployment": { + "BlueGreenDeploymentIdentifier": "bgd-v53303651eexfake", + "BlueGreenDeploymentName": "bgd-cli-test-instance", + "CreateTime": "2022-02-25T21:18:51.183000+00:00", + "DeleteTime": "2022-02-25T22:25:31.331000+00:00", + "Source": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", + "Status": "DELETING", + "SwitchoverDetails": [ + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-rkfbpe" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1-green-j382ha" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2-green-ejv4ao" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3-green-vlpz3t" + } + ], + "Target": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-rkfbpe", + "Tasks": [ + { + "Name": "CREATING_READ_REPLICA_OF_SOURCE", + "Status": "COMPLETED" + }, + { + "Name": "DB_ENGINE_VERSION_UPGRADE", + "Status": "COMPLETED" + }, + { + "Name": "CONFIGURE_BACKUPS", + "Status": "COMPLETED" + }, + { + "Name": "CREATING_TOPOLOGY_OF_SOURCE", + "Status": "COMPLETED" + } + ] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example deletes the resources in a green environment for an RDS for MySQL DB instance.", + "id": "to-delete-resources-in-green-environment-for-an-rds-for-mysql-db-instance-1679959961651", + "title": "To delete resources in green environment for an RDS for MySQL DB instance" + }, + { + "input": { + "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", + "DeleteTarget": true + }, + "output": { + "BlueGreenDeployment": { + "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", + "BlueGreenDeploymentName": "my-blue-green-deployment", + "CreateTime": "2022-02-25T21:12:00.288000+00:00", + "DeleteTime": "2022-02-25T22:29:11.336000+00:00", + "Source": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", + "Status": "DELETING", + "SwitchoverDetails": [ + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3rnukl" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1-green-gpmaxf" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2-green-j2oajq" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3-green-mkxies" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint-green-4sqjrq" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint-green-gwwzlg" + } + ], + "Target": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3rnukl", + "Tasks": [ + { + "Name": "CREATING_READ_REPLICA_OF_SOURCE", + "Status": "COMPLETED" + }, + { + "Name": "DB_ENGINE_VERSION_UPGRADE", + "Status": "COMPLETED" + }, + { + "Name": "CREATE_DB_INSTANCES_FOR_CLUSTER", + "Status": "COMPLETED" + }, + { + "Name": "CREATE_CUSTOM_ENDPOINTS", + "Status": "COMPLETED" + } + ] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example deletes the resources in a green environment for an Aurora MySQL DB cluster.", + "id": "to-delete-resources-in-green-environment-for-an-aurora-mysql-db-cluster-1679960123935", + "title": "To delete resources in green environment for an Aurora MySQL DB cluster" + } + ], + "DeleteDBCluster": [ + { + "input": { + "DBClusterIdentifier": "mycluster", + "FinalDBSnapshotIdentifier": "mycluster-final-snapshot", + "SkipFinalSnapshot": false + }, + "output": { + "DBCluster": { + "AllocatedStorage": 20, + "AvailabilityZones": [ + "eu-central-1b", + "eu-central-1c", + "eu-central-1a" + ], + "BackupRetentionPeriod": 7, + "DBClusterIdentifier": "mycluster", + "DBClusterParameterGroup": "default.aurora-postgresql10", + "DBSubnetGroup": "default-vpc-aa11bb22", + "Status": "available" + } + }, + "comments": { + "input": {}, + "output": { + "DBCluster": "Some output ommitted." + } + }, + "description": "The following example deletes the DB cluster named mycluster and takes a final snapshot named mycluster-final-snapshot. The status of the DB cluster is available while the snapshot is being taken. ", + "id": "to-delete-a-db-cluster-1680197141906", + "title": "To delete a DB cluster" + } + ], + "DeleteDBClusterEndpoint": [ + { + "input": { + "DBClusterEndpointIdentifier": "mycustomendpoint" + }, + "output": { + "CustomEndpointType": "READER", + "DBClusterEndpointArn": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:mycustomendpoint", + "DBClusterEndpointIdentifier": "mycustomendpoint", + "DBClusterEndpointResourceIdentifier": "cluster-endpoint-ANPAJ4AE5446DAEXAMPLE", + "DBClusterIdentifier": "mydbcluster", + "Endpoint": "mycustomendpoint.cluster-custom-cnpexample.us-east-1.rds.amazonaws.com", + "EndpointType": "CUSTOM", + "ExcludedMembers": [], + "StaticMembers": [ + "dbinstance1", + "dbinstance2", + "dbinstance3" + ], + "Status": "deleting" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example deletes the specified custom DB cluster endpoint.", + "id": "to-delete-a-custom-db-cluster-endpoint-1679960663390", + "title": "To delete a custom DB cluster endpoint" + } + ], + "DeleteDBClusterParameterGroup": [ + { + "input": { + "DBClusterParameterGroupName": "mydbclusterparametergroup" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example deletes the specified DB cluster parameter group.", + "id": "to-delete-a-db-cluster-parameter-group-1679962185718", + "title": "To delete a DB cluster parameter group" + } + ], + "DeleteDBClusterSnapshot": [ + { + "input": { + "DBClusterSnapshotIdentifier": "mydbclustersnapshot" + }, + "output": { + "DBClusterSnapshot": { + "AllocatedStorage": 0, + "AvailabilityZones": [ + "us-east-1a", + "us-east-1b", + "us-east-1e" + ], + "ClusterCreateTime": "2019-04-15T14:18:42.785Z", + "DBClusterIdentifier": "mydbcluster", + "DBClusterSnapshotArn": "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:mydbclustersnapshot", + "DBClusterSnapshotIdentifier": "mydbclustersnapshot", + "Engine": "aurora-mysql", + "EngineVersion": "5.7.mysql_aurora.2.04.2", + "IAMDatabaseAuthenticationEnabled": false, + "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", + "LicenseModel": "aurora-mysql", + "MasterUsername": "myadmin", + "PercentProgress": 100, + "Port": 0, + "SnapshotCreateTime": "2019-06-18T21:21:00.469Z", + "SnapshotType": "manual", + "Status": "available", + "StorageEncrypted": true, + "VpcId": "vpc-6594f31c" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "", + "id": "to-delete-a-db-cluster-snapshot-1679962808509", + "title": "To delete a DB cluster snapshot" + } + ], + "DeleteDBInstance": [ + { + "input": { + "DBInstanceIdentifier": "test-instance", + "FinalDBSnapshotIdentifier": "test-instance-final-snap", + "SkipFinalSnapshot": false + }, + "output": { + "DBInstance": { + "DBInstanceIdentifier": "test-instance", + "DBInstanceStatus": "deleting" + } + }, + "comments": { + "input": {}, + "output": { + "DBInstance": "Some output ommitted." + } + }, + "description": "The following example deletes the specified DB instance after creating a final DB snapshot named test-instance-final-snap.", + "id": "to-delete-a-db-instance-1680197458232", + "title": "To delete a DB instance" + } + ], + "DeleteDBInstanceAutomatedBackup": [ + { + "input": { + "DBInstanceAutomatedBackupsArn": "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example" + }, + "output": { + "DBInstanceAutomatedBackup": { + "AllocatedStorage": 20, + "AvailabilityZone": "us-east-1b", + "BackupRetentionPeriod": 7, + "DBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db", + "DBInstanceAutomatedBackupsArn": "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example", + "DBInstanceIdentifier": "new-orcl-db", + "DbiResourceId": "db-JKIB2GFQ5RV7REPLZA4EXAMPLE", + "Encrypted": false, + "Engine": "oracle-se2", + "EngineVersion": "12.1.0.2.v21", + "IAMDatabaseAuthenticationEnabled": false, + "InstanceCreateTime": "2020-12-04T15:28:31Z", + "LicenseModel": "bring-your-own-license", + "MasterUsername": "admin", + "OptionGroupName": "default:oracle-se2-12-1", + "Port": 1521, + "Region": "us-east-1", + "RestoreWindow": {}, + "Status": "deleting", + "StorageType": "gp2", + "VpcId": "vpc-########" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example deletes the automated backup with the specified Amazon Resource Name (ARN).", + "id": "to-delete-a-replicated-automated-backup-from-a-region-1679963187406", + "title": "To delete a replicated automated backup from a Region" + } + ], + "DeleteDBParameterGroup": [ + { + "input": { + "DBParameterGroupName": "mydbparametergroup" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example deletes a DB parameter group.", + "id": "to-delete-a-db-parameter-group-1679963369020", + "title": "To delete a DB parameter group" + } + ], + "DeleteDBSecurityGroup": [ + { + "input": { + "DBSecurityGroupName": "mysecgroup" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example deletes a DB security group.", + "id": "to-delete-a-db-security-group-1473960141889", + "title": "To delete a DB security group" + } + ], + "DeleteDBSnapshot": [ + { + "input": { + "DBSnapshotIdentifier": "mydbsnapshot" + }, + "output": { + "DBSnapshot": { + "AllocatedStorage": 100, + "AvailabilityZone": "us-east-1b", + "DBInstanceIdentifier": "database-mysql", + "DBSnapshotArn": "arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshot", + "DBSnapshotIdentifier": "mydbsnapshot", + "DbiResourceId": "db-AKIAIOSFODNN7EXAMPLE", + "Encrypted": true, + "Engine": "mysql", + "EngineVersion": "5.6.40", + "IAMDatabaseAuthenticationEnabled": false, + "InstanceCreateTime": "2019-04-30T15:45:53.663Z", + "Iops": 1000, + "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", + "LicenseModel": "general-public-license", + "MasterUsername": "admin", + "OptionGroupName": "default:mysql-5-6", + "PercentProgress": 100, + "Port": 3306, + "ProcessorFeatures": [], + "SnapshotCreateTime": "2019-06-18T22:08:40.702Z", + "SnapshotType": "manual", + "Status": "deleted", + "StorageType": "io1", + "VpcId": "vpc-6594f31c" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example deletes the specified DB snapshot.", + "id": "to-delete-a-db-snapshot-1680111103708", + "title": "To delete a DB snapshot" + } + ], + "DeleteDBSubnetGroup": [ + { + "input": { + "DBSubnetGroupName": "mysubnetgroup" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example deletes the DB subnet group called mysubnetgroup.", + "id": "to-delete-a-db-subnet-group-1680127744982", + "title": "To delete a DB subnet group" + } + ], + "DeleteEventSubscription": [ + { + "input": { + "SubscriptionName": "my-instance-events" + }, + "output": { + "EventSubscription": { + "CustSubscriptionId": "my-instance-events", + "CustomerAwsId": "123456789012", + "Enabled": false, + "EventCategoriesList": [ + "backup", + "recovery" + ], + "EventSubscriptionArn": "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", + "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events", + "SourceIdsList": [ + "test-instance" + ], + "SourceType": "db-instance", + "Status": "deleting", + "SubscriptionCreationTime": "2018-07-31 23:22:01.893" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example deletes the specified event subscription.", + "id": "to-delete-an-event-subscription-1680128383147", + "title": "To delete an event subscription" + } + ], + "DeleteGlobalCluster": [ + { + "input": { + "GlobalClusterIdentifier": "myglobalcluster" + }, + "output": { + "GlobalCluster": { + "DeletionProtection": false, + "Engine": "aurora-mysql", + "EngineVersion": "5.7.mysql_aurora.2.07.2", + "GlobalClusterArn": "arn:aws:rds::123456789012:global-cluster:myglobalcluster", + "GlobalClusterIdentifier": "myglobalcluster", + "GlobalClusterMembers": [], + "GlobalClusterResourceId": "cluster-f0e523bfe07aabb", + "Status": "available", + "StorageEncrypted": false + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example deletes an Aurora MySQL-compatible global DB cluster.", + "id": "to-delete-a-global-db-cluster-1680128523630", + "title": "To delete a global DB cluster" + } + ], + "DeleteIntegration": [ + { + "input": { + "IntegrationIdentifier": "5b9f3d79-7392-4a3e-896c-58eaa1b53231" + }, + "output": { + "CreateTime": "2023-12-28T17:20:20.629Z", + "IntegrationArn": "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231", + "IntegrationName": "my-integration", + "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa", + "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", + "Status": "deleting", + "Tags": [], + "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example deletes a zero-ETL integration with Amazon Redshift.", + "id": "to-delete-a-zero-etl-integration-1679688377231", + "title": "To delete a zero-ETL integration" + } + ], + "DeleteOptionGroup": [ + { + "input": { + "OptionGroupName": "myoptiongroup" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example deletes the specified option group.", + "id": "to-delete-an-option-group-1680128894360", + "title": "To delete an option group" + } + ], + "DescribeAccountAttributes": [ + { + "input": {}, + "output": { + "AccountQuotas": [ + { + "AccountQuotaName": "DBInstances", + "Max": 40, + "Used": 4 + }, + { + "AccountQuotaName": "ReservedDBInstances", + "Max": 40, + "Used": 0 + }, + { + "AccountQuotaName": "AllocatedStorage", + "Max": 100000, + "Used": 40 + }, + { + "AccountQuotaName": "DBSecurityGroups", + "Max": 25, + "Used": 0 + }, + { + "AccountQuotaName": "AuthorizationsPerDBSecurityGroup", + "Max": 20, + "Used": 0 + }, + { + "AccountQuotaName": "DBParameterGroups", + "Max": 50, + "Used": 1 + }, + { + "AccountQuotaName": "ManualSnapshots", + "Max": 100, + "Used": 3 + }, + { + "AccountQuotaName": "EventSubscriptions", + "Max": 20, + "Used": 0 + }, + { + "AccountQuotaName": "DBSubnetGroups", + "Max": 50, + "Used": 1 + }, + { + "AccountQuotaName": "OptionGroups", + "Max": 20, + "Used": 1 + }, + { + "AccountQuotaName": "SubnetsPerDBSubnetGroup", + "Max": 20, + "Used": 6 + }, + { + "AccountQuotaName": "ReadReplicasPerMaster", + "Max": 5, + "Used": 0 + }, + { + "AccountQuotaName": "DBClusters", + "Max": 40, + "Used": 1 + }, + { + "AccountQuotaName": "DBClusterParameterGroups", + "Max": 50, + "Used": 0 + }, + { + "AccountQuotaName": "DBClusterRoles", + "Max": 5, + "Used": 0 + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves the attributes for the current AWS account.", + "id": "to-describe-account-attributes-1680210466935", + "title": "To describe account attributes" + } + ], + "DescribeBlueGreenDeployments": [ + { + "input": { + "BlueGreenDeploymentIdentifier": "bgd-v53303651eexfake" + }, + "output": { + "BlueGreenDeployments": [ + { + "BlueGreenDeploymentIdentifier": "bgd-v53303651eexfake", + "BlueGreenDeploymentName": "bgd-cli-test-instance", + "CreateTime": "2022-02-25T21:18:51.183000+00:00", + "Source": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", + "Status": "AVAILABLE", + "SwitchoverDetails": [ + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-rkfbpe" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1-green-j382ha" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2-green-ejv4ao" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3-green-vlpz3t" + } + ], + "Target": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-rkfbpe", + "Tasks": [ + { + "Name": "CREATING_READ_REPLICA_OF_SOURCE", + "Status": "COMPLETED" + }, + { + "Name": "DB_ENGINE_VERSION_UPGRADE", + "Status": "COMPLETED" + }, + { + "Name": "CONFIGURE_BACKUPS", + "Status": "COMPLETED" + }, + { + "Name": "CREATING_TOPOLOGY_OF_SOURCE", + "Status": "COMPLETED" + } + ] + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves the details of a blue/green deployment after creation completes.", + "id": "to-describe-a-bluegreen-deployment-of-an-rds-db-instance-after-creation-completes-1680211143527", + "title": "To describe a blue/green deployment of an RDS DB instance after creation completes" + }, + { + "input": { + "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake" + }, + "output": { + "BlueGreenDeployments": [ + { + "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", + "BlueGreenDeploymentName": "my-blue-green-deployment", + "CreateTime": "2022-02-25T21:12:00.288000+00:00", + "Source": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", + "Status": "AVAILABLE", + "SwitchoverDetails": [ + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3rnukl" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1-green-gpmaxf" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2-green-j2oajq" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3-green-mkxies" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint-green-4sqjrq" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint-green-gwwzlg" + } + ], + "Target": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3rnukl", + "Tasks": [ + { + "Name": "CREATING_READ_REPLICA_OF_SOURCE", + "Status": "COMPLETED" + }, + { + "Name": "DB_ENGINE_VERSION_UPGRADE", + "Status": "COMPLETED" + }, + { + "Name": "CREATE_DB_INSTANCES_FOR_CLUSTER", + "Status": "COMPLETED" + }, + { + "Name": "CREATE_CUSTOM_ENDPOINTS", + "Status": "COMPLETED" + } + ] + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves the details of a blue/green deployment.", + "id": "to-describe-a-bluegreen-deployment-for-an-aurora-mysql-db-cluster-1680211228214", + "title": "To describe a blue/green deployment for an Aurora MySQL DB cluster" + }, + { + "input": { + "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake" + }, + "output": { + "BlueGreenDeployments": [ + { + "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", + "BlueGreenDeploymentName": "my-blue-green-deployment", + "CreateTime": "2022-02-25T22:38:49.522000+00:00", + "Source": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-old1", + "Status": "SWITCHOVER_COMPLETED", + "SwitchoverDetails": [ + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-old1", + "Status": "SWITCHOVER_COMPLETED", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1-old1", + "Status": "SWITCHOVER_COMPLETED", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2-old1", + "Status": "SWITCHOVER_COMPLETED", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3-old1", + "Status": "SWITCHOVER_COMPLETED", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint-old1", + "Status": "SWITCHOVER_COMPLETED", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint-old1", + "Status": "SWITCHOVER_COMPLETED", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint" + } + ], + "Target": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", + "Tasks": [ + { + "Name": "CREATING_READ_REPLICA_OF_SOURCE", + "Status": "COMPLETED" + }, + { + "Name": "DB_ENGINE_VERSION_UPGRADE", + "Status": "COMPLETED" + }, + { + "Name": "CREATE_DB_INSTANCES_FOR_CLUSTER", + "Status": "COMPLETED" + }, + { + "Name": "CREATE_CUSTOM_ENDPOINTS", + "Status": "COMPLETED" + } + ] + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves the details about a blue/green deployment after the green environment is promoted to be the production environment.", + "id": "to-describe-a-bluegreen-deployment-for-an-aurora-mysql-cluster-after-switchover-1680211583831", + "title": "To describe a blue/green deployment for an Aurora MySQL cluster after switchover" + } + ], + "DescribeCertificates": [ + { + "input": {}, + "output": { + "Certificates": [ + { + "CertificateArn": "arn:aws:rds:us-east-1::cert:rds-ca-ecc384-g1", + "CertificateIdentifier": "rds-ca-ecc384-g1", + "CertificateType": "CA", + "CustomerOverride": false, + "Thumbprint": "24a97b91cbe86911190576c35c36aab4fEXAMPLE", + "ValidFrom": "2021-05-25T22:41:55+00:00", + "ValidTill": "2121-05-25T23:41:55+00:00" + }, + { + "CertificateArn": "arn:aws:rds:us-east-1::cert:rds-ca-rsa4096-g1", + "CertificateIdentifier": "rds-ca-rsa4096-g1", + "CertificateType": "CA", + "CustomerOverride": false, + "Thumbprint": "9da6fa7fd2ec09c569a400d876b01b0c1EXAMPLE", + "ValidFrom": "2021-05-25T22:38:35+00:00", + "ValidTill": "2121-05-25T23:38:35+00:00" + }, + { + "CertificateArn": "arn:aws:rds:us-east-1::cert:rds-ca-rsa2048-g1", + "CertificateIdentifier": "rds-ca-rsa2048-g1", + "CertificateType": "CA", + "CustomerOverride": true, + "CustomerOverrideValidTill": "2061-05-25T23:34:57+00:00", + "Thumbprint": "2fa77ef894d983ba9d37ad699c84ab0f6EXAMPLE", + "ValidFrom": "2021-05-25T22:34:57+00:00", + "ValidTill": "2061-05-25T23:34:57+00:00" + }, + { + "CertificateArn": "arn:aws:rds:us-east-1::cert:rds-ca-2019", + "CertificateIdentifier": "rds-ca-2019", + "CertificateType": "CA", + "CustomerOverride": false, + "Thumbprint": "f0ed823ed14447bab557fdf3e49274669EXAMPLE", + "ValidFrom": "2019-09-19T18:16:53+00:00", + "ValidTill": "2024-08-22T17:08:50+00:00" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves the details of the certificate associated with the user's default region.", + "id": "to-describe-certificates-1680211777663", + "title": "To describe certificates" + } + ], + "DescribeDBClusterBacktracks": [ + { + "input": { + "DBClusterIdentifier": "mydbcluster" + }, + "output": { + "DBClusterBacktracks": [ + { + "BacktrackIdentifier": "2f5f5294-0dd2-44c9-9f50-EXAMPLE", + "BacktrackRequestCreationTime": "2021-02-12T14:36:18.819Z", + "BacktrackTo": "2021-02-12T04:59:22Z", + "BacktrackedFrom": "2021-02-12T14:37:31.640Z", + "DBClusterIdentifier": "mydbcluster", + "Status": "COMPLETED" + }, + { + "BacktrackIdentifier": "3c7a6421-af2a-4ea3-ae95-EXAMPLE", + "BacktrackRequestCreationTime": "2021-02-12T00:07:53.487Z", + "BacktrackTo": "2021-02-11T22:53:46Z", + "BacktrackedFrom": "2021-02-12T00:09:27.006Z", + "DBClusterIdentifier": "mydbcluster", + "Status": "COMPLETED" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves details about the specified DB cluster.", + "id": "to-describe-backtracks-for-a-db-cluster-1680212191454", + "title": "To describe backtracks for a DB cluster" + } + ], + "DescribeDBClusterEndpoints": [ + { + "input": {}, + "output": { + "DBClusterEndpoints": [ + { + "DBClusterIdentifier": "my-database-1", + "Endpoint": "my-database-1.cluster-cnpexample.us-east-1.rds.amazonaws.com", + "EndpointType": "WRITER", + "Status": "creating" + }, + { + "DBClusterIdentifier": "my-database-1", + "Endpoint": "my-database-1.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", + "EndpointType": "READER", + "Status": "creating" + }, + { + "DBClusterIdentifier": "mydbcluster", + "Endpoint": "mydbcluster.cluster-cnpexamle.us-east-1.rds.amazonaws.com", + "EndpointType": "WRITER", + "Status": "available" + }, + { + "DBClusterIdentifier": "mydbcluster", + "Endpoint": "mydbcluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", + "EndpointType": "READER", + "Status": "available" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves details for your DB cluster endpoints. The most common kinds of Aurora clusters have two endpoints. One endpoint has type WRITER. You can use this endpoint for all SQL statements. The other endpoint has type READER. You can use this endpoint only for SELECT and other read-only SQL statements.", + "id": "to-describe-db-cluster-endpoints-1680212701970", + "title": "To describe DB cluster endpoints" + }, + { + "input": { + "DBClusterIdentifier": "serverless-cluster" + }, + "output": { + "DBClusterEndpoints": [ + { + "DBClusterIdentifier": "serverless-cluster", + "Endpoint": "serverless-cluster.cluster-cnpexample.us-east-1.rds.amazonaws.com", + "EndpointType": "WRITER", + "Status": "available" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves details for the DB cluster endpoints of a single specified DB cluster. Aurora Serverless clusters have only a single endpoint with a type of WRITER.", + "id": "to-describe-db-cluster-endpoints-of-a-single-db-cluster-1680212863842", + "title": "To describe DB cluster endpoints of a single DB cluster" + } + ], + "DescribeDBClusterParameterGroups": [ + { + "input": {}, + "output": { + "DBClusterParameterGroups": [ + { + "DBClusterParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:cluster-pg:default.aurora-mysql5.7", + "DBClusterParameterGroupName": "default.aurora-mysql5.7", + "DBParameterGroupFamily": "aurora-mysql5.7", + "Description": "Default cluster parameter group for aurora-mysql5.7" + }, + { + "DBClusterParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:cluster-pg:default.aurora-postgresql9.6", + "DBClusterParameterGroupName": "default.aurora-postgresql9.6", + "DBParameterGroupFamily": "aurora-postgresql9.6", + "Description": "Default cluster parameter group for aurora-postgresql9.6" + }, + { + "DBClusterParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:cluster-pg:default.aurora5.6", + "DBClusterParameterGroupName": "default.aurora5.6", + "DBParameterGroupFamily": "aurora5.6", + "Description": "Default cluster parameter group for aurora5.6" + }, + { + "DBClusterParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterpg", + "DBClusterParameterGroupName": "mydbclusterpg", + "DBParameterGroupFamily": "aurora-mysql5.7", + "Description": "My DB cluster parameter group" + }, + { + "DBClusterParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterpgcopy", + "DBClusterParameterGroupName": "mydbclusterpgcopy", + "DBParameterGroupFamily": "aurora-mysql5.7", + "Description": "Copy of mydbclusterpg parameter group" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves details for your DB cluster parameter groups.", + "id": "to-describe-db-cluster-parameter-groups-1680213090883", + "title": "To describe DB cluster parameter groups" + } + ], + "DescribeDBClusterParameters": [ + { + "input": { + "DBClusterParameterGroupName": "mydbclusterpg" + }, + "output": { + "Parameters": [ + { + "AllowedValues": "0,1", + "ApplyMethod": "pending-reboot", + "ApplyType": "static", + "DataType": "boolean", + "Description": "Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded", + "IsModifiable": false, + "ParameterName": "allow-suspicious-udfs", + "Source": "engine-default", + "SupportedEngineModes": [ + "provisioned" + ] + }, + { + "AllowedValues": "0,1", + "ApplyMethod": "pending-reboot", + "ApplyType": "static", + "DataType": "boolean", + "Description": "Enables new features in the Aurora engine.", + "IsModifiable": true, + "ParameterName": "aurora_lab_mode", + "ParameterValue": "0", + "Source": "engine-default", + "SupportedEngineModes": [ + "provisioned" + ] + } + ] + }, + "comments": { + "input": {}, + "output": { + "Parameters": "Some output ommitted." + } + }, + "description": "The following example retrieves details about the parameters in a DB cluster parameter group.", + "id": "to-describe-the-parameters-in-a-db-cluster-parameter-group-1680213275624", + "title": "To describe the parameters in a DB cluster parameter group" + } + ], + "DescribeDBClusterSnapshotAttributes": [ + { + "input": { + "DBClusterSnapshotIdentifier": "myclustersnapshot" + }, + "output": { + "DBClusterSnapshotAttributesResult": { + "DBClusterSnapshotAttributes": [ + { + "AttributeName": "restore", + "AttributeValues": [ + "123456789012" + ] + } + ], + "DBClusterSnapshotIdentifier": "myclustersnapshot" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves details of the attribute names and values for the specified DB cluster snapshot.", + "id": "to-describe-the-attribute-names-and-values-for-a-db-cluster-snapshot-1680216238905", + "title": "To describe the attribute names and values for a DB cluster snapshot" + } + ], + "DescribeDBClusterSnapshots": [ + { + "input": { + "DBClusterIdentifier": "mydbcluster" + }, + "output": { + "DBClusterSnapshots": [ + { + "AllocatedStorage": 0, + "AvailabilityZones": [ + "us-east-1a", + "us-east-1b", + "us-east-1e" + ], + "ClusterCreateTime": "2019-04-15T14:18:42.785Z", + "DBClusterIdentifier": "mydbcluster", + "DBClusterSnapshotArn": "arn:aws:rds:us-east-1:814387698303:cluster-snapshot:myclustersnapshotcopy", + "DBClusterSnapshotIdentifier": "myclustersnapshotcopy", + "Engine": "aurora-mysql", + "EngineVersion": "5.7.mysql_aurora.2.04.2", + "IAMDatabaseAuthenticationEnabled": false, + "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", + "LicenseModel": "aurora-mysql", + "MasterUsername": "myadmin", + "PercentProgress": 100, + "Port": 0, + "SnapshotCreateTime": "2019-06-04T09:16:42.649Z", + "SnapshotType": "manual", + "Status": "available", + "StorageEncrypted": true, + "VpcId": "vpc-6594f31c" + }, + { + "AllocatedStorage": 0, + "AvailabilityZones": [ + "us-east-1a", + "us-east-1b", + "us-east-1e" + ], + "ClusterCreateTime": "2019-04-15T14:18:42.785Z", + "DBClusterIdentifier": "mydbcluster", + "DBClusterSnapshotArn": "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:rds:mydbcluster-2019-06-20-09-16", + "DBClusterSnapshotIdentifier": "rds:mydbcluster-2019-06-20-09-16", + "Engine": "aurora-mysql", + "EngineVersion": "5.7.mysql_aurora.2.04.2", + "IAMDatabaseAuthenticationEnabled": false, + "KmsKeyId": "arn:aws:kms:us-east-1:814387698303:key/AKIAIOSFODNN7EXAMPLE", + "LicenseModel": "aurora-mysql", + "MasterUsername": "myadmin", + "PercentProgress": 100, + "Port": 0, + "SnapshotCreateTime": "2019-06-20T09:16:26.569Z", + "SnapshotType": "automated", + "Status": "available", + "StorageEncrypted": true, + "VpcId": "vpc-6594f31c" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves the details for the DB cluster snapshots for the specified DB cluster.", + "id": "to-describe-a-db-cluster-snapshot-for-a-db-cluster-1680216426182", + "title": "To describe a DB cluster snapshot for a DB cluster" + } + ], + "DescribeDBClusters": [ + { + "input": { + "DBClusterIdentifier": "mydbcluster" + }, + "output": { + "DBClusters": [ + { + "AllocatedStorage": 1, + "AssociatedRoles": [], + "AvailabilityZones": [ + "us-east-1a", + "us-east-1b", + "us-east-1e" + ], + "BackupRetentionPeriod": 1, + "ClusterCreateTime": "2019-04-15T14:18:42.785Z", + "DBClusterArn": "arn:aws:rds:us-east-1:123456789012:cluster:mydbcluster", + "DBClusterIdentifier": "mydbcluster", + "DBClusterMembers": [ + { + "DBClusterParameterGroupStatus": "in-sync", + "DBInstanceIdentifier": "dbinstance3", + "IsClusterWriter": false, + "PromotionTier": 1 + }, + { + "DBClusterParameterGroupStatus": "in-sync", + "DBInstanceIdentifier": "dbinstance1", + "IsClusterWriter": false, + "PromotionTier": 1 + }, + { + "DBClusterParameterGroupStatus": "in-sync", + "DBInstanceIdentifier": "dbinstance2", + "IsClusterWriter": false, + "PromotionTier": 1 + }, + { + "DBClusterParameterGroupStatus": "in-sync", + "DBInstanceIdentifier": "mydbcluster", + "IsClusterWriter": false, + "PromotionTier": 1 + }, + { + "DBClusterParameterGroupStatus": "in-sync", + "DBInstanceIdentifier": "mydbcluster-us-east-1b", + "IsClusterWriter": false, + "PromotionTier": 1 + }, + { + "DBClusterParameterGroupStatus": "in-sync", + "DBInstanceIdentifier": "mydbcluster", + "IsClusterWriter": true, + "PromotionTier": 1 + } + ], + "DBClusterParameterGroup": "default.aurora-mysql5.7", + "DBSubnetGroup": "default", + "DatabaseName": "mydbcluster", + "DbClusterResourceId": "cluster-AKIAIOSFODNN7EXAMPLE", + "DeletionProtection": false, + "EarliestRestorableTime": "2019-06-19T09:16:28.210Z", + "Endpoint": "mydbcluster.cluster-cnpexample.us-east-1.rds.amazonaws.com", + "Engine": "aurora-mysql", + "EngineMode": "provisioned", + "EngineVersion": "5.7.mysql_aurora.2.04.2", + "HostedZoneId": "Z2R2ITUGPM61AM", + "HttpEndpointEnabled": false, + "IAMDatabaseAuthenticationEnabled": false, + "KmsKeyId": "arn:aws:kms:us-east-1:814387698303:key/AKIAIOSFODNN7EXAMPLE", + "LatestRestorableTime": "2019-06-20T22:38:14.908Z", + "MasterUsername": "myadmin", + "MultiAZ": true, + "Port": 3306, + "PreferredBackupWindow": "09:09-09:39", + "PreferredMaintenanceWindow": "sat:04:09-sat:04:39", + "ReadReplicaIdentifiers": [], + "ReaderEndpoint": "mydbcluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", + "Status": "available", + "StorageEncrypted": true, + "VpcSecurityGroups": [ + { + "Status": "active", + "VpcSecurityGroupId": "sg-0b9130572daf3dc16" + } + ] + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves the details of the specified DB cluster.", + "id": "to-describe-a-db-cluster-1680215000529", + "title": "To describe a DB cluster" + } + ], + "DescribeDBEngineVersions": [ + { + "input": { + "Engine": "mysql" + }, + "output": { + "DBEngineVersions": [ + { + "DBEngineDescription": "MySQL Community Edition", + "DBEngineVersionDescription": "MySQL 5.7.33", + "DBParameterGroupFamily": "mysql5.7", + "Engine": "mysql", + "EngineVersion": "5.7.33", + "ValidUpgradeTarget": [ + { + "AutoUpgrade": false, + "Description": "MySQL 5.7.34", + "Engine": "mysql", + "EngineVersion": "5.7.34", + "IsMajorVersionUpgrade": false + }, + { + "AutoUpgrade": false, + "Description": "MySQL 5.7.36", + "Engine": "mysql", + "EngineVersion": "5.7.36", + "IsMajorVersionUpgrade": false + } + ] + } + ] + }, + "comments": { + "input": {}, + "output": { + "DBEngineVersions": "Some output ommitted." + } + }, + "description": "The following example displays details about each of the DB engine versions for the specified DB engine.", + "id": "to-describe-the-db-engine-versions-for-the-mysql-db-engine-1680216738909", + "title": "To describe the DB engine versions for the MySQL DB engine" + } + ], + "DescribeDBInstanceAutomatedBackups": [ + { + "input": { + "DBInstanceIdentifier": "new-orcl-db" + }, + "output": { + "DBInstanceAutomatedBackups": [ + { + "AllocatedStorage": 20, + "BackupRetentionPeriod": 14, + "DBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db", + "DBInstanceAutomatedBackupsArn": "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example", + "DBInstanceIdentifier": "new-orcl-db", + "DbiResourceId": "db-JKIB2GFQ5RV7REPLZA4EXAMPLE", + "Encrypted": false, + "Engine": "oracle-se2", + "EngineVersion": "12.1.0.2.v21", + "IAMDatabaseAuthenticationEnabled": false, + "InstanceCreateTime": "2020-12-04T15:28:31Z", + "LicenseModel": "bring-your-own-license", + "MasterUsername": "admin", + "OptionGroupName": "default:oracle-se2-12-1", + "Port": 1521, + "Region": "us-east-1", + "RestoreWindow": { + "EarliestTime": "2020-12-07T21:05:20.939Z", + "LatestTime": "2020-12-07T21:05:20.939Z" + }, + "Status": "replicating", + "StorageType": "gp2" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example displays details about the automated backups for the specified DB instance. The details include replicated automated backups in other AWS Regions.", + "id": "to-describe-the-automated-backups-for-a-db-instance-1680217198750", + "title": "To describe the automated backups for a DB instance" + } + ], + "DescribeDBInstances": [ + { + "input": { + "DBInstanceIdentifier": "mydbinstancecf" + }, + "output": { + "DBInstances": [ + { + "DBInstanceClass": "db.t3.small", + "DBInstanceIdentifier": "mydbinstancecf", + "DBInstanceStatus": "available", + "Endpoint": { + "Address": "mydbinstancecf.abcexample.us-east-1.rds.amazonaws.com", + "HostedZoneId": "Z2R2ITUGPM61AM", + "Port": 3306 + }, + "Engine": "mysql", + "MasterUsername": "admin" + } + ] + }, + "comments": { + "input": {}, + "output": { + "DBInstances": "Some output ommitted." + } + }, + "description": "The following example retrieves details about the specified DB instance.", + "id": "to-describe-a-db-instance-1680217544524", + "title": "To describe a DB instance" + } + ], + "DescribeDBLogFiles": [ + { + "input": { + "DBInstanceIdentifier": "test-instance" + }, + "output": { + "DescribeDBLogFiles": [ + { + "LastWritten": 1533060000000, + "LogFileName": "error/mysql-error-running.log", + "Size": 0 + }, + { + "LastWritten": 1532994300000, + "LogFileName": "error/mysql-error-running.log.0", + "Size": 2683 + }, + { + "LastWritten": 1533057300000, + "LogFileName": "error/mysql-error-running.log.18", + "Size": 107 + }, + { + "LastWritten": 1532991000000, + "LogFileName": "error/mysql-error-running.log.23", + "Size": 13105 + }, + { + "LastWritten": 1533061200000, + "LogFileName": "error/mysql-error.log", + "Size": 0 + }, + { + "LastWritten": 1532989252000, + "LogFileName": "mysqlUpgrade", + "Size": 3519 + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves details about the log files for the specified DB instance.", + "id": "to-describe-the-log-files-for-a-db-instance-1680217710149", + "title": "To describe the log files for a DB instance" + } + ], + "DescribeDBParameterGroups": [ + { + "input": {}, + "output": { + "DBParameterGroups": [ + { + "DBParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:pg:default.aurora-mysql5.7", + "DBParameterGroupFamily": "aurora-mysql5.7", + "DBParameterGroupName": "default.aurora-mysql5.7", + "Description": "Default parameter group for aurora-mysql5.7" + }, + { + "DBParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:pg:default.aurora-postgresql9.6", + "DBParameterGroupFamily": "aurora-postgresql9.6", + "DBParameterGroupName": "default.aurora-postgresql9.6", + "Description": "Default parameter group for aurora-postgresql9.6" + }, + { + "DBParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:pg:default.aurora5.6", + "DBParameterGroupFamily": "aurora5.6", + "DBParameterGroupName": "default.aurora5.6", + "Description": "Default parameter group for aurora5.6" + }, + { + "DBParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:pg:default.mariadb10.1", + "DBParameterGroupFamily": "mariadb10.1", + "DBParameterGroupName": "default.mariadb10.1", + "Description": "Default parameter group for mariadb10.1" + } + ] + }, + "comments": { + "input": {}, + "output": { + "DBParameterGroups": "Some output ommitted." + } + }, + "description": "The following example retrieves details about your DB parameter groups.", + "id": "to-describe-your-db-parameter-groups-1680279250598", + "title": "To describe your DB parameter groups" + } + ], + "DescribeDBParameters": [ + { + "input": { + "DBParameterGroupName": "mydbpg" + }, + "output": { + "Parameters": [ + { + "AllowedValues": "0,1", + "ApplyMethod": "pending-reboot", + "ApplyType": "static", + "DataType": "boolean", + "Description": "Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded", + "IsModifiable": false, + "ParameterName": "allow-suspicious-udfs", + "Source": "engine-default" + }, + { + "AllowedValues": "0,1", + "ApplyMethod": "pending-reboot", + "ApplyType": "static", + "DataType": "boolean", + "Description": "Controls whether the server autogenerates SSL key and certificate files in the data directory, if they do not already exist.", + "IsModifiable": false, + "ParameterName": "auto_generate_certs", + "Source": "engine-default" + } + ] + }, + "comments": { + "input": {}, + "output": { + "Parameters": "Some output omitted." + } + }, + "description": "The following example retrieves the details of the specified DB parameter group.", + "id": "to-describe-the-parameters-in-a-db-parameter-group-1680279500600", + "title": "To describe the parameters in a DB parameter group" + } + ], + "DescribeDBSecurityGroups": [ + { + "input": { + "DBSecurityGroupName": "mydbsecuritygroup" + }, + "output": {}, + "comments": { + "input": {}, + "output": {} + }, + "description": "This example lists settings for the specified security group.", + "id": "describe-db-security-groups-66fe9ea1-17dd-4275-b82e-f771cee0c849", + "title": "To list DB security group settings" + } + ], + "DescribeDBSnapshotAttributes": [ + { + "input": { + "DBSnapshotIdentifier": "mydbsnapshot" + }, + "output": { + "DBSnapshotAttributesResult": { + "DBSnapshotAttributes": [ + { + "AttributeName": "restore", + "AttributeValues": [ + "123456789012", + "210987654321" + ] + } + ], + "DBSnapshotIdentifier": "mydbsnapshot" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example describes the attribute names and values for a DB snapshot.", + "id": "to-describe-the-attribute-names-and-values-for-a-db-snapshot-1680280194370", + "title": "To describe the attribute names and values for a DB snapshot" + } + ], + "DescribeDBSnapshots": [ + { + "input": { + "DBSnapshotIdentifier": "mydbsnapshot" + }, + "output": { + "DBSnapshots": [ + { + "AllocatedStorage": 20, + "AvailabilityZone": "us-east-1f", + "DBInstanceIdentifier": "mysqldb", + "DBSnapshotArn": "arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshot", + "DBSnapshotIdentifier": "mydbsnapshot", + "DbiResourceId": "db-AKIAIOSFODNN7EXAMPLE", + "Encrypted": false, + "Engine": "mysql", + "EngineVersion": "5.6.37", + "IAMDatabaseAuthenticationEnabled": false, + "InstanceCreateTime": "2018-02-08T22:24:55.973Z", + "LicenseModel": "general-public-license", + "MasterUsername": "mysqladmin", + "OptionGroupName": "default:mysql-5-6", + "PercentProgress": 100, + "Port": 3306, + "ProcessorFeatures": [], + "SnapshotCreateTime": "2018-02-08T22:28:08.598Z", + "SnapshotType": "manual", + "Status": "available", + "StorageType": "gp2", + "VpcId": "vpc-6594f31c" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves the details of a DB snapshot for a DB instance.", + "id": "to-describe-a-db-snapshot-for-a-db-instance-1680280423239", + "title": "To describe a DB snapshot for a DB instance" + } + ], + "DescribeDBSubnetGroups": [ + { + "input": {}, + "output": { + "DBSubnetGroups": [ + { + "DBSubnetGroupArn": "arn:aws:rds:us-east-1:123456789012:subgrp:mydbsubnetgroup", + "DBSubnetGroupDescription": "My DB Subnet Group", + "DBSubnetGroupName": "mydbsubnetgroup", + "SubnetGroupStatus": "Complete", + "Subnets": [ + { + "SubnetAvailabilityZone": { + "Name": "us-east-1a" + }, + "SubnetIdentifier": "subnet-d8c8e7f4", + "SubnetStatus": "Active" + }, + { + "SubnetAvailabilityZone": { + "Name": "us-east-1f" + }, + "SubnetIdentifier": "subnet-718fdc7d", + "SubnetStatus": "Active" + }, + { + "SubnetAvailabilityZone": { + "Name": "us-east-1a" + }, + "SubnetIdentifier": "subnet-cbc8e7e7", + "SubnetStatus": "Active" + }, + { + "SubnetAvailabilityZone": { + "Name": "us-east-1a" + }, + "SubnetIdentifier": "subnet-0ccde220", + "SubnetStatus": "Active" + } + ], + "VpcId": "vpc-971c12ee" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves the details of the specified DB subnet group.", + "id": "to-describe-a-db-subnet-group-1680280764611", + "title": "To describe a DB subnet group" + } + ], + "DescribeEngineDefaultClusterParameters": [ + { + "input": { + "DBParameterGroupFamily": "aurora-mysql5.7" + }, + "output": { + "EngineDefaults": { + "Parameters": [ + { + "ApplyType": "dynamic", + "DataType": "string", + "Description": "IAM role ARN used to load data from AWS S3", + "IsModifiable": true, + "ParameterName": "aurora_load_from_s3_role", + "Source": "engine-default", + "SupportedEngineModes": [ + "provisioned" + ] + } + ] + } + }, + "comments": { + "input": {}, + "output": { + "EngineDefaults": "Some output omitted." + } + }, + "description": "The following example retrieves the details of the default engine and system parameter information for Aurora DB clusters with MySQL 5.7 compatibility.", + "id": "to-describe-the-default-engine-and-system-parameter-information-for-the-aurora-database-engine-1680280902332", + "title": "To describe the default engine and system parameter information for the Aurora database engine" + } + ], + "DescribeEngineDefaultParameters": [ + { + "input": { + "DBParameterGroupFamily": "mysql5.7" + }, + "output": { + "EngineDefaults": { + "Parameters": [ + { + "AllowedValues": "0,1", + "ApplyType": "static", + "DataType": "boolean", + "Description": "Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded", + "IsModifiable": false, + "ParameterName": "allow-suspicious-udfs", + "Source": "engine-default" + } + ] + } + }, + "comments": { + "input": {}, + "output": { + "EngineDefaults": "Some output omitted." + } + }, + "description": "The following example retrieves details for the default engine and system parameter information for MySQL 5.7 DB instances.", + "id": "to-describe-the-default-engine-and-system-parameter-information-for-the-database-engine-1680281248217", + "title": "To describe the default engine and system parameter information for the database engine" + } + ], + "DescribeEventCategories": [ + { + "input": { + "Filters": [], + "SourceType": "" + }, + "output": { + "EventCategoriesMapList": [ + { + "EventCategories": [ + "deletion", + "read replica", + "failover", + "restoration", + "maintenance", + "low storage", + "configuration change", + "backup", + "creation", + "availability", + "recovery", + "failure", + "backtrack", + "notification" + ], + "SourceType": "db-instance" + }, + { + "EventCategories": [ + "configuration change", + "failure" + ], + "SourceType": "db-security-group" + }, + { + "EventCategories": [ + "configuration change" + ], + "SourceType": "db-parameter-group" + }, + { + "EventCategories": [ + "deletion", + "creation", + "restoration", + "notification" + ], + "SourceType": "db-snapshot" + }, + { + "EventCategories": [ + "failover", + "failure", + "notification" + ], + "SourceType": "db-cluster" + }, + { + "EventCategories": [ + "backup" + ], + "SourceType": "db-cluster-snapshot" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves details about the event categories for all available event sources.", + "id": "to-describe-event-categories-1680281431508", + "title": "To describe event categories" + } + ], + "DescribeEventSubscriptions": [ + { + "input": {}, + "output": { + "EventSubscriptionsList": [ + { + "CustSubscriptionId": "my-instance-events", + "CustomerAwsId": "123456789012", + "Enabled": true, + "EventCategoriesList": [ + "backup", + "recovery" + ], + "EventSubscriptionArn": "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", + "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events", + "SourceType": "db-instance", + "Status": "creating", + "SubscriptionCreationTime": "2018-07-31 23:22:01.893" + } + ] + }, + "comments": { + "input": {}, + "output": { + "EventSubscriptionsList": "Some output omitted." + } + }, + "description": "This example describes all of the Amazon RDS event subscriptions for the current AWS account.", + "id": "to-describe-event-subscriptions-1680281683538", + "title": "To describe event subscriptions" + } + ], + "DescribeEvents": [ + { + "input": { + "SourceIdentifier": "test-instance", + "SourceType": "db-instance" + }, + "output": { + "Events": [ + { + "Date": "2018-07-31T23:09:23.983Z", + "EventCategories": [ + "backup" + ], + "Message": "Backing up DB instance", + "SourceArn": "arn:aws:rds:us-east-1:123456789012:db:test-instance", + "SourceIdentifier": "test-instance", + "SourceType": "db-instance" + }, + { + "Date": "2018-07-31T23:15:13.049Z", + "EventCategories": [ + "backup" + ], + "Message": "Finished DB Instance backup", + "SourceArn": "arn:aws:rds:us-east-1:123456789012:db:test-instance", + "SourceIdentifier": "test-instance", + "SourceType": "db-instance" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following retrieves details for the events that have occurred for the specified DB instance.", + "id": "to-describe-events-1680281559411", + "title": "To describe events" + } + ], + "DescribeExportTasks": [ + { + "input": {}, + "output": { + "ExportTasks": [ + { + "ExportTaskIdentifier": "test-snapshot-export", + "IamRoleArn": "arn:aws:iam::123456789012:role/service-role/ExportRole", + "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff", + "PercentProgress": 100, + "S3Bucket": "mybucket", + "S3Prefix": "", + "SnapshotTime": "2020-03-02T18:26:28.163Z", + "SourceArn": "arn:aws:rds:us-west-2:123456789012:snapshot:test-snapshot", + "Status": "COMPLETE", + "TaskEndTime": "2020-03-02T19:10:31.985Z", + "TaskStartTime": "2020-03-02T18:57:56.896Z", + "TotalExtractedDataInGB": 0 + }, + { + "ExportTaskIdentifier": "my-s3-export", + "IamRoleArn": "arn:aws:iam::123456789012:role/service-role/ExportRole", + "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff", + "PercentProgress": 0, + "S3Bucket": "mybucket", + "S3Prefix": "", + "SnapshotTime": "2020-03-27T20:48:42.023Z", + "SourceArn": "arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-test", + "Status": "STARTING", + "TotalExtractedDataInGB": 0 + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example returns information about snapshot exports to Amazon S3.", + "id": "to-describe-snapshot-export-tasks-1680282299489", + "title": "To describe snapshot export tasks" + } + ], + "DescribeGlobalClusters": [ + { + "input": {}, + "output": { + "GlobalClusters": [ + { + "DeletionProtection": false, + "Engine": "aurora-mysql", + "EngineVersion": "5.7.mysql_aurora.2.07.2", + "GlobalClusterArn": "arn:aws:rds::123456789012:global-cluster:myglobalcluster", + "GlobalClusterIdentifier": "myglobalcluster", + "GlobalClusterMembers": [], + "GlobalClusterResourceId": "cluster-f5982077e3b5aabb", + "Status": "available", + "StorageEncrypted": false + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example lists Aurora global DB clusters in the current AWS Region.", + "id": "to-describe-global-db-clusters-1680282459184", + "title": "To describe global DB clusters" + } + ], + "DescribeIntegrations": [ + { + "input": { + "IntegrationIdentifier": "5b9f3d79-7392-4a3e-896c-58eaa1b53231" + }, + "output": { + "Integrations": [ + { + "CreateTime": "2023-12-28T17:20:20.629Z", + "IntegrationArn": "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231", + "IntegrationName": "my-integration", + "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa", + "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", + "Status": "active", + "Tags": [], + "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves information about a zero-ETL integration with Amazon Redshift.", + "id": "to-describe-a-zero-etl-integration-1679688377231", + "title": "To describe a zero-ETL integration" + } + ], + "DescribeOptionGroupOptions": [ + { + "input": { + "EngineName": "mysql", + "MajorEngineVersion": "8.0" + }, + "output": { + "OptionGroupOptions": [ + { + "Description": "MariaDB Audit Plugin", + "EngineName": "mysql", + "MajorEngineVersion": "8.0", + "MinimumRequiredMinorEngineVersion": "25", + "Name": "MARIADB_AUDIT_PLUGIN", + "OptionGroupOptionSettings": [ + { + "ApplyType": "DYNAMIC", + "IsModifiable": true, + "IsRequired": false, + "MinimumEngineVersionPerAllowedValue": [], + "SettingDescription": "Include specified users", + "SettingName": "SERVER_AUDIT_INCL_USERS" + }, + { + "ApplyType": "DYNAMIC", + "IsModifiable": true, + "IsRequired": false, + "MinimumEngineVersionPerAllowedValue": [], + "SettingDescription": "Exclude specified users", + "SettingName": "SERVER_AUDIT_EXCL_USERS" + } + ], + "OptionsConflictsWith": [], + "OptionsDependedOn": [], + "Permanent": false, + "Persistent": false, + "PortRequired": false, + "RequiresAutoMinorEngineVersionUpgrade": false, + "VpcOnly": false + } + ] + }, + "comments": { + "input": {}, + "output": { + "OptionGroupOptions": "Some output omitted." + } + }, + "description": "The following example lists the options for an RDS for MySQL version 8.0 DB instance.", + "id": "to-describe-all-available-options-1680286049492", + "title": "To describe all available options" + } + ], + "DescribeOptionGroups": [ + { + "input": { + "EngineName": "oracle-ee", + "MajorEngineVersion": "19" + }, + "output": { + "OptionGroupsList": [ + { + "AllowsVpcAndNonVpcInstanceMemberships": true, + "EngineName": "oracle-ee", + "MajorEngineVersion": "19", + "OptionGroupArn": "arn:aws:rds:us-west-1:111122223333:og:default:oracle-ee-19", + "OptionGroupDescription": "Default option group for oracle-ee 19", + "OptionGroupName": "default:oracle-ee-19", + "Options": [] + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example lists the options groups for an Oracle Database 19c instance.", + "id": "to-describe-the-available-option-groups-1680283066000", + "title": "To describe the available option groups" + } + ], + "DescribeOrderableDBInstanceOptions": [ + { + "input": { + "Engine": "mysql" + }, + "output": { + "OrderableDBInstanceOptions": [ + { + "AvailabilityZones": [ + { + "Name": "us-east-1a" + }, + { + "Name": "us-east-1b" + }, + { + "Name": "us-east-1c" + }, + { + "Name": "us-east-1d" + }, + { + "Name": "us-east-1e" + }, + { + "Name": "us-east-1f" + } + ], + "DBInstanceClass": "db.m4.10xlarge", + "Engine": "mysql", + "EngineVersion": "5.7.33", + "LicenseModel": "general-public-license", + "MultiAZCapable": true, + "ReadReplicaCapable": true, + "StorageType": "gp2", + "SupportsStorageEncryption": true, + "Vpc": true + } + ] + }, + "comments": { + "input": {}, + "output": { + "OrderableDBInstanceOptions": "Some output omitted." + } + }, + "description": "The following example retrieves details about the orderable options for a DB instances running the MySQL DB engine.", + "id": "to-describe-orderable-db-instance-options-1680283253165", + "title": "To describe orderable DB instance options" + } + ], + "DescribePendingMaintenanceActions": [ + { + "input": {}, + "output": { + "PendingMaintenanceActions": [ + { + "PendingMaintenanceActionDetails": [ + { + "Action": "system-update", + "Description": "Upgrade to Aurora PostgreSQL 2.4.2" + } + ], + "ResourceIdentifier": "arn:aws:rds:us-west-2:123456789012:cluster:global-db1-cl1" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example lists the pending maintenace action for a DB instance.", + "id": "to-list-resources-with-at-least-one-pending-maintenance-action-1680283544475", + "title": "To list resources with at least one pending maintenance action" + } + ], + "DescribeReservedDBInstances": [ + { + "input": {}, + "output": { + "ReservedDBInstances": [ + { + "CurrencyCode": "USD", + "DBInstanceClass": "db.t3.micro", + "DBInstanceCount": 1, + "Duration": 31536000, + "FixedPrice": 0, + "LeaseId": "a1b2c3d4-6b69-4a59-be89-5e11aa446666", + "MultiAZ": false, + "OfferingType": "No Upfront", + "ProductDescription": "sqlserver-ex(li)", + "RecurringCharges": [ + { + "RecurringChargeAmount": 0.014, + "RecurringChargeFrequency": "Hourly" + } + ], + "ReservedDBInstanceArn": "arn:aws:rds:us-west-2:123456789012:ri:myreservedinstance", + "ReservedDBInstanceId": "myreservedinstance", + "ReservedDBInstancesOfferingId": "12ab34cd-59af-4b2c-a660-1abcdef23456", + "StartTime": "2020-06-01T13:44:21.436Z", + "State": "payment-pending", + "UsagePrice": 0 + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves details about any reserved DB instances in the current AWS account.", + "id": "to-describe-reserved-db-instances-1680283668105", + "title": "To describe reserved DB instances" + } + ], + "DescribeReservedDBInstancesOfferings": [ + { + "input": { + "ProductDescription": "oracle" + }, + "output": { + "ReservedDBInstancesOfferings": [ + { + "CurrencyCode": "USD", + "DBInstanceClass": "db.m4.xlarge", + "Duration": 31536000, + "FixedPrice": 4089, + "MultiAZ": true, + "OfferingType": "Partial Upfront", + "ProductDescription": "oracle-se2(li)", + "RecurringCharges": [ + { + "RecurringChargeAmount": 0.594, + "RecurringChargeFrequency": "Hourly" + } + ], + "ReservedDBInstancesOfferingId": "005bdee3-9ef4-4182-aa0c-58ef7cb6c2f8", + "UsagePrice": 0 + } + ] + }, + "comments": { + "input": {}, + "output": { + "ReservedDBInstancesOfferings": "Some output omitted." + } + }, + "description": "The following example retrieves details about reserved DB instance options for RDS for Oracle.", + "id": "to-describe-reserved-db-instance-offerings-1680283755054", + "title": "To describe reserved DB instance offerings" + } + ], + "DescribeSourceRegions": [ + { + "input": { + "RegionName": "us-east-1" + }, + "output": { + "SourceRegions": [ + { + "Endpoint": "https://rds.af-south-1.amazonaws.com", + "RegionName": "af-south-1", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": false + }, + { + "Endpoint": "https://rds.ap-east-1.amazonaws.com", + "RegionName": "ap-east-1", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": false + }, + { + "Endpoint": "https://rds.ap-northeast-1.amazonaws.com", + "RegionName": "ap-northeast-1", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": true + }, + { + "Endpoint": "https://rds.ap-northeast-2.amazonaws.com", + "RegionName": "ap-northeast-2", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": true + }, + { + "Endpoint": "https://rds.ap-northeast-3.amazonaws.com", + "RegionName": "ap-northeast-3", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": false + }, + { + "Endpoint": "https://rds.ap-south-1.amazonaws.com", + "RegionName": "ap-south-1", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": true + }, + { + "Endpoint": "https://rds.ap-southeast-1.amazonaws.com", + "RegionName": "ap-southeast-1", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": true + }, + { + "Endpoint": "https://rds.ap-southeast-2.amazonaws.com", + "RegionName": "ap-southeast-2", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": true + }, + { + "Endpoint": "https://rds.ap-southeast-3.amazonaws.com", + "RegionName": "ap-southeast-3", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": false + }, + { + "Endpoint": "https://rds.ca-central-1.amazonaws.com", + "RegionName": "ca-central-1", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": true + }, + { + "Endpoint": "https://rds.eu-north-1.amazonaws.com", + "RegionName": "eu-north-1", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": true + }, + { + "Endpoint": "https://rds.eu-south-1.amazonaws.com", + "RegionName": "eu-south-1", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": false + }, + { + "Endpoint": "https://rds.eu-west-1.amazonaws.com", + "RegionName": "eu-west-1", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": true + }, + { + "Endpoint": "https://rds.eu-west-2.amazonaws.com", + "RegionName": "eu-west-2", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": true + }, + { + "Endpoint": "https://rds.eu-west-3.amazonaws.com", + "RegionName": "eu-west-3", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": true + }, + { + "Endpoint": "https://rds.me-central-1.amazonaws.com", + "RegionName": "me-central-1", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": false + }, + { + "Endpoint": "https://rds.me-south-1.amazonaws.com", + "RegionName": "me-south-1", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": false + }, + { + "Endpoint": "https://rds.sa-east-1.amazonaws.com", + "RegionName": "sa-east-1", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": true + }, + { + "Endpoint": "https://rds.us-east-2.amazonaws.com", + "RegionName": "us-east-2", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": true + }, + { + "Endpoint": "https://rds.us-west-1.amazonaws.com", + "RegionName": "us-west-1", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": true + }, + { + "Endpoint": "https://rds.us-west-2.amazonaws.com", + "RegionName": "us-west-2", + "Status": "available", + "SupportsDBInstanceAutomatedBackupsReplication": true + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example retrieves details about all source AWS Regions where the current AWS Region can create a read replica, copy a DB snapshot from, or replicate automated backups from. It also shows that automated backups can be replicated only from US West (Oregon) to the destination AWS Region, US East (N. Virginia).", + "id": "to-describe-source-regions-1680283924227", + "title": "To describe source Regions" + } + ], + "DescribeValidDBInstanceModifications": [ + { + "input": { + "DBInstanceIdentifier": "database-test1" + }, + "output": { + "ValidDBInstanceModificationsMessage": { + "Storage": [ + { + "StorageSize": [ + { + "From": 20, + "Step": 1, + "To": 20 + }, + { + "From": 22, + "Step": 1, + "To": 6144 + } + ], + "StorageType": "gp2" + } + ] + } + }, + "comments": { + "input": {}, + "output": { + "ValidDBInstanceModificationsMessage": "Some output omitted." + } + }, + "description": "The following example retrieves details about the valid modifications for the specified DB instance.", + "id": "to-describe-valid-modifications-for-a-db-instance-1680284230997", + "title": "To describe valid modifications for a DB instance" + } + ], + "DownloadDBLogFilePortion": [ + { + "input": { + "DBInstanceIdentifier": "test-instance", + "LogFileName": "log.txt" + }, + "output": {}, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example downloads only the latest part of your log file.", + "id": "to-download-a-db-log-file-1680284895898", + "title": "To download a DB log file" + } + ], + "FailoverDBCluster": [ + { + "input": { + "DBClusterIdentifier": "myaurorainstance-cluster", + "TargetDBInstanceIdentifier": "myaurorareplica" + }, + "output": { + "DBCluster": {} + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "This example performs a failover for the specified DB cluster to the specified DB instance.", + "id": "failover-db-cluster-9e7f2f93-d98c-42c7-bb0e-d6c485c096d6", + "title": "To perform a failover for a DB cluster" + } + ], + "ListTagsForResource": [ + { + "input": { + "ResourceName": "arn:aws:rds:us-east-1:123456789012:db:orcl1" + }, + "output": { + "TagList": [ + { + "Key": "Environment", + "Value": "test" + }, + { + "Key": "Name", + "Value": "MyDatabase" + } + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example lists all tags on a DB instance.", + "id": "to-list-tags-on-an-amazon-rds-resource-1680285113240", + "title": "To list tags on an Amazon RDS resource" + } + ], + "ModifyCertificates": [ + { + "input": { + "CertificateIdentifier": "rds-ca-2019" + }, + "output": { + "Certificate": { + "CertificateArn": "arn:aws:rds:us-east-1::cert:rds-ca-2019", + "CertificateIdentifier": "rds-ca-2019", + "CertificateType": "CA", + "CustomerOverride": true, + "CustomerOverrideValidTill": "2024-08-22T17:08:50Z", + "Thumbprint": "EXAMPLE123456789012", + "ValidFrom": "2019-09-19T18:16:53Z", + "ValidTill": "2024-08-22T17:08:50Z" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example temporarily overrides the system-default SSL/TLS certificate for new DB instances.", + "id": "to-temporarily-override-the-system-default-ssltls-certificate-for-new-db-instances-1680306491984", + "title": "To temporarily override the system-default SSL/TLS certificate for new DB instances" + } + ], + "ModifyCurrentDBClusterCapacity": [ + { + "input": { + "Capacity": 8, + "DBClusterIdentifier": "mydbcluster" + }, + "output": { + "CurrentCapacity": 1, + "DBClusterIdentifier": "mydbcluster", + "PendingCapacity": 8, + "SecondsBeforeTimeout": 300, + "TimeoutAction": "ForceApplyCapacityChange" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example scales the capacity of an Aurora Serverless DB cluster to 8.", + "id": "to-scale-the-capacity-of-an-aurora-serverless-db-cluster-1680307179599", + "title": "To scale the capacity of an Aurora Serverless DB cluster" + } + ], + "ModifyDBCluster": [ + { + "input": { + "ApplyImmediately": true, + "BackupRetentionPeriod": 14, + "DBClusterIdentifier": "cluster-2", + "MasterUserPassword": "newpassword99" + }, + "output": { + "DBCluster": { + "AllocatedStorage": 1, + "AssociatedRoles": [], + "AvailabilityZones": [ + "eu-central-1b", + "eu-central-1c", + "eu-central-1a" + ], + "BackupRetentionPeriod": 14, + "ClusterCreateTime": "2020-04-03T14:44:02.764Z", + "CopyTagsToSnapshot": true, + "CrossAccountClone": false, + "DBClusterArn": "arn:aws:rds:eu-central-1:123456789012:cluster:cluster-2", + "DBClusterIdentifier": "cluster-2", + "DBClusterMembers": [ + { + "DBClusterParameterGroupStatus": "in-sync", + "DBInstanceIdentifier": "cluster-2-instance-1", + "IsClusterWriter": true, + "PromotionTier": 1 + } + ], + "DBClusterParameterGroup": "default.aurora5.6", + "DBSubnetGroup": "default-vpc-2305ca49", + "DatabaseName": "", + "DbClusterResourceId": "cluster-AGJ7XI77XVIS6FUXHU1EXAMPLE", + "DeletionProtection": false, + "DomainMemberships": [], + "EarliestRestorableTime": "2020-06-03T02:07:29.637Z", + "Endpoint": "cluster-2.cluster-############.eu-central-1.rds.amazonaws.com", + "Engine": "aurora", + "EngineMode": "provisioned", + "EngineVersion": "5.6.10a", + "HostedZoneId": "Z1RLNU0EXAMPLE", + "HttpEndpointEnabled": false, + "IAMDatabaseAuthenticationEnabled": false, + "KmsKeyId": "arn:aws:kms:eu-central-1:123456789012:key/d1bd7c8f-5cdb-49ca-8a62-a1b2c3d4e5f6", + "LatestRestorableTime": "2020-06-04T15:11:25.748Z", + "MasterUsername": "admin", + "MultiAZ": false, + "Port": 3306, + "PreferredBackupWindow": "01:55-02:25", + "PreferredMaintenanceWindow": "thu:21:14-thu:21:44", + "ReadReplicaIdentifiers": [], + "ReaderEndpoint": "cluster-2.cluster-ro-############.eu-central-1.rds.amazonaws.com", + "Status": "available", + "StorageEncrypted": true, + "VpcSecurityGroups": [ + { + "Status": "active", + "VpcSecurityGroupId": "sg-20a5c047" + } + ] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example changes the master user password for the DB cluster named cluster-2 and sets the backup retention period to 14 days. The ApplyImmediately parameter causes the changes to be made immediately, instead of waiting until the next maintenance window.", + "id": "to-modify-a-db-cluster-1680310823999", + "title": "To modify a DB cluster" + } + ], + "ModifyDBClusterEndpoint": [ + { + "input": { + "DBClusterEndpointIdentifier": "mycustomendpoint", + "StaticMembers": [ + "dbinstance1", + "dbinstance2", + "dbinstance3" + ] + }, + "output": { + "CustomEndpointType": "READER", + "DBClusterEndpointArn": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:mycustomendpoint", + "DBClusterEndpointIdentifier": "mycustomendpoint", + "DBClusterEndpointResourceIdentifier": "cluster-endpoint-ANPAJ4AE5446DAEXAMPLE", + "DBClusterIdentifier": "mydbcluster", + "Endpoint": "mycustomendpoint.cluster-custom-cnpexample.us-east-1.rds.amazonaws.com", + "EndpointType": "CUSTOM", + "ExcludedMembers": [], + "StaticMembers": [ + "dbinstance1", + "dbinstance2", + "dbinstance3" + ], + "Status": "modifying" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example modifies the specified custom DB cluster endpoint.", + "id": "to-modify-a-custom-db-cluster-endpoint-1680307652958", + "title": "To modify a custom DB cluster endpoint" + } + ], + "ModifyDBClusterParameterGroup": [ + { + "input": { + "DBClusterParameterGroupName": "mydbclusterpg", + "Parameters": [ + { + "ApplyMethod": "immediate", + "ParameterName": "server_audit_logging", + "ParameterValue": "1" + }, + { + "ApplyMethod": "immediate", + "ParameterName": "server_audit_logs_upload", + "ParameterValue": "1" + } + ] + }, + "output": { + "DBClusterParameterGroupName": "mydbclusterpg" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example modifies the values of parameters in a DB cluster parameter group.", + "id": "to-modify-parameters-in-a-db-cluster-parameter-group-1680377584537", + "title": "To modify parameters in a DB cluster parameter group" + } + ], + "ModifyDBClusterSnapshotAttribute": [ + { + "input": { + "AttributeName": "restore", + "DBClusterSnapshotIdentifier": "myclustersnapshot", + "ValuesToAdd": [ + "123456789012" + ] + }, + "output": { + "DBClusterSnapshotAttributesResult": { + "DBClusterSnapshotAttributes": [ + { + "AttributeName": "restore", + "AttributeValues": [ + "123456789012" + ] + } + ], + "DBClusterSnapshotIdentifier": "myclustersnapshot" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example makes changes to the specified DB cluster snapshot attribute.", + "id": "to-modify-a-db-cluster-snapshot-attribute-1680310358770", + "title": "To modify a DB cluster snapshot attribute" + } + ], + "ModifyDBInstance": [ + { + "input": { + "ApplyImmediately": true, + "DBInstanceIdentifier": "database-2", + "DBParameterGroupName": "test-sqlserver-se-2017", + "OptionGroupName": "test-se-2017" + }, + "output": { + "DBInstance": { + "AssociatedRoles": [], + "AutoMinorVersionUpgrade": false, + "AvailabilityZone": "us-west-2d", + "CharacterSetName": "SQL_Latin1_General_CP1_CI_AS", + "DBInstanceClass": "db.r4.large", + "DBInstanceIdentifier": "database-2", + "DBInstanceStatus": "available", + "DBParameterGroups": [ + { + "DBParameterGroupName": "test-sqlserver-se-2017", + "ParameterApplyStatus": "applying" + } + ], + "DeletionProtection": false, + "Engine": "sqlserver-se", + "EngineVersion": "14.00.3281.6.v1", + "LicenseModel": "license-included", + "MaxAllocatedStorage": 1000, + "MultiAZ": true, + "OptionGroupMemberships": [ + { + "OptionGroupName": "test-se-2017", + "Status": "pending-apply" + } + ], + "PubliclyAccessible": true, + "ReadReplicaDBInstanceIdentifiers": [], + "SecondaryAvailabilityZone": "us-west-2c", + "StorageType": "gp2" + } + }, + "comments": { + "input": {}, + "output": { + "DBInstance": "Some output ommitted." + } + }, + "description": "The following example associates an option group and a parameter group with a compatible Microsoft SQL Server DB instance. The ApplyImmediately parameter causes the option and parameter groups to be associated immediately, instead of waiting until the next maintenance window.", + "id": "to-modify-a-db-instance-1680377584537", + "title": "To modify a DB instance" + } + ], + "ModifyDBParameterGroup": [ + { + "input": { + "DBParameterGroupName": "test-sqlserver-se-2017", + "Parameters": [ + { + "ApplyMethod": "immediate", + "ParameterName": "clr enabled", + "ParameterValue": "1" + } + ] + }, + "output": { + "DBParameterGroupName": "test-sqlserver-se-2017" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example changes the value of the clr enabled parameter in a DB parameter group. The value of the ApplyMethod parameter causes the DB parameter group to be modified immediately, instead of waiting until the next maintenance window.", + "id": "to-modify-a-db-parameter-group-1680382937235", + "title": "To modify a DB parameter group" + } + ], + "ModifyDBSnapshot": [ + { + "input": { + "DBSnapshotIdentifier": "db5-snapshot-upg-test", + "EngineVersion": "11.7" + }, + "output": { + "DBSnapshot": { + "AllocatedStorage": 20, + "AvailabilityZone": "us-west-2a", + "DBInstanceIdentifier": "database-5", + "DBSnapshotArn": "arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-upg-test", + "DBSnapshotIdentifier": "db5-snapshot-upg-test", + "DbiResourceId": "db-GJMF75LM42IL6BTFRE4UZJ5YM4", + "Encrypted": false, + "Engine": "postgres", + "EngineVersion": "10.6", + "IAMDatabaseAuthenticationEnabled": false, + "InstanceCreateTime": "2020-03-27T19:59:04.735Z", + "LicenseModel": "postgresql-license", + "MasterUsername": "postgres", + "OptionGroupName": "default:postgres-11", + "PercentProgress": 100, + "Port": 5432, + "ProcessorFeatures": [], + "SnapshotCreateTime": "2020-03-27T20:49:17.092Z", + "SnapshotType": "manual", + "Status": "upgrading", + "StorageType": "gp2", + "VpcId": "vpc-2ff27557" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example upgrades a PostgeSQL 10.6 snapshot named db5-snapshot-upg-test to PostgreSQL 11.7. The new DB engine version is shown after the snapshot has finished upgrading and its status is available.", + "id": "to-modify-a-db-snapshot-1680381968028", + "title": "To modify a DB snapshot" + } + ], + "ModifyDBSnapshotAttribute": [ + { + "input": { + "AttributeName": "restore", + "DBSnapshotIdentifier": "mydbsnapshot", + "ValuesToAdd": [ + "111122223333", + "444455556666" + ] + }, + "output": { + "DBSnapshotAttributesResult": { + "DBSnapshotAttributes": [ + { + "AttributeName": "restore", + "AttributeValues": [ + "111122223333", + "444455556666" + ] + } + ], + "DBSnapshotIdentifier": "mydbsnapshot" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example grants permission to two AWS accounts, with the identifiers 111122223333 and 444455556666, to restore the DB snapshot named mydbsnapshot.", + "id": "to-allow-two-aws-accounts-to-restore-a-db-snapshot-1680389647513", + "title": "To allow two AWS accounts to restore a DB snapshot" + }, + { + "input": { + "AttributeName": "restore", + "DBSnapshotIdentifier": "mydbsnapshot", + "ValuesToRemove": [ + "444455556666" + ] + }, + "output": { + "DBSnapshotAttributesResult": { + "DBSnapshotAttributes": [ + { + "AttributeName": "restore", + "AttributeValues": [ + "111122223333" + ] + } + ], + "DBSnapshotIdentifier": "mydbsnapshot" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example removes permission from the AWS account with the identifier 444455556666 to restore the DB snapshot named mydbsnapshot.", + "id": "to-prevent-an-aws-account-from-restoring-a-db-snapshot-1680389850879", + "title": "To prevent an AWS account from restoring a DB snapshot" + } + ], + "ModifyDBSubnetGroup": [ + { + "input": { + "DBSubnetGroupDescription": "", + "DBSubnetGroupName": "mysubnetgroup", + "SubnetIds": [ + "subnet-0a1dc4e1a6f123456", + "subnet-070dd7ecb3aaaaaaa", + "subnet-00f5b198bc0abcdef", + "subnet-08e41f9e230222222" + ] + }, + "output": { + "DBSubnetGroup": { + "DBSubnetGroupArn": "arn:aws:rds:us-west-2:123456789012:subgrp:mysubnetgroup", + "DBSubnetGroupDescription": "test DB subnet group", + "DBSubnetGroupName": "mysubnetgroup", + "SubnetGroupStatus": "Complete", + "Subnets": [ + { + "SubnetAvailabilityZone": { + "Name": "us-west-2a" + }, + "SubnetIdentifier": "subnet-08e41f9e230222222", + "SubnetStatus": "Active" + }, + { + "SubnetAvailabilityZone": { + "Name": "us-west-2b" + }, + "SubnetIdentifier": "subnet-070dd7ecb3aaaaaaa", + "SubnetStatus": "Active" + }, + { + "SubnetAvailabilityZone": { + "Name": "us-west-2d" + }, + "SubnetIdentifier": "subnet-00f5b198bc0abcdef", + "SubnetStatus": "Active" + }, + { + "SubnetAvailabilityZone": { + "Name": "us-west-2b" + }, + "SubnetIdentifier": "subnet-0a1dc4e1a6f123456", + "SubnetStatus": "Active" + } + ], + "VpcId": "vpc-0f08e7610a1b2c3d4" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example adds a subnet with the ID subnet-08e41f9e230222222 to the DB subnet group named mysubnetgroup. To keep the existing subnets in the subnet group, include their IDs as values in the --subnet-ids option. Make sure to have subnets with at least two different Availability Zones in the DB subnet group.", + "id": "to-modify-a-db-subnet-group-1680383300785", + "title": "To modify a DB subnet group" + } + ], + "ModifyEventSubscription": [ + { + "input": { + "Enabled": false, + "SubscriptionName": "my-instance-events" + }, + "output": { + "EventSubscription": { + "CustSubscriptionId": "my-instance-events", + "CustomerAwsId": "123456789012", + "Enabled": false, + "EventCategoriesList": [ + "backup", + "recovery" + ], + "EventSubscriptionArn": "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", + "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events", + "SourceType": "db-instance", + "Status": "modifying", + "SubscriptionCreationTime": "Tue Jul 31 23:22:01 UTC 2018" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example turns off the specified event subscription, so that it no longer publishes notifications to the specified Amazon Simple Notification Service topic.", + "id": "to-modify-an-event-subscription-1680383930434", + "title": "To modify an event subscription" + } + ], + "ModifyGlobalCluster": [ + { + "input": { + "DeletionProtection": true, + "GlobalClusterIdentifier": "myglobalcluster" + }, + "output": { + "GlobalCluster": { + "DeletionProtection": true, + "Engine": "aurora-mysql", + "EngineVersion": "5.7.mysql_aurora.2.07.2", + "GlobalClusterArn": "arn:aws:rds::123456789012:global-cluster:myglobalcluster", + "GlobalClusterIdentifier": "myglobalcluster", + "GlobalClusterMembers": [], + "GlobalClusterResourceId": "cluster-f0e523bfe07aabb", + "Status": "available", + "StorageEncrypted": false + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example enables deletion protection for an Aurora MySQL-based global database cluster.", + "id": "to-modify-a-global-database-cluster-1680385137511", + "title": "To modify a global database cluster" + } + ], + "ModifyIntegration": [ + { + "input": { + "IntegrationIdentifier": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + "IntegrationName": "my-renamed-integration" + }, + "output": { + "CreateTime": "2023-12-28T17:20:20.629Z", + "DataFilter": "include: *.*", + "IntegrationArn": "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231", + "IntegrationName": "my-renamed-integration", + "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa", + "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", + "Status": "active", + "Tags": [], + "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example modifies the name of an existing zero-ETL integration.", + "id": "to-modify-a-zero-etl-integration-1680407173998", + "title": "To modify a zero-ETL integration" + } + ], + "ModifyOptionGroup": [ + { + "input": { + "ApplyImmediately": true, + "OptionGroupName": "myawsuser-og02", + "OptionsToInclude": [ + { + "DBSecurityGroupMemberships": [ + "default" + ], + "OptionName": "MEMCACHED" + } + ] + }, + "output": { + "OptionGroup": {} + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example adds an option to an option group.", + "id": "to-modify-an-option-group-1473890247875", + "title": "To modify an option group" + } + ], + "PromoteReadReplica": [ + { + "input": { + "DBInstanceIdentifier": "test-instance-repl" + }, + "output": { + "DBInstance": { + "DBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:test-instance-repl", + "DBInstanceStatus": "modifying", + "ReadReplicaSourceDBInstanceIdentifier": "test-instance", + "StorageType": "standard" + } + }, + "comments": { + "input": {}, + "output": { + "DBInstance": "Some output ommitted." + } + }, + "description": "The following example promotes the specified read replica to become a standalone DB instance.", + "id": "to-promote-a-read-replica-1680263877808", + "title": "To promote a read replica" + } + ], + "PurchaseReservedDBInstancesOffering": [ + { + "input": { + "ReservedDBInstanceId": "8ba30be1-b9ec-447f-8f23-6114e3f4c7b4", + "ReservedDBInstancesOfferingId": "" + }, + "output": { + "ReservedDBInstance": { + "CurrencyCode": "USD", + "DBInstanceClass": "db.t2.micro", + "DBInstanceCount": 1, + "Duration": 31536000, + "FixedPrice": 51, + "MultiAZ": false, + "OfferingType": "Partial Upfront", + "ProductDescription": "mysql", + "RecurringCharges": [ + { + "RecurringChargeAmount": 0.006, + "RecurringChargeFrequency": "Hourly" + } + ], + "ReservedDBInstanceArn": "arn:aws:rds:us-west-2:123456789012:ri:ri-2020-06-29-16-54-57-670", + "ReservedDBInstanceId": "ri-2020-06-29-16-54-57-670", + "ReservedDBInstancesOfferingId": "8ba30be1-b9ec-447f-8f23-6114e3f4c7b4", + "StartTime": "2020-06-29T16:54:57.670Z", + "State": "payment-pending", + "UsagePrice": 0 + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example shows how to buy the reserved DB instance offering from the previous example.", + "id": "to-purchase-a-reserved-db-instance-1680263732858", + "title": "To purchase a reserved DB instance" + } + ], + "RebootDBInstance": [ + { + "input": { + "DBInstanceIdentifier": "test-mysql-instance" + }, + "output": { + "DBInstance": { + "DBInstanceClass": "db.t3.micro", + "DBInstanceIdentifier": "test-mysql-instance", + "DBInstanceStatus": "rebooting", + "Endpoint": { + "Address": "test-mysql-instance.############.us-west-2.rds.amazonaws.com", + "HostedZoneId": "Z1PVIF0EXAMPLE", + "Port": 3306 + }, + "Engine": "mysql", + "MasterUsername": "admin" + } + }, + "comments": { + "input": {}, + "output": { + "DBInstance": "Some output ommitted." + } + }, + "description": "The following example starts a reboot of the specified DB instance.", + "id": "to-reboot-a-db-instance-1680072870190", + "title": "To reboot a DB instance" + } + ], + "RemoveFromGlobalCluster": [ + { + "input": { + "DbClusterIdentifier": "arn:aws:rds:us-west-2:123456789012:cluster:DB-1", + "GlobalClusterIdentifier": "myglobalcluster" + }, + "output": { + "GlobalCluster": { + "DeletionProtection": false, + "Engine": "aurora-postgresql", + "EngineVersion": "10.11", + "GlobalClusterArn": "arn:aws:rds::123456789012:global-cluster:myglobalcluster", + "GlobalClusterIdentifier": "myglobalcluster", + "GlobalClusterMembers": [ + { + "DBClusterArn": "arn:aws:rds:us-east-1:123456789012:cluster:js-global-cluster", + "IsWriter": true, + "Readers": [ + "arn:aws:rds:us-west-2:123456789012:cluster:DB-1" + ] + }, + { + "DBClusterArn": "arn:aws:rds:us-west-2:123456789012:cluster:DB-1", + "GlobalWriteForwardingStatus": "disabled", + "IsWriter": false, + "Readers": [] + } + ], + "GlobalClusterResourceId": "cluster-abc123def456gh", + "Status": "available", + "StorageEncrypted": true + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example detaches an Aurora secondary cluster from an Aurora global database cluster. The cluster changes from being read-only to a standalone cluster with read-write capability.", + "id": "to-detach-an-aurora-secondary-cluster-from-an-aurora-global-database-cluster-1680072605847", + "title": "To detach an Aurora secondary cluster from an Aurora global database cluster" + } + ], + "RemoveRoleFromDBCluster": [ + { + "input": { + "DBClusterIdentifier": "mydbcluster", + "RoleArn": "arn:aws:iam::123456789012:role/RDSLoadFromS3" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example removes a role from a DB cluster.", + "id": "to-disassociate-an-identity-and-access-management-iam-role-from-a-db-cluster-1680072359521", + "title": "To disassociate an Identity and Access Management (IAM) role from a DB cluster" + } + ], + "RemoveSourceIdentifierFromSubscription": [ + { + "input": { + "SourceIdentifier": "test-instance-repl", + "SubscriptionName": "my-instance-events" + }, + "output": { + "EventSubscription": { + "CustSubscriptionId": "my-instance-events", + "CustomerAwsId": "123456789012", + "Enabled": false, + "EventCategoriesList": [ + "backup", + "recovery" + ], + "EventSubscriptionArn": "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", + "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events", + "SourceIdsList": [ + "test-instance" + ], + "SourceType": "db-instance", + "Status": "modifying", + "SubscriptionCreationTime": "Tue Jul 31 23:22:01 UTC 2018" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example removes the specified source identifier from an existing subscription.", + "id": "to-remove-a-source-identifier-from-a-subscription-1680072062459", + "title": "To remove a source identifier from a subscription" + } + ], + "RemoveTagsFromResource": [ + { + "input": { + "ResourceName": "arn:aws:rds:us-east-1:123456789012:db:mydbinstance", + "TagKeys": [ + "Name", + "Environment" + ] + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example removes tags from a resource.", + "id": "to-remove-tags-from-a-resource-1680070522922", + "title": "To remove tags from a resource" + } + ], + "ResetDBClusterParameterGroup": [ + { + "input": { + "DBClusterParameterGroupName": "mydbclpg", + "ResetAllParameters": true + }, + "output": { + "DBClusterParameterGroupName": "mydbclpg" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example resets all parameter values in a customer-created DB cluster parameter group to their default values.", + "id": "to-reset-all-parameters-to-their-default-values-1680070254216", + "title": "To reset all parameters to their default values" + } + ], + "ResetDBParameterGroup": [ + { + "input": { + "DBParameterGroupName": "mypg", + "ResetAllParameters": true + }, + "output": { + "DBParameterGroupName": "mypg" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example resets all parameter values in a customer-created DB parameter group to their default values.", + "id": "to-reset-all-parameters-to-their-default-values-1680069721142", + "title": "To reset all parameters to their default values" + } + ], + "RestoreDBClusterFromS3": [ + { + "input": { + "DBClusterIdentifier": "cluster-s3-restore", + "Engine": "aurora-mysql", + "MasterUserPassword": "mypassword", + "MasterUsername": "admin", + "S3BucketName": "mybucket", + "S3IngestionRoleArn": "arn:aws:iam::123456789012:role/service-role/TestBackup", + "S3Prefix": "test-backup", + "SourceEngine": "mysql", + "SourceEngineVersion": "5.7.28" + }, + "output": { + "DBCluster": { + "AllocatedStorage": 1, + "AssociatedRoles": [], + "AvailabilityZones": [ + "us-west-2c", + "us-west-2a", + "us-west-2b" + ], + "BackupRetentionPeriod": 1, + "ClusterCreateTime": "2020-07-27T14:22:08.095Z", + "CopyTagsToSnapshot": false, + "CrossAccountClone": false, + "DBClusterArn": "arn:aws:rds:us-west-2:123456789012:cluster:cluster-s3-restore", + "DBClusterIdentifier": "cluster-s3-restore", + "DBClusterMembers": [], + "DBClusterParameterGroup": "default.aurora-mysql5.7", + "DBSubnetGroup": "default", + "DbClusterResourceId": "cluster-SU5THYQQHOWCXZZDGXREXAMPLE", + "DeletionProtection": false, + "DomainMemberships": [], + "Endpoint": "cluster-s3-restore.cluster-co3xyzabc123.us-west-2.rds.amazonaws.com", + "Engine": "aurora-mysql", + "EngineMode": "provisioned", + "EngineVersion": "5.7.12", + "HostedZoneId": "Z1PVIF0EXAMPLE", + "HttpEndpointEnabled": false, + "IAMDatabaseAuthenticationEnabled": false, + "MasterUsername": "admin", + "MultiAZ": false, + "Port": 3306, + "PreferredBackupWindow": "11:15-11:45", + "PreferredMaintenanceWindow": "thu:12:19-thu:12:49", + "ReadReplicaIdentifiers": [], + "ReaderEndpoint": "cluster-s3-restore.cluster-ro-co3xyzabc123.us-west-2.rds.amazonaws.com", + "Status": "creating", + "StorageEncrypted": false, + "VpcSecurityGroups": [ + { + "Status": "active", + "VpcSecurityGroupId": "sg-########" + } + ] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example restores an Amazon Aurora MySQL version 5.7-compatible DB cluster from a MySQL 5.7 DB backup file in Amazon S3.", + "id": "to-restore-an-amazon-aurora-db-cluster-from-amazon-s3-1680069516445", + "title": "To restore an Amazon Aurora DB cluster from Amazon S3" + } + ], + "RestoreDBClusterFromSnapshot": [ + { + "input": { + "DBClusterIdentifier": "newdbcluster", + "Engine": "aurora-postgresql", + "EngineVersion": "10.7", + "SnapshotIdentifier": "test-instance-snapshot" + }, + "output": { + "DBCluster": { + "AllocatedStorage": 1, + "AssociatedRoles": [], + "AvailabilityZones": [ + "us-west-2c", + "us-west-2a", + "us-west-2b" + ], + "BackupRetentionPeriod": 7, + "ClusterCreateTime": "2020-06-05T15:06:58.634Z", + "CopyTagsToSnapshot": false, + "CrossAccountClone": false, + "DBClusterArn": "arn:aws:rds:us-west-2:123456789012:cluster:newdbcluster", + "DBClusterIdentifier": "newdbcluster", + "DBClusterMembers": [], + "DBClusterParameterGroup": "default.aurora-postgresql10", + "DBSubnetGroup": "default", + "DatabaseName": "", + "DbClusterResourceId": "cluster-5DSB5IFQDDUVAWOUWM1EXAMPLE", + "DeletionProtection": false, + "DomainMemberships": [], + "Endpoint": "newdbcluster.cluster-############.us-west-2.rds.amazonaws.com", + "Engine": "aurora-postgresql", + "EngineMode": "provisioned", + "EngineVersion": "10.7", + "HostedZoneId": "Z1PVIF0EXAMPLE", + "HttpEndpointEnabled": false, + "IAMDatabaseAuthenticationEnabled": false, + "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/287364e4-33e3-4755-a3b0-a1b2c3d4e5f6", + "MasterUsername": "postgres", + "MultiAZ": false, + "Port": 5432, + "PreferredBackupWindow": "09:33-10:03", + "PreferredMaintenanceWindow": "sun:12:22-sun:12:52", + "ReadReplicaIdentifiers": [], + "ReaderEndpoint": "newdbcluster.cluster-ro-############.us-west-2.rds.amazonaws.com", + "Status": "creating", + "StorageEncrypted": true, + "VpcSecurityGroups": [ + { + "Status": "active", + "VpcSecurityGroupId": "sg-########" + } + ] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example restores an Aurora PostgreSQL DB cluster compatible with PostgreSQL version 10.7 from a DB cluster snapshot named test-instance-snapshot.", + "id": "to-restore-a-db-cluster-from-a-snapshot-1680069287853", + "title": "To restore a DB cluster from a snapshot" + } + ], + "RestoreDBClusterToPointInTime": [ + { + "input": { + "DBClusterIdentifier": "sample-cluster-clone", + "RestoreType": "copy-on-write", + "SourceDBClusterIdentifier": "database-4", + "UseLatestRestorableTime": true + }, + "output": { + "DBCluster": { + "AllocatedStorage": 1, + "AssociatedRoles": [], + "AvailabilityZones": [ + "us-west-2c", + "us-west-2a", + "us-west-2b" + ], + "BackupRetentionPeriod": 7, + "CloneGroupId": "8d19331a-099a-45a4-b4aa-11aa22bb33cc44dd", + "ClusterCreateTime": "2020-03-10T19:57:38.967Z", + "CopyTagsToSnapshot": false, + "CrossAccountClone": false, + "DBClusterArn": "arn:aws:rds:us-west-2:123456789012:cluster:sample-cluster-clone", + "DBClusterIdentifier": "sample-cluster-clone", + "DBClusterMembers": [], + "DBClusterParameterGroup": "default.aurora-postgresql10", + "DBSubnetGroup": "default", + "DatabaseName": "", + "DbClusterResourceId": "cluster-BIZ77GDSA2XBSTNPFW1EXAMPLE", + "DeletionProtection": false, + "Endpoint": "sample-cluster-clone.cluster-############.us-west-2.rds.amazonaws.com", + "Engine": "aurora-postgresql", + "EngineMode": "provisioned", + "EngineVersion": "10.7", + "HostedZoneId": "Z1PVIF0EXAMPLE", + "HttpEndpointEnabled": false, + "IAMDatabaseAuthenticationEnabled": false, + "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/287364e4-33e3-4755-a3b0-a1b2c3d4e5f6", + "MasterUsername": "postgres", + "MultiAZ": false, + "Port": 5432, + "PreferredBackupWindow": "09:33-10:03", + "PreferredMaintenanceWindow": "sun:12:22-sun:12:52", + "ReadReplicaIdentifiers": [], + "ReaderEndpoint": "sample-cluster-clone.cluster-ro-############.us-west-2.rds.amazonaws.com", + "Status": "creating", + "StorageEncrypted": true, + "VpcSecurityGroups": [ + { + "Status": "active", + "VpcSecurityGroupId": "sg-########" + } + ] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example restores the DB cluster named database-4 to the latest possible time. Using copy-on-write as the restore type restores the new DB cluster as a clone of the source DB cluster.", + "id": "to-restore-a-db-cluster-to-a-specified-time-1680069105508", + "title": "To restore a DB cluster to a specified time" + } + ], + "RestoreDBInstanceFromDBSnapshot": [ + { + "input": { + "DBInstanceClass": "db.t3.small", + "DBInstanceIdentifier": "db7-new-instance", + "DBSnapshotIdentifier": "db7-test-snapshot" + }, + "output": { + "DBInstance": { + "AssociatedRoles": [], + "AutoMinorVersionUpgrade": true, + "DBInstanceArn": "arn:aws:rds:us-west-2:123456789012:db:db7-new-instance", + "DBInstanceClass": "db.t3.small", + "DBInstanceIdentifier": "db7-new-instance", + "DBInstanceStatus": "creating", + "DeletionProtection": false, + "Engine": "mysql", + "EngineVersion": "5.7.22", + "IAMDatabaseAuthenticationEnabled": false, + "LicenseModel": "general-public-license", + "MultiAZ": false, + "PendingModifiedValues": {}, + "PerformanceInsightsEnabled": false, + "PreferredMaintenanceWindow": "mon:07:37-mon:08:07", + "ReadReplicaDBInstanceIdentifiers": [] + } + }, + "comments": { + "input": {}, + "output": { + "DBInstance": "Some output ommitted." + } + }, + "description": "The following example creates a new DB instance named db7-new-instance with the db.t3.small DB instance class from the specified DB snapshot. The source DB instance from which the snapshot was taken uses a deprecated DB instance class, so you can't upgrade it.", + "id": "to-restore-a-db-instance-from-a-db-snapshot-1680093236214", + "title": "To restore a DB instance from a DB snapshot" + } + ], + "RestoreDBInstanceToPointInTime": [ + { + "input": { + "RestoreTime": "2018-07-30T23:45:00.000Z", + "SourceDBInstanceIdentifier": "test-instance", + "TargetDBInstanceIdentifier": "restored-test-instance" + }, + "output": { + "DBInstance": { + "AllocatedStorage": 200, + "AutoMinorVersionUpgrade": true, + "AvailabilityZone": "us-west-2b", + "BackupRetentionPeriod": 7, + "CACertificateIdentifier": "rds-ca-2015", + "CopyTagsToSnapshot": false, + "DBInstanceArn": "arn:aws:rds:us-west-2:123456789012:db:restored-test-instance", + "DBInstanceClass": "db.t2.small", + "DBInstanceIdentifier": "restored-test-instance", + "DBInstanceStatus": "available", + "DBName": "sample", + "DBParameterGroups": [ + { + "DBParameterGroupName": "default.mysql5.6", + "ParameterApplyStatus": "in-sync" + } + ], + "DBSecurityGroups": [], + "DBSubnetGroup": { + "DBSubnetGroupDescription": "default", + "DBSubnetGroupName": "default", + "SubnetGroupStatus": "Complete", + "Subnets": [ + { + "SubnetAvailabilityZone": { + "Name": "us-west-2a" + }, + "SubnetIdentifier": "subnet-77e8db03", + "SubnetStatus": "Active" + }, + { + "SubnetAvailabilityZone": { + "Name": "us-west-2b" + }, + "SubnetIdentifier": "subnet-c39989a1", + "SubnetStatus": "Active" + }, + { + "SubnetAvailabilityZone": { + "Name": "us-west-2c" + }, + "SubnetIdentifier": "subnet-4b267b0d", + "SubnetStatus": "Active" + } + ], + "VpcId": "vpc-c1c5b3a3" + }, + "DbInstancePort": 0, + "DbiResourceId": "db-VNZUCCBTEDC4WR7THXNJO72HVQ", + "DomainMemberships": [], + "Engine": "mysql", + "EngineVersion": "5.6.27", + "LicenseModel": "general-public-license", + "MasterUsername": "mymasteruser", + "MonitoringInterval": 0, + "MultiAZ": false, + "OptionGroupMemberships": [ + { + "OptionGroupName": "default:mysql-5-6", + "Status": "in-sync" + } + ], + "PendingModifiedValues": {}, + "PreferredBackupWindow": "12:58-13:28", + "PreferredMaintenanceWindow": "tue:10:16-tue:10:46", + "PubliclyAccessible": true, + "ReadReplicaDBInstanceIdentifiers": [], + "StorageEncrypted": false, + "StorageType": "gp2", + "VpcSecurityGroups": [ + { + "Status": "active", + "VpcSecurityGroupId": "sg-e5e5b0d2" + } + ] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example restores test-instance to a new DB instance named restored-test-instance, as of the specified time.", + "id": "to-restore-a-db-instance-to-a-point-in-time-1680036021951", + "title": "To restore a DB instance to a point in time" + } + ], + "RevokeDBSecurityGroupIngress": [ + { + "input": { + "CIDRIP": "203.0.113.5/32", + "DBSecurityGroupName": "mydbsecuritygroup" + }, + "output": { + "DBSecurityGroup": {} + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "This example revokes ingress for the specified CIDR block associated with the specified DB security group.", + "id": "revoke-db-security-group-ingress-ce5b2c1c-bd4e-4809-b04a-6d78ec448813", + "title": "To revoke ingress for a DB security group" + } + ], + "StartActivityStream": [ + { + "input": { + "ApplyImmediately": true, + "KmsKeyId": "arn:aws:kms:us-east-1:1234567890123:key/a12c345d-6ef7-890g-h123-456i789jk0l1", + "Mode": "async", + "ResourceArn": "arn:aws:rds:us-east-1:1234567890123:cluster:my-pg-cluster" + }, + "output": { + "ApplyImmediately": true, + "KinesisStreamName": "aws-rds-das-cluster-0ABCDEFGHI1JKLM2NOPQ3R4S", + "KmsKeyId": "arn:aws:kms:us-east-1:1234567890123:key/a12c345d-6ef7-890g-h123-456i789jk0l1", + "Mode": "async", + "Status": "starting" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example starts an asynchronous activity stream to monitor an Aurora cluster named my-pg-cluster.", + "id": "to-start-a-database-activity-stream-1680035656463", + "title": "To start a database activity stream" + } + ], + "StartDBCluster": [ + { + "input": { + "DBClusterIdentifier": "mydbcluster" + }, + "output": { + "DBCluster": { + "AllocatedStorage": 1, + "AvailabilityZones": [ + "us-east-1a", + "us-east-1e", + "us-east-1b" + ], + "BackupRetentionPeriod": 1, + "DBClusterIdentifier": "mydbcluster", + "DatabaseName": "mydb" + } + }, + "comments": { + "input": {}, + "output": { + "DBCluster": "Some output ommitted." + } + }, + "description": "The following example starts a DB cluster and its DB instances.", + "id": "to-start-a-db-cluster-1680035521632", + "title": "To start a DB cluster" + } + ], + "StartDBInstance": [ + { + "input": { + "DBInstanceIdentifier": "test-instance" + }, + "output": { + "DBInstance": { + "DBInstanceStatus": "starting" + } + }, + "comments": { + "input": {}, + "output": { + "DBInstance": "Some output ommitted." + } + }, + "description": "The following example starts the specified DB instance.", + "id": "to-start-a-db-instance-1679951967681", + "title": "To start a DB instance" + } + ], + "StartDBInstanceAutomatedBackupsReplication": [ + { + "input": { + "BackupRetentionPeriod": 14, + "SourceDBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db" + }, + "output": { + "DBInstanceAutomatedBackup": { + "AllocatedStorage": 20, + "BackupRetentionPeriod": 14, + "DBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db", + "DBInstanceAutomatedBackupsArn": "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example", + "DBInstanceIdentifier": "new-orcl-db", + "DbiResourceId": "db-JKIB2GFQ5RV7REPLZA4EXAMPLE", + "Encrypted": false, + "Engine": "oracle-se2", + "EngineVersion": "12.1.0.2.v21", + "IAMDatabaseAuthenticationEnabled": false, + "InstanceCreateTime": "2020-12-04T15:28:31Z", + "LicenseModel": "bring-your-own-license", + "MasterUsername": "admin", + "OptionGroupName": "default:oracle-se2-12-1", + "Port": 1521, + "Region": "us-east-1", + "RestoreWindow": {}, + "Status": "pending", + "StorageType": "gp2" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example replicates automated backups from a DB instance in the US East (N. Virginia) Region. The backup retention period is 14 days.", + "id": "to-enable-cross-region-automated-backups-1680033438352", + "title": "To enable cross-Region automated backups" + } + ], + "StartExportTask": [ + { + "input": { + "ExportTaskIdentifier": "my-s3-export", + "IamRoleArn": "arn:aws:iam::123456789012:role/service-role/ExportRole", + "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff", + "S3BucketName": "mybucket", + "SourceArn": "arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-test" + }, + "output": { + "ExportTaskIdentifier": "my-s3-export", + "IamRoleArn": "arn:aws:iam::123456789012:role/service-role/ExportRole", + "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff", + "PercentProgress": 0, + "S3Bucket": "mybucket", + "SnapshotTime": "2020-03-27T20:48:42.023Z", + "SourceArn": "arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-test", + "Status": "STARTING", + "TotalExtractedDataInGB": 0 + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example exports a DB snapshot named db5-snapshot-test to the Amazon S3 bucket named mybucket.", + "id": "to-export-a-snapshot-to-amazon-s3-1679950669718", + "title": "To export a snapshot to Amazon S3" + } + ], + "StopActivityStream": [ + { + "input": { + "ApplyImmediately": true, + "ResourceArn": "arn:aws:rds:us-east-1:1234567890123:cluster:my-pg-cluster" + }, + "output": { + "KinesisStreamName": "aws-rds-das-cluster-0ABCDEFGHI1JKLM2NOPQ3R4S", + "KmsKeyId": "arn:aws:kms:us-east-1:1234567890123:key/a12c345d-6ef7-890g-h123-456i789jk0l1", + "Status": "stopping" + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example stops an activity stream in an Aurora cluster named my-pg-cluster.", + "id": "to-stop-a-database-activity-stream-1679945843823", + "title": "To stop a database activity stream" + } + ], + "StopDBCluster": [ + { + "input": { + "DBClusterIdentifier": "mydbcluster" + }, + "output": { + "DBCluster": { + "AllocatedStorage": 1, + "AvailabilityZones": [ + "us-east-1a", + "us-east-1e", + "us-east-1b" + ], + "BackupRetentionPeriod": 1, + "DBClusterIdentifier": "mydbcluster", + "DatabaseName": "mydb" + } + }, + "comments": { + "input": {}, + "output": { + "DBCluster": "Some output ommitted." + } + }, + "description": "The following example stops a DB cluster and its DB instances.", + "id": "to-stop-a-db-cluster-1679701988603", + "title": "To stop a DB cluster" + } + ], + "StopDBInstance": [ + { + "input": { + "DBInstanceIdentifier": "test-instance" + }, + "output": { + "DBInstance": { + "DBInstanceStatus": "stopping" + } + }, + "comments": { + "input": {}, + "output": { + "DBInstance": "Some output ommitted." + } + }, + "description": "The following example stops the specified DB instance.", + "id": "to-stop-a-db-instance-1679701630959", + "title": "To stop a DB instance" + } + ], + "StopDBInstanceAutomatedBackupsReplication": [ + { + "input": { + "SourceDBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db" + }, + "output": { + "DBInstanceAutomatedBackup": { + "AllocatedStorage": 20, + "BackupRetentionPeriod": 7, + "DBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db", + "DBInstanceAutomatedBackupsArn": "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example", + "DBInstanceIdentifier": "new-orcl-db", + "DbiResourceId": "db-JKIB2GFQ5RV7REPLZA4EXAMPLE", + "Encrypted": false, + "Engine": "oracle-se2", + "EngineVersion": "12.1.0.2.v21", + "IAMDatabaseAuthenticationEnabled": false, + "InstanceCreateTime": "2020-12-04T15:28:31Z", + "LicenseModel": "bring-your-own-license", + "MasterUsername": "admin", + "OptionGroupName": "default:oracle-se2-12-1", + "Port": 1521, + "Region": "us-east-1", + "RestoreWindow": { + "EarliestTime": "2020-12-04T23:13:21.030Z", + "LatestTime": "2020-12-07T19:59:57Z" + }, + "Status": "replicating", + "StorageType": "gp2" + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example ends replication of automated backups. Replicated backups are retained according to the set backup retention period.", + "id": "to-stop-replicating-automated-backups-1679701787115", + "title": "To stop replicating automated backups" + } + ], + "SwitchoverBlueGreenDeployment": [ + { + "input": { + "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", + "SwitchoverTimeout": 300 + }, + "output": { + "BlueGreenDeployment": { + "BlueGreenDeploymentIdentifier": "bgd-v53303651eexfake", + "BlueGreenDeploymentName": "bgd-cli-test-instance", + "CreateTime": "2022-02-25T22:33:22.225000+00:00", + "Source": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", + "Status": "SWITCHOVER_IN_PROGRESS", + "SwitchoverDetails": [ + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-blhi1e" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1-green-k5fv7u" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2-green-ggsh8m" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3-green-o2vwm0" + } + ], + "Target": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-blhi1e", + "Tasks": [ + { + "Name": "CREATING_READ_REPLICA_OF_SOURCE", + "Status": "COMPLETED" + }, + { + "Name": "DB_ENGINE_VERSION_UPGRADE", + "Status": "COMPLETED" + }, + { + "Name": "CONFIGURE_BACKUPS", + "Status": "COMPLETED" + }, + { + "Name": "CREATING_TOPOLOGY_OF_SOURCE", + "Status": "COMPLETED" + } + ] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example promotes the specified green environment as the new production environment.", + "id": "to-switch-a-bluegreen-deployment-for-an-rds-db-instance-1679699425237", + "title": "To switch a blue/green deployment for an RDS DB instance" + }, + { + "input": { + "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", + "SwitchoverTimeout": 300 + }, + "output": { + "BlueGreenDeployment": { + "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", + "BlueGreenDeploymentName": "my-blue-green-deployment", + "CreateTime": "2022-02-25T22:38:49.522000+00:00", + "Source": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", + "Status": "SWITCHOVER_IN_PROGRESS", + "SwitchoverDetails": [ + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3ud8z6" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1-green-bvxc73" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2-green-7wc4ie" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3-green-p4xxkz" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint-green-np1ikl" + }, + { + "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint", + "Status": "AVAILABLE", + "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint-green-miszlf" + } + ], + "Target": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3ud8z6", + "Tasks": [ + { + "Name": "CREATING_READ_REPLICA_OF_SOURCE", + "Status": "COMPLETED" + }, + { + "Name": "DB_ENGINE_VERSION_UPGRADE", + "Status": "COMPLETED" + }, + { + "Name": "CREATE_DB_INSTANCES_FOR_CLUSTER", + "Status": "COMPLETED" + }, + { + "Name": "CREATE_CUSTOM_ENDPOINTS", + "Status": "COMPLETED" + } + ] + } + }, + "comments": { + "input": {}, + "output": {} + }, + "description": "The following example promotes the specified green environment as the new production environment.", + "id": "to-promote-a-bluegreen-deployment-for-an-aurora-mysql-db-cluster-1679700197409", + "title": "To promote a blue/green deployment for an Aurora MySQL DB cluster" + } + ] + } +} diff --git a/src/data/rds_feature/2014-10-31/examples-1.json.php b/src/data/rds_feature/2014-10-31/examples-1.json.php new file mode 100644 index 0000000000..45105b8b94 --- /dev/null +++ b/src/data/rds_feature/2014-10-31/examples-1.json.php @@ -0,0 +1,3 @@ + '1.0', 'examples' => [ 'AddRoleToDBCluster' => [ [ 'input' => [ 'DBClusterIdentifier' => 'mydbcluster', 'RoleArn' => 'arn:aws:iam::123456789012:role/RDSLoadFromS3', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example associates a role with a DB cluster.', 'id' => 'to-associate-an-aws-identity-and-access-management-iam-role-with-a-db-cluster-1679691203006', 'title' => 'To associate an AWS Identity and Access Management (IAM) role with a DB cluster', ], ], 'AddRoleToDBInstance' => [ [ 'input' => [ 'DBInstanceIdentifier' => 'test-instance', 'FeatureName' => 'S3_INTEGRATION', 'RoleArn' => 'arn:aws:iam::111122223333:role/rds-s3-integration-role', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example adds the role to a DB instance named test-instance.', 'id' => 'to-associate-an-aws-identity-and-access-management-iam-role-with-a-db-instance-1679691512295', 'title' => 'To associate an AWS Identity and Access Management (IAM) role with a DB instance', ], ], 'AddSourceIdentifierToSubscription' => [ [ 'input' => [ 'SourceIdentifier' => 'test-instance-repl', 'SubscriptionName' => 'my-instance-events', ], 'output' => [ 'EventSubscription' => [ 'CustSubscriptionId' => 'my-instance-events', 'CustomerAwsId' => '123456789012', 'Enabled' => false, 'EventCategoriesList' => [ 'backup', 'recovery', ], 'EventSubscriptionArn' => 'arn:aws:rds:us-east-1:123456789012:es:my-instance-events', 'SnsTopicArn' => 'arn:aws:sns:us-east-1:123456789012:interesting-events', 'SourceIdsList' => [ 'test-instance', 'test-instance-repl', ], 'SourceType' => 'db-instance', 'Status' => 'modifying', 'SubscriptionCreationTime' => 'Tue Jul 31 23:22:01 UTC 2018', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example adds another source identifier to an existing subscription.', 'id' => 'to-add-a-source-identifier-to-a-subscription-1679691771786', 'title' => 'To add a source identifier to a subscription', ], ], 'AddTagsToResource' => [ [ 'input' => [ 'ResourceName' => 'arn:aws:rds:us-east-1:992648334831:og:mymysqloptiongroup', 'Tags' => [ [ 'Key' => 'Staging', 'Value' => 'LocationDB', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'This example adds a tag to an option group.', 'id' => 'add-tags-to-resource-fa99ef50-228b-449d-b893-ca4d4e9768ab', 'title' => 'To add tags to a resource', ], ], 'ApplyPendingMaintenanceAction' => [ [ 'input' => [ 'ApplyAction' => 'system-update', 'OptInType' => 'immediate', 'ResourceIdentifier' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-db-cluster', ], 'output' => [ 'ResourcePendingMaintenanceActions' => [ 'PendingMaintenanceActionDetails' => [ [ 'Action' => 'system-update', 'CurrentApplyDate' => '2021-01-23T01:07:36.100Z', 'Description' => 'Upgrade to Aurora PostgreSQL 3.3.2', 'OptInStatus' => 'immediate', ], ], 'ResourceIdentifier' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-db-cluster', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example applies the pending maintenance actions for a DB cluster.', 'id' => 'to-apply-pending-maintenance-actions-1679692228896', 'title' => 'To apply pending maintenance actions', ], ], 'AuthorizeDBSecurityGroupIngress' => [ [ 'input' => [ 'CIDRIP' => '203.0.113.5/32', 'DBSecurityGroupName' => 'mydbsecuritygroup', ], 'output' => [ 'DBSecurityGroup' => [], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'This example authorizes access to the specified security group by the specified CIDR block.', 'id' => 'authorize-db-security-group-ingress-ebf9ab91-8912-4b07-a32e-ca150668164f', 'title' => 'To authorize DB security group integress', ], ], 'CancelExportTask' => [ [ 'input' => [ 'ExportTaskIdentifier' => 'my-s3-export-1', ], 'output' => [ 'ExportTaskIdentifier' => 'my-s3-export-1', 'IamRoleArn' => 'arn:aws:iam::123456789012:role/service-role/export-snap-S3-role', 'KmsKeyId' => 'arn:aws:kms:us-east-1:123456789012:key/abcd0000-7bfd-4594-af38-aabbccddeeff', 'PercentProgress' => 0, 'S3Bucket' => 'mybucket', 'S3Prefix' => '', 'SnapshotTime' => '2019-03-24T20:01:09.815Z', 'SourceArn' => 'arn:aws:rds:us-east-1:123456789012:snapshot:publisher-final-snapshot', 'Status' => 'CANCELING', 'TotalExtractedDataInGB' => 0, ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example cancels an export task in progress that is exporting a snapshot to Amazon S3.', 'id' => 'to-cancel-a-snapshot-export-to-amazon-s3-1679694286587', 'title' => 'To cancel a snapshot export to Amazon S3', ], ], 'CopyDBClusterParameterGroup' => [ [ 'input' => [ 'SourceDBClusterParameterGroupIdentifier' => 'mydbclusterparametergroup', 'TargetDBClusterParameterGroupDescription' => 'My DB cluster parameter group copy', 'TargetDBClusterParameterGroupIdentifier' => 'mydbclusterparametergroup-copy', ], 'output' => [ 'DBClusterParameterGroup' => [ 'DBClusterParameterGroupArn' => 'arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterparametergroup-copy', 'DBClusterParameterGroupName' => 'mydbclusterparametergroup-copy', 'DBParameterGroupFamily' => 'aurora-mysql5.7', 'Description' => 'My DB cluster parameter group copy', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'This example copies a DB cluster parameter group.', 'id' => 'copy-db-cluster-parameter-group-6fefaffe-cde9-4dba-9f0b-d3f593572fe4', 'title' => 'To copy a DB cluster parameter group', ], ], 'CopyDBClusterSnapshot' => [ [ 'input' => [ 'CopyTags' => true, 'SourceDBClusterSnapshotIdentifier' => 'arn:aws:rds:us-east-1:123456789012:cluster-snapshot:rds:myaurora-2019-06-04-09-16', 'TargetDBClusterSnapshotIdentifier' => 'myclustersnapshotcopy', ], 'output' => [ 'DBClusterSnapshot' => [ 'AllocatedStorage' => 0, 'AvailabilityZones' => [ 'us-east-1a', 'us-east-1b', 'us-east-1e', ], 'ClusterCreateTime' => '2019-04-15T14:18:42.785Z', 'DBClusterIdentifier' => 'myaurora', 'DBClusterSnapshotArn' => 'arn:aws:rds:us-east-1:123456789012:cluster-snapshot:myclustersnapshotcopy', 'DBClusterSnapshotIdentifier' => 'myclustersnapshotcopy', 'Engine' => 'aurora-mysql', 'EngineVersion' => '5.7.mysql_aurora.2.04.2', 'IAMDatabaseAuthenticationEnabled' => false, 'KmsKeyId' => 'arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE', 'LicenseModel' => 'aurora-mysql', 'MasterUsername' => 'myadmin', 'PercentProgress' => 100, 'Port' => 0, 'SnapshotCreateTime' => '2019-06-04T09:16:42.649Z', 'SnapshotType' => 'manual', 'Status' => 'available', 'StorageEncrypted' => true, 'VpcId' => 'vpc-123example', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a copy of a DB cluster snapshot, including its tags.', 'id' => 'to-copy-a-db-cluster-snapshot-1679695109979', 'title' => 'To copy a DB cluster snapshot', ], ], 'CopyDBParameterGroup' => [ [ 'input' => [ 'SourceDBParameterGroupIdentifier' => 'mydbpg', 'TargetDBParameterGroupDescription' => 'Copy of mydbpg parameter group', 'TargetDBParameterGroupIdentifier' => 'mydbpgcopy', ], 'output' => [ 'DBParameterGroup' => [ 'DBParameterGroupArn' => 'arn:aws:rds:us-east-1:814387698303:pg:mydbpgcopy', 'DBParameterGroupFamily' => 'mysql5.7', 'DBParameterGroupName' => 'mydbpgcopy', 'Description' => 'Copy of mydbpg parameter group', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example makes a copy of a DB parameter group.', 'id' => 'to-copy-a-db-parameter-group-1679695426993', 'title' => 'To copy a DB parameter group', ], ], 'CopyDBSnapshot' => [ [ 'input' => [ 'SourceDBSnapshotIdentifier' => 'rds:database-mysql-2019-06-06-08-38', 'TargetDBSnapshotIdentifier' => 'mydbsnapshotcopy', ], 'output' => [ 'DBSnapshot' => [ 'AllocatedStorage' => 100, 'AvailabilityZone' => 'us-east-1f', 'DBInstanceIdentifier' => 'database-mysql', 'DBSnapshotArn' => 'arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshotcopy', 'DBSnapshotIdentifier' => 'mydbsnapshotcopy', 'DbiResourceId' => 'db-ZI7UJ5BLKMBYFGX7FDENCKADC4', 'Encrypted' => true, 'Engine' => 'mysql', 'EngineVersion' => '5.6.40', 'IAMDatabaseAuthenticationEnabled' => false, 'InstanceCreateTime' => '2019-04-30T15:45:53.663Z', 'Iops' => 1000, 'KmsKeyId' => 'arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE', 'LicenseModel' => 'general-public-license', 'MasterUsername' => 'admin', 'OptionGroupName' => 'default:mysql-5-6', 'PercentProgress' => 0, 'Port' => 3306, 'ProcessorFeatures' => [], 'SnapshotType' => 'manual', 'SourceDBSnapshotIdentifier' => 'arn:aws:rds:us-east-1:123456789012:snapshot:rds:database-mysql-2019-06-06-08-38', 'SourceRegion' => 'us-east-1', 'Status' => 'creating', 'StorageType' => 'io1', 'VpcId' => 'vpc-6594f31c', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a copy of a DB snapshot.', 'id' => 'to-copy-a-db-snapshot-1679695661487', 'title' => 'To copy a DB snapshot', ], ], 'CopyOptionGroup' => [ [ 'input' => [ 'SourceOptionGroupIdentifier' => 'myoptiongroup', 'TargetOptionGroupDescription' => 'My option group copy', 'TargetOptionGroupIdentifier' => 'new-option-group', ], 'output' => [ 'OptionGroup' => [ 'AllowsVpcAndNonVpcInstanceMemberships' => true, 'EngineName' => 'oracle-ee', 'MajorEngineVersion' => '11.2', 'OptionGroupArn' => 'arn:aws:rds:us-east-1:123456789012:og:new-option-group', 'OptionGroupDescription' => 'My option group copy', 'OptionGroupName' => 'new-option-group', 'Options' => [], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example makes a copy of an option group.', 'id' => 'to-copy-an-option-group-1679695800102', 'title' => 'To copy an option group', ], ], 'CreateBlueGreenDeployment' => [ [ 'input' => [ 'BlueGreenDeploymentName' => 'bgd-test-instance', 'Source' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance', 'TargetDBParameterGroupName' => 'mysql-80-group', 'TargetEngineVersion' => '8.0', ], 'output' => [ 'BlueGreenDeployment' => [ 'BlueGreenDeploymentIdentifier' => 'bgd-v53303651eexfake', 'BlueGreenDeploymentName' => 'bgd-cli-test-instance', 'CreateTime' => '2022-02-25T21:18:51.183000+00:00', 'Source' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance', 'Status' => 'PROVISIONING', 'SwitchoverDetails' => [ [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3', ], ], 'Tasks' => [ [ 'Name' => 'CREATING_READ_REPLICA_OF_SOURCE', 'Status' => 'PENDING', ], [ 'Name' => 'DB_ENGINE_VERSION_UPGRADE', 'Status' => 'PENDING', ], [ 'Name' => 'CONFIGURE_BACKUPS', 'Status' => 'PENDING', ], [ 'Name' => 'CREATING_TOPOLOGY_OF_SOURCE', 'Status' => 'PENDING', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a blue/green deployment for a MySQL DB instance.', 'id' => 'to-create-a-bluegreen-deployment-for-an-rds-for-mysql-db-instance-1679688377231', 'title' => 'To create a blue/green deployment for an RDS for MySQL DB instance', ], [ 'input' => [ 'BlueGreenDeploymentName' => 'my-blue-green-deployment', 'Source' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster', 'TargetDBClusterParameterGroupName' => 'mysql-80-cluster-group', 'TargetDBParameterGroupName' => 'ams-80-binlog-enabled', 'TargetEngineVersion' => '8.0', ], 'output' => [ 'BlueGreenDeployment' => [ 'BlueGreenDeploymentIdentifier' => 'bgd-wi89nwzglccsfake', 'BlueGreenDeploymentName' => 'my-blue-green-deployment', 'CreateTime' => '2022-02-25T21:12:00.288000+00:00', 'Source' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster', 'Status' => 'PROVISIONING', 'SwitchoverDetails' => [ [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster', 'Status' => 'PROVISIONING', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1', 'Status' => 'PROVISIONING', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2', 'Status' => 'PROVISIONING', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3', 'Status' => 'PROVISIONING', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint', 'Status' => 'PROVISIONING', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint', 'Status' => 'PROVISIONING', ], ], 'Tasks' => [ [ 'Name' => 'CREATING_READ_REPLICA_OF_SOURCE', 'Status' => 'PENDING', ], [ 'Name' => 'DB_ENGINE_VERSION_UPGRADE', 'Status' => 'PENDING', ], [ 'Name' => 'CREATE_DB_INSTANCES_FOR_CLUSTER', 'Status' => 'PENDING', ], [ 'Name' => 'CREATE_CUSTOM_ENDPOINTS', 'Status' => 'PENDING', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a blue/green deployment for an Aurora MySQL DB cluster.', 'id' => 'to-create-a-bluegreen-deployment-for-an-aurora-mysql-db-cluster-1679703605487', 'title' => 'To create a blue/green deployment for an Aurora MySQL DB cluster', ], ], 'CreateDBCluster' => [ [ 'input' => [ 'DBClusterIdentifier' => 'sample-cluster', 'DBSubnetGroupName' => 'default', 'Engine' => 'aurora-mysql', 'EngineVersion' => '5.7.12', 'MasterUserPassword' => 'mypassword', 'MasterUsername' => 'admin', 'VpcSecurityGroupIds' => [ 'sg-0b91305example', ], ], 'output' => [ 'DBCluster' => [ 'AllocatedStorage' => 1, 'AssociatedRoles' => [], 'AvailabilityZones' => [ 'us-east-1a', 'us-east-1b', 'us-east-1e', ], 'BackupRetentionPeriod' => 1, 'ClusterCreateTime' => '2019-06-07T23:21:33.048Z', 'CopyTagsToSnapshot' => false, 'DBClusterArn' => 'arn:aws:rds:us-east-1:123456789012:cluster:sample-cluster', 'DBClusterIdentifier' => 'sample-cluster', 'DBClusterMembers' => [], 'DBClusterParameterGroup' => 'default.aurora-mysql5.7', 'DBSubnetGroup' => 'default', 'DbClusterResourceId' => 'cluster-ANPAJ4AE5446DAEXAMPLE', 'DeletionProtection' => false, 'Endpoint' => 'sample-cluster.cluster-cnpexample.us-east-1.rds.amazonaws.com', 'Engine' => 'aurora-mysql', 'EngineMode' => 'provisioned', 'EngineVersion' => '5.7.12', 'HostedZoneId' => 'Z2R2ITUGPM61AM', 'HttpEndpointEnabled' => false, 'IAMDatabaseAuthenticationEnabled' => false, 'MasterUsername' => 'master', 'MultiAZ' => false, 'Port' => 3306, 'PreferredBackupWindow' => '09:12-09:42', 'PreferredMaintenanceWindow' => 'mon:04:31-mon:05:01', 'ReadReplicaIdentifiers' => [], 'ReaderEndpoint' => 'sample-cluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com', 'Status' => 'creating', 'StorageEncrypted' => false, 'VpcSecurityGroups' => [ [ 'Status' => 'active', 'VpcSecurityGroupId' => 'sg-0b91305example', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a MySQL 5.7-compatible Aurora DB cluster.', 'id' => 'to-create-a-mysql-57-compatible-db-cluster-1679699416154', 'title' => 'To create a MySQL 5.7-compatible DB cluster', ], [ 'input' => [ 'DBClusterIdentifier' => 'sample-pg-cluster', 'DBSubnetGroupName' => 'default', 'Engine' => 'aurora-postgresql', 'MasterUserPassword' => 'mypassword', 'MasterUsername' => 'admin', 'VpcSecurityGroupIds' => [ 'sg-0b91305example', ], ], 'output' => [ 'DBCluster' => [ 'AllocatedStorage' => 1, 'AssociatedRoles' => [], 'AvailabilityZones' => [ 'us-east-1a', 'us-east-1b', 'us-east-1c', ], 'BackupRetentionPeriod' => 1, 'ClusterCreateTime' => '2019-06-07T23:26:08.371Z', 'CopyTagsToSnapshot' => false, 'DBClusterArn' => 'arn:aws:rds:us-east-1:123456789012:cluster:sample-pg-cluster', 'DBClusterIdentifier' => 'sample-pg-cluster', 'DBClusterMembers' => [], 'DBClusterParameterGroup' => 'default.aurora-postgresql9.6', 'DBSubnetGroup' => 'default', 'DbClusterResourceId' => 'cluster-ANPAJ4AE5446DAEXAMPLE', 'DeletionProtection' => false, 'Endpoint' => 'sample-pg-cluster.cluster-cnpexample.us-east-1.rds.amazonaws.com', 'Engine' => 'aurora-postgresql', 'EngineMode' => 'provisioned', 'EngineVersion' => '9.6.9', 'HostedZoneId' => 'Z2R2ITUGPM61AM', 'HttpEndpointEnabled' => false, 'IAMDatabaseAuthenticationEnabled' => false, 'MasterUsername' => 'master', 'MultiAZ' => false, 'Port' => 5432, 'PreferredBackupWindow' => '09:56-10:26', 'PreferredMaintenanceWindow' => 'wed:03:33-wed:04:03', 'ReadReplicaIdentifiers' => [], 'ReaderEndpoint' => 'sample-pg-cluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com', 'Status' => 'creating', 'StorageEncrypted' => false, 'VpcSecurityGroups' => [ [ 'Status' => 'active', 'VpcSecurityGroupId' => 'sg-0b91305example', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a PostgreSQL-compatible Aurora DB cluster.', 'id' => 'to-create-a-postgresql-compatible-db-cluster-1679700161087', 'title' => 'To create a PostgreSQL-compatible DB cluster', ], ], 'CreateDBClusterEndpoint' => [ [ 'input' => [ 'DBClusterEndpointIdentifier' => 'mycustomendpoint', 'DBClusterIdentifier' => 'mydbcluster', 'EndpointType' => 'reader', 'StaticMembers' => [ 'dbinstance1', 'dbinstance2', ], ], 'output' => [ 'CustomEndpointType' => 'READER', 'DBClusterEndpointArn' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:mycustomendpoint', 'DBClusterEndpointIdentifier' => 'mycustomendpoint', 'DBClusterEndpointResourceIdentifier' => 'cluster-endpoint-ANPAJ4AE5446DAEXAMPLE', 'DBClusterIdentifier' => 'mydbcluster', 'Endpoint' => 'mycustomendpoint.cluster-custom-cnpexample.us-east-1.rds.amazonaws.com', 'EndpointType' => 'CUSTOM', 'ExcludedMembers' => [], 'StaticMembers' => [ 'dbinstance1', 'dbinstance2', ], 'Status' => 'creating', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a custom DB cluster endpoint and associate it with the specified Aurora DB cluster.', 'id' => 'to-create-a-custom-db-cluster-endpoint-1679701608522', 'title' => 'To create a custom DB cluster endpoint', ], ], 'CreateDBClusterParameterGroup' => [ [ 'input' => [ 'DBClusterParameterGroupName' => 'mydbclusterparametergroup', 'DBParameterGroupFamily' => 'aurora5.6', 'Description' => 'My new cluster parameter group', ], 'output' => [ 'DBClusterParameterGroup' => [ 'DBClusterParameterGroupArn' => 'arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterparametergroup', 'DBClusterParameterGroupName' => 'mydbclusterparametergroup', 'DBParameterGroupFamily' => 'aurora5.6', 'Description' => 'My new cluster parameter group', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a DB cluster parameter group.', 'id' => 'to-create-a-db-cluster-parameter-group-1679702915771', 'title' => 'To create a DB cluster parameter group', ], ], 'CreateDBClusterSnapshot' => [ [ 'input' => [ 'DBClusterIdentifier' => 'mydbclustersnapshot', 'DBClusterSnapshotIdentifier' => 'mydbcluster', ], 'output' => [ 'DBClusterSnapshot' => [ 'AllocatedStorage' => 1, 'AvailabilityZones' => [ 'us-east-1a', 'us-east-1b', 'us-east-1e', ], 'ClusterCreateTime' => '2019-04-15T14:18:42.785Z', 'DBClusterIdentifier' => 'mydbcluster', 'DBClusterSnapshotArn' => 'arn:aws:rds:us-east-1:123456789012:cluster-snapshot:mydbclustersnapshot', 'DBClusterSnapshotIdentifier' => 'mydbclustersnapshot', 'Engine' => 'aurora-mysql', 'EngineVersion' => '5.7.mysql_aurora.2.04.2', 'IAMDatabaseAuthenticationEnabled' => false, 'KmsKeyId' => 'arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE', 'LicenseModel' => 'aurora-mysql', 'MasterUsername' => 'myadmin', 'PercentProgress' => 0, 'Port' => 0, 'SnapshotCreateTime' => '2019-06-18T21:21:00.469Z', 'SnapshotType' => 'manual', 'Status' => 'creating', 'StorageEncrypted' => true, 'VpcId' => 'vpc-6594f31c', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a DB cluster snapshot.', 'id' => 'to-create-a-db-cluster-snapshot-1679703154423', 'title' => 'To create a DB cluster snapshot', ], ], 'CreateDBInstance' => [ [ 'input' => [ 'AllocatedStorage' => 20, 'DBInstanceClass' => 'db.t3.micro', 'DBInstanceIdentifier' => 'test-mysql-instance', 'Engine' => 'mysql', 'MasterUserPassword' => 'secret99', 'MasterUsername' => 'admin', ], 'output' => [ 'DBInstance' => [ 'AllocatedStorage' => 20, 'AssociatedRoles' => [], 'AutoMinorVersionUpgrade' => true, 'BackupRetentionPeriod' => 1, 'CACertificateIdentifier' => 'rds-ca-2019', 'CopyTagsToSnapshot' => false, 'DBInstanceArn' => 'arn:aws:rds:us-west-2:123456789012:db:test-mysql-instance', 'DBInstanceClass' => 'db.t3.micro', 'DBInstanceIdentifier' => 'test-mysql-instance', 'DBInstanceStatus' => 'creating', 'DBParameterGroups' => [ [ 'DBParameterGroupName' => 'default.mysql5.7', 'ParameterApplyStatus' => 'in-sync', ], ], 'DBSecurityGroups' => [], 'DBSubnetGroup' => [ 'DBSubnetGroupDescription' => 'default', 'DBSubnetGroupName' => 'default', 'SubnetGroupStatus' => 'Complete', 'Subnets' => [ [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-west-2c', ], 'SubnetIdentifier' => 'subnet-########', 'SubnetStatus' => 'Active', ], [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-west-2d', ], 'SubnetIdentifier' => 'subnet-########', 'SubnetStatus' => 'Active', ], [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-west-2a', ], 'SubnetIdentifier' => 'subnet-########', 'SubnetStatus' => 'Active', ], [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-west-2b', ], 'SubnetIdentifier' => 'subnet-########', 'SubnetStatus' => 'Active', ], ], 'VpcId' => 'vpc-2ff2ff2f', ], 'DbInstancePort' => 0, 'DbiResourceId' => 'db-5555EXAMPLE44444444EXAMPLE', 'DeletionProtection' => false, 'DomainMemberships' => [], 'Engine' => 'mysql', 'EngineVersion' => '5.7.22', 'IAMDatabaseAuthenticationEnabled' => false, 'LicenseModel' => 'general-public-license', 'MasterUsername' => 'admin', 'MonitoringInterval' => 0, 'MultiAZ' => false, 'OptionGroupMemberships' => [ [ 'OptionGroupName' => 'default:mysql-5-7', 'Status' => 'in-sync', ], ], 'PendingModifiedValues' => [ 'MasterUserPassword' => '****', ], 'PerformanceInsightsEnabled' => false, 'PreferredBackupWindow' => '12:55-13:25', 'PreferredMaintenanceWindow' => 'sun:08:07-sun:08:37', 'PubliclyAccessible' => true, 'ReadReplicaDBInstanceIdentifiers' => [], 'StorageEncrypted' => false, 'StorageType' => 'gp2', 'VpcSecurityGroups' => [ [ 'Status' => 'active', 'VpcSecurityGroupId' => 'sg-12345abc', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example uses the required options to launch a new DB instance.', 'id' => 'to-create-a-db-instance-1679703299533', 'title' => 'To create a DB instance', ], ], 'CreateDBInstanceReadReplica' => [ [ 'input' => [ 'DBInstanceIdentifier' => 'test-instance-repl', 'SourceDBInstanceIdentifier' => 'test-instance', ], 'output' => [ 'DBInstance' => [ 'DBInstanceArn' => 'arn:aws:rds:us-east-1:123456789012:db:test-instance-repl', 'DBInstanceIdentifier' => 'test-instance-repl', 'IAMDatabaseAuthenticationEnabled' => false, 'MonitoringInterval' => 0, 'ReadReplicaSourceDBInstanceIdentifier' => 'test-instance', ], ], 'comments' => [ 'input' => [], 'output' => [ 'DBInstance' => 'Some output ommitted.', ], ], 'description' => 'This example creates a read replica of an existing DB instance named test-instance. The read replica is named test-instance-repl.', 'id' => 'to-create-a-db-instance-read-replica-1680129486105', 'title' => 'To create a DB instance read replica', ], ], 'CreateDBParameterGroup' => [ [ 'input' => [ 'DBParameterGroupFamily' => 'MySQL8.0', 'DBParameterGroupName' => 'mydbparametergroup', 'Description' => 'My new parameter group', ], 'output' => [ 'DBParameterGroup' => [ 'DBParameterGroupArn' => 'arn:aws:rds:us-east-1:123456789012:pg:mydbparametergroup', 'DBParameterGroupFamily' => 'mysql8.0', 'DBParameterGroupName' => 'mydbparametergroup', 'Description' => 'My new parameter group', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a DB parameter group.', 'id' => 'to-create-a-db-parameter-group-1679939227970', 'title' => 'To create a DB parameter group', ], ], 'CreateDBSecurityGroup' => [ [ 'input' => [ 'DBSecurityGroupDescription' => 'My DB security group', 'DBSecurityGroupName' => 'mydbsecuritygroup', ], 'output' => [ 'DBSecurityGroup' => [], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'This example creates a DB security group.', 'id' => 'create-db-security-group-41b6786a-539e-42a5-a645-a8bc3cf99353', 'title' => 'To create a DB security group.', ], ], 'CreateDBSnapshot' => [ [ 'input' => [ 'DBInstanceIdentifier' => 'mydbsnapshot', 'DBSnapshotIdentifier' => 'database-mysql', ], 'output' => [ 'DBSnapshot' => [ 'AllocatedStorage' => 100, 'AvailabilityZone' => 'us-east-1b', 'DBInstanceIdentifier' => 'database-mysql', 'DBSnapshotArn' => 'arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshot', 'DBSnapshotIdentifier' => 'mydbsnapshot', 'DbiResourceId' => 'db-AKIAIOSFODNN7EXAMPLE', 'Encrypted' => true, 'Engine' => 'mysql', 'EngineVersion' => '8.0.32', 'IAMDatabaseAuthenticationEnabled' => false, 'InstanceCreateTime' => '2019-04-30T15:45:53.663Z', 'Iops' => 1000, 'KmsKeyId' => 'arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE', 'LicenseModel' => 'general-public-license', 'MasterUsername' => 'admin', 'OptionGroupName' => 'default:mysql-8-0', 'PercentProgress' => 0, 'Port' => 3306, 'ProcessorFeatures' => [], 'SnapshotType' => 'manual', 'Status' => 'creating', 'StorageType' => 'io1', 'VpcId' => 'vpc-6594f31c', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a DB snapshot.', 'id' => 'to-create-a-db-snapshot-1679939585361', 'title' => 'To create a DB snapshot', ], ], 'CreateDBSubnetGroup' => [ [ 'input' => [ 'DBSubnetGroupDescription' => 'test DB subnet group', 'DBSubnetGroupName' => 'mysubnetgroup', 'SubnetIds' => [ 'subnet-0a1dc4e1a6f123456', 'subnet-070dd7ecb3aaaaaaa', 'subnet-00f5b198bc0abcdef', ], ], 'output' => [ 'DBSubnetGroup' => [ 'DBSubnetGroupArn' => 'arn:aws:rds:us-west-2:0123456789012:subgrp:mysubnetgroup', 'DBSubnetGroupDescription' => 'test DB subnet group', 'DBSubnetGroupName' => 'mysubnetgroup', 'SubnetGroupStatus' => 'Complete', 'Subnets' => [ [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-west-2b', ], 'SubnetIdentifier' => 'subnet-070dd7ecb3aaaaaaa', 'SubnetStatus' => 'Active', ], [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-west-2d', ], 'SubnetIdentifier' => 'subnet-00f5b198bc0abcdef', 'SubnetStatus' => 'Active', ], [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-west-2b', ], 'SubnetIdentifier' => 'subnet-0a1dc4e1a6f123456', 'SubnetStatus' => 'Active', ], ], 'VpcId' => 'vpc-0f08e7610a1b2c3d4', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a DB subnet group called mysubnetgroup using existing subnets.', 'id' => 'to-create-a-db-subnet-group-1679942682822', 'title' => 'To create a DB subnet group', ], ], 'CreateEventSubscription' => [ [ 'input' => [ 'EventCategories' => [ 'backup', 'recovery', ], 'SnsTopicArn' => 'arn:aws:sns:us-east-1:123456789012:interesting-events', 'SourceType' => 'db-instance', 'SubscriptionName' => 'my-instance-events', ], 'output' => [ 'EventSubscription' => [ 'CustSubscriptionId' => 'my-instance-events', 'CustomerAwsId' => '123456789012', 'Enabled' => true, 'EventCategoriesList' => [ 'backup', 'recovery', ], 'EventSubscriptionArn' => 'arn:aws:rds:us-east-1:123456789012:es:my-instance-events', 'SnsTopicArn' => 'arn:aws:sns:us-east-1:123456789012:interesting-events', 'SourceType' => 'db-instance', 'Status' => 'creating', 'SubscriptionCreationTime' => 'Tue Jul 31 23:22:01 UTC 2018', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a subscription for backup and recovery events for DB instances in the current AWS account. Notifications are sent to an Amazon Simple Notification Service topic.', 'id' => 'to-create-an-event-subscription-1679956709288', 'title' => 'To create an event subscription', ], ], 'CreateGlobalCluster' => [ [ 'input' => [ 'Engine' => 'aurora-mysql', 'GlobalClusterIdentifier' => 'myglobalcluster', ], 'output' => [ 'GlobalCluster' => [ 'DeletionProtection' => false, 'Engine' => 'aurora-mysql', 'EngineVersion' => '5.7.mysql_aurora.2.07.2', 'GlobalClusterArn' => 'arn:aws:rds::123456789012:global-cluster:myglobalcluster', 'GlobalClusterIdentifier' => 'myglobalcluster', 'GlobalClusterMembers' => [], 'GlobalClusterResourceId' => 'cluster-f0e523bfe07aabb', 'Status' => 'available', 'StorageEncrypted' => false, ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a new Aurora MySQL-compatible global DB cluster.', 'id' => 'to-create-a-global-db-cluster-1679957040413', 'title' => 'To create a global DB cluster', ], ], 'CreateIntegration' => [ [ 'input' => [ 'IntegrationName' => 'my-integration', 'SourceArn' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-cluster', 'TargetArn' => 'arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8', ], 'output' => [ 'CreateTime' => '2023-12-28T17:20:20.629Z', 'IntegrationArn' => 'arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231', 'IntegrationName' => 'my-integration', 'KMSKeyId' => 'arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa', 'SourceArn' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-cluster', 'Status' => 'creating', 'Tags' => [], 'TargetArn' => 'arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a zero-ETL integration with Amazon Redshift.', 'id' => 'to-create-a-zero-etl-integration-1679688377231', 'title' => 'To create a zero-ETL integration', ], ], 'CreateOptionGroup' => [ [ 'input' => [ 'EngineName' => 'mysql', 'MajorEngineVersion' => '8.0', 'OptionGroupDescription' => 'MySQL 8.0 option group', 'OptionGroupName' => 'MyOptionGroup', ], 'output' => [ 'OptionGroup' => [ 'AllowsVpcAndNonVpcInstanceMemberships' => true, 'EngineName' => 'mysql', 'MajorEngineVersion' => '8.0', 'OptionGroupArn' => 'arn:aws:rds:us-east-1:123456789012:og:myoptiongroup', 'OptionGroupDescription' => 'MySQL 8.0 option group', 'OptionGroupName' => 'myoptiongroup', 'Options' => [], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example creates a new Amazon RDS option group for Oracle MySQL version 8,0 named MyOptionGroup.', 'id' => 'to-create-an-amazon-rds-option-group-1679958217590', 'title' => 'To Create an Amazon RDS option group', ], ], 'DeleteBlueGreenDeployment' => [ [ 'input' => [ 'BlueGreenDeploymentIdentifier' => 'bgd-v53303651eexfake', 'DeleteTarget' => true, ], 'output' => [ 'BlueGreenDeployment' => [ 'BlueGreenDeploymentIdentifier' => 'bgd-v53303651eexfake', 'BlueGreenDeploymentName' => 'bgd-cli-test-instance', 'CreateTime' => '2022-02-25T21:18:51.183000+00:00', 'DeleteTime' => '2022-02-25T22:25:31.331000+00:00', 'Source' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance', 'Status' => 'DELETING', 'SwitchoverDetails' => [ [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-rkfbpe', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1-green-j382ha', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2-green-ejv4ao', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3-green-vlpz3t', ], ], 'Target' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-rkfbpe', 'Tasks' => [ [ 'Name' => 'CREATING_READ_REPLICA_OF_SOURCE', 'Status' => 'COMPLETED', ], [ 'Name' => 'DB_ENGINE_VERSION_UPGRADE', 'Status' => 'COMPLETED', ], [ 'Name' => 'CONFIGURE_BACKUPS', 'Status' => 'COMPLETED', ], [ 'Name' => 'CREATING_TOPOLOGY_OF_SOURCE', 'Status' => 'COMPLETED', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example deletes the resources in a green environment for an RDS for MySQL DB instance.', 'id' => 'to-delete-resources-in-green-environment-for-an-rds-for-mysql-db-instance-1679959961651', 'title' => 'To delete resources in green environment for an RDS for MySQL DB instance', ], [ 'input' => [ 'BlueGreenDeploymentIdentifier' => 'bgd-wi89nwzglccsfake', 'DeleteTarget' => true, ], 'output' => [ 'BlueGreenDeployment' => [ 'BlueGreenDeploymentIdentifier' => 'bgd-wi89nwzglccsfake', 'BlueGreenDeploymentName' => 'my-blue-green-deployment', 'CreateTime' => '2022-02-25T21:12:00.288000+00:00', 'DeleteTime' => '2022-02-25T22:29:11.336000+00:00', 'Source' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster', 'Status' => 'DELETING', 'SwitchoverDetails' => [ [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3rnukl', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1-green-gpmaxf', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2-green-j2oajq', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3-green-mkxies', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint-green-4sqjrq', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint-green-gwwzlg', ], ], 'Target' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3rnukl', 'Tasks' => [ [ 'Name' => 'CREATING_READ_REPLICA_OF_SOURCE', 'Status' => 'COMPLETED', ], [ 'Name' => 'DB_ENGINE_VERSION_UPGRADE', 'Status' => 'COMPLETED', ], [ 'Name' => 'CREATE_DB_INSTANCES_FOR_CLUSTER', 'Status' => 'COMPLETED', ], [ 'Name' => 'CREATE_CUSTOM_ENDPOINTS', 'Status' => 'COMPLETED', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example deletes the resources in a green environment for an Aurora MySQL DB cluster.', 'id' => 'to-delete-resources-in-green-environment-for-an-aurora-mysql-db-cluster-1679960123935', 'title' => 'To delete resources in green environment for an Aurora MySQL DB cluster', ], ], 'DeleteDBCluster' => [ [ 'input' => [ 'DBClusterIdentifier' => 'mycluster', 'FinalDBSnapshotIdentifier' => 'mycluster-final-snapshot', 'SkipFinalSnapshot' => false, ], 'output' => [ 'DBCluster' => [ 'AllocatedStorage' => 20, 'AvailabilityZones' => [ 'eu-central-1b', 'eu-central-1c', 'eu-central-1a', ], 'BackupRetentionPeriod' => 7, 'DBClusterIdentifier' => 'mycluster', 'DBClusterParameterGroup' => 'default.aurora-postgresql10', 'DBSubnetGroup' => 'default-vpc-aa11bb22', 'Status' => 'available', ], ], 'comments' => [ 'input' => [], 'output' => [ 'DBCluster' => 'Some output ommitted.', ], ], 'description' => 'The following example deletes the DB cluster named mycluster and takes a final snapshot named mycluster-final-snapshot. The status of the DB cluster is available while the snapshot is being taken. ', 'id' => 'to-delete-a-db-cluster-1680197141906', 'title' => 'To delete a DB cluster', ], ], 'DeleteDBClusterEndpoint' => [ [ 'input' => [ 'DBClusterEndpointIdentifier' => 'mycustomendpoint', ], 'output' => [ 'CustomEndpointType' => 'READER', 'DBClusterEndpointArn' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:mycustomendpoint', 'DBClusterEndpointIdentifier' => 'mycustomendpoint', 'DBClusterEndpointResourceIdentifier' => 'cluster-endpoint-ANPAJ4AE5446DAEXAMPLE', 'DBClusterIdentifier' => 'mydbcluster', 'Endpoint' => 'mycustomendpoint.cluster-custom-cnpexample.us-east-1.rds.amazonaws.com', 'EndpointType' => 'CUSTOM', 'ExcludedMembers' => [], 'StaticMembers' => [ 'dbinstance1', 'dbinstance2', 'dbinstance3', ], 'Status' => 'deleting', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example deletes the specified custom DB cluster endpoint.', 'id' => 'to-delete-a-custom-db-cluster-endpoint-1679960663390', 'title' => 'To delete a custom DB cluster endpoint', ], ], 'DeleteDBClusterParameterGroup' => [ [ 'input' => [ 'DBClusterParameterGroupName' => 'mydbclusterparametergroup', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example deletes the specified DB cluster parameter group.', 'id' => 'to-delete-a-db-cluster-parameter-group-1679962185718', 'title' => 'To delete a DB cluster parameter group', ], ], 'DeleteDBClusterSnapshot' => [ [ 'input' => [ 'DBClusterSnapshotIdentifier' => 'mydbclustersnapshot', ], 'output' => [ 'DBClusterSnapshot' => [ 'AllocatedStorage' => 0, 'AvailabilityZones' => [ 'us-east-1a', 'us-east-1b', 'us-east-1e', ], 'ClusterCreateTime' => '2019-04-15T14:18:42.785Z', 'DBClusterIdentifier' => 'mydbcluster', 'DBClusterSnapshotArn' => 'arn:aws:rds:us-east-1:123456789012:cluster-snapshot:mydbclustersnapshot', 'DBClusterSnapshotIdentifier' => 'mydbclustersnapshot', 'Engine' => 'aurora-mysql', 'EngineVersion' => '5.7.mysql_aurora.2.04.2', 'IAMDatabaseAuthenticationEnabled' => false, 'KmsKeyId' => 'arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE', 'LicenseModel' => 'aurora-mysql', 'MasterUsername' => 'myadmin', 'PercentProgress' => 100, 'Port' => 0, 'SnapshotCreateTime' => '2019-06-18T21:21:00.469Z', 'SnapshotType' => 'manual', 'Status' => 'available', 'StorageEncrypted' => true, 'VpcId' => 'vpc-6594f31c', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => '', 'id' => 'to-delete-a-db-cluster-snapshot-1679962808509', 'title' => 'To delete a DB cluster snapshot', ], ], 'DeleteDBInstance' => [ [ 'input' => [ 'DBInstanceIdentifier' => 'test-instance', 'FinalDBSnapshotIdentifier' => 'test-instance-final-snap', 'SkipFinalSnapshot' => false, ], 'output' => [ 'DBInstance' => [ 'DBInstanceIdentifier' => 'test-instance', 'DBInstanceStatus' => 'deleting', ], ], 'comments' => [ 'input' => [], 'output' => [ 'DBInstance' => 'Some output ommitted.', ], ], 'description' => 'The following example deletes the specified DB instance after creating a final DB snapshot named test-instance-final-snap.', 'id' => 'to-delete-a-db-instance-1680197458232', 'title' => 'To delete a DB instance', ], ], 'DeleteDBInstanceAutomatedBackup' => [ [ 'input' => [ 'DBInstanceAutomatedBackupsArn' => 'arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example', ], 'output' => [ 'DBInstanceAutomatedBackup' => [ 'AllocatedStorage' => 20, 'AvailabilityZone' => 'us-east-1b', 'BackupRetentionPeriod' => 7, 'DBInstanceArn' => 'arn:aws:rds:us-east-1:123456789012:db:new-orcl-db', 'DBInstanceAutomatedBackupsArn' => 'arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example', 'DBInstanceIdentifier' => 'new-orcl-db', 'DbiResourceId' => 'db-JKIB2GFQ5RV7REPLZA4EXAMPLE', 'Encrypted' => false, 'Engine' => 'oracle-se2', 'EngineVersion' => '12.1.0.2.v21', 'IAMDatabaseAuthenticationEnabled' => false, 'InstanceCreateTime' => '2020-12-04T15:28:31Z', 'LicenseModel' => 'bring-your-own-license', 'MasterUsername' => 'admin', 'OptionGroupName' => 'default:oracle-se2-12-1', 'Port' => 1521, 'Region' => 'us-east-1', 'RestoreWindow' => [], 'Status' => 'deleting', 'StorageType' => 'gp2', 'VpcId' => 'vpc-########', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example deletes the automated backup with the specified Amazon Resource Name (ARN).', 'id' => 'to-delete-a-replicated-automated-backup-from-a-region-1679963187406', 'title' => 'To delete a replicated automated backup from a Region', ], ], 'DeleteDBParameterGroup' => [ [ 'input' => [ 'DBParameterGroupName' => 'mydbparametergroup', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example deletes a DB parameter group.', 'id' => 'to-delete-a-db-parameter-group-1679963369020', 'title' => 'To delete a DB parameter group', ], ], 'DeleteDBSecurityGroup' => [ [ 'input' => [ 'DBSecurityGroupName' => 'mysecgroup', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example deletes a DB security group.', 'id' => 'to-delete-a-db-security-group-1473960141889', 'title' => 'To delete a DB security group', ], ], 'DeleteDBSnapshot' => [ [ 'input' => [ 'DBSnapshotIdentifier' => 'mydbsnapshot', ], 'output' => [ 'DBSnapshot' => [ 'AllocatedStorage' => 100, 'AvailabilityZone' => 'us-east-1b', 'DBInstanceIdentifier' => 'database-mysql', 'DBSnapshotArn' => 'arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshot', 'DBSnapshotIdentifier' => 'mydbsnapshot', 'DbiResourceId' => 'db-AKIAIOSFODNN7EXAMPLE', 'Encrypted' => true, 'Engine' => 'mysql', 'EngineVersion' => '5.6.40', 'IAMDatabaseAuthenticationEnabled' => false, 'InstanceCreateTime' => '2019-04-30T15:45:53.663Z', 'Iops' => 1000, 'KmsKeyId' => 'arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE', 'LicenseModel' => 'general-public-license', 'MasterUsername' => 'admin', 'OptionGroupName' => 'default:mysql-5-6', 'PercentProgress' => 100, 'Port' => 3306, 'ProcessorFeatures' => [], 'SnapshotCreateTime' => '2019-06-18T22:08:40.702Z', 'SnapshotType' => 'manual', 'Status' => 'deleted', 'StorageType' => 'io1', 'VpcId' => 'vpc-6594f31c', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example deletes the specified DB snapshot.', 'id' => 'to-delete-a-db-snapshot-1680111103708', 'title' => 'To delete a DB snapshot', ], ], 'DeleteDBSubnetGroup' => [ [ 'input' => [ 'DBSubnetGroupName' => 'mysubnetgroup', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example deletes the DB subnet group called mysubnetgroup.', 'id' => 'to-delete-a-db-subnet-group-1680127744982', 'title' => 'To delete a DB subnet group', ], ], 'DeleteEventSubscription' => [ [ 'input' => [ 'SubscriptionName' => 'my-instance-events', ], 'output' => [ 'EventSubscription' => [ 'CustSubscriptionId' => 'my-instance-events', 'CustomerAwsId' => '123456789012', 'Enabled' => false, 'EventCategoriesList' => [ 'backup', 'recovery', ], 'EventSubscriptionArn' => 'arn:aws:rds:us-east-1:123456789012:es:my-instance-events', 'SnsTopicArn' => 'arn:aws:sns:us-east-1:123456789012:interesting-events', 'SourceIdsList' => [ 'test-instance', ], 'SourceType' => 'db-instance', 'Status' => 'deleting', 'SubscriptionCreationTime' => '2018-07-31 23:22:01.893', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example deletes the specified event subscription.', 'id' => 'to-delete-an-event-subscription-1680128383147', 'title' => 'To delete an event subscription', ], ], 'DeleteGlobalCluster' => [ [ 'input' => [ 'GlobalClusterIdentifier' => 'myglobalcluster', ], 'output' => [ 'GlobalCluster' => [ 'DeletionProtection' => false, 'Engine' => 'aurora-mysql', 'EngineVersion' => '5.7.mysql_aurora.2.07.2', 'GlobalClusterArn' => 'arn:aws:rds::123456789012:global-cluster:myglobalcluster', 'GlobalClusterIdentifier' => 'myglobalcluster', 'GlobalClusterMembers' => [], 'GlobalClusterResourceId' => 'cluster-f0e523bfe07aabb', 'Status' => 'available', 'StorageEncrypted' => false, ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example deletes an Aurora MySQL-compatible global DB cluster.', 'id' => 'to-delete-a-global-db-cluster-1680128523630', 'title' => 'To delete a global DB cluster', ], ], 'DeleteIntegration' => [ [ 'input' => [ 'IntegrationIdentifier' => '5b9f3d79-7392-4a3e-896c-58eaa1b53231', ], 'output' => [ 'CreateTime' => '2023-12-28T17:20:20.629Z', 'IntegrationArn' => 'arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231', 'IntegrationName' => 'my-integration', 'KMSKeyId' => 'arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa', 'SourceArn' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-cluster', 'Status' => 'deleting', 'Tags' => [], 'TargetArn' => 'arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example deletes a zero-ETL integration with Amazon Redshift.', 'id' => 'to-delete-a-zero-etl-integration-1679688377231', 'title' => 'To delete a zero-ETL integration', ], ], 'DeleteOptionGroup' => [ [ 'input' => [ 'OptionGroupName' => 'myoptiongroup', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example deletes the specified option group.', 'id' => 'to-delete-an-option-group-1680128894360', 'title' => 'To delete an option group', ], ], 'DescribeAccountAttributes' => [ [ 'input' => [], 'output' => [ 'AccountQuotas' => [ [ 'AccountQuotaName' => 'DBInstances', 'Max' => 40, 'Used' => 4, ], [ 'AccountQuotaName' => 'ReservedDBInstances', 'Max' => 40, 'Used' => 0, ], [ 'AccountQuotaName' => 'AllocatedStorage', 'Max' => 100000, 'Used' => 40, ], [ 'AccountQuotaName' => 'DBSecurityGroups', 'Max' => 25, 'Used' => 0, ], [ 'AccountQuotaName' => 'AuthorizationsPerDBSecurityGroup', 'Max' => 20, 'Used' => 0, ], [ 'AccountQuotaName' => 'DBParameterGroups', 'Max' => 50, 'Used' => 1, ], [ 'AccountQuotaName' => 'ManualSnapshots', 'Max' => 100, 'Used' => 3, ], [ 'AccountQuotaName' => 'EventSubscriptions', 'Max' => 20, 'Used' => 0, ], [ 'AccountQuotaName' => 'DBSubnetGroups', 'Max' => 50, 'Used' => 1, ], [ 'AccountQuotaName' => 'OptionGroups', 'Max' => 20, 'Used' => 1, ], [ 'AccountQuotaName' => 'SubnetsPerDBSubnetGroup', 'Max' => 20, 'Used' => 6, ], [ 'AccountQuotaName' => 'ReadReplicasPerMaster', 'Max' => 5, 'Used' => 0, ], [ 'AccountQuotaName' => 'DBClusters', 'Max' => 40, 'Used' => 1, ], [ 'AccountQuotaName' => 'DBClusterParameterGroups', 'Max' => 50, 'Used' => 0, ], [ 'AccountQuotaName' => 'DBClusterRoles', 'Max' => 5, 'Used' => 0, ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves the attributes for the current AWS account.', 'id' => 'to-describe-account-attributes-1680210466935', 'title' => 'To describe account attributes', ], ], 'DescribeBlueGreenDeployments' => [ [ 'input' => [ 'BlueGreenDeploymentIdentifier' => 'bgd-v53303651eexfake', ], 'output' => [ 'BlueGreenDeployments' => [ [ 'BlueGreenDeploymentIdentifier' => 'bgd-v53303651eexfake', 'BlueGreenDeploymentName' => 'bgd-cli-test-instance', 'CreateTime' => '2022-02-25T21:18:51.183000+00:00', 'Source' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance', 'Status' => 'AVAILABLE', 'SwitchoverDetails' => [ [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-rkfbpe', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1-green-j382ha', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2-green-ejv4ao', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3-green-vlpz3t', ], ], 'Target' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-rkfbpe', 'Tasks' => [ [ 'Name' => 'CREATING_READ_REPLICA_OF_SOURCE', 'Status' => 'COMPLETED', ], [ 'Name' => 'DB_ENGINE_VERSION_UPGRADE', 'Status' => 'COMPLETED', ], [ 'Name' => 'CONFIGURE_BACKUPS', 'Status' => 'COMPLETED', ], [ 'Name' => 'CREATING_TOPOLOGY_OF_SOURCE', 'Status' => 'COMPLETED', ], ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves the details of a blue/green deployment after creation completes.', 'id' => 'to-describe-a-bluegreen-deployment-of-an-rds-db-instance-after-creation-completes-1680211143527', 'title' => 'To describe a blue/green deployment of an RDS DB instance after creation completes', ], [ 'input' => [ 'BlueGreenDeploymentIdentifier' => 'bgd-wi89nwzglccsfake', ], 'output' => [ 'BlueGreenDeployments' => [ [ 'BlueGreenDeploymentIdentifier' => 'bgd-wi89nwzglccsfake', 'BlueGreenDeploymentName' => 'my-blue-green-deployment', 'CreateTime' => '2022-02-25T21:12:00.288000+00:00', 'Source' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster', 'Status' => 'AVAILABLE', 'SwitchoverDetails' => [ [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3rnukl', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1-green-gpmaxf', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2-green-j2oajq', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3-green-mkxies', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint-green-4sqjrq', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint-green-gwwzlg', ], ], 'Target' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3rnukl', 'Tasks' => [ [ 'Name' => 'CREATING_READ_REPLICA_OF_SOURCE', 'Status' => 'COMPLETED', ], [ 'Name' => 'DB_ENGINE_VERSION_UPGRADE', 'Status' => 'COMPLETED', ], [ 'Name' => 'CREATE_DB_INSTANCES_FOR_CLUSTER', 'Status' => 'COMPLETED', ], [ 'Name' => 'CREATE_CUSTOM_ENDPOINTS', 'Status' => 'COMPLETED', ], ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves the details of a blue/green deployment.', 'id' => 'to-describe-a-bluegreen-deployment-for-an-aurora-mysql-db-cluster-1680211228214', 'title' => 'To describe a blue/green deployment for an Aurora MySQL DB cluster', ], [ 'input' => [ 'BlueGreenDeploymentIdentifier' => 'bgd-wi89nwzglccsfake', ], 'output' => [ 'BlueGreenDeployments' => [ [ 'BlueGreenDeploymentIdentifier' => 'bgd-wi89nwzglccsfake', 'BlueGreenDeploymentName' => 'my-blue-green-deployment', 'CreateTime' => '2022-02-25T22:38:49.522000+00:00', 'Source' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-old1', 'Status' => 'SWITCHOVER_COMPLETED', 'SwitchoverDetails' => [ [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-old1', 'Status' => 'SWITCHOVER_COMPLETED', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1-old1', 'Status' => 'SWITCHOVER_COMPLETED', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2-old1', 'Status' => 'SWITCHOVER_COMPLETED', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3-old1', 'Status' => 'SWITCHOVER_COMPLETED', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint-old1', 'Status' => 'SWITCHOVER_COMPLETED', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint-old1', 'Status' => 'SWITCHOVER_COMPLETED', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint', ], ], 'Target' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster', 'Tasks' => [ [ 'Name' => 'CREATING_READ_REPLICA_OF_SOURCE', 'Status' => 'COMPLETED', ], [ 'Name' => 'DB_ENGINE_VERSION_UPGRADE', 'Status' => 'COMPLETED', ], [ 'Name' => 'CREATE_DB_INSTANCES_FOR_CLUSTER', 'Status' => 'COMPLETED', ], [ 'Name' => 'CREATE_CUSTOM_ENDPOINTS', 'Status' => 'COMPLETED', ], ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves the details about a blue/green deployment after the green environment is promoted to be the production environment.', 'id' => 'to-describe-a-bluegreen-deployment-for-an-aurora-mysql-cluster-after-switchover-1680211583831', 'title' => 'To describe a blue/green deployment for an Aurora MySQL cluster after switchover', ], ], 'DescribeCertificates' => [ [ 'input' => [], 'output' => [ 'Certificates' => [ [ 'CertificateArn' => 'arn:aws:rds:us-east-1::cert:rds-ca-ecc384-g1', 'CertificateIdentifier' => 'rds-ca-ecc384-g1', 'CertificateType' => 'CA', 'CustomerOverride' => false, 'Thumbprint' => '24a97b91cbe86911190576c35c36aab4fEXAMPLE', 'ValidFrom' => '2021-05-25T22:41:55+00:00', 'ValidTill' => '2121-05-25T23:41:55+00:00', ], [ 'CertificateArn' => 'arn:aws:rds:us-east-1::cert:rds-ca-rsa4096-g1', 'CertificateIdentifier' => 'rds-ca-rsa4096-g1', 'CertificateType' => 'CA', 'CustomerOverride' => false, 'Thumbprint' => '9da6fa7fd2ec09c569a400d876b01b0c1EXAMPLE', 'ValidFrom' => '2021-05-25T22:38:35+00:00', 'ValidTill' => '2121-05-25T23:38:35+00:00', ], [ 'CertificateArn' => 'arn:aws:rds:us-east-1::cert:rds-ca-rsa2048-g1', 'CertificateIdentifier' => 'rds-ca-rsa2048-g1', 'CertificateType' => 'CA', 'CustomerOverride' => true, 'CustomerOverrideValidTill' => '2061-05-25T23:34:57+00:00', 'Thumbprint' => '2fa77ef894d983ba9d37ad699c84ab0f6EXAMPLE', 'ValidFrom' => '2021-05-25T22:34:57+00:00', 'ValidTill' => '2061-05-25T23:34:57+00:00', ], [ 'CertificateArn' => 'arn:aws:rds:us-east-1::cert:rds-ca-2019', 'CertificateIdentifier' => 'rds-ca-2019', 'CertificateType' => 'CA', 'CustomerOverride' => false, 'Thumbprint' => 'f0ed823ed14447bab557fdf3e49274669EXAMPLE', 'ValidFrom' => '2019-09-19T18:16:53+00:00', 'ValidTill' => '2024-08-22T17:08:50+00:00', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves the details of the certificate associated with the user\'s default region.', 'id' => 'to-describe-certificates-1680211777663', 'title' => 'To describe certificates', ], ], 'DescribeDBClusterBacktracks' => [ [ 'input' => [ 'DBClusterIdentifier' => 'mydbcluster', ], 'output' => [ 'DBClusterBacktracks' => [ [ 'BacktrackIdentifier' => '2f5f5294-0dd2-44c9-9f50-EXAMPLE', 'BacktrackRequestCreationTime' => '2021-02-12T14:36:18.819Z', 'BacktrackTo' => '2021-02-12T04:59:22Z', 'BacktrackedFrom' => '2021-02-12T14:37:31.640Z', 'DBClusterIdentifier' => 'mydbcluster', 'Status' => 'COMPLETED', ], [ 'BacktrackIdentifier' => '3c7a6421-af2a-4ea3-ae95-EXAMPLE', 'BacktrackRequestCreationTime' => '2021-02-12T00:07:53.487Z', 'BacktrackTo' => '2021-02-11T22:53:46Z', 'BacktrackedFrom' => '2021-02-12T00:09:27.006Z', 'DBClusterIdentifier' => 'mydbcluster', 'Status' => 'COMPLETED', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves details about the specified DB cluster.', 'id' => 'to-describe-backtracks-for-a-db-cluster-1680212191454', 'title' => 'To describe backtracks for a DB cluster', ], ], 'DescribeDBClusterEndpoints' => [ [ 'input' => [], 'output' => [ 'DBClusterEndpoints' => [ [ 'DBClusterIdentifier' => 'my-database-1', 'Endpoint' => 'my-database-1.cluster-cnpexample.us-east-1.rds.amazonaws.com', 'EndpointType' => 'WRITER', 'Status' => 'creating', ], [ 'DBClusterIdentifier' => 'my-database-1', 'Endpoint' => 'my-database-1.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com', 'EndpointType' => 'READER', 'Status' => 'creating', ], [ 'DBClusterIdentifier' => 'mydbcluster', 'Endpoint' => 'mydbcluster.cluster-cnpexamle.us-east-1.rds.amazonaws.com', 'EndpointType' => 'WRITER', 'Status' => 'available', ], [ 'DBClusterIdentifier' => 'mydbcluster', 'Endpoint' => 'mydbcluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com', 'EndpointType' => 'READER', 'Status' => 'available', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves details for your DB cluster endpoints. The most common kinds of Aurora clusters have two endpoints. One endpoint has type WRITER. You can use this endpoint for all SQL statements. The other endpoint has type READER. You can use this endpoint only for SELECT and other read-only SQL statements.', 'id' => 'to-describe-db-cluster-endpoints-1680212701970', 'title' => 'To describe DB cluster endpoints', ], [ 'input' => [ 'DBClusterIdentifier' => 'serverless-cluster', ], 'output' => [ 'DBClusterEndpoints' => [ [ 'DBClusterIdentifier' => 'serverless-cluster', 'Endpoint' => 'serverless-cluster.cluster-cnpexample.us-east-1.rds.amazonaws.com', 'EndpointType' => 'WRITER', 'Status' => 'available', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves details for the DB cluster endpoints of a single specified DB cluster. Aurora Serverless clusters have only a single endpoint with a type of WRITER.', 'id' => 'to-describe-db-cluster-endpoints-of-a-single-db-cluster-1680212863842', 'title' => 'To describe DB cluster endpoints of a single DB cluster', ], ], 'DescribeDBClusterParameterGroups' => [ [ 'input' => [], 'output' => [ 'DBClusterParameterGroups' => [ [ 'DBClusterParameterGroupArn' => 'arn:aws:rds:us-east-1:123456789012:cluster-pg:default.aurora-mysql5.7', 'DBClusterParameterGroupName' => 'default.aurora-mysql5.7', 'DBParameterGroupFamily' => 'aurora-mysql5.7', 'Description' => 'Default cluster parameter group for aurora-mysql5.7', ], [ 'DBClusterParameterGroupArn' => 'arn:aws:rds:us-east-1:123456789012:cluster-pg:default.aurora-postgresql9.6', 'DBClusterParameterGroupName' => 'default.aurora-postgresql9.6', 'DBParameterGroupFamily' => 'aurora-postgresql9.6', 'Description' => 'Default cluster parameter group for aurora-postgresql9.6', ], [ 'DBClusterParameterGroupArn' => 'arn:aws:rds:us-east-1:123456789012:cluster-pg:default.aurora5.6', 'DBClusterParameterGroupName' => 'default.aurora5.6', 'DBParameterGroupFamily' => 'aurora5.6', 'Description' => 'Default cluster parameter group for aurora5.6', ], [ 'DBClusterParameterGroupArn' => 'arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterpg', 'DBClusterParameterGroupName' => 'mydbclusterpg', 'DBParameterGroupFamily' => 'aurora-mysql5.7', 'Description' => 'My DB cluster parameter group', ], [ 'DBClusterParameterGroupArn' => 'arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterpgcopy', 'DBClusterParameterGroupName' => 'mydbclusterpgcopy', 'DBParameterGroupFamily' => 'aurora-mysql5.7', 'Description' => 'Copy of mydbclusterpg parameter group', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves details for your DB cluster parameter groups.', 'id' => 'to-describe-db-cluster-parameter-groups-1680213090883', 'title' => 'To describe DB cluster parameter groups', ], ], 'DescribeDBClusterParameters' => [ [ 'input' => [ 'DBClusterParameterGroupName' => 'mydbclusterpg', ], 'output' => [ 'Parameters' => [ [ 'AllowedValues' => '0,1', 'ApplyMethod' => 'pending-reboot', 'ApplyType' => 'static', 'DataType' => 'boolean', 'Description' => 'Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded', 'IsModifiable' => false, 'ParameterName' => 'allow-suspicious-udfs', 'Source' => 'engine-default', 'SupportedEngineModes' => [ 'provisioned', ], ], [ 'AllowedValues' => '0,1', 'ApplyMethod' => 'pending-reboot', 'ApplyType' => 'static', 'DataType' => 'boolean', 'Description' => 'Enables new features in the Aurora engine.', 'IsModifiable' => true, 'ParameterName' => 'aurora_lab_mode', 'ParameterValue' => '0', 'Source' => 'engine-default', 'SupportedEngineModes' => [ 'provisioned', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [ 'Parameters' => 'Some output ommitted.', ], ], 'description' => 'The following example retrieves details about the parameters in a DB cluster parameter group.', 'id' => 'to-describe-the-parameters-in-a-db-cluster-parameter-group-1680213275624', 'title' => 'To describe the parameters in a DB cluster parameter group', ], ], 'DescribeDBClusterSnapshotAttributes' => [ [ 'input' => [ 'DBClusterSnapshotIdentifier' => 'myclustersnapshot', ], 'output' => [ 'DBClusterSnapshotAttributesResult' => [ 'DBClusterSnapshotAttributes' => [ [ 'AttributeName' => 'restore', 'AttributeValues' => [ '123456789012', ], ], ], 'DBClusterSnapshotIdentifier' => 'myclustersnapshot', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves details of the attribute names and values for the specified DB cluster snapshot.', 'id' => 'to-describe-the-attribute-names-and-values-for-a-db-cluster-snapshot-1680216238905', 'title' => 'To describe the attribute names and values for a DB cluster snapshot', ], ], 'DescribeDBClusterSnapshots' => [ [ 'input' => [ 'DBClusterIdentifier' => 'mydbcluster', ], 'output' => [ 'DBClusterSnapshots' => [ [ 'AllocatedStorage' => 0, 'AvailabilityZones' => [ 'us-east-1a', 'us-east-1b', 'us-east-1e', ], 'ClusterCreateTime' => '2019-04-15T14:18:42.785Z', 'DBClusterIdentifier' => 'mydbcluster', 'DBClusterSnapshotArn' => 'arn:aws:rds:us-east-1:814387698303:cluster-snapshot:myclustersnapshotcopy', 'DBClusterSnapshotIdentifier' => 'myclustersnapshotcopy', 'Engine' => 'aurora-mysql', 'EngineVersion' => '5.7.mysql_aurora.2.04.2', 'IAMDatabaseAuthenticationEnabled' => false, 'KmsKeyId' => 'arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE', 'LicenseModel' => 'aurora-mysql', 'MasterUsername' => 'myadmin', 'PercentProgress' => 100, 'Port' => 0, 'SnapshotCreateTime' => '2019-06-04T09:16:42.649Z', 'SnapshotType' => 'manual', 'Status' => 'available', 'StorageEncrypted' => true, 'VpcId' => 'vpc-6594f31c', ], [ 'AllocatedStorage' => 0, 'AvailabilityZones' => [ 'us-east-1a', 'us-east-1b', 'us-east-1e', ], 'ClusterCreateTime' => '2019-04-15T14:18:42.785Z', 'DBClusterIdentifier' => 'mydbcluster', 'DBClusterSnapshotArn' => 'arn:aws:rds:us-east-1:123456789012:cluster-snapshot:rds:mydbcluster-2019-06-20-09-16', 'DBClusterSnapshotIdentifier' => 'rds:mydbcluster-2019-06-20-09-16', 'Engine' => 'aurora-mysql', 'EngineVersion' => '5.7.mysql_aurora.2.04.2', 'IAMDatabaseAuthenticationEnabled' => false, 'KmsKeyId' => 'arn:aws:kms:us-east-1:814387698303:key/AKIAIOSFODNN7EXAMPLE', 'LicenseModel' => 'aurora-mysql', 'MasterUsername' => 'myadmin', 'PercentProgress' => 100, 'Port' => 0, 'SnapshotCreateTime' => '2019-06-20T09:16:26.569Z', 'SnapshotType' => 'automated', 'Status' => 'available', 'StorageEncrypted' => true, 'VpcId' => 'vpc-6594f31c', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves the details for the DB cluster snapshots for the specified DB cluster.', 'id' => 'to-describe-a-db-cluster-snapshot-for-a-db-cluster-1680216426182', 'title' => 'To describe a DB cluster snapshot for a DB cluster', ], ], 'DescribeDBClusters' => [ [ 'input' => [ 'DBClusterIdentifier' => 'mydbcluster', ], 'output' => [ 'DBClusters' => [ [ 'AllocatedStorage' => 1, 'AssociatedRoles' => [], 'AvailabilityZones' => [ 'us-east-1a', 'us-east-1b', 'us-east-1e', ], 'BackupRetentionPeriod' => 1, 'ClusterCreateTime' => '2019-04-15T14:18:42.785Z', 'DBClusterArn' => 'arn:aws:rds:us-east-1:123456789012:cluster:mydbcluster', 'DBClusterIdentifier' => 'mydbcluster', 'DBClusterMembers' => [ [ 'DBClusterParameterGroupStatus' => 'in-sync', 'DBInstanceIdentifier' => 'dbinstance3', 'IsClusterWriter' => false, 'PromotionTier' => 1, ], [ 'DBClusterParameterGroupStatus' => 'in-sync', 'DBInstanceIdentifier' => 'dbinstance1', 'IsClusterWriter' => false, 'PromotionTier' => 1, ], [ 'DBClusterParameterGroupStatus' => 'in-sync', 'DBInstanceIdentifier' => 'dbinstance2', 'IsClusterWriter' => false, 'PromotionTier' => 1, ], [ 'DBClusterParameterGroupStatus' => 'in-sync', 'DBInstanceIdentifier' => 'mydbcluster', 'IsClusterWriter' => false, 'PromotionTier' => 1, ], [ 'DBClusterParameterGroupStatus' => 'in-sync', 'DBInstanceIdentifier' => 'mydbcluster-us-east-1b', 'IsClusterWriter' => false, 'PromotionTier' => 1, ], [ 'DBClusterParameterGroupStatus' => 'in-sync', 'DBInstanceIdentifier' => 'mydbcluster', 'IsClusterWriter' => true, 'PromotionTier' => 1, ], ], 'DBClusterParameterGroup' => 'default.aurora-mysql5.7', 'DBSubnetGroup' => 'default', 'DatabaseName' => 'mydbcluster', 'DbClusterResourceId' => 'cluster-AKIAIOSFODNN7EXAMPLE', 'DeletionProtection' => false, 'EarliestRestorableTime' => '2019-06-19T09:16:28.210Z', 'Endpoint' => 'mydbcluster.cluster-cnpexample.us-east-1.rds.amazonaws.com', 'Engine' => 'aurora-mysql', 'EngineMode' => 'provisioned', 'EngineVersion' => '5.7.mysql_aurora.2.04.2', 'HostedZoneId' => 'Z2R2ITUGPM61AM', 'HttpEndpointEnabled' => false, 'IAMDatabaseAuthenticationEnabled' => false, 'KmsKeyId' => 'arn:aws:kms:us-east-1:814387698303:key/AKIAIOSFODNN7EXAMPLE', 'LatestRestorableTime' => '2019-06-20T22:38:14.908Z', 'MasterUsername' => 'myadmin', 'MultiAZ' => true, 'Port' => 3306, 'PreferredBackupWindow' => '09:09-09:39', 'PreferredMaintenanceWindow' => 'sat:04:09-sat:04:39', 'ReadReplicaIdentifiers' => [], 'ReaderEndpoint' => 'mydbcluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com', 'Status' => 'available', 'StorageEncrypted' => true, 'VpcSecurityGroups' => [ [ 'Status' => 'active', 'VpcSecurityGroupId' => 'sg-0b9130572daf3dc16', ], ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves the details of the specified DB cluster.', 'id' => 'to-describe-a-db-cluster-1680215000529', 'title' => 'To describe a DB cluster', ], ], 'DescribeDBEngineVersions' => [ [ 'input' => [ 'Engine' => 'mysql', ], 'output' => [ 'DBEngineVersions' => [ [ 'DBEngineDescription' => 'MySQL Community Edition', 'DBEngineVersionDescription' => 'MySQL 5.7.33', 'DBParameterGroupFamily' => 'mysql5.7', 'Engine' => 'mysql', 'EngineVersion' => '5.7.33', 'ValidUpgradeTarget' => [ [ 'AutoUpgrade' => false, 'Description' => 'MySQL 5.7.34', 'Engine' => 'mysql', 'EngineVersion' => '5.7.34', 'IsMajorVersionUpgrade' => false, ], [ 'AutoUpgrade' => false, 'Description' => 'MySQL 5.7.36', 'Engine' => 'mysql', 'EngineVersion' => '5.7.36', 'IsMajorVersionUpgrade' => false, ], ], ], ], ], 'comments' => [ 'input' => [], 'output' => [ 'DBEngineVersions' => 'Some output ommitted.', ], ], 'description' => 'The following example displays details about each of the DB engine versions for the specified DB engine.', 'id' => 'to-describe-the-db-engine-versions-for-the-mysql-db-engine-1680216738909', 'title' => 'To describe the DB engine versions for the MySQL DB engine', ], ], 'DescribeDBInstanceAutomatedBackups' => [ [ 'input' => [ 'DBInstanceIdentifier' => 'new-orcl-db', ], 'output' => [ 'DBInstanceAutomatedBackups' => [ [ 'AllocatedStorage' => 20, 'BackupRetentionPeriod' => 14, 'DBInstanceArn' => 'arn:aws:rds:us-east-1:123456789012:db:new-orcl-db', 'DBInstanceAutomatedBackupsArn' => 'arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example', 'DBInstanceIdentifier' => 'new-orcl-db', 'DbiResourceId' => 'db-JKIB2GFQ5RV7REPLZA4EXAMPLE', 'Encrypted' => false, 'Engine' => 'oracle-se2', 'EngineVersion' => '12.1.0.2.v21', 'IAMDatabaseAuthenticationEnabled' => false, 'InstanceCreateTime' => '2020-12-04T15:28:31Z', 'LicenseModel' => 'bring-your-own-license', 'MasterUsername' => 'admin', 'OptionGroupName' => 'default:oracle-se2-12-1', 'Port' => 1521, 'Region' => 'us-east-1', 'RestoreWindow' => [ 'EarliestTime' => '2020-12-07T21:05:20.939Z', 'LatestTime' => '2020-12-07T21:05:20.939Z', ], 'Status' => 'replicating', 'StorageType' => 'gp2', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example displays details about the automated backups for the specified DB instance. The details include replicated automated backups in other AWS Regions.', 'id' => 'to-describe-the-automated-backups-for-a-db-instance-1680217198750', 'title' => 'To describe the automated backups for a DB instance', ], ], 'DescribeDBInstances' => [ [ 'input' => [ 'DBInstanceIdentifier' => 'mydbinstancecf', ], 'output' => [ 'DBInstances' => [ [ 'DBInstanceClass' => 'db.t3.small', 'DBInstanceIdentifier' => 'mydbinstancecf', 'DBInstanceStatus' => 'available', 'Endpoint' => [ 'Address' => 'mydbinstancecf.abcexample.us-east-1.rds.amazonaws.com', 'HostedZoneId' => 'Z2R2ITUGPM61AM', 'Port' => 3306, ], 'Engine' => 'mysql', 'MasterUsername' => 'admin', ], ], ], 'comments' => [ 'input' => [], 'output' => [ 'DBInstances' => 'Some output ommitted.', ], ], 'description' => 'The following example retrieves details about the specified DB instance.', 'id' => 'to-describe-a-db-instance-1680217544524', 'title' => 'To describe a DB instance', ], ], 'DescribeDBLogFiles' => [ [ 'input' => [ 'DBInstanceIdentifier' => 'test-instance', ], 'output' => [ 'DescribeDBLogFiles' => [ [ 'LastWritten' => 1533060000000, 'LogFileName' => 'error/mysql-error-running.log', 'Size' => 0, ], [ 'LastWritten' => 1532994300000, 'LogFileName' => 'error/mysql-error-running.log.0', 'Size' => 2683, ], [ 'LastWritten' => 1533057300000, 'LogFileName' => 'error/mysql-error-running.log.18', 'Size' => 107, ], [ 'LastWritten' => 1532991000000, 'LogFileName' => 'error/mysql-error-running.log.23', 'Size' => 13105, ], [ 'LastWritten' => 1533061200000, 'LogFileName' => 'error/mysql-error.log', 'Size' => 0, ], [ 'LastWritten' => 1532989252000, 'LogFileName' => 'mysqlUpgrade', 'Size' => 3519, ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves details about the log files for the specified DB instance.', 'id' => 'to-describe-the-log-files-for-a-db-instance-1680217710149', 'title' => 'To describe the log files for a DB instance', ], ], 'DescribeDBParameterGroups' => [ [ 'input' => [], 'output' => [ 'DBParameterGroups' => [ [ 'DBParameterGroupArn' => 'arn:aws:rds:us-east-1:123456789012:pg:default.aurora-mysql5.7', 'DBParameterGroupFamily' => 'aurora-mysql5.7', 'DBParameterGroupName' => 'default.aurora-mysql5.7', 'Description' => 'Default parameter group for aurora-mysql5.7', ], [ 'DBParameterGroupArn' => 'arn:aws:rds:us-east-1:123456789012:pg:default.aurora-postgresql9.6', 'DBParameterGroupFamily' => 'aurora-postgresql9.6', 'DBParameterGroupName' => 'default.aurora-postgresql9.6', 'Description' => 'Default parameter group for aurora-postgresql9.6', ], [ 'DBParameterGroupArn' => 'arn:aws:rds:us-east-1:123456789012:pg:default.aurora5.6', 'DBParameterGroupFamily' => 'aurora5.6', 'DBParameterGroupName' => 'default.aurora5.6', 'Description' => 'Default parameter group for aurora5.6', ], [ 'DBParameterGroupArn' => 'arn:aws:rds:us-east-1:123456789012:pg:default.mariadb10.1', 'DBParameterGroupFamily' => 'mariadb10.1', 'DBParameterGroupName' => 'default.mariadb10.1', 'Description' => 'Default parameter group for mariadb10.1', ], ], ], 'comments' => [ 'input' => [], 'output' => [ 'DBParameterGroups' => 'Some output ommitted.', ], ], 'description' => 'The following example retrieves details about your DB parameter groups.', 'id' => 'to-describe-your-db-parameter-groups-1680279250598', 'title' => 'To describe your DB parameter groups', ], ], 'DescribeDBParameters' => [ [ 'input' => [ 'DBParameterGroupName' => 'mydbpg', ], 'output' => [ 'Parameters' => [ [ 'AllowedValues' => '0,1', 'ApplyMethod' => 'pending-reboot', 'ApplyType' => 'static', 'DataType' => 'boolean', 'Description' => 'Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded', 'IsModifiable' => false, 'ParameterName' => 'allow-suspicious-udfs', 'Source' => 'engine-default', ], [ 'AllowedValues' => '0,1', 'ApplyMethod' => 'pending-reboot', 'ApplyType' => 'static', 'DataType' => 'boolean', 'Description' => 'Controls whether the server autogenerates SSL key and certificate files in the data directory, if they do not already exist.', 'IsModifiable' => false, 'ParameterName' => 'auto_generate_certs', 'Source' => 'engine-default', ], ], ], 'comments' => [ 'input' => [], 'output' => [ 'Parameters' => 'Some output omitted.', ], ], 'description' => 'The following example retrieves the details of the specified DB parameter group.', 'id' => 'to-describe-the-parameters-in-a-db-parameter-group-1680279500600', 'title' => 'To describe the parameters in a DB parameter group', ], ], 'DescribeDBSecurityGroups' => [ [ 'input' => [ 'DBSecurityGroupName' => 'mydbsecuritygroup', ], 'output' => [], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'This example lists settings for the specified security group.', 'id' => 'describe-db-security-groups-66fe9ea1-17dd-4275-b82e-f771cee0c849', 'title' => 'To list DB security group settings', ], ], 'DescribeDBSnapshotAttributes' => [ [ 'input' => [ 'DBSnapshotIdentifier' => 'mydbsnapshot', ], 'output' => [ 'DBSnapshotAttributesResult' => [ 'DBSnapshotAttributes' => [ [ 'AttributeName' => 'restore', 'AttributeValues' => [ '123456789012', '210987654321', ], ], ], 'DBSnapshotIdentifier' => 'mydbsnapshot', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example describes the attribute names and values for a DB snapshot.', 'id' => 'to-describe-the-attribute-names-and-values-for-a-db-snapshot-1680280194370', 'title' => 'To describe the attribute names and values for a DB snapshot', ], ], 'DescribeDBSnapshots' => [ [ 'input' => [ 'DBSnapshotIdentifier' => 'mydbsnapshot', ], 'output' => [ 'DBSnapshots' => [ [ 'AllocatedStorage' => 20, 'AvailabilityZone' => 'us-east-1f', 'DBInstanceIdentifier' => 'mysqldb', 'DBSnapshotArn' => 'arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshot', 'DBSnapshotIdentifier' => 'mydbsnapshot', 'DbiResourceId' => 'db-AKIAIOSFODNN7EXAMPLE', 'Encrypted' => false, 'Engine' => 'mysql', 'EngineVersion' => '5.6.37', 'IAMDatabaseAuthenticationEnabled' => false, 'InstanceCreateTime' => '2018-02-08T22:24:55.973Z', 'LicenseModel' => 'general-public-license', 'MasterUsername' => 'mysqladmin', 'OptionGroupName' => 'default:mysql-5-6', 'PercentProgress' => 100, 'Port' => 3306, 'ProcessorFeatures' => [], 'SnapshotCreateTime' => '2018-02-08T22:28:08.598Z', 'SnapshotType' => 'manual', 'Status' => 'available', 'StorageType' => 'gp2', 'VpcId' => 'vpc-6594f31c', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves the details of a DB snapshot for a DB instance.', 'id' => 'to-describe-a-db-snapshot-for-a-db-instance-1680280423239', 'title' => 'To describe a DB snapshot for a DB instance', ], ], 'DescribeDBSubnetGroups' => [ [ 'input' => [], 'output' => [ 'DBSubnetGroups' => [ [ 'DBSubnetGroupArn' => 'arn:aws:rds:us-east-1:123456789012:subgrp:mydbsubnetgroup', 'DBSubnetGroupDescription' => 'My DB Subnet Group', 'DBSubnetGroupName' => 'mydbsubnetgroup', 'SubnetGroupStatus' => 'Complete', 'Subnets' => [ [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-east-1a', ], 'SubnetIdentifier' => 'subnet-d8c8e7f4', 'SubnetStatus' => 'Active', ], [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-east-1f', ], 'SubnetIdentifier' => 'subnet-718fdc7d', 'SubnetStatus' => 'Active', ], [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-east-1a', ], 'SubnetIdentifier' => 'subnet-cbc8e7e7', 'SubnetStatus' => 'Active', ], [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-east-1a', ], 'SubnetIdentifier' => 'subnet-0ccde220', 'SubnetStatus' => 'Active', ], ], 'VpcId' => 'vpc-971c12ee', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves the details of the specified DB subnet group.', 'id' => 'to-describe-a-db-subnet-group-1680280764611', 'title' => 'To describe a DB subnet group', ], ], 'DescribeEngineDefaultClusterParameters' => [ [ 'input' => [ 'DBParameterGroupFamily' => 'aurora-mysql5.7', ], 'output' => [ 'EngineDefaults' => [ 'Parameters' => [ [ 'ApplyType' => 'dynamic', 'DataType' => 'string', 'Description' => 'IAM role ARN used to load data from AWS S3', 'IsModifiable' => true, 'ParameterName' => 'aurora_load_from_s3_role', 'Source' => 'engine-default', 'SupportedEngineModes' => [ 'provisioned', ], ], ], ], ], 'comments' => [ 'input' => [], 'output' => [ 'EngineDefaults' => 'Some output omitted.', ], ], 'description' => 'The following example retrieves the details of the default engine and system parameter information for Aurora DB clusters with MySQL 5.7 compatibility.', 'id' => 'to-describe-the-default-engine-and-system-parameter-information-for-the-aurora-database-engine-1680280902332', 'title' => 'To describe the default engine and system parameter information for the Aurora database engine', ], ], 'DescribeEngineDefaultParameters' => [ [ 'input' => [ 'DBParameterGroupFamily' => 'mysql5.7', ], 'output' => [ 'EngineDefaults' => [ 'Parameters' => [ [ 'AllowedValues' => '0,1', 'ApplyType' => 'static', 'DataType' => 'boolean', 'Description' => 'Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded', 'IsModifiable' => false, 'ParameterName' => 'allow-suspicious-udfs', 'Source' => 'engine-default', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [ 'EngineDefaults' => 'Some output omitted.', ], ], 'description' => 'The following example retrieves details for the default engine and system parameter information for MySQL 5.7 DB instances.', 'id' => 'to-describe-the-default-engine-and-system-parameter-information-for-the-database-engine-1680281248217', 'title' => 'To describe the default engine and system parameter information for the database engine', ], ], 'DescribeEventCategories' => [ [ 'input' => [ 'Filters' => [], 'SourceType' => '', ], 'output' => [ 'EventCategoriesMapList' => [ [ 'EventCategories' => [ 'deletion', 'read replica', 'failover', 'restoration', 'maintenance', 'low storage', 'configuration change', 'backup', 'creation', 'availability', 'recovery', 'failure', 'backtrack', 'notification', ], 'SourceType' => 'db-instance', ], [ 'EventCategories' => [ 'configuration change', 'failure', ], 'SourceType' => 'db-security-group', ], [ 'EventCategories' => [ 'configuration change', ], 'SourceType' => 'db-parameter-group', ], [ 'EventCategories' => [ 'deletion', 'creation', 'restoration', 'notification', ], 'SourceType' => 'db-snapshot', ], [ 'EventCategories' => [ 'failover', 'failure', 'notification', ], 'SourceType' => 'db-cluster', ], [ 'EventCategories' => [ 'backup', ], 'SourceType' => 'db-cluster-snapshot', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves details about the event categories for all available event sources.', 'id' => 'to-describe-event-categories-1680281431508', 'title' => 'To describe event categories', ], ], 'DescribeEventSubscriptions' => [ [ 'input' => [], 'output' => [ 'EventSubscriptionsList' => [ [ 'CustSubscriptionId' => 'my-instance-events', 'CustomerAwsId' => '123456789012', 'Enabled' => true, 'EventCategoriesList' => [ 'backup', 'recovery', ], 'EventSubscriptionArn' => 'arn:aws:rds:us-east-1:123456789012:es:my-instance-events', 'SnsTopicArn' => 'arn:aws:sns:us-east-1:123456789012:interesting-events', 'SourceType' => 'db-instance', 'Status' => 'creating', 'SubscriptionCreationTime' => '2018-07-31 23:22:01.893', ], ], ], 'comments' => [ 'input' => [], 'output' => [ 'EventSubscriptionsList' => 'Some output omitted.', ], ], 'description' => 'This example describes all of the Amazon RDS event subscriptions for the current AWS account.', 'id' => 'to-describe-event-subscriptions-1680281683538', 'title' => 'To describe event subscriptions', ], ], 'DescribeEvents' => [ [ 'input' => [ 'SourceIdentifier' => 'test-instance', 'SourceType' => 'db-instance', ], 'output' => [ 'Events' => [ [ 'Date' => '2018-07-31T23:09:23.983Z', 'EventCategories' => [ 'backup', ], 'Message' => 'Backing up DB instance', 'SourceArn' => 'arn:aws:rds:us-east-1:123456789012:db:test-instance', 'SourceIdentifier' => 'test-instance', 'SourceType' => 'db-instance', ], [ 'Date' => '2018-07-31T23:15:13.049Z', 'EventCategories' => [ 'backup', ], 'Message' => 'Finished DB Instance backup', 'SourceArn' => 'arn:aws:rds:us-east-1:123456789012:db:test-instance', 'SourceIdentifier' => 'test-instance', 'SourceType' => 'db-instance', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following retrieves details for the events that have occurred for the specified DB instance.', 'id' => 'to-describe-events-1680281559411', 'title' => 'To describe events', ], ], 'DescribeExportTasks' => [ [ 'input' => [], 'output' => [ 'ExportTasks' => [ [ 'ExportTaskIdentifier' => 'test-snapshot-export', 'IamRoleArn' => 'arn:aws:iam::123456789012:role/service-role/ExportRole', 'KmsKeyId' => 'arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff', 'PercentProgress' => 100, 'S3Bucket' => 'mybucket', 'S3Prefix' => '', 'SnapshotTime' => '2020-03-02T18:26:28.163Z', 'SourceArn' => 'arn:aws:rds:us-west-2:123456789012:snapshot:test-snapshot', 'Status' => 'COMPLETE', 'TaskEndTime' => '2020-03-02T19:10:31.985Z', 'TaskStartTime' => '2020-03-02T18:57:56.896Z', 'TotalExtractedDataInGB' => 0, ], [ 'ExportTaskIdentifier' => 'my-s3-export', 'IamRoleArn' => 'arn:aws:iam::123456789012:role/service-role/ExportRole', 'KmsKeyId' => 'arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff', 'PercentProgress' => 0, 'S3Bucket' => 'mybucket', 'S3Prefix' => '', 'SnapshotTime' => '2020-03-27T20:48:42.023Z', 'SourceArn' => 'arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-test', 'Status' => 'STARTING', 'TotalExtractedDataInGB' => 0, ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example returns information about snapshot exports to Amazon S3.', 'id' => 'to-describe-snapshot-export-tasks-1680282299489', 'title' => 'To describe snapshot export tasks', ], ], 'DescribeGlobalClusters' => [ [ 'input' => [], 'output' => [ 'GlobalClusters' => [ [ 'DeletionProtection' => false, 'Engine' => 'aurora-mysql', 'EngineVersion' => '5.7.mysql_aurora.2.07.2', 'GlobalClusterArn' => 'arn:aws:rds::123456789012:global-cluster:myglobalcluster', 'GlobalClusterIdentifier' => 'myglobalcluster', 'GlobalClusterMembers' => [], 'GlobalClusterResourceId' => 'cluster-f5982077e3b5aabb', 'Status' => 'available', 'StorageEncrypted' => false, ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example lists Aurora global DB clusters in the current AWS Region.', 'id' => 'to-describe-global-db-clusters-1680282459184', 'title' => 'To describe global DB clusters', ], ], 'DescribeIntegrations' => [ [ 'input' => [ 'IntegrationIdentifier' => '5b9f3d79-7392-4a3e-896c-58eaa1b53231', ], 'output' => [ 'Integrations' => [ [ 'CreateTime' => '2023-12-28T17:20:20.629Z', 'IntegrationArn' => 'arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231', 'IntegrationName' => 'my-integration', 'KMSKeyId' => 'arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa', 'SourceArn' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-cluster', 'Status' => 'active', 'Tags' => [], 'TargetArn' => 'arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves information about a zero-ETL integration with Amazon Redshift.', 'id' => 'to-describe-a-zero-etl-integration-1679688377231', 'title' => 'To describe a zero-ETL integration', ], ], 'DescribeOptionGroupOptions' => [ [ 'input' => [ 'EngineName' => 'mysql', 'MajorEngineVersion' => '8.0', ], 'output' => [ 'OptionGroupOptions' => [ [ 'Description' => 'MariaDB Audit Plugin', 'EngineName' => 'mysql', 'MajorEngineVersion' => '8.0', 'MinimumRequiredMinorEngineVersion' => '25', 'Name' => 'MARIADB_AUDIT_PLUGIN', 'OptionGroupOptionSettings' => [ [ 'ApplyType' => 'DYNAMIC', 'IsModifiable' => true, 'IsRequired' => false, 'MinimumEngineVersionPerAllowedValue' => [], 'SettingDescription' => 'Include specified users', 'SettingName' => 'SERVER_AUDIT_INCL_USERS', ], [ 'ApplyType' => 'DYNAMIC', 'IsModifiable' => true, 'IsRequired' => false, 'MinimumEngineVersionPerAllowedValue' => [], 'SettingDescription' => 'Exclude specified users', 'SettingName' => 'SERVER_AUDIT_EXCL_USERS', ], ], 'OptionsConflictsWith' => [], 'OptionsDependedOn' => [], 'Permanent' => false, 'Persistent' => false, 'PortRequired' => false, 'RequiresAutoMinorEngineVersionUpgrade' => false, 'VpcOnly' => false, ], ], ], 'comments' => [ 'input' => [], 'output' => [ 'OptionGroupOptions' => 'Some output omitted.', ], ], 'description' => 'The following example lists the options for an RDS for MySQL version 8.0 DB instance.', 'id' => 'to-describe-all-available-options-1680286049492', 'title' => 'To describe all available options', ], ], 'DescribeOptionGroups' => [ [ 'input' => [ 'EngineName' => 'oracle-ee', 'MajorEngineVersion' => '19', ], 'output' => [ 'OptionGroupsList' => [ [ 'AllowsVpcAndNonVpcInstanceMemberships' => true, 'EngineName' => 'oracle-ee', 'MajorEngineVersion' => '19', 'OptionGroupArn' => 'arn:aws:rds:us-west-1:111122223333:og:default:oracle-ee-19', 'OptionGroupDescription' => 'Default option group for oracle-ee 19', 'OptionGroupName' => 'default:oracle-ee-19', 'Options' => [], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example lists the options groups for an Oracle Database 19c instance.', 'id' => 'to-describe-the-available-option-groups-1680283066000', 'title' => 'To describe the available option groups', ], ], 'DescribeOrderableDBInstanceOptions' => [ [ 'input' => [ 'Engine' => 'mysql', ], 'output' => [ 'OrderableDBInstanceOptions' => [ [ 'AvailabilityZones' => [ [ 'Name' => 'us-east-1a', ], [ 'Name' => 'us-east-1b', ], [ 'Name' => 'us-east-1c', ], [ 'Name' => 'us-east-1d', ], [ 'Name' => 'us-east-1e', ], [ 'Name' => 'us-east-1f', ], ], 'DBInstanceClass' => 'db.m4.10xlarge', 'Engine' => 'mysql', 'EngineVersion' => '5.7.33', 'LicenseModel' => 'general-public-license', 'MultiAZCapable' => true, 'ReadReplicaCapable' => true, 'StorageType' => 'gp2', 'SupportsStorageEncryption' => true, 'Vpc' => true, ], ], ], 'comments' => [ 'input' => [], 'output' => [ 'OrderableDBInstanceOptions' => 'Some output omitted.', ], ], 'description' => 'The following example retrieves details about the orderable options for a DB instances running the MySQL DB engine.', 'id' => 'to-describe-orderable-db-instance-options-1680283253165', 'title' => 'To describe orderable DB instance options', ], ], 'DescribePendingMaintenanceActions' => [ [ 'input' => [], 'output' => [ 'PendingMaintenanceActions' => [ [ 'PendingMaintenanceActionDetails' => [ [ 'Action' => 'system-update', 'Description' => 'Upgrade to Aurora PostgreSQL 2.4.2', ], ], 'ResourceIdentifier' => 'arn:aws:rds:us-west-2:123456789012:cluster:global-db1-cl1', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example lists the pending maintenace action for a DB instance.', 'id' => 'to-list-resources-with-at-least-one-pending-maintenance-action-1680283544475', 'title' => 'To list resources with at least one pending maintenance action', ], ], 'DescribeReservedDBInstances' => [ [ 'input' => [], 'output' => [ 'ReservedDBInstances' => [ [ 'CurrencyCode' => 'USD', 'DBInstanceClass' => 'db.t3.micro', 'DBInstanceCount' => 1, 'Duration' => 31536000, 'FixedPrice' => 0, 'LeaseId' => 'a1b2c3d4-6b69-4a59-be89-5e11aa446666', 'MultiAZ' => false, 'OfferingType' => 'No Upfront', 'ProductDescription' => 'sqlserver-ex(li)', 'RecurringCharges' => [ [ 'RecurringChargeAmount' => 0.014, 'RecurringChargeFrequency' => 'Hourly', ], ], 'ReservedDBInstanceArn' => 'arn:aws:rds:us-west-2:123456789012:ri:myreservedinstance', 'ReservedDBInstanceId' => 'myreservedinstance', 'ReservedDBInstancesOfferingId' => '12ab34cd-59af-4b2c-a660-1abcdef23456', 'StartTime' => '2020-06-01T13:44:21.436Z', 'State' => 'payment-pending', 'UsagePrice' => 0, ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves details about any reserved DB instances in the current AWS account.', 'id' => 'to-describe-reserved-db-instances-1680283668105', 'title' => 'To describe reserved DB instances', ], ], 'DescribeReservedDBInstancesOfferings' => [ [ 'input' => [ 'ProductDescription' => 'oracle', ], 'output' => [ 'ReservedDBInstancesOfferings' => [ [ 'CurrencyCode' => 'USD', 'DBInstanceClass' => 'db.m4.xlarge', 'Duration' => 31536000, 'FixedPrice' => 4089, 'MultiAZ' => true, 'OfferingType' => 'Partial Upfront', 'ProductDescription' => 'oracle-se2(li)', 'RecurringCharges' => [ [ 'RecurringChargeAmount' => 0.594, 'RecurringChargeFrequency' => 'Hourly', ], ], 'ReservedDBInstancesOfferingId' => '005bdee3-9ef4-4182-aa0c-58ef7cb6c2f8', 'UsagePrice' => 0, ], ], ], 'comments' => [ 'input' => [], 'output' => [ 'ReservedDBInstancesOfferings' => 'Some output omitted.', ], ], 'description' => 'The following example retrieves details about reserved DB instance options for RDS for Oracle.', 'id' => 'to-describe-reserved-db-instance-offerings-1680283755054', 'title' => 'To describe reserved DB instance offerings', ], ], 'DescribeSourceRegions' => [ [ 'input' => [ 'RegionName' => 'us-east-1', ], 'output' => [ 'SourceRegions' => [ [ 'Endpoint' => 'https://rds.af-south-1.amazonaws.com', 'RegionName' => 'af-south-1', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => false, ], [ 'Endpoint' => 'https://rds.ap-east-1.amazonaws.com', 'RegionName' => 'ap-east-1', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => false, ], [ 'Endpoint' => 'https://rds.ap-northeast-1.amazonaws.com', 'RegionName' => 'ap-northeast-1', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => true, ], [ 'Endpoint' => 'https://rds.ap-northeast-2.amazonaws.com', 'RegionName' => 'ap-northeast-2', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => true, ], [ 'Endpoint' => 'https://rds.ap-northeast-3.amazonaws.com', 'RegionName' => 'ap-northeast-3', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => false, ], [ 'Endpoint' => 'https://rds.ap-south-1.amazonaws.com', 'RegionName' => 'ap-south-1', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => true, ], [ 'Endpoint' => 'https://rds.ap-southeast-1.amazonaws.com', 'RegionName' => 'ap-southeast-1', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => true, ], [ 'Endpoint' => 'https://rds.ap-southeast-2.amazonaws.com', 'RegionName' => 'ap-southeast-2', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => true, ], [ 'Endpoint' => 'https://rds.ap-southeast-3.amazonaws.com', 'RegionName' => 'ap-southeast-3', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => false, ], [ 'Endpoint' => 'https://rds.ca-central-1.amazonaws.com', 'RegionName' => 'ca-central-1', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => true, ], [ 'Endpoint' => 'https://rds.eu-north-1.amazonaws.com', 'RegionName' => 'eu-north-1', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => true, ], [ 'Endpoint' => 'https://rds.eu-south-1.amazonaws.com', 'RegionName' => 'eu-south-1', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => false, ], [ 'Endpoint' => 'https://rds.eu-west-1.amazonaws.com', 'RegionName' => 'eu-west-1', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => true, ], [ 'Endpoint' => 'https://rds.eu-west-2.amazonaws.com', 'RegionName' => 'eu-west-2', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => true, ], [ 'Endpoint' => 'https://rds.eu-west-3.amazonaws.com', 'RegionName' => 'eu-west-3', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => true, ], [ 'Endpoint' => 'https://rds.me-central-1.amazonaws.com', 'RegionName' => 'me-central-1', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => false, ], [ 'Endpoint' => 'https://rds.me-south-1.amazonaws.com', 'RegionName' => 'me-south-1', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => false, ], [ 'Endpoint' => 'https://rds.sa-east-1.amazonaws.com', 'RegionName' => 'sa-east-1', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => true, ], [ 'Endpoint' => 'https://rds.us-east-2.amazonaws.com', 'RegionName' => 'us-east-2', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => true, ], [ 'Endpoint' => 'https://rds.us-west-1.amazonaws.com', 'RegionName' => 'us-west-1', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => true, ], [ 'Endpoint' => 'https://rds.us-west-2.amazonaws.com', 'RegionName' => 'us-west-2', 'Status' => 'available', 'SupportsDBInstanceAutomatedBackupsReplication' => true, ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example retrieves details about all source AWS Regions where the current AWS Region can create a read replica, copy a DB snapshot from, or replicate automated backups from. It also shows that automated backups can be replicated only from US West (Oregon) to the destination AWS Region, US East (N. Virginia).', 'id' => 'to-describe-source-regions-1680283924227', 'title' => 'To describe source Regions', ], ], 'DescribeValidDBInstanceModifications' => [ [ 'input' => [ 'DBInstanceIdentifier' => 'database-test1', ], 'output' => [ 'ValidDBInstanceModificationsMessage' => [ 'Storage' => [ [ 'StorageSize' => [ [ 'From' => 20, 'Step' => 1, 'To' => 20, ], [ 'From' => 22, 'Step' => 1, 'To' => 6144, ], ], 'StorageType' => 'gp2', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [ 'ValidDBInstanceModificationsMessage' => 'Some output omitted.', ], ], 'description' => 'The following example retrieves details about the valid modifications for the specified DB instance.', 'id' => 'to-describe-valid-modifications-for-a-db-instance-1680284230997', 'title' => 'To describe valid modifications for a DB instance', ], ], 'DownloadDBLogFilePortion' => [ [ 'input' => [ 'DBInstanceIdentifier' => 'test-instance', 'LogFileName' => 'log.txt', ], 'output' => [], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example downloads only the latest part of your log file.', 'id' => 'to-download-a-db-log-file-1680284895898', 'title' => 'To download a DB log file', ], ], 'FailoverDBCluster' => [ [ 'input' => [ 'DBClusterIdentifier' => 'myaurorainstance-cluster', 'TargetDBInstanceIdentifier' => 'myaurorareplica', ], 'output' => [ 'DBCluster' => [], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'This example performs a failover for the specified DB cluster to the specified DB instance.', 'id' => 'failover-db-cluster-9e7f2f93-d98c-42c7-bb0e-d6c485c096d6', 'title' => 'To perform a failover for a DB cluster', ], ], 'ListTagsForResource' => [ [ 'input' => [ 'ResourceName' => 'arn:aws:rds:us-east-1:123456789012:db:orcl1', ], 'output' => [ 'TagList' => [ [ 'Key' => 'Environment', 'Value' => 'test', ], [ 'Key' => 'Name', 'Value' => 'MyDatabase', ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example lists all tags on a DB instance.', 'id' => 'to-list-tags-on-an-amazon-rds-resource-1680285113240', 'title' => 'To list tags on an Amazon RDS resource', ], ], 'ModifyCertificates' => [ [ 'input' => [ 'CertificateIdentifier' => 'rds-ca-2019', ], 'output' => [ 'Certificate' => [ 'CertificateArn' => 'arn:aws:rds:us-east-1::cert:rds-ca-2019', 'CertificateIdentifier' => 'rds-ca-2019', 'CertificateType' => 'CA', 'CustomerOverride' => true, 'CustomerOverrideValidTill' => '2024-08-22T17:08:50Z', 'Thumbprint' => 'EXAMPLE123456789012', 'ValidFrom' => '2019-09-19T18:16:53Z', 'ValidTill' => '2024-08-22T17:08:50Z', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example temporarily overrides the system-default SSL/TLS certificate for new DB instances.', 'id' => 'to-temporarily-override-the-system-default-ssltls-certificate-for-new-db-instances-1680306491984', 'title' => 'To temporarily override the system-default SSL/TLS certificate for new DB instances', ], ], 'ModifyCurrentDBClusterCapacity' => [ [ 'input' => [ 'Capacity' => 8, 'DBClusterIdentifier' => 'mydbcluster', ], 'output' => [ 'CurrentCapacity' => 1, 'DBClusterIdentifier' => 'mydbcluster', 'PendingCapacity' => 8, 'SecondsBeforeTimeout' => 300, 'TimeoutAction' => 'ForceApplyCapacityChange', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example scales the capacity of an Aurora Serverless DB cluster to 8.', 'id' => 'to-scale-the-capacity-of-an-aurora-serverless-db-cluster-1680307179599', 'title' => 'To scale the capacity of an Aurora Serverless DB cluster', ], ], 'ModifyDBCluster' => [ [ 'input' => [ 'ApplyImmediately' => true, 'BackupRetentionPeriod' => 14, 'DBClusterIdentifier' => 'cluster-2', 'MasterUserPassword' => 'newpassword99', ], 'output' => [ 'DBCluster' => [ 'AllocatedStorage' => 1, 'AssociatedRoles' => [], 'AvailabilityZones' => [ 'eu-central-1b', 'eu-central-1c', 'eu-central-1a', ], 'BackupRetentionPeriod' => 14, 'ClusterCreateTime' => '2020-04-03T14:44:02.764Z', 'CopyTagsToSnapshot' => true, 'CrossAccountClone' => false, 'DBClusterArn' => 'arn:aws:rds:eu-central-1:123456789012:cluster:cluster-2', 'DBClusterIdentifier' => 'cluster-2', 'DBClusterMembers' => [ [ 'DBClusterParameterGroupStatus' => 'in-sync', 'DBInstanceIdentifier' => 'cluster-2-instance-1', 'IsClusterWriter' => true, 'PromotionTier' => 1, ], ], 'DBClusterParameterGroup' => 'default.aurora5.6', 'DBSubnetGroup' => 'default-vpc-2305ca49', 'DatabaseName' => '', 'DbClusterResourceId' => 'cluster-AGJ7XI77XVIS6FUXHU1EXAMPLE', 'DeletionProtection' => false, 'DomainMemberships' => [], 'EarliestRestorableTime' => '2020-06-03T02:07:29.637Z', 'Endpoint' => 'cluster-2.cluster-############.eu-central-1.rds.amazonaws.com', 'Engine' => 'aurora', 'EngineMode' => 'provisioned', 'EngineVersion' => '5.6.10a', 'HostedZoneId' => 'Z1RLNU0EXAMPLE', 'HttpEndpointEnabled' => false, 'IAMDatabaseAuthenticationEnabled' => false, 'KmsKeyId' => 'arn:aws:kms:eu-central-1:123456789012:key/d1bd7c8f-5cdb-49ca-8a62-a1b2c3d4e5f6', 'LatestRestorableTime' => '2020-06-04T15:11:25.748Z', 'MasterUsername' => 'admin', 'MultiAZ' => false, 'Port' => 3306, 'PreferredBackupWindow' => '01:55-02:25', 'PreferredMaintenanceWindow' => 'thu:21:14-thu:21:44', 'ReadReplicaIdentifiers' => [], 'ReaderEndpoint' => 'cluster-2.cluster-ro-############.eu-central-1.rds.amazonaws.com', 'Status' => 'available', 'StorageEncrypted' => true, 'VpcSecurityGroups' => [ [ 'Status' => 'active', 'VpcSecurityGroupId' => 'sg-20a5c047', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example changes the master user password for the DB cluster named cluster-2 and sets the backup retention period to 14 days. The ApplyImmediately parameter causes the changes to be made immediately, instead of waiting until the next maintenance window.', 'id' => 'to-modify-a-db-cluster-1680310823999', 'title' => 'To modify a DB cluster', ], ], 'ModifyDBClusterEndpoint' => [ [ 'input' => [ 'DBClusterEndpointIdentifier' => 'mycustomendpoint', 'StaticMembers' => [ 'dbinstance1', 'dbinstance2', 'dbinstance3', ], ], 'output' => [ 'CustomEndpointType' => 'READER', 'DBClusterEndpointArn' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:mycustomendpoint', 'DBClusterEndpointIdentifier' => 'mycustomendpoint', 'DBClusterEndpointResourceIdentifier' => 'cluster-endpoint-ANPAJ4AE5446DAEXAMPLE', 'DBClusterIdentifier' => 'mydbcluster', 'Endpoint' => 'mycustomendpoint.cluster-custom-cnpexample.us-east-1.rds.amazonaws.com', 'EndpointType' => 'CUSTOM', 'ExcludedMembers' => [], 'StaticMembers' => [ 'dbinstance1', 'dbinstance2', 'dbinstance3', ], 'Status' => 'modifying', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example modifies the specified custom DB cluster endpoint.', 'id' => 'to-modify-a-custom-db-cluster-endpoint-1680307652958', 'title' => 'To modify a custom DB cluster endpoint', ], ], 'ModifyDBClusterParameterGroup' => [ [ 'input' => [ 'DBClusterParameterGroupName' => 'mydbclusterpg', 'Parameters' => [ [ 'ApplyMethod' => 'immediate', 'ParameterName' => 'server_audit_logging', 'ParameterValue' => '1', ], [ 'ApplyMethod' => 'immediate', 'ParameterName' => 'server_audit_logs_upload', 'ParameterValue' => '1', ], ], ], 'output' => [ 'DBClusterParameterGroupName' => 'mydbclusterpg', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example modifies the values of parameters in a DB cluster parameter group.', 'id' => 'to-modify-parameters-in-a-db-cluster-parameter-group-1680377584537', 'title' => 'To modify parameters in a DB cluster parameter group', ], ], 'ModifyDBClusterSnapshotAttribute' => [ [ 'input' => [ 'AttributeName' => 'restore', 'DBClusterSnapshotIdentifier' => 'myclustersnapshot', 'ValuesToAdd' => [ '123456789012', ], ], 'output' => [ 'DBClusterSnapshotAttributesResult' => [ 'DBClusterSnapshotAttributes' => [ [ 'AttributeName' => 'restore', 'AttributeValues' => [ '123456789012', ], ], ], 'DBClusterSnapshotIdentifier' => 'myclustersnapshot', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example makes changes to the specified DB cluster snapshot attribute.', 'id' => 'to-modify-a-db-cluster-snapshot-attribute-1680310358770', 'title' => 'To modify a DB cluster snapshot attribute', ], ], 'ModifyDBInstance' => [ [ 'input' => [ 'ApplyImmediately' => true, 'DBInstanceIdentifier' => 'database-2', 'DBParameterGroupName' => 'test-sqlserver-se-2017', 'OptionGroupName' => 'test-se-2017', ], 'output' => [ 'DBInstance' => [ 'AssociatedRoles' => [], 'AutoMinorVersionUpgrade' => false, 'AvailabilityZone' => 'us-west-2d', 'CharacterSetName' => 'SQL_Latin1_General_CP1_CI_AS', 'DBInstanceClass' => 'db.r4.large', 'DBInstanceIdentifier' => 'database-2', 'DBInstanceStatus' => 'available', 'DBParameterGroups' => [ [ 'DBParameterGroupName' => 'test-sqlserver-se-2017', 'ParameterApplyStatus' => 'applying', ], ], 'DeletionProtection' => false, 'Engine' => 'sqlserver-se', 'EngineVersion' => '14.00.3281.6.v1', 'LicenseModel' => 'license-included', 'MaxAllocatedStorage' => 1000, 'MultiAZ' => true, 'OptionGroupMemberships' => [ [ 'OptionGroupName' => 'test-se-2017', 'Status' => 'pending-apply', ], ], 'PubliclyAccessible' => true, 'ReadReplicaDBInstanceIdentifiers' => [], 'SecondaryAvailabilityZone' => 'us-west-2c', 'StorageType' => 'gp2', ], ], 'comments' => [ 'input' => [], 'output' => [ 'DBInstance' => 'Some output ommitted.', ], ], 'description' => 'The following example associates an option group and a parameter group with a compatible Microsoft SQL Server DB instance. The ApplyImmediately parameter causes the option and parameter groups to be associated immediately, instead of waiting until the next maintenance window.', 'id' => 'to-modify-a-db-instance-1680377584537', 'title' => 'To modify a DB instance', ], ], 'ModifyDBParameterGroup' => [ [ 'input' => [ 'DBParameterGroupName' => 'test-sqlserver-se-2017', 'Parameters' => [ [ 'ApplyMethod' => 'immediate', 'ParameterName' => 'clr enabled', 'ParameterValue' => '1', ], ], ], 'output' => [ 'DBParameterGroupName' => 'test-sqlserver-se-2017', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example changes the value of the clr enabled parameter in a DB parameter group. The value of the ApplyMethod parameter causes the DB parameter group to be modified immediately, instead of waiting until the next maintenance window.', 'id' => 'to-modify-a-db-parameter-group-1680382937235', 'title' => 'To modify a DB parameter group', ], ], 'ModifyDBSnapshot' => [ [ 'input' => [ 'DBSnapshotIdentifier' => 'db5-snapshot-upg-test', 'EngineVersion' => '11.7', ], 'output' => [ 'DBSnapshot' => [ 'AllocatedStorage' => 20, 'AvailabilityZone' => 'us-west-2a', 'DBInstanceIdentifier' => 'database-5', 'DBSnapshotArn' => 'arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-upg-test', 'DBSnapshotIdentifier' => 'db5-snapshot-upg-test', 'DbiResourceId' => 'db-GJMF75LM42IL6BTFRE4UZJ5YM4', 'Encrypted' => false, 'Engine' => 'postgres', 'EngineVersion' => '10.6', 'IAMDatabaseAuthenticationEnabled' => false, 'InstanceCreateTime' => '2020-03-27T19:59:04.735Z', 'LicenseModel' => 'postgresql-license', 'MasterUsername' => 'postgres', 'OptionGroupName' => 'default:postgres-11', 'PercentProgress' => 100, 'Port' => 5432, 'ProcessorFeatures' => [], 'SnapshotCreateTime' => '2020-03-27T20:49:17.092Z', 'SnapshotType' => 'manual', 'Status' => 'upgrading', 'StorageType' => 'gp2', 'VpcId' => 'vpc-2ff27557', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example upgrades a PostgeSQL 10.6 snapshot named db5-snapshot-upg-test to PostgreSQL 11.7. The new DB engine version is shown after the snapshot has finished upgrading and its status is available.', 'id' => 'to-modify-a-db-snapshot-1680381968028', 'title' => 'To modify a DB snapshot', ], ], 'ModifyDBSnapshotAttribute' => [ [ 'input' => [ 'AttributeName' => 'restore', 'DBSnapshotIdentifier' => 'mydbsnapshot', 'ValuesToAdd' => [ '111122223333', '444455556666', ], ], 'output' => [ 'DBSnapshotAttributesResult' => [ 'DBSnapshotAttributes' => [ [ 'AttributeName' => 'restore', 'AttributeValues' => [ '111122223333', '444455556666', ], ], ], 'DBSnapshotIdentifier' => 'mydbsnapshot', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example grants permission to two AWS accounts, with the identifiers 111122223333 and 444455556666, to restore the DB snapshot named mydbsnapshot.', 'id' => 'to-allow-two-aws-accounts-to-restore-a-db-snapshot-1680389647513', 'title' => 'To allow two AWS accounts to restore a DB snapshot', ], [ 'input' => [ 'AttributeName' => 'restore', 'DBSnapshotIdentifier' => 'mydbsnapshot', 'ValuesToRemove' => [ '444455556666', ], ], 'output' => [ 'DBSnapshotAttributesResult' => [ 'DBSnapshotAttributes' => [ [ 'AttributeName' => 'restore', 'AttributeValues' => [ '111122223333', ], ], ], 'DBSnapshotIdentifier' => 'mydbsnapshot', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example removes permission from the AWS account with the identifier 444455556666 to restore the DB snapshot named mydbsnapshot.', 'id' => 'to-prevent-an-aws-account-from-restoring-a-db-snapshot-1680389850879', 'title' => 'To prevent an AWS account from restoring a DB snapshot', ], ], 'ModifyDBSubnetGroup' => [ [ 'input' => [ 'DBSubnetGroupDescription' => '', 'DBSubnetGroupName' => 'mysubnetgroup', 'SubnetIds' => [ 'subnet-0a1dc4e1a6f123456', 'subnet-070dd7ecb3aaaaaaa', 'subnet-00f5b198bc0abcdef', 'subnet-08e41f9e230222222', ], ], 'output' => [ 'DBSubnetGroup' => [ 'DBSubnetGroupArn' => 'arn:aws:rds:us-west-2:123456789012:subgrp:mysubnetgroup', 'DBSubnetGroupDescription' => 'test DB subnet group', 'DBSubnetGroupName' => 'mysubnetgroup', 'SubnetGroupStatus' => 'Complete', 'Subnets' => [ [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-west-2a', ], 'SubnetIdentifier' => 'subnet-08e41f9e230222222', 'SubnetStatus' => 'Active', ], [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-west-2b', ], 'SubnetIdentifier' => 'subnet-070dd7ecb3aaaaaaa', 'SubnetStatus' => 'Active', ], [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-west-2d', ], 'SubnetIdentifier' => 'subnet-00f5b198bc0abcdef', 'SubnetStatus' => 'Active', ], [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-west-2b', ], 'SubnetIdentifier' => 'subnet-0a1dc4e1a6f123456', 'SubnetStatus' => 'Active', ], ], 'VpcId' => 'vpc-0f08e7610a1b2c3d4', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example adds a subnet with the ID subnet-08e41f9e230222222 to the DB subnet group named mysubnetgroup. To keep the existing subnets in the subnet group, include their IDs as values in the --subnet-ids option. Make sure to have subnets with at least two different Availability Zones in the DB subnet group.', 'id' => 'to-modify-a-db-subnet-group-1680383300785', 'title' => 'To modify a DB subnet group', ], ], 'ModifyEventSubscription' => [ [ 'input' => [ 'Enabled' => false, 'SubscriptionName' => 'my-instance-events', ], 'output' => [ 'EventSubscription' => [ 'CustSubscriptionId' => 'my-instance-events', 'CustomerAwsId' => '123456789012', 'Enabled' => false, 'EventCategoriesList' => [ 'backup', 'recovery', ], 'EventSubscriptionArn' => 'arn:aws:rds:us-east-1:123456789012:es:my-instance-events', 'SnsTopicArn' => 'arn:aws:sns:us-east-1:123456789012:interesting-events', 'SourceType' => 'db-instance', 'Status' => 'modifying', 'SubscriptionCreationTime' => 'Tue Jul 31 23:22:01 UTC 2018', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example turns off the specified event subscription, so that it no longer publishes notifications to the specified Amazon Simple Notification Service topic.', 'id' => 'to-modify-an-event-subscription-1680383930434', 'title' => 'To modify an event subscription', ], ], 'ModifyGlobalCluster' => [ [ 'input' => [ 'DeletionProtection' => true, 'GlobalClusterIdentifier' => 'myglobalcluster', ], 'output' => [ 'GlobalCluster' => [ 'DeletionProtection' => true, 'Engine' => 'aurora-mysql', 'EngineVersion' => '5.7.mysql_aurora.2.07.2', 'GlobalClusterArn' => 'arn:aws:rds::123456789012:global-cluster:myglobalcluster', 'GlobalClusterIdentifier' => 'myglobalcluster', 'GlobalClusterMembers' => [], 'GlobalClusterResourceId' => 'cluster-f0e523bfe07aabb', 'Status' => 'available', 'StorageEncrypted' => false, ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example enables deletion protection for an Aurora MySQL-based global database cluster.', 'id' => 'to-modify-a-global-database-cluster-1680385137511', 'title' => 'To modify a global database cluster', ], ], 'ModifyIntegration' => [ [ 'input' => [ 'IntegrationIdentifier' => 'a1b2c3d4-5678-90ab-cdef-EXAMPLE11111', 'IntegrationName' => 'my-renamed-integration', ], 'output' => [ 'CreateTime' => '2023-12-28T17:20:20.629Z', 'DataFilter' => 'include: *.*', 'IntegrationArn' => 'arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231', 'IntegrationName' => 'my-renamed-integration', 'KMSKeyId' => 'arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa', 'SourceArn' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-cluster', 'Status' => 'active', 'Tags' => [], 'TargetArn' => 'arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example modifies the name of an existing zero-ETL integration.', 'id' => 'to-modify-a-zero-etl-integration-1680407173998', 'title' => 'To modify a zero-ETL integration', ], ], 'ModifyOptionGroup' => [ [ 'input' => [ 'ApplyImmediately' => true, 'OptionGroupName' => 'myawsuser-og02', 'OptionsToInclude' => [ [ 'DBSecurityGroupMemberships' => [ 'default', ], 'OptionName' => 'MEMCACHED', ], ], ], 'output' => [ 'OptionGroup' => [], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example adds an option to an option group.', 'id' => 'to-modify-an-option-group-1473890247875', 'title' => 'To modify an option group', ], ], 'PromoteReadReplica' => [ [ 'input' => [ 'DBInstanceIdentifier' => 'test-instance-repl', ], 'output' => [ 'DBInstance' => [ 'DBInstanceArn' => 'arn:aws:rds:us-east-1:123456789012:db:test-instance-repl', 'DBInstanceStatus' => 'modifying', 'ReadReplicaSourceDBInstanceIdentifier' => 'test-instance', 'StorageType' => 'standard', ], ], 'comments' => [ 'input' => [], 'output' => [ 'DBInstance' => 'Some output ommitted.', ], ], 'description' => 'The following example promotes the specified read replica to become a standalone DB instance.', 'id' => 'to-promote-a-read-replica-1680263877808', 'title' => 'To promote a read replica', ], ], 'PurchaseReservedDBInstancesOffering' => [ [ 'input' => [ 'ReservedDBInstanceId' => '8ba30be1-b9ec-447f-8f23-6114e3f4c7b4', 'ReservedDBInstancesOfferingId' => '', ], 'output' => [ 'ReservedDBInstance' => [ 'CurrencyCode' => 'USD', 'DBInstanceClass' => 'db.t2.micro', 'DBInstanceCount' => 1, 'Duration' => 31536000, 'FixedPrice' => 51, 'MultiAZ' => false, 'OfferingType' => 'Partial Upfront', 'ProductDescription' => 'mysql', 'RecurringCharges' => [ [ 'RecurringChargeAmount' => 0.006, 'RecurringChargeFrequency' => 'Hourly', ], ], 'ReservedDBInstanceArn' => 'arn:aws:rds:us-west-2:123456789012:ri:ri-2020-06-29-16-54-57-670', 'ReservedDBInstanceId' => 'ri-2020-06-29-16-54-57-670', 'ReservedDBInstancesOfferingId' => '8ba30be1-b9ec-447f-8f23-6114e3f4c7b4', 'StartTime' => '2020-06-29T16:54:57.670Z', 'State' => 'payment-pending', 'UsagePrice' => 0, ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example shows how to buy the reserved DB instance offering from the previous example.', 'id' => 'to-purchase-a-reserved-db-instance-1680263732858', 'title' => 'To purchase a reserved DB instance', ], ], 'RebootDBInstance' => [ [ 'input' => [ 'DBInstanceIdentifier' => 'test-mysql-instance', ], 'output' => [ 'DBInstance' => [ 'DBInstanceClass' => 'db.t3.micro', 'DBInstanceIdentifier' => 'test-mysql-instance', 'DBInstanceStatus' => 'rebooting', 'Endpoint' => [ 'Address' => 'test-mysql-instance.############.us-west-2.rds.amazonaws.com', 'HostedZoneId' => 'Z1PVIF0EXAMPLE', 'Port' => 3306, ], 'Engine' => 'mysql', 'MasterUsername' => 'admin', ], ], 'comments' => [ 'input' => [], 'output' => [ 'DBInstance' => 'Some output ommitted.', ], ], 'description' => 'The following example starts a reboot of the specified DB instance.', 'id' => 'to-reboot-a-db-instance-1680072870190', 'title' => 'To reboot a DB instance', ], ], 'RemoveFromGlobalCluster' => [ [ 'input' => [ 'DbClusterIdentifier' => 'arn:aws:rds:us-west-2:123456789012:cluster:DB-1', 'GlobalClusterIdentifier' => 'myglobalcluster', ], 'output' => [ 'GlobalCluster' => [ 'DeletionProtection' => false, 'Engine' => 'aurora-postgresql', 'EngineVersion' => '10.11', 'GlobalClusterArn' => 'arn:aws:rds::123456789012:global-cluster:myglobalcluster', 'GlobalClusterIdentifier' => 'myglobalcluster', 'GlobalClusterMembers' => [ [ 'DBClusterArn' => 'arn:aws:rds:us-east-1:123456789012:cluster:js-global-cluster', 'IsWriter' => true, 'Readers' => [ 'arn:aws:rds:us-west-2:123456789012:cluster:DB-1', ], ], [ 'DBClusterArn' => 'arn:aws:rds:us-west-2:123456789012:cluster:DB-1', 'GlobalWriteForwardingStatus' => 'disabled', 'IsWriter' => false, 'Readers' => [], ], ], 'GlobalClusterResourceId' => 'cluster-abc123def456gh', 'Status' => 'available', 'StorageEncrypted' => true, ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example detaches an Aurora secondary cluster from an Aurora global database cluster. The cluster changes from being read-only to a standalone cluster with read-write capability.', 'id' => 'to-detach-an-aurora-secondary-cluster-from-an-aurora-global-database-cluster-1680072605847', 'title' => 'To detach an Aurora secondary cluster from an Aurora global database cluster', ], ], 'RemoveRoleFromDBCluster' => [ [ 'input' => [ 'DBClusterIdentifier' => 'mydbcluster', 'RoleArn' => 'arn:aws:iam::123456789012:role/RDSLoadFromS3', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example removes a role from a DB cluster.', 'id' => 'to-disassociate-an-identity-and-access-management-iam-role-from-a-db-cluster-1680072359521', 'title' => 'To disassociate an Identity and Access Management (IAM) role from a DB cluster', ], ], 'RemoveSourceIdentifierFromSubscription' => [ [ 'input' => [ 'SourceIdentifier' => 'test-instance-repl', 'SubscriptionName' => 'my-instance-events', ], 'output' => [ 'EventSubscription' => [ 'CustSubscriptionId' => 'my-instance-events', 'CustomerAwsId' => '123456789012', 'Enabled' => false, 'EventCategoriesList' => [ 'backup', 'recovery', ], 'EventSubscriptionArn' => 'arn:aws:rds:us-east-1:123456789012:es:my-instance-events', 'SnsTopicArn' => 'arn:aws:sns:us-east-1:123456789012:interesting-events', 'SourceIdsList' => [ 'test-instance', ], 'SourceType' => 'db-instance', 'Status' => 'modifying', 'SubscriptionCreationTime' => 'Tue Jul 31 23:22:01 UTC 2018', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example removes the specified source identifier from an existing subscription.', 'id' => 'to-remove-a-source-identifier-from-a-subscription-1680072062459', 'title' => 'To remove a source identifier from a subscription', ], ], 'RemoveTagsFromResource' => [ [ 'input' => [ 'ResourceName' => 'arn:aws:rds:us-east-1:123456789012:db:mydbinstance', 'TagKeys' => [ 'Name', 'Environment', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example removes tags from a resource.', 'id' => 'to-remove-tags-from-a-resource-1680070522922', 'title' => 'To remove tags from a resource', ], ], 'ResetDBClusterParameterGroup' => [ [ 'input' => [ 'DBClusterParameterGroupName' => 'mydbclpg', 'ResetAllParameters' => true, ], 'output' => [ 'DBClusterParameterGroupName' => 'mydbclpg', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example resets all parameter values in a customer-created DB cluster parameter group to their default values.', 'id' => 'to-reset-all-parameters-to-their-default-values-1680070254216', 'title' => 'To reset all parameters to their default values', ], ], 'ResetDBParameterGroup' => [ [ 'input' => [ 'DBParameterGroupName' => 'mypg', 'ResetAllParameters' => true, ], 'output' => [ 'DBParameterGroupName' => 'mypg', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example resets all parameter values in a customer-created DB parameter group to their default values.', 'id' => 'to-reset-all-parameters-to-their-default-values-1680069721142', 'title' => 'To reset all parameters to their default values', ], ], 'RestoreDBClusterFromS3' => [ [ 'input' => [ 'DBClusterIdentifier' => 'cluster-s3-restore', 'Engine' => 'aurora-mysql', 'MasterUserPassword' => 'mypassword', 'MasterUsername' => 'admin', 'S3BucketName' => 'mybucket', 'S3IngestionRoleArn' => 'arn:aws:iam::123456789012:role/service-role/TestBackup', 'S3Prefix' => 'test-backup', 'SourceEngine' => 'mysql', 'SourceEngineVersion' => '5.7.28', ], 'output' => [ 'DBCluster' => [ 'AllocatedStorage' => 1, 'AssociatedRoles' => [], 'AvailabilityZones' => [ 'us-west-2c', 'us-west-2a', 'us-west-2b', ], 'BackupRetentionPeriod' => 1, 'ClusterCreateTime' => '2020-07-27T14:22:08.095Z', 'CopyTagsToSnapshot' => false, 'CrossAccountClone' => false, 'DBClusterArn' => 'arn:aws:rds:us-west-2:123456789012:cluster:cluster-s3-restore', 'DBClusterIdentifier' => 'cluster-s3-restore', 'DBClusterMembers' => [], 'DBClusterParameterGroup' => 'default.aurora-mysql5.7', 'DBSubnetGroup' => 'default', 'DbClusterResourceId' => 'cluster-SU5THYQQHOWCXZZDGXREXAMPLE', 'DeletionProtection' => false, 'DomainMemberships' => [], 'Endpoint' => 'cluster-s3-restore.cluster-co3xyzabc123.us-west-2.rds.amazonaws.com', 'Engine' => 'aurora-mysql', 'EngineMode' => 'provisioned', 'EngineVersion' => '5.7.12', 'HostedZoneId' => 'Z1PVIF0EXAMPLE', 'HttpEndpointEnabled' => false, 'IAMDatabaseAuthenticationEnabled' => false, 'MasterUsername' => 'admin', 'MultiAZ' => false, 'Port' => 3306, 'PreferredBackupWindow' => '11:15-11:45', 'PreferredMaintenanceWindow' => 'thu:12:19-thu:12:49', 'ReadReplicaIdentifiers' => [], 'ReaderEndpoint' => 'cluster-s3-restore.cluster-ro-co3xyzabc123.us-west-2.rds.amazonaws.com', 'Status' => 'creating', 'StorageEncrypted' => false, 'VpcSecurityGroups' => [ [ 'Status' => 'active', 'VpcSecurityGroupId' => 'sg-########', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example restores an Amazon Aurora MySQL version 5.7-compatible DB cluster from a MySQL 5.7 DB backup file in Amazon S3.', 'id' => 'to-restore-an-amazon-aurora-db-cluster-from-amazon-s3-1680069516445', 'title' => 'To restore an Amazon Aurora DB cluster from Amazon S3', ], ], 'RestoreDBClusterFromSnapshot' => [ [ 'input' => [ 'DBClusterIdentifier' => 'newdbcluster', 'Engine' => 'aurora-postgresql', 'EngineVersion' => '10.7', 'SnapshotIdentifier' => 'test-instance-snapshot', ], 'output' => [ 'DBCluster' => [ 'AllocatedStorage' => 1, 'AssociatedRoles' => [], 'AvailabilityZones' => [ 'us-west-2c', 'us-west-2a', 'us-west-2b', ], 'BackupRetentionPeriod' => 7, 'ClusterCreateTime' => '2020-06-05T15:06:58.634Z', 'CopyTagsToSnapshot' => false, 'CrossAccountClone' => false, 'DBClusterArn' => 'arn:aws:rds:us-west-2:123456789012:cluster:newdbcluster', 'DBClusterIdentifier' => 'newdbcluster', 'DBClusterMembers' => [], 'DBClusterParameterGroup' => 'default.aurora-postgresql10', 'DBSubnetGroup' => 'default', 'DatabaseName' => '', 'DbClusterResourceId' => 'cluster-5DSB5IFQDDUVAWOUWM1EXAMPLE', 'DeletionProtection' => false, 'DomainMemberships' => [], 'Endpoint' => 'newdbcluster.cluster-############.us-west-2.rds.amazonaws.com', 'Engine' => 'aurora-postgresql', 'EngineMode' => 'provisioned', 'EngineVersion' => '10.7', 'HostedZoneId' => 'Z1PVIF0EXAMPLE', 'HttpEndpointEnabled' => false, 'IAMDatabaseAuthenticationEnabled' => false, 'KmsKeyId' => 'arn:aws:kms:us-west-2:123456789012:key/287364e4-33e3-4755-a3b0-a1b2c3d4e5f6', 'MasterUsername' => 'postgres', 'MultiAZ' => false, 'Port' => 5432, 'PreferredBackupWindow' => '09:33-10:03', 'PreferredMaintenanceWindow' => 'sun:12:22-sun:12:52', 'ReadReplicaIdentifiers' => [], 'ReaderEndpoint' => 'newdbcluster.cluster-ro-############.us-west-2.rds.amazonaws.com', 'Status' => 'creating', 'StorageEncrypted' => true, 'VpcSecurityGroups' => [ [ 'Status' => 'active', 'VpcSecurityGroupId' => 'sg-########', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example restores an Aurora PostgreSQL DB cluster compatible with PostgreSQL version 10.7 from a DB cluster snapshot named test-instance-snapshot.', 'id' => 'to-restore-a-db-cluster-from-a-snapshot-1680069287853', 'title' => 'To restore a DB cluster from a snapshot', ], ], 'RestoreDBClusterToPointInTime' => [ [ 'input' => [ 'DBClusterIdentifier' => 'sample-cluster-clone', 'RestoreType' => 'copy-on-write', 'SourceDBClusterIdentifier' => 'database-4', 'UseLatestRestorableTime' => true, ], 'output' => [ 'DBCluster' => [ 'AllocatedStorage' => 1, 'AssociatedRoles' => [], 'AvailabilityZones' => [ 'us-west-2c', 'us-west-2a', 'us-west-2b', ], 'BackupRetentionPeriod' => 7, 'CloneGroupId' => '8d19331a-099a-45a4-b4aa-11aa22bb33cc44dd', 'ClusterCreateTime' => '2020-03-10T19:57:38.967Z', 'CopyTagsToSnapshot' => false, 'CrossAccountClone' => false, 'DBClusterArn' => 'arn:aws:rds:us-west-2:123456789012:cluster:sample-cluster-clone', 'DBClusterIdentifier' => 'sample-cluster-clone', 'DBClusterMembers' => [], 'DBClusterParameterGroup' => 'default.aurora-postgresql10', 'DBSubnetGroup' => 'default', 'DatabaseName' => '', 'DbClusterResourceId' => 'cluster-BIZ77GDSA2XBSTNPFW1EXAMPLE', 'DeletionProtection' => false, 'Endpoint' => 'sample-cluster-clone.cluster-############.us-west-2.rds.amazonaws.com', 'Engine' => 'aurora-postgresql', 'EngineMode' => 'provisioned', 'EngineVersion' => '10.7', 'HostedZoneId' => 'Z1PVIF0EXAMPLE', 'HttpEndpointEnabled' => false, 'IAMDatabaseAuthenticationEnabled' => false, 'KmsKeyId' => 'arn:aws:kms:us-west-2:123456789012:key/287364e4-33e3-4755-a3b0-a1b2c3d4e5f6', 'MasterUsername' => 'postgres', 'MultiAZ' => false, 'Port' => 5432, 'PreferredBackupWindow' => '09:33-10:03', 'PreferredMaintenanceWindow' => 'sun:12:22-sun:12:52', 'ReadReplicaIdentifiers' => [], 'ReaderEndpoint' => 'sample-cluster-clone.cluster-ro-############.us-west-2.rds.amazonaws.com', 'Status' => 'creating', 'StorageEncrypted' => true, 'VpcSecurityGroups' => [ [ 'Status' => 'active', 'VpcSecurityGroupId' => 'sg-########', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example restores the DB cluster named database-4 to the latest possible time. Using copy-on-write as the restore type restores the new DB cluster as a clone of the source DB cluster.', 'id' => 'to-restore-a-db-cluster-to-a-specified-time-1680069105508', 'title' => 'To restore a DB cluster to a specified time', ], ], 'RestoreDBInstanceFromDBSnapshot' => [ [ 'input' => [ 'DBInstanceClass' => 'db.t3.small', 'DBInstanceIdentifier' => 'db7-new-instance', 'DBSnapshotIdentifier' => 'db7-test-snapshot', ], 'output' => [ 'DBInstance' => [ 'AssociatedRoles' => [], 'AutoMinorVersionUpgrade' => true, 'DBInstanceArn' => 'arn:aws:rds:us-west-2:123456789012:db:db7-new-instance', 'DBInstanceClass' => 'db.t3.small', 'DBInstanceIdentifier' => 'db7-new-instance', 'DBInstanceStatus' => 'creating', 'DeletionProtection' => false, 'Engine' => 'mysql', 'EngineVersion' => '5.7.22', 'IAMDatabaseAuthenticationEnabled' => false, 'LicenseModel' => 'general-public-license', 'MultiAZ' => false, 'PendingModifiedValues' => [], 'PerformanceInsightsEnabled' => false, 'PreferredMaintenanceWindow' => 'mon:07:37-mon:08:07', 'ReadReplicaDBInstanceIdentifiers' => [], ], ], 'comments' => [ 'input' => [], 'output' => [ 'DBInstance' => 'Some output ommitted.', ], ], 'description' => 'The following example creates a new DB instance named db7-new-instance with the db.t3.small DB instance class from the specified DB snapshot. The source DB instance from which the snapshot was taken uses a deprecated DB instance class, so you can\'t upgrade it.', 'id' => 'to-restore-a-db-instance-from-a-db-snapshot-1680093236214', 'title' => 'To restore a DB instance from a DB snapshot', ], ], 'RestoreDBInstanceToPointInTime' => [ [ 'input' => [ 'RestoreTime' => '2018-07-30T23:45:00.000Z', 'SourceDBInstanceIdentifier' => 'test-instance', 'TargetDBInstanceIdentifier' => 'restored-test-instance', ], 'output' => [ 'DBInstance' => [ 'AllocatedStorage' => 200, 'AutoMinorVersionUpgrade' => true, 'AvailabilityZone' => 'us-west-2b', 'BackupRetentionPeriod' => 7, 'CACertificateIdentifier' => 'rds-ca-2015', 'CopyTagsToSnapshot' => false, 'DBInstanceArn' => 'arn:aws:rds:us-west-2:123456789012:db:restored-test-instance', 'DBInstanceClass' => 'db.t2.small', 'DBInstanceIdentifier' => 'restored-test-instance', 'DBInstanceStatus' => 'available', 'DBName' => 'sample', 'DBParameterGroups' => [ [ 'DBParameterGroupName' => 'default.mysql5.6', 'ParameterApplyStatus' => 'in-sync', ], ], 'DBSecurityGroups' => [], 'DBSubnetGroup' => [ 'DBSubnetGroupDescription' => 'default', 'DBSubnetGroupName' => 'default', 'SubnetGroupStatus' => 'Complete', 'Subnets' => [ [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-west-2a', ], 'SubnetIdentifier' => 'subnet-77e8db03', 'SubnetStatus' => 'Active', ], [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-west-2b', ], 'SubnetIdentifier' => 'subnet-c39989a1', 'SubnetStatus' => 'Active', ], [ 'SubnetAvailabilityZone' => [ 'Name' => 'us-west-2c', ], 'SubnetIdentifier' => 'subnet-4b267b0d', 'SubnetStatus' => 'Active', ], ], 'VpcId' => 'vpc-c1c5b3a3', ], 'DbInstancePort' => 0, 'DbiResourceId' => 'db-VNZUCCBTEDC4WR7THXNJO72HVQ', 'DomainMemberships' => [], 'Engine' => 'mysql', 'EngineVersion' => '5.6.27', 'LicenseModel' => 'general-public-license', 'MasterUsername' => 'mymasteruser', 'MonitoringInterval' => 0, 'MultiAZ' => false, 'OptionGroupMemberships' => [ [ 'OptionGroupName' => 'default:mysql-5-6', 'Status' => 'in-sync', ], ], 'PendingModifiedValues' => [], 'PreferredBackupWindow' => '12:58-13:28', 'PreferredMaintenanceWindow' => 'tue:10:16-tue:10:46', 'PubliclyAccessible' => true, 'ReadReplicaDBInstanceIdentifiers' => [], 'StorageEncrypted' => false, 'StorageType' => 'gp2', 'VpcSecurityGroups' => [ [ 'Status' => 'active', 'VpcSecurityGroupId' => 'sg-e5e5b0d2', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example restores test-instance to a new DB instance named restored-test-instance, as of the specified time.', 'id' => 'to-restore-a-db-instance-to-a-point-in-time-1680036021951', 'title' => 'To restore a DB instance to a point in time', ], ], 'RevokeDBSecurityGroupIngress' => [ [ 'input' => [ 'CIDRIP' => '203.0.113.5/32', 'DBSecurityGroupName' => 'mydbsecuritygroup', ], 'output' => [ 'DBSecurityGroup' => [], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'This example revokes ingress for the specified CIDR block associated with the specified DB security group.', 'id' => 'revoke-db-security-group-ingress-ce5b2c1c-bd4e-4809-b04a-6d78ec448813', 'title' => 'To revoke ingress for a DB security group', ], ], 'StartActivityStream' => [ [ 'input' => [ 'ApplyImmediately' => true, 'KmsKeyId' => 'arn:aws:kms:us-east-1:1234567890123:key/a12c345d-6ef7-890g-h123-456i789jk0l1', 'Mode' => 'async', 'ResourceArn' => 'arn:aws:rds:us-east-1:1234567890123:cluster:my-pg-cluster', ], 'output' => [ 'ApplyImmediately' => true, 'KinesisStreamName' => 'aws-rds-das-cluster-0ABCDEFGHI1JKLM2NOPQ3R4S', 'KmsKeyId' => 'arn:aws:kms:us-east-1:1234567890123:key/a12c345d-6ef7-890g-h123-456i789jk0l1', 'Mode' => 'async', 'Status' => 'starting', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example starts an asynchronous activity stream to monitor an Aurora cluster named my-pg-cluster.', 'id' => 'to-start-a-database-activity-stream-1680035656463', 'title' => 'To start a database activity stream', ], ], 'StartDBCluster' => [ [ 'input' => [ 'DBClusterIdentifier' => 'mydbcluster', ], 'output' => [ 'DBCluster' => [ 'AllocatedStorage' => 1, 'AvailabilityZones' => [ 'us-east-1a', 'us-east-1e', 'us-east-1b', ], 'BackupRetentionPeriod' => 1, 'DBClusterIdentifier' => 'mydbcluster', 'DatabaseName' => 'mydb', ], ], 'comments' => [ 'input' => [], 'output' => [ 'DBCluster' => 'Some output ommitted.', ], ], 'description' => 'The following example starts a DB cluster and its DB instances.', 'id' => 'to-start-a-db-cluster-1680035521632', 'title' => 'To start a DB cluster', ], ], 'StartDBInstance' => [ [ 'input' => [ 'DBInstanceIdentifier' => 'test-instance', ], 'output' => [ 'DBInstance' => [ 'DBInstanceStatus' => 'starting', ], ], 'comments' => [ 'input' => [], 'output' => [ 'DBInstance' => 'Some output ommitted.', ], ], 'description' => 'The following example starts the specified DB instance.', 'id' => 'to-start-a-db-instance-1679951967681', 'title' => 'To start a DB instance', ], ], 'StartDBInstanceAutomatedBackupsReplication' => [ [ 'input' => [ 'BackupRetentionPeriod' => 14, 'SourceDBInstanceArn' => 'arn:aws:rds:us-east-1:123456789012:db:new-orcl-db', ], 'output' => [ 'DBInstanceAutomatedBackup' => [ 'AllocatedStorage' => 20, 'BackupRetentionPeriod' => 14, 'DBInstanceArn' => 'arn:aws:rds:us-east-1:123456789012:db:new-orcl-db', 'DBInstanceAutomatedBackupsArn' => 'arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example', 'DBInstanceIdentifier' => 'new-orcl-db', 'DbiResourceId' => 'db-JKIB2GFQ5RV7REPLZA4EXAMPLE', 'Encrypted' => false, 'Engine' => 'oracle-se2', 'EngineVersion' => '12.1.0.2.v21', 'IAMDatabaseAuthenticationEnabled' => false, 'InstanceCreateTime' => '2020-12-04T15:28:31Z', 'LicenseModel' => 'bring-your-own-license', 'MasterUsername' => 'admin', 'OptionGroupName' => 'default:oracle-se2-12-1', 'Port' => 1521, 'Region' => 'us-east-1', 'RestoreWindow' => [], 'Status' => 'pending', 'StorageType' => 'gp2', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example replicates automated backups from a DB instance in the US East (N. Virginia) Region. The backup retention period is 14 days.', 'id' => 'to-enable-cross-region-automated-backups-1680033438352', 'title' => 'To enable cross-Region automated backups', ], ], 'StartExportTask' => [ [ 'input' => [ 'ExportTaskIdentifier' => 'my-s3-export', 'IamRoleArn' => 'arn:aws:iam::123456789012:role/service-role/ExportRole', 'KmsKeyId' => 'arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff', 'S3BucketName' => 'mybucket', 'SourceArn' => 'arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-test', ], 'output' => [ 'ExportTaskIdentifier' => 'my-s3-export', 'IamRoleArn' => 'arn:aws:iam::123456789012:role/service-role/ExportRole', 'KmsKeyId' => 'arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff', 'PercentProgress' => 0, 'S3Bucket' => 'mybucket', 'SnapshotTime' => '2020-03-27T20:48:42.023Z', 'SourceArn' => 'arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-test', 'Status' => 'STARTING', 'TotalExtractedDataInGB' => 0, ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example exports a DB snapshot named db5-snapshot-test to the Amazon S3 bucket named mybucket.', 'id' => 'to-export-a-snapshot-to-amazon-s3-1679950669718', 'title' => 'To export a snapshot to Amazon S3', ], ], 'StopActivityStream' => [ [ 'input' => [ 'ApplyImmediately' => true, 'ResourceArn' => 'arn:aws:rds:us-east-1:1234567890123:cluster:my-pg-cluster', ], 'output' => [ 'KinesisStreamName' => 'aws-rds-das-cluster-0ABCDEFGHI1JKLM2NOPQ3R4S', 'KmsKeyId' => 'arn:aws:kms:us-east-1:1234567890123:key/a12c345d-6ef7-890g-h123-456i789jk0l1', 'Status' => 'stopping', ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example stops an activity stream in an Aurora cluster named my-pg-cluster.', 'id' => 'to-stop-a-database-activity-stream-1679945843823', 'title' => 'To stop a database activity stream', ], ], 'StopDBCluster' => [ [ 'input' => [ 'DBClusterIdentifier' => 'mydbcluster', ], 'output' => [ 'DBCluster' => [ 'AllocatedStorage' => 1, 'AvailabilityZones' => [ 'us-east-1a', 'us-east-1e', 'us-east-1b', ], 'BackupRetentionPeriod' => 1, 'DBClusterIdentifier' => 'mydbcluster', 'DatabaseName' => 'mydb', ], ], 'comments' => [ 'input' => [], 'output' => [ 'DBCluster' => 'Some output ommitted.', ], ], 'description' => 'The following example stops a DB cluster and its DB instances.', 'id' => 'to-stop-a-db-cluster-1679701988603', 'title' => 'To stop a DB cluster', ], ], 'StopDBInstance' => [ [ 'input' => [ 'DBInstanceIdentifier' => 'test-instance', ], 'output' => [ 'DBInstance' => [ 'DBInstanceStatus' => 'stopping', ], ], 'comments' => [ 'input' => [], 'output' => [ 'DBInstance' => 'Some output ommitted.', ], ], 'description' => 'The following example stops the specified DB instance.', 'id' => 'to-stop-a-db-instance-1679701630959', 'title' => 'To stop a DB instance', ], ], 'StopDBInstanceAutomatedBackupsReplication' => [ [ 'input' => [ 'SourceDBInstanceArn' => 'arn:aws:rds:us-east-1:123456789012:db:new-orcl-db', ], 'output' => [ 'DBInstanceAutomatedBackup' => [ 'AllocatedStorage' => 20, 'BackupRetentionPeriod' => 7, 'DBInstanceArn' => 'arn:aws:rds:us-east-1:123456789012:db:new-orcl-db', 'DBInstanceAutomatedBackupsArn' => 'arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example', 'DBInstanceIdentifier' => 'new-orcl-db', 'DbiResourceId' => 'db-JKIB2GFQ5RV7REPLZA4EXAMPLE', 'Encrypted' => false, 'Engine' => 'oracle-se2', 'EngineVersion' => '12.1.0.2.v21', 'IAMDatabaseAuthenticationEnabled' => false, 'InstanceCreateTime' => '2020-12-04T15:28:31Z', 'LicenseModel' => 'bring-your-own-license', 'MasterUsername' => 'admin', 'OptionGroupName' => 'default:oracle-se2-12-1', 'Port' => 1521, 'Region' => 'us-east-1', 'RestoreWindow' => [ 'EarliestTime' => '2020-12-04T23:13:21.030Z', 'LatestTime' => '2020-12-07T19:59:57Z', ], 'Status' => 'replicating', 'StorageType' => 'gp2', ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example ends replication of automated backups. Replicated backups are retained according to the set backup retention period.', 'id' => 'to-stop-replicating-automated-backups-1679701787115', 'title' => 'To stop replicating automated backups', ], ], 'SwitchoverBlueGreenDeployment' => [ [ 'input' => [ 'BlueGreenDeploymentIdentifier' => 'bgd-wi89nwzglccsfake', 'SwitchoverTimeout' => 300, ], 'output' => [ 'BlueGreenDeployment' => [ 'BlueGreenDeploymentIdentifier' => 'bgd-v53303651eexfake', 'BlueGreenDeploymentName' => 'bgd-cli-test-instance', 'CreateTime' => '2022-02-25T22:33:22.225000+00:00', 'Source' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance', 'Status' => 'SWITCHOVER_IN_PROGRESS', 'SwitchoverDetails' => [ [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-blhi1e', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1-green-k5fv7u', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2-green-ggsh8m', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3-green-o2vwm0', ], ], 'Target' => 'arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-blhi1e', 'Tasks' => [ [ 'Name' => 'CREATING_READ_REPLICA_OF_SOURCE', 'Status' => 'COMPLETED', ], [ 'Name' => 'DB_ENGINE_VERSION_UPGRADE', 'Status' => 'COMPLETED', ], [ 'Name' => 'CONFIGURE_BACKUPS', 'Status' => 'COMPLETED', ], [ 'Name' => 'CREATING_TOPOLOGY_OF_SOURCE', 'Status' => 'COMPLETED', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example promotes the specified green environment as the new production environment.', 'id' => 'to-switch-a-bluegreen-deployment-for-an-rds-db-instance-1679699425237', 'title' => 'To switch a blue/green deployment for an RDS DB instance', ], [ 'input' => [ 'BlueGreenDeploymentIdentifier' => 'bgd-wi89nwzglccsfake', 'SwitchoverTimeout' => 300, ], 'output' => [ 'BlueGreenDeployment' => [ 'BlueGreenDeploymentIdentifier' => 'bgd-wi89nwzglccsfake', 'BlueGreenDeploymentName' => 'my-blue-green-deployment', 'CreateTime' => '2022-02-25T22:38:49.522000+00:00', 'Source' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster', 'Status' => 'SWITCHOVER_IN_PROGRESS', 'SwitchoverDetails' => [ [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3ud8z6', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1-green-bvxc73', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2-green-7wc4ie', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3-green-p4xxkz', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint-green-np1ikl', ], [ 'SourceMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint', 'Status' => 'AVAILABLE', 'TargetMember' => 'arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint-green-miszlf', ], ], 'Target' => 'arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3ud8z6', 'Tasks' => [ [ 'Name' => 'CREATING_READ_REPLICA_OF_SOURCE', 'Status' => 'COMPLETED', ], [ 'Name' => 'DB_ENGINE_VERSION_UPGRADE', 'Status' => 'COMPLETED', ], [ 'Name' => 'CREATE_DB_INSTANCES_FOR_CLUSTER', 'Status' => 'COMPLETED', ], [ 'Name' => 'CREATE_CUSTOM_ENDPOINTS', 'Status' => 'COMPLETED', ], ], ], ], 'comments' => [ 'input' => [], 'output' => [], ], 'description' => 'The following example promotes the specified green environment as the new production environment.', 'id' => 'to-promote-a-bluegreen-deployment-for-an-aurora-mysql-db-cluster-1679700197409', 'title' => 'To promote a blue/green deployment for an Aurora MySQL DB cluster', ], ], ],]; diff --git a/src/data/rds_feature/2014-10-31/paginators-1.json b/src/data/rds_feature/2014-10-31/paginators-1.json new file mode 100644 index 0000000000..596864afe8 --- /dev/null +++ b/src/data/rds_feature/2014-10-31/paginators-1.json @@ -0,0 +1,248 @@ +{ + "pagination": { + "DescribeBlueGreenDeployments": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "BlueGreenDeployments" + }, + "DescribeCertificates": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "Certificates" + }, + "DescribeDBClusterAutomatedBackups": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBClusterAutomatedBackups" + }, + "DescribeDBClusterBacktracks": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBClusterBacktracks" + }, + "DescribeDBClusterEndpoints": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBClusterEndpoints" + }, + "DescribeDBClusterParameterGroups": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBClusterParameterGroups" + }, + "DescribeDBClusterParameters": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "Parameters" + }, + "DescribeDBClusterSnapshots": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBClusterSnapshots" + }, + "DescribeDBClusters": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBClusters" + }, + "DescribeDBEngineVersions": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBEngineVersions" + }, + "DescribeDBInstanceAutomatedBackups": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBInstanceAutomatedBackups" + }, + "DescribeDBInstances": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBInstances" + }, + "DescribeDBLogFiles": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DescribeDBLogFiles" + }, + "DescribeDBMajorEngineVersions": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBMajorEngineVersions" + }, + "DescribeDBParameterGroups": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBParameterGroups" + }, + "DescribeDBParameters": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "Parameters" + }, + "DescribeDBProxies": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBProxies" + }, + "DescribeDBProxyEndpoints": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBProxyEndpoints" + }, + "DescribeDBProxyTargetGroups": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "TargetGroups" + }, + "DescribeDBProxyTargets": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "Targets" + }, + "DescribeDBRecommendations": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBRecommendations" + }, + "DescribeDBSecurityGroups": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBSecurityGroups" + }, + "DescribeDBSnapshotTenantDatabases": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBSnapshotTenantDatabases" + }, + "DescribeDBSnapshots": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBSnapshots" + }, + "DescribeDBSubnetGroups": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBSubnetGroups" + }, + "DescribeEngineDefaultParameters": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "EngineDefaults.Marker", + "result_key": "EngineDefaults.Parameters" + }, + "DescribeEventSubscriptions": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "EventSubscriptionsList" + }, + "DescribeEvents": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "Events" + }, + "DescribeExportTasks": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "ExportTasks" + }, + "DescribeGlobalClusters": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "GlobalClusters" + }, + "DescribeIntegrations": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "Integrations" + }, + "DescribeOptionGroupOptions": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "OptionGroupOptions" + }, + "DescribeOptionGroups": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "OptionGroupsList" + }, + "DescribeOrderableDBInstanceOptions": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "OrderableDBInstanceOptions" + }, + "DescribePendingMaintenanceActions": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "PendingMaintenanceActions" + }, + "DescribeReservedDBInstances": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "ReservedDBInstances" + }, + "DescribeReservedDBInstancesOfferings": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "ReservedDBInstancesOfferings" + }, + "DescribeSourceRegions": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "SourceRegions" + }, + "DescribeTenantDatabases": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "TenantDatabases" + }, + "DownloadDBLogFilePortion": { + "input_token": "Marker", + "limit_key": "NumberOfLines", + "more_results": "AdditionalDataPending", + "output_token": "Marker", + "result_key": "LogFileData" + }, + "ListTagsForResource": { + "result_key": "TagList" + } + } +} \ No newline at end of file diff --git a/src/data/rds_feature/2014-10-31/paginators-1.json.php b/src/data/rds_feature/2014-10-31/paginators-1.json.php new file mode 100644 index 0000000000..3379eef008 --- /dev/null +++ b/src/data/rds_feature/2014-10-31/paginators-1.json.php @@ -0,0 +1,3 @@ + [ 'DescribeBlueGreenDeployments' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'BlueGreenDeployments', ], 'DescribeCertificates' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'Certificates', ], 'DescribeDBClusterAutomatedBackups' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBClusterAutomatedBackups', ], 'DescribeDBClusterBacktracks' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBClusterBacktracks', ], 'DescribeDBClusterEndpoints' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBClusterEndpoints', ], 'DescribeDBClusterParameterGroups' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBClusterParameterGroups', ], 'DescribeDBClusterParameters' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'Parameters', ], 'DescribeDBClusterSnapshots' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBClusterSnapshots', ], 'DescribeDBClusters' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBClusters', ], 'DescribeDBEngineVersions' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBEngineVersions', ], 'DescribeDBInstanceAutomatedBackups' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBInstanceAutomatedBackups', ], 'DescribeDBInstances' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBInstances', ], 'DescribeDBLogFiles' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DescribeDBLogFiles', ], 'DescribeDBMajorEngineVersions' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBMajorEngineVersions', ], 'DescribeDBParameterGroups' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBParameterGroups', ], 'DescribeDBParameters' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'Parameters', ], 'DescribeDBProxies' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBProxies', ], 'DescribeDBProxyEndpoints' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBProxyEndpoints', ], 'DescribeDBProxyTargetGroups' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'TargetGroups', ], 'DescribeDBProxyTargets' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'Targets', ], 'DescribeDBRecommendations' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBRecommendations', ], 'DescribeDBSecurityGroups' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBSecurityGroups', ], 'DescribeDBSnapshotTenantDatabases' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBSnapshotTenantDatabases', ], 'DescribeDBSnapshots' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBSnapshots', ], 'DescribeDBSubnetGroups' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'DBSubnetGroups', ], 'DescribeEngineDefaultParameters' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'EngineDefaults.Marker', 'result_key' => 'EngineDefaults.Parameters', ], 'DescribeEventSubscriptions' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'EventSubscriptionsList', ], 'DescribeEvents' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'Events', ], 'DescribeExportTasks' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'ExportTasks', ], 'DescribeGlobalClusters' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'GlobalClusters', ], 'DescribeIntegrations' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'Integrations', ], 'DescribeOptionGroupOptions' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'OptionGroupOptions', ], 'DescribeOptionGroups' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'OptionGroupsList', ], 'DescribeOrderableDBInstanceOptions' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'OrderableDBInstanceOptions', ], 'DescribePendingMaintenanceActions' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'PendingMaintenanceActions', ], 'DescribeReservedDBInstances' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'ReservedDBInstances', ], 'DescribeReservedDBInstancesOfferings' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'ReservedDBInstancesOfferings', ], 'DescribeSourceRegions' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'SourceRegions', ], 'DescribeTenantDatabases' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxRecords', 'output_token' => 'Marker', 'result_key' => 'TenantDatabases', ], 'DownloadDBLogFilePortion' => [ 'input_token' => 'Marker', 'limit_key' => 'NumberOfLines', 'more_results' => 'AdditionalDataPending', 'output_token' => 'Marker', 'result_key' => 'LogFileData', ], 'ListTagsForResource' => [ 'result_key' => 'TagList', ], ],]; diff --git a/src/data/rds_feature/2014-10-31/smoke.json b/src/data/rds_feature/2014-10-31/smoke.json new file mode 100644 index 0000000000..068b23492c --- /dev/null +++ b/src/data/rds_feature/2014-10-31/smoke.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "defaultRegion": "us-west-2", + "testCases": [ + { + "operationName": "DescribeDBEngineVersions", + "input": {}, + "errorExpectedFromService": false + }, + { + "operationName": "DescribeDBInstances", + "input": { + "DBInstanceIdentifier": "fake-id" + }, + "errorExpectedFromService": true + } + ] +} diff --git a/src/data/rds_feature/2014-10-31/smoke.json.php b/src/data/rds_feature/2014-10-31/smoke.json.php new file mode 100644 index 0000000000..8875cb2352 --- /dev/null +++ b/src/data/rds_feature/2014-10-31/smoke.json.php @@ -0,0 +1,3 @@ + 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeDBEngineVersions', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeDBInstances', 'input' => [ 'DBInstanceIdentifier' => 'fake-id', ], 'errorExpectedFromService' => true, ], ],]; diff --git a/src/data/rds_feature/2014-10-31/waiters-1.json b/src/data/rds_feature/2014-10-31/waiters-1.json new file mode 100644 index 0000000000..643412798a --- /dev/null +++ b/src/data/rds_feature/2014-10-31/waiters-1.json @@ -0,0 +1,36 @@ +{ + "waiters": { + "__default__": { + "interval": 30, + "max_attempts": 60 + }, + "__DBInstanceState": { + "operation": "DescribeDBInstances", + "acceptor_path": "DBInstances[].DBInstanceStatus", + "acceptor_type": "output" + }, + "DBInstanceAvailable": { + "extends": "__DBInstanceState", + "success_value": "available", + "failure_value": [ + "deleted", + "deleting", + "failed", + "incompatible-restore", + "incompatible-parameters", + "incompatible-parameters", + "incompatible-restore" + ] + }, + "DBInstanceDeleted": { + "extends": "__DBInstanceState", + "success_value": "deleted", + "failure_value": [ + "creating", + "modifying", + "rebooting", + "resetting-master-credentials" + ] + } + } +} diff --git a/src/data/rds_feature/2014-10-31/waiters-1.json.php b/src/data/rds_feature/2014-10-31/waiters-1.json.php new file mode 100644 index 0000000000..3c5b34811e --- /dev/null +++ b/src/data/rds_feature/2014-10-31/waiters-1.json.php @@ -0,0 +1,3 @@ + [ '__default__' => [ 'interval' => 30, 'max_attempts' => 60, ], '__DBInstanceState' => [ 'operation' => 'DescribeDBInstances', 'acceptor_path' => 'DBInstances[].DBInstanceStatus', 'acceptor_type' => 'output', ], 'DBInstanceAvailable' => [ 'extends' => '__DBInstanceState', 'success_value' => 'available', 'failure_value' => [ 'deleted', 'deleting', 'failed', 'incompatible-restore', 'incompatible-parameters', 'incompatible-parameters', 'incompatible-restore', ], ], 'DBInstanceDeleted' => [ 'extends' => '__DBInstanceState', 'success_value' => 'deleted', 'failure_value' => [ 'creating', 'modifying', 'rebooting', 'resetting-master-credentials', ], ], ],]; diff --git a/src/data/rds_feature/2014-10-31/waiters-2.json b/src/data/rds_feature/2014-10-31/waiters-2.json new file mode 100644 index 0000000000..2ca2aded86 --- /dev/null +++ b/src/data/rds_feature/2014-10-31/waiters-2.json @@ -0,0 +1,394 @@ +{ + "version": 2, + "waiters": { + "DBInstanceAvailable": { + "delay": 30, + "operation": "DescribeDBInstances", + "maxAttempts": 60, + "acceptors": [ + { + "expected": "available", + "matcher": "pathAll", + "state": "success", + "argument": "DBInstances[].DBInstanceStatus" + }, + { + "expected": "deleted", + "matcher": "pathAny", + "state": "failure", + "argument": "DBInstances[].DBInstanceStatus" + }, + { + "expected": "deleting", + "matcher": "pathAny", + "state": "failure", + "argument": "DBInstances[].DBInstanceStatus" + }, + { + "expected": "failed", + "matcher": "pathAny", + "state": "failure", + "argument": "DBInstances[].DBInstanceStatus" + }, + { + "expected": "incompatible-restore", + "matcher": "pathAny", + "state": "failure", + "argument": "DBInstances[].DBInstanceStatus" + }, + { + "expected": "incompatible-parameters", + "matcher": "pathAny", + "state": "failure", + "argument": "DBInstances[].DBInstanceStatus" + } + ] + }, + "DBInstanceDeleted": { + "delay": 30, + "operation": "DescribeDBInstances", + "maxAttempts": 60, + "acceptors": [ + { + "expected": true, + "matcher": "path", + "state": "success", + "argument": "length(DBInstances) == `0`" + }, + { + "expected": "DBInstanceNotFound", + "matcher": "error", + "state": "success" + }, + { + "expected": "creating", + "matcher": "pathAny", + "state": "failure", + "argument": "DBInstances[].DBInstanceStatus" + }, + { + "expected": "modifying", + "matcher": "pathAny", + "state": "failure", + "argument": "DBInstances[].DBInstanceStatus" + }, + { + "expected": "rebooting", + "matcher": "pathAny", + "state": "failure", + "argument": "DBInstances[].DBInstanceStatus" + }, + { + "expected": "resetting-master-credentials", + "matcher": "pathAny", + "state": "failure", + "argument": "DBInstances[].DBInstanceStatus" + } + ] + }, + "DBSnapshotAvailable": { + "delay": 30, + "operation": "DescribeDBSnapshots", + "maxAttempts": 60, + "acceptors": [ + { + "expected": "available", + "matcher": "pathAll", + "state": "success", + "argument": "DBSnapshots[].Status" + }, + { + "expected": "deleted", + "matcher": "pathAny", + "state": "failure", + "argument": "DBSnapshots[].Status" + }, + { + "expected": "deleting", + "matcher": "pathAny", + "state": "failure", + "argument": "DBSnapshots[].Status" + }, + { + "expected": "failed", + "matcher": "pathAny", + "state": "failure", + "argument": "DBSnapshots[].Status" + }, + { + "expected": "incompatible-restore", + "matcher": "pathAny", + "state": "failure", + "argument": "DBSnapshots[].Status" + }, + { + "expected": "incompatible-parameters", + "matcher": "pathAny", + "state": "failure", + "argument": "DBSnapshots[].Status" + } + ] + }, + "DBSnapshotDeleted": { + "delay": 30, + "operation": "DescribeDBSnapshots", + "maxAttempts": 60, + "acceptors": [ + { + "expected": true, + "matcher": "path", + "state": "success", + "argument": "length(DBSnapshots) == `0`" + }, + { + "expected": "DBSnapshotNotFound", + "matcher": "error", + "state": "success" + }, + { + "expected": "creating", + "matcher": "pathAny", + "state": "failure", + "argument": "DBSnapshots[].Status" + }, + { + "expected": "modifying", + "matcher": "pathAny", + "state": "failure", + "argument": "DBSnapshots[].Status" + }, + { + "expected": "rebooting", + "matcher": "pathAny", + "state": "failure", + "argument": "DBSnapshots[].Status" + }, + { + "expected": "resetting-master-credentials", + "matcher": "pathAny", + "state": "failure", + "argument": "DBSnapshots[].Status" + } + ] + }, + "DBClusterSnapshotAvailable": { + "delay": 30, + "operation": "DescribeDBClusterSnapshots", + "maxAttempts": 60, + "acceptors": [ + { + "expected": "available", + "matcher": "pathAll", + "state": "success", + "argument": "DBClusterSnapshots[].Status" + }, + { + "expected": "deleted", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusterSnapshots[].Status" + }, + { + "expected": "deleting", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusterSnapshots[].Status" + }, + { + "expected": "failed", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusterSnapshots[].Status" + }, + { + "expected": "incompatible-restore", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusterSnapshots[].Status" + }, + { + "expected": "incompatible-parameters", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusterSnapshots[].Status" + } + ] + }, + "DBClusterSnapshotDeleted": { + "delay": 30, + "operation": "DescribeDBClusterSnapshots", + "maxAttempts": 60, + "acceptors": [ + { + "expected": true, + "matcher": "path", + "state": "success", + "argument": "length(DBClusterSnapshots) == `0`" + }, + { + "expected": "DBClusterSnapshotNotFoundFault", + "matcher": "error", + "state": "success" + }, + { + "expected": "creating", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusterSnapshots[].Status" + }, + { + "expected": "modifying", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusterSnapshots[].Status" + }, + { + "expected": "rebooting", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusterSnapshots[].Status" + }, + { + "expected": "resetting-master-credentials", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusterSnapshots[].Status" + } + ] + }, + "DBClusterAvailable" : { + "delay": 30, + "operation": "DescribeDBClusters", + "maxAttempts": 60, + "acceptors": [ + { + "expected": "available", + "matcher": "pathAll", + "state": "success", + "argument": "DBClusters[].Status" + }, + { + "expected": "deleted", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusters[].Status" + }, + { + "expected": "deleting", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusters[].Status" + }, + { + "expected": "failed", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusters[].Status" + }, + { + "expected": "incompatible-restore", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusters[].Status" + }, + { + "expected": "incompatible-parameters", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusters[].Status" + } + ] + }, + "DBClusterDeleted": { + "delay": 30, + "operation": "DescribeDBClusters", + "maxAttempts": 60, + "acceptors": [ + { + "expected": true, + "matcher": "path", + "state": "success", + "argument": "length(DBClusters) == `0`" + }, + { + "expected": "DBClusterNotFoundFault", + "matcher": "error", + "state": "success" + }, + { + "expected": "creating", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusters[].Status" + }, + { + "expected": "modifying", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusters[].Status" + }, + { + "expected": "rebooting", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusters[].Status" + }, + { + "expected": "resetting-master-credentials", + "matcher": "pathAny", + "state": "failure", + "argument": "DBClusters[].Status" + } + ] + }, + "TenantDatabaseAvailable": { + "delay": 30, + "operation": "DescribeTenantDatabases", + "maxAttempts": 60, + "acceptors": [ + { + "expected": "available", + "matcher": "pathAll", + "state": "success", + "argument": "TenantDatabases[].Status" + }, + { + "expected": "deleted", + "matcher": "pathAny", + "state": "failure", + "argument": "TenantDatabases[].Status" + }, + { + "expected": "incompatible-parameters", + "matcher": "pathAny", + "state": "failure", + "argument": "TenantDatabases[].Status" + }, + { + "expected": "incompatible-restore", + "matcher": "pathAny", + "state": "failure", + "argument": "TenantDatabases[].Status" + } + ] + }, + "TenantDatabaseDeleted": { + "delay": 30, + "operation": "DescribeTenantDatabases", + "maxAttempts": 60, + "acceptors": [ + { + "expected": true, + "matcher": "path", + "state": "success", + "argument": "length(TenantDatabases) == `0`" + }, + { + "expected": "DBInstanceNotFoundFault", + "matcher": "error", + "state": "success" + } + ] + } + } +} diff --git a/src/data/rds_feature/2014-10-31/waiters-2.json.php b/src/data/rds_feature/2014-10-31/waiters-2.json.php new file mode 100644 index 0000000000..21f9bc2d13 --- /dev/null +++ b/src/data/rds_feature/2014-10-31/waiters-2.json.php @@ -0,0 +1,3 @@ + 2, 'waiters' => [ 'DBInstanceAvailable' => [ 'delay' => 30, 'operation' => 'DescribeDBInstances', 'maxAttempts' => 60, 'acceptors' => [ [ 'expected' => 'available', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'DBInstances[].DBInstanceStatus', ], [ 'expected' => 'deleted', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBInstances[].DBInstanceStatus', ], [ 'expected' => 'deleting', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBInstances[].DBInstanceStatus', ], [ 'expected' => 'failed', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBInstances[].DBInstanceStatus', ], [ 'expected' => 'incompatible-restore', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBInstances[].DBInstanceStatus', ], [ 'expected' => 'incompatible-parameters', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBInstances[].DBInstanceStatus', ], ], ], 'DBInstanceDeleted' => [ 'delay' => 30, 'operation' => 'DescribeDBInstances', 'maxAttempts' => 60, 'acceptors' => [ [ 'expected' => true, 'matcher' => 'path', 'state' => 'success', 'argument' => 'length(DBInstances) == `0`', ], [ 'expected' => 'DBInstanceNotFound', 'matcher' => 'error', 'state' => 'success', ], [ 'expected' => 'creating', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBInstances[].DBInstanceStatus', ], [ 'expected' => 'modifying', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBInstances[].DBInstanceStatus', ], [ 'expected' => 'rebooting', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBInstances[].DBInstanceStatus', ], [ 'expected' => 'resetting-master-credentials', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBInstances[].DBInstanceStatus', ], ], ], 'DBSnapshotAvailable' => [ 'delay' => 30, 'operation' => 'DescribeDBSnapshots', 'maxAttempts' => 60, 'acceptors' => [ [ 'expected' => 'available', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'DBSnapshots[].Status', ], [ 'expected' => 'deleted', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBSnapshots[].Status', ], [ 'expected' => 'deleting', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBSnapshots[].Status', ], [ 'expected' => 'failed', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBSnapshots[].Status', ], [ 'expected' => 'incompatible-restore', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBSnapshots[].Status', ], [ 'expected' => 'incompatible-parameters', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBSnapshots[].Status', ], ], ], 'DBSnapshotDeleted' => [ 'delay' => 30, 'operation' => 'DescribeDBSnapshots', 'maxAttempts' => 60, 'acceptors' => [ [ 'expected' => true, 'matcher' => 'path', 'state' => 'success', 'argument' => 'length(DBSnapshots) == `0`', ], [ 'expected' => 'DBSnapshotNotFound', 'matcher' => 'error', 'state' => 'success', ], [ 'expected' => 'creating', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBSnapshots[].Status', ], [ 'expected' => 'modifying', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBSnapshots[].Status', ], [ 'expected' => 'rebooting', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBSnapshots[].Status', ], [ 'expected' => 'resetting-master-credentials', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBSnapshots[].Status', ], ], ], 'DBClusterSnapshotAvailable' => [ 'delay' => 30, 'operation' => 'DescribeDBClusterSnapshots', 'maxAttempts' => 60, 'acceptors' => [ [ 'expected' => 'available', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'DBClusterSnapshots[].Status', ], [ 'expected' => 'deleted', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusterSnapshots[].Status', ], [ 'expected' => 'deleting', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusterSnapshots[].Status', ], [ 'expected' => 'failed', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusterSnapshots[].Status', ], [ 'expected' => 'incompatible-restore', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusterSnapshots[].Status', ], [ 'expected' => 'incompatible-parameters', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusterSnapshots[].Status', ], ], ], 'DBClusterSnapshotDeleted' => [ 'delay' => 30, 'operation' => 'DescribeDBClusterSnapshots', 'maxAttempts' => 60, 'acceptors' => [ [ 'expected' => true, 'matcher' => 'path', 'state' => 'success', 'argument' => 'length(DBClusterSnapshots) == `0`', ], [ 'expected' => 'DBClusterSnapshotNotFoundFault', 'matcher' => 'error', 'state' => 'success', ], [ 'expected' => 'creating', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusterSnapshots[].Status', ], [ 'expected' => 'modifying', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusterSnapshots[].Status', ], [ 'expected' => 'rebooting', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusterSnapshots[].Status', ], [ 'expected' => 'resetting-master-credentials', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusterSnapshots[].Status', ], ], ], 'DBClusterAvailable' => [ 'delay' => 30, 'operation' => 'DescribeDBClusters', 'maxAttempts' => 60, 'acceptors' => [ [ 'expected' => 'available', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'DBClusters[].Status', ], [ 'expected' => 'deleted', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusters[].Status', ], [ 'expected' => 'deleting', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusters[].Status', ], [ 'expected' => 'failed', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusters[].Status', ], [ 'expected' => 'incompatible-restore', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusters[].Status', ], [ 'expected' => 'incompatible-parameters', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusters[].Status', ], ], ], 'DBClusterDeleted' => [ 'delay' => 30, 'operation' => 'DescribeDBClusters', 'maxAttempts' => 60, 'acceptors' => [ [ 'expected' => true, 'matcher' => 'path', 'state' => 'success', 'argument' => 'length(DBClusters) == `0`', ], [ 'expected' => 'DBClusterNotFoundFault', 'matcher' => 'error', 'state' => 'success', ], [ 'expected' => 'creating', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusters[].Status', ], [ 'expected' => 'modifying', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusters[].Status', ], [ 'expected' => 'rebooting', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusters[].Status', ], [ 'expected' => 'resetting-master-credentials', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'DBClusters[].Status', ], ], ], 'TenantDatabaseAvailable' => [ 'delay' => 30, 'operation' => 'DescribeTenantDatabases', 'maxAttempts' => 60, 'acceptors' => [ [ 'expected' => 'available', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'TenantDatabases[].Status', ], [ 'expected' => 'deleted', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'TenantDatabases[].Status', ], [ 'expected' => 'incompatible-parameters', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'TenantDatabases[].Status', ], [ 'expected' => 'incompatible-restore', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'TenantDatabases[].Status', ], ], ], 'TenantDatabaseDeleted' => [ 'delay' => 30, 'operation' => 'DescribeTenantDatabases', 'maxAttempts' => 60, 'acceptors' => [ [ 'expected' => true, 'matcher' => 'path', 'state' => 'success', 'argument' => 'length(TenantDatabases) == `0`', ], [ 'expected' => 'DBInstanceNotFoundFault', 'matcher' => 'error', 'state' => 'success', ], ], ], ],]; diff --git a/tests/Integ/S3TransferManagerContext.php b/tests/Integ/S3TransferManagerContext.php index d415830df3..9e62f66f61 100644 --- a/tests/Integ/S3TransferManagerContext.php +++ b/tests/Integ/S3TransferManagerContext.php @@ -7,19 +7,16 @@ use Aws\S3\S3Transfer\Models\DownloadDirectoryRequest; use Aws\S3\S3Transfer\Models\DownloadFileRequest; use Aws\S3\S3Transfer\Models\DownloadRequest; -use Aws\S3\S3Transfer\Models\DownloadResult; use Aws\S3\S3Transfer\Models\ResumeDownloadRequest; use Aws\S3\S3Transfer\Models\ResumeUploadRequest; use Aws\S3\S3Transfer\Models\S3TransferManagerConfig; use Aws\S3\S3Transfer\Models\UploadDirectoryRequest; use Aws\S3\S3Transfer\Models\UploadRequest; use Aws\S3\S3Transfer\Progress\AbstractTransferListener; -use Aws\S3\S3Transfer\Progress\TransferProgressSnapshot; use Aws\S3\S3Transfer\S3TransferManager; use Aws\Test\TestsUtility; use Behat\Behat\Context\Context; use Behat\Behat\Context\SnippetAcceptingContext; -use Behat\Behat\Tester\Exception\PendingException; use GuzzleHttp\Psr7\Utils; use PHPUnit\Framework\Assert; use PHPUnit\Framework\TestCase; @@ -240,7 +237,7 @@ public function iDoUploadThisStreamWithNameAndTheSpecifiedPartSizeOf( ]) ); $s3TransferManager->upload( - new UploadRequest( + new UploadRequest( $this->stream, [ 'Bucket' => self::getResourceName(), @@ -488,7 +485,7 @@ public function iHaveADirectoryWithFilesThatIWantToUpload( /** * @When /^I upload this directory (.*) to s3$/ - */ + */ public function iUploadThisDirectory($directory): void { $s3TransferManager = new S3TransferManager( @@ -666,7 +663,7 @@ public function iUploadTheFileUsingMultipartUploadAndFailsAtPartNumber( $partNumberFail ): void { - // Disable warning from error_log + // Disable warning from trigger_error set_error_handler(function ($errno, $errstr) {}); $fullFilePath = self::$tempDir . DIRECTORY_SEPARATOR . $file; @@ -730,6 +727,7 @@ public function bytesTransferred(array $context): bool } catch (\Exception $e) { Assert::fail("Unexpected exception type: " . get_class($e) . " - " . $e->getMessage()); } finally { + // Restore error logging restore_error_handler(); } } @@ -891,4 +889,269 @@ public function theChecksumValidationWithChecksumAndAlgorithmForFileShouldSuccee $checksumAttributes['ChecksumType'], ); } -} \ No newline at end of file + + /** + * @Given /^I have a file (.*) in S3 that requires multipart download$/ + */ + public function iHaveAFileInS3thatRequiresMultipartDownload($file): void + { + $s3TransferManager = new S3TransferManager( + self::getSdk()->createS3() + ); + // File size min bound is 16 MB in order to have a + // failure after part number 2. + $uploadResult = $s3TransferManager->upload( + new UploadRequest( + Utils::streamFor( + random_bytes( + random_int( + (1024 * 1024 * 8) * random_int(2, 4), + 1024 * 1024 * 45 + ), + ) + ), + [ + 'Bucket' => self::getResourceName(), + 'Key' => $file, + ], + [ + 'multipart_upload_threshold_bytes' => 1024 * 1024 * 8, + ] + ) + )->wait(); + Assert::assertEquals( + 200, + $uploadResult['@metadata']['statusCode'] + ); + } + + /** + * @When /^I try the download for file (.*), with resume enabled, it fails$/ + */ + public function iTryTheDownloadForFileWithResumeEnabledItFails($file): void + { + $destinationFilePath = self::$tempDir . DIRECTORY_SEPARATOR . $file; + $s3TransferManager = new S3TransferManager( + self::getSdk()->createS3() + ); + $failListener = new class extends AbstractTransferListener { + /** @var int */ + private int $failAtTransferredMb = (1024 * 1024 * 8) * 2; + + public function bytesTransferred(array $context): bool + { + $snapshot = $context[AbstractTransferListener::PROGRESS_SNAPSHOT_KEY]; + $transferredBytes = $snapshot->getTransferredBytes(); + + if ($transferredBytes >= $this->failAtTransferredMb) { + throw new S3TransferException( + "Transfer fails at ". $this->failAtTransferredMb." bytes.", + ); + } + + return true; + } + }; + try { + $s3TransferManager->downloadFile( + new DownloadFileRequest( + $destinationFilePath, + true, + new DownloadRequest( + source: [ + 'Bucket' => self::getResourceName(), + 'Key' => $file, + ], + config: [ + 'resume_enabled' => true + ], + listeners: [ + $failListener, + ] + ) + ) + )->wait(); + + Assert::fail("Not expecting to succeed"); + } catch (S3TransferException $e) { + // Exception expected + Assert::assertTrue(true); + } + } + + /** + * @Then /^A resumable file for file (.*) must exists$/ + */ + public function aResumableFileForFileMustExists($file): void + { + $destinationFilePath = self::$tempDir . DIRECTORY_SEPARATOR . $file; + $resumeFileRegex = $destinationFilePath . "*.resume"; + $matchResumeFile = glob($resumeFileRegex); + + Assert::assertFalse( + empty($matchResumeFile), + ); + } + + /** + * @Then /^We resume the download for file (.*) and it should succeed$/ + */ + public function weResumeTheDownloadForFileAndItShouldSucceed($file): void + { + $destinationFilePath = self::$tempDir . DIRECTORY_SEPARATOR . $file; + $resumeFileRegex = $destinationFilePath . ".s3tmp.*.resume"; + $matchResumeFile = glob($resumeFileRegex); + if (empty($matchResumeFile)) { + Assert::fail( + "Resume file must exists for file " . $destinationFilePath, + ); + } + + $resumeFile = $matchResumeFile[0]; + $s3TransferManager = new S3TransferManager( + self::getSdk()->createS3() + ); + $s3TransferManager->resumeDownload( + new ResumeDownloadRequest( + $resumeFile, + ) + )->wait(); + + Assert::assertFileDoesNotExist($resumeFile); + Assert::assertFileExists($destinationFilePath); + } + + /** + * @Given /^I have a file (.*) on disk that requires multipart upload$/ + */ + public function iHaveAFileOnDiskThatRequiresMultipartUpload($file): void + { + $fullFilePath = self::$tempDir . DIRECTORY_SEPARATOR . $file; + file_put_contents( + $fullFilePath, + random_bytes( + random_int( + (1024 * 1024 * 8) * 2, + (1024 * 1024 * 45) + ), + ) + ); + } + + /** + * @When /^I try to upload the file (.*), with resume enabled, it fails$/ + */ + public function iTryToUploadTheFileWithResumeEnabledItFails($file): void + { + $fullFilePath = self::$tempDir . DIRECTORY_SEPARATOR . $file; + $failListener = new class extends AbstractTransferListener { + /** @var int */ + private int $failAtTransferredMb = (1024 * 1024 * 8) * 2; + + public function bytesTransferred(array $context): bool + { + $snapshot = $context[AbstractTransferListener::PROGRESS_SNAPSHOT_KEY]; + $transferredBytes = $snapshot->getTransferredBytes(); + + if ($transferredBytes >= $this->failAtTransferredMb) { + throw new S3TransferException( + "Transfer fails at ". $this->failAtTransferredMb." bytes.", + ); + } + + return true; + } + }; + $s3TransferManager = new S3TransferManager( + self::getSdk()->createS3() + ); + try { + $s3TransferManager->upload( + new UploadRequest( + source: $fullFilePath, + uploadRequestArgs: [ + 'Bucket' => self::getResourceName(), + 'Key' => $file, + ], + config: [ + 'resume_enabled' => true, + 'multipart_upload_threshold_bytes' => 8 * 1024 * 1024, + ], + listeners: [ + $failListener + ] + ) + )->wait(); + + Assert::fail("Not expecting to succeed"); + } catch (S3TransferException $e) { + // Expects a failure + Assert::assertTrue(true); + } + } + + /** + * @Then /^We resume the upload for file (.*) and it should succeed$/ + */ + public function weResumeTheUploadForFileAndItShouldSucceed($file): void + { + $fullFilePath = self::$tempDir . DIRECTORY_SEPARATOR . $file; + $resumeFilePath = $fullFilePath . ".resume"; + Assert::assertFileExists($resumeFilePath); + + $s3TransferManager = new S3TransferManager( + self::getSdk()->createS3() + ); + $s3TransferManager->resumeUpload( + new ResumeUploadRequest( + $resumeFilePath, + ) + )->wait(); + + Assert::assertFileDoesNotExist($resumeFilePath); + } + + /** + * @Then /^The file (.*) in s3 should match the local file$/ + */ + public function theFileInSshouldMatchTheLocalFile($file): void + { + $fullFilePath = self::$tempDir . DIRECTORY_SEPARATOR . $file; + $s3TransferManager = new S3TransferManager( + self::getSdk()->createS3() + ); + $result = $s3TransferManager->download( + new DownloadRequest( + source: [ + 'Bucket' => self::getResourceName(), + 'Key' => $file, + ] + ) + )->wait(); + + $dataResult = $result->getDownloadDataResult(); + + // Make sure sizes are equals + Assert::assertEquals( + filesize($fullFilePath), + $dataResult->getSize(), + ); + + // Make sure contents are equals + $handle = fopen($fullFilePath, "r"); + try { + $chunkSize = 8192; + while (!feof($handle)) { + $fileChunk = fread($handle, $chunkSize); + $streamChunk = $dataResult->read($chunkSize); + + Assert::assertEquals( + $fileChunk, + $streamChunk, + ); + } + } finally { + fclose($handle); + } + } +} diff --git a/tests/S3/S3Transfer/AbstractMultipartDownloaderTest.php b/tests/S3/S3Transfer/AbstractMultipartDownloaderTest.php index 0f42fd1c51..8f1ab4562b 100644 --- a/tests/S3/S3Transfer/AbstractMultipartDownloaderTest.php +++ b/tests/S3/S3Transfer/AbstractMultipartDownloaderTest.php @@ -118,7 +118,7 @@ public function testTransferListenerNotifierNotifiesListenersOnSuccess(): void $requestArgs, [], new StreamDownloadHandler(), - 0, + [], 0, 0, '', @@ -171,7 +171,7 @@ public function testTransferListenerNotifierNotifiesListenersOnFailure(): void $requestArgs, [], new StreamDownloadHandler(), - 0, + [], 0, 0, null, @@ -222,7 +222,7 @@ public function testTransferListenerNotifierWithEmptyListeners(): void $requestArgs, [], new StreamDownloadHandler(), - 0, + [], 0, 0, null, diff --git a/tests/S3/S3Transfer/Models/ResumableTransferTest.php b/tests/S3/S3Transfer/Models/ResumableTransferTest.php new file mode 100644 index 0000000000..902f129bda --- /dev/null +++ b/tests/S3/S3Transfer/Models/ResumableTransferTest.php @@ -0,0 +1,120 @@ +tempDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'resumable-transfer-test/'; + if (!is_dir($this->tempDir)) { + mkdir($this->tempDir, 0777, true); + } + } + + protected function tearDown(): void + { + TestsUtility::cleanUpDir($this->tempDir); + } + + public function testGeneratesChecksumCorrectlyWhenPersisting(): void + { + $resumeFilePath = $this->tempDir . 'test.resume'; + $resumable = new ResumableUpload( + $resumeFilePath, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + ['target_part_size_bytes' => 5242880], + ['transferred_bytes' => 0, 'total_bytes' => 1000], + 'upload-id-123', + [], + '/path/to/source', + 1000, + 5242880, + false + ); + + $resumable->toFile(); + + $this->assertFileExists($resumeFilePath); + $content = json_decode( + file_get_contents($resumeFilePath), + true + ); + $this->assertArrayHasKey('signature', $content); + $this->assertArrayHasKey('data', $content); + + $expectedSignature = hash( + 'sha256', + json_encode( + $content['data'], + JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES + ) + ); + $this->assertEquals($expectedSignature, $content['signature']); + } + + public function testValidatesChecksumWhenRetrieving(): void + { + $resumeFilePath = $this->tempDir . 'test.resume'; + $resumable = new ResumableUpload( + $resumeFilePath, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + ['target_part_size_bytes' => 5242880], + ['transferred_bytes' => 0, 'total_bytes' => 1000], + 'upload-id-123', + [], + '/path/to/source', + 1000, + 5242880, + false + ); + + $resumable->toFile(); + + $content = json_decode( + file_get_contents($resumeFilePath), + true + ); + $content['signature'] = 'invalid-signature'; + file_put_contents($resumeFilePath, json_encode($content)); + + $this->expectException(S3TransferException::class); + $this->expectExceptionMessage('Resume file integrity check failed: signature mismatch'); + ResumableUpload::fromFile($resumeFilePath); + } + + public function testGeneratesCorrectChecksumForResumeData(): void + { + $resumeFilePath = $this->tempDir . 'test.resume'; + $resumable = new ResumableUpload( + $resumeFilePath, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + ['target_part_size_bytes' => 5242880], + ['transferred_bytes' => 500, 'total_bytes' => 1000], + 'upload-id-456', + [['PartNumber' => 1, 'ETag' => 'etag1']], + '/path/to/source', + 1000, + 5242880, + true + ); + + $resumable->toFile(); + + $loaded = ResumableUpload::fromFile($resumeFilePath); + $this->assertEquals('upload-id-456', $loaded->getUploadId()); + $this->assertEquals([ + [ + 'PartNumber' => 1, + 'ETag' => 'etag1' + ] + ], $loaded->getPartsCompleted()); + } +} diff --git a/tests/S3/S3Transfer/MultipartUploaderTest.php b/tests/S3/S3Transfer/MultipartUploaderTest.php index 20876cfba5..ee699f90ab 100644 --- a/tests/S3/S3Transfer/MultipartUploaderTest.php +++ b/tests/S3/S3Transfer/MultipartUploaderTest.php @@ -16,6 +16,7 @@ use Aws\Test\TestsUtility; use Generator; use GuzzleHttp\Promise\Create; +use GuzzleHttp\Promise\RejectedPromise; use GuzzleHttp\Psr7\Response; use GuzzleHttp\Psr7\Utils; use PHPUnit\Framework\TestCase; @@ -24,9 +25,16 @@ class MultipartUploaderTest extends TestCase { + /** @var string */ + private string $tempDir; protected function setUp(): void { + $this->tempDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'multipart-uploader-resume-test/'; + if (!is_dir($this->tempDir)) { + mkdir($this->tempDir, 0777, true); + } + set_error_handler(function ($errno, $errstr) { // Ignore trigger_error logging }); @@ -34,6 +42,7 @@ protected function setUp(): void protected function tearDown(): void { + TestsUtility::cleanUpDir($this->tempDir); restore_error_handler(); } @@ -58,7 +67,7 @@ public function testMultipartUpload( ->getMock(); $s3Client->method('executeAsync') -> willReturnCallback(function ($command) use ($expected) - { + { if ($command->getName() === 'CreateMultipartUpload') { return Create::promiseFor(new Result([ 'UploadId' => 'FooUploadId' @@ -77,7 +86,7 @@ public function testMultipartUpload( } } - return Create::promiseFor(new Result([])); + return Create::promiseFor(new Result([])); }); $s3Client->method('getCommand') -> willReturnCallback(function ($commandName, $args) { @@ -120,7 +129,7 @@ public function testMultipartUpload( $snapshot = $multipartUploader->getCurrentSnapshot(); $this->assertInstanceOf(UploadResult::class, $response); - $this->assertCount($expected['parts'], $multipartUploader->getParts()); + $this->assertCount($expected['parts'], $multipartUploader->getPartsCompleted()); $this->assertEquals($expected['bytesUploaded'], $snapshot->getTransferredBytes()); $this->assertEquals($expected['bytesUploaded'], $snapshot->getTotalBytes()); } finally { @@ -462,10 +471,8 @@ public function testTransferListenerNotifierNotifiesListenersOnSuccess(): void 'concurrency' => 1, 'request_checksum_calculation' => 'when_supported' ], + $listenerNotifier, null, - [], - null, - $listenerNotifier ); $response = $multipartUploader->promise()->wait(); @@ -678,7 +685,7 @@ public function testMultipartUploadAbort() { ->getMock(); $s3Client->method('executeAsync') ->willReturnCallback(function ($command) - use (&$abortMultipartCalled, &$abortMultipartCalledTimes) { + use (&$abortMultipartCalled, &$abortMultipartCalledTimes) { if ($command->getName() === 'CreateMultipartUpload') { return Create::promiseFor(new Result([ 'UploadId' => 'TestUploadId' @@ -777,10 +784,8 @@ public function testTransferListenerNotifierNotifiesListenersOnFailure(): void 'concurrency' => 1, 'request_checksum_calculation' => 'when_supported' ], + $listenerNotifier, null, - [], - null, - $listenerNotifier ); $multipartUploader->promise()->wait(); @@ -828,10 +833,8 @@ public function testTransferListenerNotifierWithEmptyListeners(): void 'target_part_size_bytes' => 5242880, // 5MB 'concurrency' => 1, ], + $listenerNotifier, null, - [], - null, - $listenerNotifier ); $response = $multipartUploader->promise()->wait(); @@ -949,20 +952,20 @@ public function testInputArgumentsPerOperation( )->willReturnCallback( function ($commandName, $args) use (&$calledCommands, $expectedInputArgs) { - if (isset($expectedInputArgs[$commandName])) { - $calledCommands[$commandName] = 0; - $expected = $expectedInputArgs[$commandName]; - foreach ($expected as $key => $value) { - $this->assertArrayHasKey($key, $args); - $this->assertEquals( - $value, - $args[$key] - ); + if (isset($expectedInputArgs[$commandName])) { + $calledCommands[$commandName] = 0; + $expected = $expectedInputArgs[$commandName]; + foreach ($expected as $key => $value) { + $this->assertArrayHasKey($key, $args); + $this->assertEquals( + $value, + $args[$key] + ); + } } - } - return new Command($commandName, $args); - }); + return new Command($commandName, $args); + }); $s3Client->method('executeAsync') ->willReturnCallback(function ($command) use ($errorOnPartNumber, $expectsError) { @@ -1329,6 +1332,147 @@ public function inputArgumentsPerOperationProvider(): Generator /** * @return void */ + public function testGeneratesResumeFileWhenUploadFailsAndResumeIsEnabled(): void + { + $sourceFile = $this->tempDir . 'upload.txt'; + file_put_contents($sourceFile, str_repeat('a', 10485760)); + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->getMock(); + + $callCount = 0; + $mockClient->method('executeAsync') + ->willReturnCallback(function ($command) use (&$callCount) { + $callCount++; + if ($command->getName() === 'CreateMultipartUpload') { + return Create::promiseFor(new Result(['UploadId' => 'test-upload-id'])); + } + if ($command->getName() === 'UploadPart' && $callCount <= 2) { + return Create::promiseFor(new Result(['ETag' => 'test-etag-' . $callCount])); + } + return new RejectedPromise(new \Exception('Upload failed')); + }); + + $mockClient->method('getCommand') + ->willReturnCallback(function ($commandName, $args) { + return new Command($commandName, $args); + }); + + $uploader = new MultipartUploader( + $mockClient, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + $sourceFile, + ['target_part_size_bytes' => 5242880, 'resume_enabled' => true] + ); + + try { + $uploader->promise()->wait(); + } catch (\Exception $e) { + // Expected to fail + } + + $resumeFile = $sourceFile . '.resume'; + $this->assertFileExists($resumeFile); + } + + /** + * @return void + */ + public function testGeneratesResumeFileWithCustomPath(): void + { + $sourceFile = $this->tempDir . 'upload.txt'; + $customResumePath = $this->tempDir . 'custom-resume.resume'; + file_put_contents($sourceFile, str_repeat('a', 10485760)); + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->getMock(); + + $callCount = 0; + $mockClient->method('executeAsync') + ->willReturnCallback(function ($command) use (&$callCount) { + $callCount++; + if ($command->getName() === 'CreateMultipartUpload') { + return Create::promiseFor(new Result(['UploadId' => 'test-upload-id'])); + } + if ($command->getName() === 'UploadPart' && $callCount <= 2) { + return Create::promiseFor(new Result(['ETag' => 'test-etag-' . $callCount])); + } + return new RejectedPromise(new \Exception('Upload failed')); + }); + + $mockClient->method('getCommand') + ->willReturnCallback(function ($commandName, $args) { + return new Command($commandName, $args); + }); + + $uploader = new MultipartUploader( + $mockClient, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + $sourceFile, + [ + 'target_part_size_bytes' => 5242880, + 'resume_enabled' => true, + 'resume_file_path' => $customResumePath + ] + ); + + try { + $uploader->promise()->wait(); + } catch (\Exception $e) { + // Expected to fail + } + + $this->assertFileExists($customResumePath); + } + + /** + * @return void + */ + public function testRemovesResumeFileAfterSuccessfulCompletion(): void + { + $sourceFile = $this->tempDir . 'upload.txt'; + file_put_contents($sourceFile, str_repeat('a', 10485760)); + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->getMock(); + + $mockClient->method('executeAsync') + ->willReturnCallback(function ($command) { + if ($command->getName() === 'CreateMultipartUpload') { + return Create::promiseFor(new Result(['UploadId' => 'test-upload-id'])); + } + if ($command->getName() === 'UploadPart') { + return Create::promiseFor(new Result(['ETag' => 'test-etag'])); + } + if ($command->getName() === 'CompleteMultipartUpload') { + return Create::promiseFor(new Result(['Location' => 's3://test-bucket/test-key'])); + } + return Create::promiseFor(new Result([])); + }); + + $mockClient->method('getCommand') + ->willReturnCallback(function ($commandName, $args) { + return new Command($commandName, $args); + }); + + $uploader = new MultipartUploader( + $mockClient, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + $sourceFile, + ['target_part_size_bytes' => 5242880, 'resume_enabled' => true] + ); + + $resumeFile = $sourceFile . '.resume'; + + $uploader->promise()->wait(); + + $this->assertFileDoesNotExist($resumeFile); + + } + public function testAbortMultipartUploadShowsWarning(): void { // Convert the warning to an exception diff --git a/tests/S3/S3Transfer/PartGetMultipartDownloaderTest.php b/tests/S3/S3Transfer/PartGetMultipartDownloaderTest.php index c1d3b4d50f..3a123cfc38 100644 --- a/tests/S3/S3Transfer/PartGetMultipartDownloaderTest.php +++ b/tests/S3/S3Transfer/PartGetMultipartDownloaderTest.php @@ -7,9 +7,12 @@ use Aws\S3\S3Client; use Aws\S3\S3Transfer\Models\DownloadResult; use Aws\S3\S3Transfer\PartGetMultipartDownloader; +use Aws\S3\S3Transfer\Utils\FileDownloadHandler; use Aws\S3\S3Transfer\Utils\StreamDownloadHandler; +use Aws\Test\TestsUtility; use Generator; use GuzzleHttp\Promise\Create; +use GuzzleHttp\Promise\RejectedPromise; use GuzzleHttp\Psr7\Utils; use PHPUnit\Framework\TestCase; @@ -18,6 +21,23 @@ */ class PartGetMultipartDownloaderTest extends TestCase { + + /** @var string */ + private string $tempDir; + + protected function setUp(): void + { + $this->tempDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'part-downloader-resume-test/'; + if (!is_dir($this->tempDir)) { + mkdir($this->tempDir, 0777, true); + } + } + + protected function tearDown(): void + { + TestsUtility::cleanUpDir($this->tempDir); + } + /** * Tests part get multipart downloader. * @@ -41,12 +61,12 @@ public function testPartGetMultipartDownloader( $remainingToTransfer = $objectSizeInBytes; $mockClient->method('executeAsync') -> willReturnCallback(function ($command) - use ( - $objectSizeInBytes, - $partsCount, - $targetPartSize, - &$remainingToTransfer - ) { + use ( + $objectSizeInBytes, + $partsCount, + $targetPartSize, + &$remainingToTransfer + ) { $currentPartLength = min( $targetPartSize, $remainingToTransfer @@ -125,47 +145,6 @@ public function partGetMultipartDownloaderProvider(): array { ]; } - /** - * Tests nextCommand method increments part number correctly. - * - * @return void - */ - public function testNextCommandIncrementsPartNumber(): void - { - $mockClient = $this->getMockBuilder(S3Client::class) - ->disableOriginalConstructor() - ->getMock(); - - $mockClient->method('getCommand') - ->willReturnCallback(function ($commandName, $args) { - return new Command($commandName, $args); - }); - - $downloader = new PartGetMultipartDownloader( - $mockClient, - [ - 'Bucket' => 'TestBucket', - 'Key' => 'TestKey', - ], - [], - new StreamDownloadHandler() - ); - - // Use reflection to test the protected nextCommand method - $reflection = new \ReflectionClass($downloader); - $nextCommandMethod = $reflection->getMethod('nextCommand'); - - // First call should set part number to 1 - $command1 = $nextCommandMethod->invoke($downloader); - $this->assertEquals(1, $command1['PartNumber']); - $this->assertEquals(1, $downloader->getCurrentPartNo()); - - // Second call should increment to 2 - $command2 = $nextCommandMethod->invoke($downloader); - $this->assertEquals(2, $command2['PartNumber']); - $this->assertEquals(2, $downloader->getCurrentPartNo()); - } - /** * Tests computeObjectDimensions method correctly calculates object size. * @@ -308,4 +287,163 @@ public function ifMatchIsPresentInEachPartRequestAfterFirstProvider(): Generator 'eTag' => 'ETag12345678', ]; } + + /** + * @return void + */ + public function testGeneratesResumeFileWhenDownloadFailsAndResumeIsEnabled(): void + { + $destination = $this->tempDir . 'download.txt'; + $objectSize = 1000; + $partSize = 500; + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->getMock(); + + $callCount = 0; + $mockClient->method('executeAsync') + ->willReturnCallback(function () use (&$callCount, $objectSize, $partSize) { + $callCount++; + if ($callCount === 1) { + return Create::promiseFor(new Result([ + 'Body' => Utils::streamFor(str_repeat('a', $partSize)), + 'ContentRange' => "bytes 0-499/$objectSize", + 'ContentLength' => $partSize, + 'ETag' => 'test-etag', + 'PartsCount' => 2 + ])); + } + return new RejectedPromise(new \Exception('Download failed')); + }); + + $mockClient->method('getCommand') + ->willReturnCallback(function ($commandName, $args) { + return new Command($commandName, $args); + }); + + $handler = new FileDownloadHandler( + $destination, + false, + true, + null, + $partSize + ); + $downloader = new PartGetMultipartDownloader( + $mockClient, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + ['target_part_size_bytes' => $partSize, 'resume_enabled' => true], + $handler + ); + + try { + $downloader->promise()->wait(); + } catch (\Exception $e) { + // Expected to fail + } + + $this->assertFileExists($handler->getResumeFilePath()); + } + + /** + * @return void + */ + public function testGeneratesResumeFileWithCustomPath(): void + { + $destination = $this->tempDir . 'download.txt'; + $customResumePath = $this->tempDir . 'custom-resume.resume'; + $objectSize = 1000; + $partSize = 500; + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->getMock(); + + $callCount = 0; + $mockClient->method('executeAsync') + ->willReturnCallback(function () use (&$callCount, $objectSize, $partSize) { + $callCount++; + if ($callCount === 1) { + return Create::promiseFor(new Result([ + 'Body' => Utils::streamFor(str_repeat('a', $partSize)), + 'ContentRange' => "bytes 0-499/$objectSize", + 'ContentLength' => $partSize, + 'ETag' => 'test-etag', + 'PartsCount' => 2 + ])); + } + return new RejectedPromise(new \Exception('Download failed')); + }); + + $mockClient->method('getCommand') + ->willReturnCallback(function ($commandName, $args) { + return new Command($commandName, $args); + }); + + $handler = new FileDownloadHandler($destination, false, true, null, $partSize); + $downloader = new PartGetMultipartDownloader( + $mockClient, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + ['target_part_size_bytes' => $partSize, 'resume_enabled' => true, 'resume_file_path' => $customResumePath], + $handler + ); + + try { + $downloader->promise()->wait(); + } catch (\Exception $e) { + // Expected to fail + } + + $this->assertFileExists($customResumePath); + } + + /** + * @return void + */ + public function testRemovesResumeFileAfterSuccessfulCompletion(): void + { + $destination = $this->tempDir . 'download.txt'; + $objectSize = 1000; + $partSize = 500; + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->getMock(); + + $mockClient->method('executeAsync') + ->willReturnCallback(function () use ($objectSize, $partSize) { + static $callCount = 0; + $callCount++; + + $from = ($callCount - 1) * $partSize; + $to = min($from + $partSize - 1, $objectSize - 1); + $length = $to - $from + 1; + + return Create::promiseFor(new Result([ + 'Body' => Utils::streamFor(str_repeat('a', $length)), + 'ContentRange' => "bytes $from-$to/$objectSize", + 'ContentLength' => $length, + 'ETag' => 'test-etag', + 'PartsCount' => 2 + ])); + }); + + $mockClient->method('getCommand') + ->willReturnCallback(function ($commandName, $args) { + return new Command($commandName, $args); + }); + + $handler = new FileDownloadHandler($destination, false, true, null, $partSize); + $downloader = new PartGetMultipartDownloader( + $mockClient, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + ['target_part_size_bytes' => $partSize, 'resume_enabled' => true], + $handler + ); + + $resumeFile = $handler->getResumeFilePath(); + $downloader->promise()->wait(); + + $this->assertFileDoesNotExist($resumeFile); + } } diff --git a/tests/S3/S3Transfer/RangeGetMultipartDownloaderTest.php b/tests/S3/S3Transfer/RangeGetMultipartDownloaderTest.php index ab6816e014..80f44f6702 100644 --- a/tests/S3/S3Transfer/RangeGetMultipartDownloaderTest.php +++ b/tests/S3/S3Transfer/RangeGetMultipartDownloaderTest.php @@ -8,9 +8,12 @@ use Aws\S3\S3Transfer\Exception\S3TransferException; use Aws\S3\S3Transfer\Models\DownloadResult; use Aws\S3\S3Transfer\RangeGetMultipartDownloader; +use Aws\S3\S3Transfer\Utils\FileDownloadHandler; use Aws\S3\S3Transfer\Utils\StreamDownloadHandler; +use Aws\Test\TestsUtility; use Generator; use GuzzleHttp\Promise\Create; +use GuzzleHttp\Promise\RejectedPromise; use GuzzleHttp\Psr7\Utils; use PHPUnit\Framework\TestCase; @@ -19,6 +22,22 @@ */ class RangeGetMultipartDownloaderTest extends TestCase { + /** @var string */ + private string $tempDir; + + protected function setUp(): void + { + $this->tempDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'part-downloader-resume-test/'; + if (!is_dir($this->tempDir)) { + mkdir($this->tempDir, 0777, true); + } + } + + protected function tearDown(): void + { + TestsUtility::cleanUpDir($this->tempDir); + } + /** * Tests range get multipart downloader. * @@ -42,12 +61,12 @@ public function testRangeGetMultipartDownloader( $remainingToTransfer = $objectSizeInBytes; $mockClient->method('executeAsync') -> willReturnCallback(function ($command) - use ( - $objectSizeInBytes, - $partsCount, - $targetPartSize, - &$remainingToTransfer - ) { + use ( + $objectSizeInBytes, + $partsCount, + $targetPartSize, + &$remainingToTransfer + ) { $currentPartLength = min( $targetPartSize, $remainingToTransfer @@ -136,7 +155,7 @@ public function testNextCommandGeneratesCorrectRangeHeaders(): void $mockClient = $this->getMockBuilder(S3Client::class) ->disableOriginalConstructor() ->getMock(); - + $mockClient->method('getCommand') ->willReturnCallback(function ($commandName, $args) { return new Command($commandName, $args); @@ -157,17 +176,12 @@ public function testNextCommandGeneratesCorrectRangeHeaders(): void // Use reflection to test the protected nextCommand method $reflection = new \ReflectionClass($downloader); - $nextCommandMethod = $reflection->getMethod('nextCommand'); + $nextCommandMethod = $reflection->getMethod('getFetchCommandArgs'); // First call should create range 0-1023 $command1 = $nextCommandMethod->invoke($downloader); $this->assertEquals('bytes=0-1023', $command1['Range']); $this->assertEquals(1, $downloader->getCurrentPartNo()); - - // Second call should create range 1024-2047 - $command2 = $nextCommandMethod->invoke($downloader); - $this->assertEquals('bytes=1024-2047', $command2['Range']); - $this->assertEquals(2, $downloader->getCurrentPartNo()); } /** @@ -210,48 +224,6 @@ public function testComputeObjectDimensionsForSinglePart(): void $this->assertEquals(512, $downloader->getObjectSizeInBytes()); } - /** - * Tests nextCommand method includes IfMatch header when ETag is present. - * - * @return void - * @throws \ReflectionException - */ - public function testNextCommandIncludesIfMatchWhenETagPresent(): void - { - $mockClient = $this->getMockBuilder(S3Client::class) - ->disableOriginalConstructor() - ->getMock(); - - $mockClient->method('getCommand') - ->willReturnCallback(function ($commandName, $args) { - return new Command($commandName, $args); - }); - - $eTag = '"abc123"'; - $downloader = new RangeGetMultipartDownloader( - $mockClient, - [ - 'Bucket' => 'TestBucket', - 'Key' => 'TestKey', - ], - [ - 'minimum_part_size' => 1024, - ], - new StreamDownloadHandler(), - 0, // currentPartNo - 0, // objectPartsCount - 0, // objectSizeInBytes - $eTag // eTag - ); - - // Use reflection to test the protected nextCommand method - $reflection = new \ReflectionClass($downloader); - $nextCommandMethod = $reflection->getMethod('nextCommand'); - - $command = $nextCommandMethod->invoke($downloader); - $this->assertEquals($eTag, $command['IfMatch']); - } - /** * Test IfMatch is properly called in each part get operation. * @@ -356,4 +328,171 @@ public function ifMatchIsPresentInEachRangeRequestAfterFirstProvider(): Generato 'eTag' => 'ETag12345678', ]; } + + /** + * @return void + */ + public function testGeneratesResumeFileWhenDownloadFailsAndResumeIsEnabled(): void + { + $destination = $this->tempDir . 'download.txt'; + $objectSize = 1000; + $partSize = 500; + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->getMock(); + + $callCount = 0; + $mockClient->method('executeAsync') + ->willReturnCallback(function () use (&$callCount, $objectSize, $partSize) { + $callCount++; + if ($callCount === 1) { + return Create::promiseFor(new Result([ + 'Body' => Utils::streamFor(str_repeat('a', $partSize)), + 'ContentRange' => "bytes 0-499/$objectSize", + 'ContentLength' => $partSize, + 'ETag' => 'test-etag' + ])); + } + + return new RejectedPromise(new \Exception('Download failed')); + }); + + $mockClient->method('getCommand') + ->willReturnCallback(function ($commandName, $args) { + return new Command($commandName, $args); + }); + + $handler = new FileDownloadHandler( + $destination, + false, + true, + null, + $partSize + ); + $downloader = new RangeGetMultipartDownloader( + $mockClient, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + ['target_part_size_bytes' => $partSize, 'resume_enabled' => true], + $handler + ); + + try { + $downloader->promise()->wait(); + } catch (\Exception $e) { + // Expected to fail + } + + $this->assertFileExists($handler->getResumeFilePath()); + } + + /** + * @return void + */ + public function testGeneratesResumeFileWithCustomPath(): void + { + $destination = $this->tempDir . 'download.txt'; + $customResumePath = $this->tempDir . 'custom-resume.resume'; + $objectSize = 1000; + $partSize = 500; + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->getMock(); + + $callCount = 0; + $mockClient->method('executeAsync') + ->willReturnCallback(function () use (&$callCount, $objectSize, $partSize) { + $callCount++; + if ($callCount === 1) { + return Create::promiseFor(new Result([ + 'Body' => Utils::streamFor(str_repeat('a', $partSize)), + 'ContentRange' => "bytes 0-499/$objectSize", + 'ContentLength' => $partSize, + 'ETag' => 'test-etag' + ])); + } + return new RejectedPromise(new \Exception('Download failed')); + }); + + $mockClient->method('getCommand') + ->willReturnCallback(function ($commandName, $args) { + return new Command($commandName, $args); + }); + + $handler = new FileDownloadHandler( + $destination, + false, + true, + null, + $partSize + ); + $downloader = new RangeGetMultipartDownloader( + $mockClient, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + [ + 'target_part_size_bytes' => $partSize, + 'resume_enabled' => true, + 'resume_file_path' => $customResumePath + ], + $handler + ); + + try { + $downloader->promise()->wait(); + } catch (\Exception $e) { + // Expected to fail + } + + $this->assertFileExists($customResumePath); + } + + /** + * @return void + */ + public function testRemovesResumeFileAfterSuccessfulCompletion(): void + { + $destination = $this->tempDir . 'download.txt'; + $objectSize = 1000; + $partSize = 500; + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->getMock(); + + $mockClient->method('executeAsync') + ->willReturnCallback(function () use ($objectSize, $partSize) { + static $callCount = 0; + $callCount++; + + $from = ($callCount - 1) * $partSize; + $to = min($from + $partSize - 1, $objectSize - 1); + $length = $to - $from + 1; + + return Create::promiseFor(new Result([ + 'Body' => Utils::streamFor(str_repeat('a', $length)), + 'ContentRange' => "bytes $from-$to/$objectSize", + 'ContentLength' => $length, + 'ETag' => 'test-etag' + ])); + }); + + $mockClient->method('getCommand') + ->willReturnCallback(function ($commandName, $args) { + return new Command($commandName, $args); + }); + + $handler = new FileDownloadHandler($destination, false, true, null, $partSize); + $downloader = new RangeGetMultipartDownloader( + $mockClient, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + ['target_part_size_bytes' => $partSize, 'resume_enabled' => true], + $handler + ); + + $resumeFile = $handler->getResumeFilePath(); + $downloader->promise()->wait(); + + $this->assertFileDoesNotExist($resumeFile); + } } diff --git a/tests/S3/S3Transfer/S3TransferManagerTest.php b/tests/S3/S3Transfer/S3TransferManagerTest.php index 0bc349d24d..43a487ed1b 100644 --- a/tests/S3/S3Transfer/S3TransferManagerTest.php +++ b/tests/S3/S3Transfer/S3TransferManagerTest.php @@ -15,6 +15,10 @@ use Aws\S3\S3Transfer\Models\DownloadDirectoryResult; use Aws\S3\S3Transfer\Models\DownloadRequest; use Aws\S3\S3Transfer\Models\DownloadResult; +use Aws\S3\S3Transfer\Models\ResumableDownload; +use Aws\S3\S3Transfer\Models\ResumableUpload; +use Aws\S3\S3Transfer\Models\ResumeDownloadRequest; +use Aws\S3\S3Transfer\Models\ResumeUploadRequest; use Aws\S3\S3Transfer\Models\UploadDirectoryRequest; use Aws\S3\S3Transfer\Models\UploadDirectoryResult; use Aws\S3\S3Transfer\Models\UploadRequest; @@ -27,7 +31,6 @@ use Aws\Test\TestsUtility; use Closure; use Exception; -use FilesystemIterator; use Generator; use GuzzleHttp\Promise\Create; use GuzzleHttp\Promise\RejectedPromise; @@ -37,9 +40,7 @@ use PHPUnit\Framework\TestCase; use Psr\Http\Message\RequestInterface; use Psr\Http\Message\StreamInterface; -use RecursiveDirectoryIterator; use RuntimeException; -use function Aws\filter; class S3TransferManagerTest extends TestCase { @@ -47,9 +48,6 @@ class S3TransferManagerTest extends TestCase private const UPLOAD_BASE_CASES = __DIR__ . '/test-cases/upload-single-object.json'; private const UPLOAD_DIRECTORY_BASE_CASES = __DIR__ . '/test-cases/upload-directory.json'; private const DOWNLOAD_DIRECTORY_BASE_CASES = __DIR__ . '/test-cases/download-directory.json'; - private const UPLOAD_DIRECTORY_CROSS_PLATFORM_BASE_CASES = __DIR__ . '/test-cases/upload-directory-cross-platform-compatibility.json'; - private const DOWNLOAD_DIRECTORY_CROSS_PLATFORM_BASE_CASES = __DIR__ . '/test-cases/download-directory-cross-platform-compatibility.json'; - private static array $s3BodyTemplates = [ 'CreateMultipartUpload' => << @@ -81,26 +79,26 @@ class S3TransferManagerTest extends TestCase EOF ]; + + /** @var string */ private string $tempDir; protected function setUp(): void { + $this->tempDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 's3-transfer-manager-resume-test/'; + if (!is_dir($this->tempDir)) { + mkdir($this->tempDir, 0777, true); + } + set_error_handler(function ($errno, $errstr) { // Ignore trigger_error logging }); - $this->tempDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR - . uniqid("transfer-manager-test-"); - if (!is_dir($this->tempDir)) { - mkdir($this->tempDir, 0777, true); - } } protected function tearDown(): void { + TestsUtility::cleanUpDir($this->tempDir); restore_error_handler(); - if (is_dir($this->tempDir)) { - TestsUtility::cleanUpDir($this->tempDir); - } } /** @@ -492,8 +490,8 @@ public function testUploadUsesCustomPartSize(): void $expectedPartCount = 2; $expectedPartSize = 6 * 1024 * 1024; // 6 MBs $transferListener = $this->getMockBuilder(AbstractTransferListener::class) - ->onlyMethods(['bytesTransferred']) - ->getMock(); + ->onlyMethods(['bytesTransferred']) + ->getMock(); $expectedIncrementalPartSize = $expectedPartSize; $transferListener->method('bytesTransferred') ->willReturnCallback(function ($context) use ( @@ -640,37 +638,31 @@ public function testUploadDirectoryValidatesProvidedDirectory( bool $isDirectoryValid ): void { - $directory = $this->tempDir . DIRECTORY_SEPARATOR . $directory; - - // Make sure it exists when is valid directory - if ($isDirectoryValid && !is_dir($directory)) { - mkdir($directory, 0777, true); - } - - // Make sure it does not exist when is an invalid directory - if (!$isDirectoryValid && is_dir($directory)) { - TestsUtility::cleanUpDir($directory); - } - // If the directory is invalid then expect exception if (!$isDirectoryValid) { $this->expectException(InvalidArgumentException::class); $this->expectExceptionMessage( "Please provide a valid directory path. " - . "Provided = " . $directory); + . "Provided = " . $directory); } else { - // If the directory is valid then not exception is expected $this->assertTrue(true); } - $manager = new S3TransferManager( - $this->getS3ClientMock(), - ); - $manager->uploadDirectory( - new UploadDirectoryRequest( - $directory, - "Bucket", - ) - )->wait(); + try { + $manager = new S3TransferManager( + $this->getS3ClientMock(), + ); + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + ) + )->wait(); + } finally { + // Clean up resources + if ($isDirectoryValid && is_dir($directory)) { + TestsUtility::cleanUpDir($directory); + } + } } /** @@ -678,13 +670,23 @@ public function testUploadDirectoryValidatesProvidedDirectory( */ public function uploadDirectoryValidatesProvidedDirectoryProvider(): array { + $validDirectory = sys_get_temp_dir() . "/upload-directory-test"; + if (!is_dir($validDirectory)) { + mkdir($validDirectory, 0777, true); + } + + $invalidDirectory = sys_get_temp_dir() . "/invalid-directory-test"; + if (is_dir($invalidDirectory)) { + rmdir($invalidDirectory); + } + return [ 'valid_directory' => [ - 'directory' => 'valid-directory-test', + 'directory' => $validDirectory, 'is_valid_directory' => true, ], 'invalid_directory' => [ - 'directory' => 'invalid-directory-test', + 'directory' => $invalidDirectory, 'is_valid_directory' => false, ] ]; @@ -699,30 +701,32 @@ public function testUploadDirectoryFailsOnInvalidFilter(): void $this->expectExceptionMessage( 'The provided config `filter` must be callable' ); - $directory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; - // If directory does not exists, then create it + $directory = sys_get_temp_dir() . "/upload-directory-test"; if (!is_dir($directory)) { mkdir($directory, 0777, true); } - $client = $this->getMockBuilder(S3Client::class) - ->disableOriginalConstructor() - ->onlyMethods(['getCommand', 'executeAsync', 'getHandlerList']) - ->getMock(); - $client->method('getHandlerList')->willReturn(new HandlerList()); - $manager = new S3TransferManager( - $client, - ); - $manager->uploadDirectory( - new UploadDirectoryRequest( - $directory, - "Bucket", - [], - [ - 'filter' => 'invalid_filter', - ] - ) - )->wait(); + try { + $client = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->onlyMethods(['getCommand', 'executeAsync']) + ->getMock(); + $manager = new S3TransferManager( + $client, + ); + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + [], + [ + 'filter' => 'invalid_filter', + ] + ) + )->wait(); + } finally { + TestsUtility::cleanUpDir($directory); + } } /** @@ -730,62 +734,63 @@ public function testUploadDirectoryFailsOnInvalidFilter(): void */ public function testUploadDirectoryFileFilter(): void { - $directory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; + $directory = sys_get_temp_dir() . "/upload-directory-test"; if (!is_dir($directory)) { mkdir($directory, 0777, true); } - // Filters just .jpg - $filesToUpload = []; + $filesCreated = []; + $validFilesCount = 0; for ($i = 0; $i < 10; $i++) { - + $fileName = "file-$i"; if ($i % 2 === 0) { - $fileName = "file-$i.jpg"; - $filesToUpload[$fileName] = false; - } else { - $fileName = "file-$i.txt"; + $fileName .= "-valid"; + $validFilesCount++; } - $filePathName = $directory . DIRECTORY_SEPARATOR . $fileName; + $filePathName = $directory . "/" . $fileName . ".txt"; file_put_contents($filePathName, "test"); + $filesCreated[] = $filePathName; } - - $client = $this->getMockBuilder(S3Client::class) - ->disableOriginalConstructor() - ->onlyMethods(['getCommand', 'executeAsync', 'getHandlerList']) - ->getMock(); - $client->method('getCommand') - ->willReturnCallback(function ($commandName, $args) use (&$filesToUpload) { - $objectKey = $args['Key']; - $filesToUpload[$objectKey] = true; - return new Command($commandName, $args); - }); - $client->method('executeAsync') - ->willReturnCallback(function () { - return Create::promiseFor(new Result([])); - }); - $client->method('getHandlerList')->willReturn(new HandlerList()); - $manager = new S3TransferManager( - $client, - ); - $calledTimes = 0; - $manager->uploadDirectory( - new UploadDirectoryRequest( - $directory, - "Bucket", - [], - [ - 'filter' => function (string $objectKey) { - return str_ends_with($objectKey, ".jpg"); - }, - ] - ) - )->wait(); - foreach ($filesToUpload as $key => $uploaded) { - $this->assertTrue( - $uploaded, - "File $key should have been uploaded" + try { + $client = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->onlyMethods(['getCommand', 'executeAsync']) + ->getMock(); + $client->method('getCommand') + ->willReturnCallback(function ($commandName, $args) { + return new Command($commandName, $args); + }); + $client->method('executeAsync') + ->willReturnCallback(function () { + return Create::promiseFor(new Result([])); + }); + $manager = new S3TransferManager( + $client, ); + $calledTimes = 0; + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + [], + [ + 'filter' => function (string $objectKey) { + return str_ends_with($objectKey, "-valid.txt"); + }, + 'upload_object_request_modifier' => function ($requestArgs) use (&$calledTimes) { + $this->assertStringContainsString( + 'valid.txt', + $requestArgs["Key"] + ); + $calledTimes++; + } + ] + ) + )->wait(); + $this->assertEquals($validFilesCount, $calledTimes); + } finally { + TestsUtility::cleanUpDir($directory); } } @@ -794,68 +799,57 @@ public function testUploadDirectoryFileFilter(): void */ public function testUploadDirectoryRecursive(): void { - $directory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; - $subDirectory = $directory . DIRECTORY_SEPARATOR . "sub-directory"; - - // If sub-dir does not exist then lets create it + $directory = sys_get_temp_dir() . "/upload-directory-test"; + $subDirectory = $directory . "/sub-directory"; if (!is_dir($subDirectory)) { mkdir($subDirectory, 0777, true); } $files = [ - $directory . DIRECTORY_SEPARATOR . "dir-file-1.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-2.txt", - $subDirectory . DIRECTORY_SEPARATOR . "subdir-file-1.txt", - $subDirectory . DIRECTORY_SEPARATOR . "subdir-file-2.txt", + $directory . "/dir-file-1.txt", + $directory . "/dir-file-2.txt", + $subDirectory . "/subdir-file-1.txt", + $subDirectory . "/subdir-file-2.txt", ]; $objectKeys = []; foreach ($files as $file) { file_put_contents($file, "test"); - // Take off the directory - $objectKey = str_replace( - $directory . DIRECTORY_SEPARATOR, - "", - $file - ); - - // Replace the dir separator with the s3 delimiter - $objectKey = str_replace( - DIRECTORY_SEPARATOR, - "/", - $objectKey - ); - + // Remove the directory from the file path to leave + // just what will be the object key + $objectKey = str_replace($directory . "/", "", $file); $objectKeys[$objectKey] = false; } - - $client = $this->getMockBuilder(S3Client::class) - ->disableOriginalConstructor() - ->onlyMethods(['getCommand', 'executeAsync', 'getHandlerList']) - ->getMock(); - $client->method('getCommand') - ->willReturnCallback(function ($commandName, $args) use (&$objectKeys) { - $objectKeys[$args["Key"]] = true; - return new Command($commandName, $args); - }); - $client->method('executeAsync') - ->willReturnCallback(function () { - return Create::promiseFor(new Result([])); - }); - $client->method('getHandlerList')->willReturn(new HandlerList()); - $manager = new S3TransferManager( - $client, - ); - $manager->uploadDirectory( - new UploadDirectoryRequest( - $directory, - "Bucket", - [], - [ - 'recursive' => true, - ] - ) - )->wait(); - foreach ($objectKeys as $key => $validated) { - $this->assertTrue($validated); + try { + $client = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->onlyMethods(['getCommand', 'executeAsync']) + ->getMock(); + $client->method('getCommand') + ->willReturnCallback(function ($commandName, $args) use (&$objectKeys) { + $objectKeys[$args["Key"]] = true; + return new Command($commandName, $args); + }); + $client->method('executeAsync') + ->willReturnCallback(function () { + return Create::promiseFor(new Result([])); + }); + $manager = new S3TransferManager( + $client, + ); + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + [], + [ + 'recursive' => true, + ] + ) + )->wait(); + foreach ($objectKeys as $key => $validated) { + $this->assertTrue($validated); + } + } finally { + TestsUtility::cleanUpDir($directory); } } @@ -864,83 +858,63 @@ public function testUploadDirectoryRecursive(): void */ public function testUploadDirectoryNonRecursive(): void { - $directory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; - $subDirectory = $directory . DIRECTORY_SEPARATOR . "sub-directory"; - // Create sub-dir if it does not exist + $directory = sys_get_temp_dir() . "/upload-directory-test"; + $subDirectory = $directory . "/sub-directory"; if (!is_dir($subDirectory)) { mkdir($subDirectory, 0777, true); } $files = [ - $directory . DIRECTORY_SEPARATOR . "dir-file-1.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-2.txt", - $subDirectory . DIRECTORY_SEPARATOR . "subdir-file-1.txt", - $subDirectory . DIRECTORY_SEPARATOR . "subdir-file-2.txt", + $directory . "/dir-file-1.txt", + $directory . "/dir-file-2.txt", + $subDirectory . "/subdir-file-1.txt", + $subDirectory . "/subdir-file-2.txt", ]; $objectKeys = []; foreach ($files as $file) { file_put_contents($file, "test"); - // Take off the directory - $objectKey = str_replace( - $directory . DIRECTORY_SEPARATOR, - "", - $file - ); - - // Replace the dir separator with the s3 delimiter - $objectKey = str_replace( - DIRECTORY_SEPARATOR, - "/", - $objectKey - ); - + // Remove the directory from the file path to leave + // just what will be the object key + $objectKey = str_replace($directory . "/", "", $file); $objectKeys[$objectKey] = false; } - $client = $this->getMockBuilder(S3Client::class) - ->disableOriginalConstructor() - ->onlyMethods(['getCommand', 'executeAsync', 'getHandlerList']) - ->getMock(); - $client->method('getCommand') - ->willReturnCallback(function ($commandName, $args) use (&$objectKeys) { - $objectKey = $args["Key"]; - $objectKeys[$objectKey] = true; - return new Command($commandName, $args); - }); - $client->method('executeAsync') - ->willReturnCallback(function () { - return Create::promiseFor(new Result([])); - }); - $client->method('getHandlerList')->willReturn(new HandlerList()); - $manager = new S3TransferManager( - $client, - ); - $manager->uploadDirectory( - new UploadDirectoryRequest( - $directory, - "Bucket", - [], - [ - 'recursive' => false, - ] - ) - )->wait(); - $subDirRelative = str_replace( - $directory . DIRECTORY_SEPARATOR, - "", - $subDirectory - ); - foreach ($objectKeys as $key => $validated) { - if (str_contains($key, $subDirRelative)) { - // Files in subdirectory should have been ignored - $this->assertFalse( - $validated, - "Key {$key} should have not been considered" - ); - } else { - $this->assertTrue( - $validated, - "Key {$key} should have been considered" - ); + try { + $client = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->onlyMethods(['getCommand', 'executeAsync']) + ->getMock(); + $client->method('getCommand') + ->willReturnCallback(function ($commandName, $args) use (&$objectKeys) { + $objectKeys[$args["Key"]] = true; + return new Command($commandName, $args); + }); + $client->method('executeAsync') + ->willReturnCallback(function () { + return Create::promiseFor(new Result([])); + }); + $manager = new S3TransferManager( + $client, + ); + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + [], + [ + 'recursive' => false, + ] + ) + )->wait(); + $subDirPrefix = str_replace($directory . "/", "", $subDirectory); + foreach ($objectKeys as $key => $validated) { + if (str_starts_with($key, $subDirPrefix)) { + // Files in subdirectory should have been ignored + $this->assertFalse($validated, "Key {$key} should have not been considered"); + } else { + $this->assertTrue($validated, "Key {$key} should have been considered"); + } } + } finally { + TestsUtility::cleanUpDir($directory); } } @@ -949,94 +923,100 @@ public function testUploadDirectoryNonRecursive(): void */ public function testUploadDirectoryFollowsSymbolicLink(): void { - $directory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; - $linkDirectory = $this->tempDir . DIRECTORY_SEPARATOR . "link-directory-test"; - $symLinkDirectory = $directory . DIRECTORY_SEPARATOR . "upload-directory-test-link"; - // Create directory if it does not exist + $directory = sys_get_temp_dir() . "/upload-directory-test"; + $linkDirectory = sys_get_temp_dir() . "/link-directory-test"; if (!is_dir($directory)) { mkdir($directory, 0777, true); } - - // Create symlink directory if it does not exist if (!is_dir($linkDirectory)) { mkdir($linkDirectory, 0777, true); } - - // Make sure the symlink does not exist + $symLinkDirectory = $directory . "/upload-directory-test-link"; if (is_link($symLinkDirectory)) { unlink($symLinkDirectory); } - - // Now let`s create the symlink, but if its creation fails just skip the test - if (!symlink($linkDirectory, $symLinkDirectory)) { - $this->markTestSkipped( - "Unable to create symbolic link for directory {$symLinkDirectory}" - ); - } - + symlink($linkDirectory, $symLinkDirectory); $files = [ - $directory . DIRECTORY_SEPARATOR . "dir-file-1.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-2.txt", - $symLinkDirectory . DIRECTORY_SEPARATOR . "symlink-file-1.txt", - $symLinkDirectory . DIRECTORY_SEPARATOR . "symlink-file-2.txt", + $directory . "/dir-file-1.txt", + $directory . "/dir-file-2.txt", + $linkDirectory . "/symlink-file-1.txt", + $linkDirectory . "/symlink-file-2.txt", ]; $objectKeys = []; foreach ($files as $file) { file_put_contents($file, "test"); - // Take off the directory - $objectKey = str_replace( - $directory . DIRECTORY_SEPARATOR, - "", - $file - ); + // Remove the directory from the file path to leave + // just what will be the object key + $objectKey = str_replace($directory . "/", "", $file); + $objectKey = str_replace($linkDirectory . "/", "", $objectKey); + if (str_contains($objectKey, 'symlink-file')) { + $objectKey = "upload-directory-test-link/" . $objectKey; + } - // Replace the dir separator with the s3 delimiter - $objectKey = str_replace( - DIRECTORY_SEPARATOR, - "/", - $objectKey - ); $objectKeys[$objectKey] = false; } - - $client = $this->getMockBuilder(S3Client::class) - ->disableOriginalConstructor() - ->onlyMethods(['getCommand', 'executeAsync', 'getHandlerList']) - ->getMock(); - $client->method('getCommand') - ->willReturnCallback(function ($commandName, $args) use (&$objectKeys) { - $objectKey = $args["Key"]; - $objectKeys[$objectKey] = true; - - return new Command($commandName, $args); - }); - $client->method('executeAsync') - ->willReturnCallback(function () { - return Create::promiseFor(new Result([])); - }); - $client->method('getHandlerList')->willReturn(new HandlerList()); - $manager = new S3TransferManager( - $client, - ); - - // Now let's enable follow_symbolic_links and all files should have - // been considered, included the ones in the symlink directory. - $manager->uploadDirectory( - new UploadDirectoryRequest( - $directory, - "Bucket", - [], - [ - 'recursive' => true, - 'follow_symbolic_links' => true, - ] - ) - )->wait(); - foreach ($objectKeys as $key => $validated) { - $this->assertTrue( - $validated, - "Key {$key} should have been considered" + try { + $client = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->onlyMethods(['getCommand', 'executeAsync']) + ->getMock(); + $client->method('getCommand') + ->willReturnCallback(function ($commandName, $args) use (&$objectKeys) { + $objectKeys[$args["Key"]] = true; + return new Command($commandName, $args); + }); + $client->method('executeAsync') + ->willReturnCallback(function () { + return Create::promiseFor(new Result([])); + }); + $manager = new S3TransferManager( + $client, ); + // First lets make sure that when follows_symbolic_link is false + // the directory in the link will not be traversed. + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + [], + [ + 'recursive' => true, + 'follow_symbolic_links' => false, + ] + ) + )->wait(); + foreach ($objectKeys as $key => $validated) { + if (str_contains($key, "symlink")) { + // Files in subdirectory should have been ignored + $this->assertFalse($validated, "Key {$key} should have not been considered"); + } else { + $this->assertTrue($validated, "Key {$key} should have been considered"); + } + } + // Now let's enable follow_symbolic_links and all files should have + // been considered, included the ones in the symlink directory. + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + [], + [ + 'recursive' => true, + 'follow_symbolic_links' => true, + ] + ) + )->wait(); + foreach ($objectKeys as $key => $validated) { + $this->assertTrue($validated, "Key {$key} should have been considered"); + } + } finally { + foreach ($files as $file) { + unlink($file); + } + + unlink($symLinkDirectory); + rmdir($linkDirectory); + rmdir($directory); } } @@ -1044,26 +1024,19 @@ public function testUploadDirectoryFollowsSymbolicLink(): void * @return void */ public function testUploadDirectoryFailsOnCircularSymbolicLinkTraversal() { - $parentDirectory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; - $linkToParent = $parentDirectory . DIRECTORY_SEPARATOR . "link_to_parent"; - - // Make sure the directory is empty + $parentDirectory = sys_get_temp_dir() . "/upload-directory-test"; + $linkToParent = $parentDirectory . "/link_to_parent"; if (is_dir($parentDirectory)) { TestsUtility::cleanUpDir($parentDirectory); } - // Creates the parent directory mkdir($parentDirectory, 0777, true); - - // If is unable to create the symlink then mark the test skipped - if (!symlink($parentDirectory, $linkToParent)) { - $this->markTestSkipped( - "Unable to create symbolic link for directory {$parentDirectory}" - ); - } - + symlink($parentDirectory, $linkToParent); + $operationCompleted = false; try { - $s3Client = $this->getS3ClientMock(); + $s3Client = new S3Client([ + 'region' => 'us-west-2', + ]); $s3TransferManager = new S3TransferManager( $s3Client, ); @@ -1078,14 +1051,20 @@ public function testUploadDirectoryFailsOnCircularSymbolicLinkTraversal() { ] ) )->wait(); + $operationCompleted = true; $this->fail( "Upload directory should have been failed!" ); } catch (RuntimeException $exception) { - $this->assertStringContainsString( - "A circular symbolic link traversal has been detected at", - $exception->getMessage() - ); + if (!$operationCompleted) { + $this->assertStringContainsString( + "A circular symbolic link traversal has been detected at", + $exception->getMessage() + ); + } + } finally { + unlink($linkToParent); + rmdir($parentDirectory); } } @@ -1094,70 +1073,57 @@ public function testUploadDirectoryFailsOnCircularSymbolicLinkTraversal() { */ public function testUploadDirectoryUsesProvidedPrefix(): void { - $directory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; + $directory = sys_get_temp_dir() . "/upload-directory-test"; if (!is_dir($directory)) { mkdir($directory, 0777, true); } $files = [ - $directory . DIRECTORY_SEPARATOR . "dir-file-1.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-2.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-3.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-4.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-5.txt", + $directory . "/dir-file-1.txt", + $directory . "/dir-file-2.txt", + $directory . "/dir-file-3.txt", + $directory . "/dir-file-4.txt", + $directory . "/dir-file-5.txt", ]; $s3Prefix = 'expenses-files/'; $objectKeys = []; foreach ($files as $file) { file_put_contents($file, "test"); - // Take off the directory - $objectKey = str_replace( - $directory . DIRECTORY_SEPARATOR, - "", - $file - ); - - // Replace the dir separator with the s3 delimiter - $objectKey = str_replace( - DIRECTORY_SEPARATOR, - "/", - $objectKey - ); + $objectKey = str_replace($directory . "/", "", $file); $objectKeys[$s3Prefix . $objectKey] = false; } - $client = $this->getMockBuilder(S3Client::class) - ->disableOriginalConstructor() - ->onlyMethods(['getCommand', 'executeAsync', 'getHandlerList']) - ->getMock(); - $client->method('getCommand') - ->willReturnCallback(function ($commandName, $args) use (&$objectKeys) { - $objectKey = $args["Key"]; - $objectKeys[$objectKey] = true; - return new Command($commandName, $args); - }); - $client->method('executeAsync') - ->willReturnCallback(function () { - return Create::promiseFor(new Result([])); - }); - $client->method('getHandlerList')->willReturn(new HandlerList()); - $manager = new S3TransferManager( - $client, - ); - $manager->uploadDirectory( - new UploadDirectoryRequest( - $directory, - "Bucket", - [], - [ - 's3_prefix' => $s3Prefix - ] - ) - )->wait(); - - foreach ($objectKeys as $key => $validated) { - $this->assertTrue( - $validated, - "Key {$key} should have been validated" + try { + $client = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->onlyMethods(['getCommand', 'executeAsync']) + ->getMock(); + $client->method('getCommand') + ->willReturnCallback(function ($commandName, $args) use (&$objectKeys) { + $objectKeys[$args["Key"]] = true; + return new Command($commandName, $args); + }); + $client->method('executeAsync') + ->willReturnCallback(function () { + return Create::promiseFor(new Result([])); + }); + $manager = new S3TransferManager( + $client, ); + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + [], + [ + 's3_prefix' => $s3Prefix + ] + ) + )->wait(); + + foreach ($objectKeys as $key => $validated) { + $this->assertTrue($validated, "Key {$key} should have been validated"); + } + } finally { + TestsUtility::cleanUpDir($directory); } } @@ -1166,70 +1132,61 @@ public function testUploadDirectoryUsesProvidedPrefix(): void */ public function testUploadDirectoryUsesProvidedDelimiter(): void { - $directory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; + $directory = sys_get_temp_dir() . "/upload-directory-test"; if (!is_dir($directory)) { mkdir($directory, 0777, true); } $files = [ - $directory . DIRECTORY_SEPARATOR . "dir-file-1.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-2.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-3.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-4.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-5.txt", + $directory . "/dir-file-1.txt", + $directory . "/dir-file-2.txt", + $directory . "/dir-file-3.txt", + $directory . "/dir-file-4.txt", + $directory . "/dir-file-5.txt", ]; $s3Prefix = 'expenses-files/today/records/'; $s3Delimiter = '|'; $objectKeys = []; foreach ($files as $file) { file_put_contents($file, "test"); - // Take off the directory - $objectKey = str_replace( - $directory . DIRECTORY_SEPARATOR, - "", - $file - ); - - // Replace the dir separator with the s3 delimiter - $objectKey = str_replace( - DIRECTORY_SEPARATOR, - "/", - $objectKey - ); + $objectKey = str_replace($directory . "/", "", $file); $objectKey = $s3Prefix . $objectKey; - $objectKey = str_replace(DIRECTORY_SEPARATOR, $s3Delimiter, $objectKey); + $objectKey = str_replace("/", $s3Delimiter, $objectKey); $objectKeys[$objectKey] = false; } - $client = $this->getMockBuilder(S3Client::class) - ->disableOriginalConstructor() - ->onlyMethods(['getCommand', 'executeAsync', 'getHandlerList']) - ->getMock(); - $client->method('getCommand') - ->willReturnCallback(function ($commandName, $args) use (&$objectKeys) { - $objectKeys[$args["Key"]] = true; - return new Command($commandName, $args); - }); - $client->method('executeAsync') - ->willReturnCallback(function () { - return Create::promiseFor(new Result([])); - }); - $client->method('getHandlerList')->willReturn(new HandlerList()); - $manager = new S3TransferManager( - $client, - ); - $manager->uploadDirectory( - new UploadDirectoryRequest( - $directory, - "Bucket", - [], - [ - 's3_prefix' => $s3Prefix, - 's3_delimiter' => $s3Delimiter, - ] - ) - )->wait(); + try { + $client = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->onlyMethods(['getCommand', 'executeAsync']) + ->getMock(); + $client->method('getCommand') + ->willReturnCallback(function ($commandName, $args) use (&$objectKeys) { + $objectKeys[$args["Key"]] = true; + return new Command($commandName, $args); + }); + $client->method('executeAsync') + ->willReturnCallback(function () { + return Create::promiseFor(new Result([])); + }); + $manager = new S3TransferManager( + $client, + ); + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + [], + [ + 's3_prefix' => $s3Prefix, + 's3_delimiter' => $s3Delimiter, + ] + ) + )->wait(); - foreach ($objectKeys as $key => $validated) { - $this->assertTrue($validated, "Key {$key} should have been validated"); + foreach ($objectKeys as $key => $validated) { + $this->assertTrue($validated, "Key {$key} should have been validated"); + } + } finally { + TestsUtility::cleanUpDir($directory); } } @@ -1240,24 +1197,28 @@ public function testUploadDirectoryFailsOnInvalidPutObjectRequestCallback(): voi { $this->expectException(InvalidArgumentException::class); $this->expectExceptionMessage("The provided config `upload_object_request_modifier` must be callable."); - $directory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; + $directory = sys_get_temp_dir() . "/upload-directory-test"; if (!is_dir($directory)) { mkdir($directory, 0777, true); } - $client = $this->getS3ClientMock(); - $manager = new S3TransferManager( - $client, - ); - $manager->uploadDirectory( - new UploadDirectoryRequest( - $directory, - "Bucket", - [], - [ - 'upload_object_request_modifier' => false, - ] - ) - )->wait(); + try { + $client = $this->getS3ClientMock(); + $manager = new S3TransferManager( + $client, + ); + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + [], + [ + 'upload_object_request_modifier' => false, + ] + ) + )->wait(); + } finally { + TestsUtility::cleanUpDir($directory); + } } /** @@ -1265,53 +1226,55 @@ public function testUploadDirectoryFailsOnInvalidPutObjectRequestCallback(): voi */ public function testUploadDirectoryPutObjectRequestCallbackWorks(): void { - $directory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; + $directory = sys_get_temp_dir() . "/upload-directory-test"; if (!is_dir($directory)) { mkdir($directory, 0777, true); } $files = [ - $directory . DIRECTORY_SEPARATOR . "dir-file-1.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-2.txt", + $directory . "/dir-file-1.txt", + $directory . "/dir-file-2.txt", ]; foreach ($files as $file) { file_put_contents($file, "test"); } - - $client = $this->getMockBuilder(S3Client::class) - ->disableOriginalConstructor() - ->onlyMethods(['getCommand', 'executeAsync', 'getHandlerList']) - ->getMock(); - $client->method('getCommand') - ->willReturnCallback(function ($commandName, $args) use (&$objectKeys) { - return new Command($commandName, $args); - }); - $client->method('executeAsync') - ->willReturnCallback(function ($command) { - $this->assertEquals("Test", $command['FooParameter']); - - return Create::promiseFor(new Result([])); - }); - $client->method('getHandlerList')->willReturn(new HandlerList()); - $manager = new S3TransferManager( - $client, - ); - $called = 0; - $manager->uploadDirectory( - new UploadDirectoryRequest( - $directory, - "Bucket", - [], - [ - 'upload_object_request_modifier' => function ( - &$requestArgs - ) use (&$called) { - $requestArgs["FooParameter"] = "Test"; - $called++; - }, - ] - ) - )->wait(); - $this->assertEquals(count($files), $called); + try { + $client = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->onlyMethods(['getCommand', 'executeAsync']) + ->getMock(); + $client->method('getCommand') + ->willReturnCallback(function ($commandName, $args) use (&$objectKeys) { + return new Command($commandName, $args); + }); + $client->method('executeAsync') + ->willReturnCallback(function ($command) { + $this->assertEquals("Test", $command['FooParameter']); + + return Create::promiseFor(new Result([])); + }); + $manager = new S3TransferManager( + $client, + ); + $called = 0; + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + [], + [ + 'upload_object_request_modifier' => function ( + &$requestArgs + ) use (&$called) { + $requestArgs["FooParameter"] = "Test"; + $called++; + }, + ] + ) + )->wait(); + $this->assertEquals(count($files), $called); + } finally { + TestsUtility::cleanUpDir($directory); + } } /** @@ -1319,74 +1282,78 @@ public function testUploadDirectoryPutObjectRequestCallbackWorks(): void */ public function testUploadDirectoryUsesFailurePolicy(): void { - $directory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; + $directory = sys_get_temp_dir() . "/upload-directory-test"; if (!is_dir($directory)) { mkdir($directory, 0777, true); } $files = [ - $directory . DIRECTORY_SEPARATOR . "dir-file-1.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-2.txt", + $directory . "/dir-file-1.txt", + $directory . "/dir-file-2.txt", ]; foreach ($files as $file) { file_put_contents($file, "test"); } - $client = new S3Client([ - 'region' => 'us-east-2', - 'handler' => function ($command) { - if (str_contains($command['Key'], "dir-file-2.txt")) { - return Create::rejectionFor( - new Exception("Failed uploading second file") - ); - } + try { + $client = new S3Client([ + 'region' => 'us-east-2', + 'handler' => function ($command) { + if (str_contains($command['Key'], "dir-file-2.txt")) { + return Create::rejectionFor( + new Exception("Failed uploading second file") + ); + } - return Create::promiseFor(new Result([])); - } - ]); - $manager = new S3TransferManager( - $client, - [ - 'concurrency' => 1, // To make uploads to be one after the other - ] - ); - $called = false; - $manager->uploadDirectory( - new UploadDirectoryRequest( - $directory, - "Bucket", - [], + return Create::promiseFor(new Result([])); + } + ]); + $manager = new S3TransferManager( + $client, [ - 'failure_policy' => function ( - array $requestArgs, - array $uploadDirectoryRequestArgs, - \Throwable $reason, - UploadDirectoryResult $uploadDirectoryResponse - ) use ($directory, &$called) { - $called = true; - $this->assertEquals( - $directory, - $uploadDirectoryRequestArgs["source_directory"] - ); - $this->assertEquals( - "Bucket", - $uploadDirectoryRequestArgs["bucket_to"] - ); - $this->assertEquals( - "Failed uploading second file", - $reason->getMessage() - ); - $this->assertEquals( - 1, - $uploadDirectoryResponse->getObjectsUploaded() - ); - $this->assertEquals( - 1, - $uploadDirectoryResponse->getObjectsFailed() - ); - }, + 'concurrency' => 1, // To make uploads to be one after the other ] - ) - )->wait(); - $this->assertTrue($called); + ); + $called = false; + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + [], + [ + 'failure_policy' => function ( + array $requestArgs, + array $uploadDirectoryRequestArgs, + \Throwable $reason, + UploadDirectoryResult $uploadDirectoryResponse + ) use ($directory, &$called) { + $called = true; + $this->assertEquals( + $directory, + $uploadDirectoryRequestArgs["source_directory"] + ); + $this->assertEquals( + "Bucket", + $uploadDirectoryRequestArgs["bucket_to"] + ); + $this->assertEquals( + "Failed uploading second file", + $reason->getMessage() + ); + $this->assertEquals( + 1, + $uploadDirectoryResponse->getObjectsUploaded() + ); + $this->assertEquals( + 1, + $uploadDirectoryResponse->getObjectsFailed() + ); + }, + ] + ) + )->wait(); + $this->assertTrue($called); + } finally { + TestsUtility::cleanUpDir($directory); + } } /** @@ -1396,24 +1363,28 @@ public function testUploadDirectoryFailsOnInvalidFailurePolicy(): void { $this->expectException(InvalidArgumentException::class); $this->expectExceptionMessage("The provided config `failure_policy` must be callable."); - $directory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; + $directory = sys_get_temp_dir() . "/upload-directory-test"; if (!is_dir($directory)) { mkdir($directory, 0777, true); } - $client = $this->getS3ClientMock(); - $manager = new S3TransferManager( - $client - ); - $manager->uploadDirectory( - new UploadDirectoryRequest( - $directory, - "Bucket", - [], - [ - 'failure_policy' => false, - ] - ) - )->wait(); + try { + $client = $this->getS3ClientMock(); + $manager = new S3TransferManager( + $client + ); + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + [], + [ + 'failure_policy' => false, + ] + ) + )->wait(); + } finally { + TestsUtility::cleanUpDir($directory); + } } /** @@ -1421,39 +1392,42 @@ public function testUploadDirectoryFailsOnInvalidFailurePolicy(): void */ public function testUploadDirectoryFailsWhenFileContainsProvidedDelimiter(): void { - $s3Delimiter = "!"; + $s3Delimiter = "*"; $fileNameWithDelimiter = "dir-file-$s3Delimiter.txt"; $this->expectException(S3TransferException::class); $this->expectExceptionMessage( "The filename `$fileNameWithDelimiter` must not contain the provided delimiter `$s3Delimiter`" ); - $directory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; + $directory = sys_get_temp_dir() . "/upload-directory-test"; if (!is_dir($directory)) { mkdir($directory, 0777, true); } $files = [ - $directory . DIRECTORY_SEPARATOR . "dir-file-1.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-2.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-3.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-4.txt", - $directory . DIRECTORY_SEPARATOR . "$fileNameWithDelimiter", + $directory . "/dir-file-1.txt", + $directory . "/dir-file-2.txt", + $directory . "/dir-file-3.txt", + $directory . "/dir-file-4.txt", + $directory . "/$fileNameWithDelimiter", ]; foreach ($files as $file) { file_put_contents($file, "test"); } - - $client = $this->getS3ClientMock(); - $manager = new S3TransferManager( - $client - ); - $manager->uploadDirectory( - new UploadDirectoryRequest( - $directory, - "Bucket", - [], - ['s3_delimiter' => $s3Delimiter] - ) - )->wait(); + try { + $client = $this->getS3ClientMock(); + $manager = new S3TransferManager( + $client + ); + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + [], + ['s3_delimiter' => $s3Delimiter] + ) + )->wait(); + } finally { + TestsUtility::cleanUpDir($directory); + } } /** @@ -1461,70 +1435,62 @@ public function testUploadDirectoryFailsWhenFileContainsProvidedDelimiter(): voi */ public function testUploadDirectoryTracksMultipleFiles(): void { - $directory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; + $directory = sys_get_temp_dir() . "/upload-directory-test"; if (!is_dir($directory)) { mkdir($directory, 0777, true); } $files = [ - $directory . DIRECTORY_SEPARATOR . "dir-file-1.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-2.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-3.txt", - $directory . DIRECTORY_SEPARATOR . "dir-file-4.txt", + $directory . "/dir-file-1.txt", + $directory . "/dir-file-2.txt", + $directory . "/dir-file-3.txt", + $directory . "/dir-file-4.txt", ]; $objectKeys = []; foreach ($files as $file) { file_put_contents($file, "test"); - // Take off the directory - $objectKey = str_replace( - $directory . DIRECTORY_SEPARATOR, - "", - $file - ); - - // Replace the dir separator with the s3 delimiter - $objectKey = str_replace( - DIRECTORY_SEPARATOR, - "/", - $objectKey - ); + $objectKey = str_replace($directory . "/", "", $file); $objectKeys[$objectKey] = false; } - $client = $this->getS3ClientMock(); - $manager = new S3TransferManager( - $client - ); - $transferListener = $this->getMockBuilder(AbstractTransferListener::class) - ->disableOriginalConstructor() - ->getMock(); - $transferListener->expects($this->exactly(count($files))) - ->method('transferInitiated'); - $transferListener->expects($this->exactly(count($files))) - ->method('transferComplete'); - $transferListener->method('bytesTransferred') - ->willReturnCallback(function(array $context) use (&$objectKeys) { - /** @var TransferProgressSnapshot $snapshot */ - $snapshot = $context[AbstractTransferListener::PROGRESS_SNAPSHOT_KEY]; - $objectKeys[$snapshot->getIdentifier()] = true; - - return true; - }); - $manager->uploadDirectory( - new UploadDirectoryRequest( - $directory, - "Bucket", - [], - [], - [ - $transferListener - ] - ) - )->wait(); - foreach ($objectKeys as $key => $validated) { - $this->assertTrue( - $validated, - "The object key `$key` should have been validated." + try { + $client = $this->getS3ClientMock(); + $manager = new S3TransferManager( + $client ); + $transferListener = $this->getMockBuilder(AbstractTransferListener::class) + ->disableOriginalConstructor() + ->getMock(); + $transferListener->expects($this->exactly(count($files))) + ->method('transferInitiated'); + $transferListener->expects($this->exactly(count($files))) + ->method('transferComplete'); + $transferListener->method('bytesTransferred') + ->willReturnCallback(function(array $context) use (&$objectKeys) { + /** @var TransferProgressSnapshot $snapshot */ + $snapshot = $context[AbstractTransferListener::PROGRESS_SNAPSHOT_KEY]; + $objectKeys[$snapshot->getIdentifier()] = true; + + return true; + }); + $manager->uploadDirectory( + new UploadDirectoryRequest( + $directory, + "Bucket", + [], + [], + [ + $transferListener + ] + ) + )->wait(); + foreach ($objectKeys as $key => $validated) { + $this->assertTrue( + $validated, + "The object key `$key` should have been validated." + ); + } + } finally { + TestsUtility::cleanUpDir($directory); } } @@ -1615,6 +1581,8 @@ public function testDownloadWorksWithS3UriAsSource(): void return Create::promiseFor(new Result([ 'Body' => Utils::streamFor(), 'PartsCount' => 1, + 'ContentLength' => random_int(0, 100), + 'ContentRange' => 'bytes 0-1/1', '@metadata' => [] ])); }, @@ -1650,6 +1618,7 @@ public function testDownloadWorksWithBucketAndKeyAsSource(): void return Create::promiseFor(new Result([ 'Body' => Utils::streamFor(), 'PartsCount' => 1, + 'ContentLength' => random_int(0, 100), '@metadata' => [] ])); }, @@ -1703,6 +1672,7 @@ public function testDownloadAppliesChecksumMode( return Create::promiseFor(new Result([ 'Body' => Utils::streamFor(), 'PartsCount' => 1, + 'ContentLength' => random_int(0, 100), '@metadata' => [] ])); } @@ -1820,6 +1790,7 @@ public function testDownloadChoosesMultipartDownloadType( return Create::promiseFor(new Result([ 'Body' => Utils::streamFor(), 'PartsCount' => 1, + 'ContentLength' => random_int(0, 100), '@metadata' => [] ])); } @@ -1890,6 +1861,7 @@ public function testRangeGetMultipartDownloadMinimumPartSize( 'Body' => Utils::streamFor(), 'ContentRange' => "0-$objectSize/$objectSize", 'ETag' => 'TestEtag', + 'ContentLength' => random_int(0, 100), '@metadata' => [] ])); } @@ -1960,45 +1932,49 @@ public function rangeGetMultipartDownloadMinimumPartSizeProvider(): array */ public function testDownloadDirectoryCreatesDestinationDirectory(): void { - $destinationDirectory = $this->tempDir . DIRECTORY_SEPARATOR . uniqid(); + $destinationDirectory = sys_get_temp_dir() . DIRECTORY_SEPARATOR . uniqid(); if (is_dir($destinationDirectory)) { - TestsUtility::cleanUpDir($destinationDirectory); + rmdir($destinationDirectory); } - $client = $this->getS3ClientMock([ - 'getApi' => function () { - $service = $this->getMockBuilder(Service::class) - ->disableOriginalConstructor() - ->onlyMethods(["getPaginatorConfig"]) - ->getMock(); - $service->method('getPaginatorConfig') - ->willReturn([ - 'input_token' => null, - 'output_token' => null, - 'limit_key' => null, - 'result_key' => null, - 'more_results' => null, - ]); - - return $service; - }, - 'getHandlerList' => function () { - return new HandlerList(); - }, - 'executeAsync' => function (CommandInterface $command) { - return Create::promiseFor(new Result([])); - } - ]); - $manager = new S3TransferManager( - $client, - ); - $manager->downloadDirectory( - new DownloadDirectoryRequest( - "Bucket", - $destinationDirectory - ) - )->wait(); - $this->assertFileExists($destinationDirectory); + try { + $client = $this->getS3ClientMock([ + 'getApi' => function () { + $service = $this->getMockBuilder(Service::class) + ->disableOriginalConstructor() + ->onlyMethods(["getPaginatorConfig"]) + ->getMock(); + $service->method('getPaginatorConfig') + ->willReturn([ + 'input_token' => null, + 'output_token' => null, + 'limit_key' => null, + 'result_key' => null, + 'more_results' => null, + ]); + + return $service; + }, + 'getHandlerList' => function () { + return new HandlerList(); + }, + 'executeAsync' => function (CommandInterface $command) { + return Create::promiseFor(new Result([])); + } + ]); + $manager = new S3TransferManager( + $client, + ); + $manager->downloadDirectory( + new DownloadDirectoryRequest( + "Bucket", + $destinationDirectory + ) + )->wait(); + $this->assertFileExists($destinationDirectory); + } finally { + TestsUtility::cleanUpDir($destinationDirectory); + } } /** @@ -2014,64 +1990,67 @@ public function testDownloadDirectoryAppliesS3Prefix( string $expectedS3Prefix ): void { - $destinationDirectory = $this->tempDir . DIRECTORY_SEPARATOR . "download-directory-test"; + $destinationDirectory = sys_get_temp_dir() . "/download-directory-test"; if (!is_dir($destinationDirectory)) { mkdir($destinationDirectory, 0777, true); } + try { + $called = false; + $listObjectsCalled = false; + $client = $this->getS3ClientMock([ + 'executeAsync' => function (CommandInterface $command) use ( + $expectedS3Prefix, + &$called, + &$listObjectsCalled, + ) { + $called = true; + if ($command->getName() === "ListObjectsV2") { + $listObjectsCalled = true; + $this->assertEquals( + $expectedS3Prefix, + $command['Prefix'] + ); + } - $called = false; - $listObjectsCalled = false; - $client = $this->getS3ClientMock([ - 'executeAsync' => function (CommandInterface $command) use ( - $expectedS3Prefix, - &$called, - &$listObjectsCalled, - ) { - $called = true; - if ($command->getName() === "ListObjectsV2") { - $listObjectsCalled = true; - $this->assertEquals( - $expectedS3Prefix, - $command['Prefix'] - ); + return Create::promiseFor(new Result([])); + }, + 'getApi' => function () { + $service = $this->getMockBuilder(Service::class) + ->disableOriginalConstructor() + ->onlyMethods(["getPaginatorConfig"]) + ->getMock(); + $service->method('getPaginatorConfig') + ->willReturn([ + 'input_token' => null, + 'output_token' => null, + 'limit_key' => null, + 'result_key' => null, + 'more_results' => null, + ]); + + return $service; + }, + 'getHandlerList' => function () { + return new HandlerList(); } + ]); + $manager = new S3TransferManager( + $client, + ); + $manager->downloadDirectory( + new DownloadDirectoryRequest( + "Bucket", + $destinationDirectory, + [], + $config + ) + )->wait(); - return Create::promiseFor(new Result([])); - }, - 'getApi' => function () { - $service = $this->getMockBuilder(Service::class) - ->disableOriginalConstructor() - ->onlyMethods(["getPaginatorConfig"]) - ->getMock(); - $service->method('getPaginatorConfig') - ->willReturn([ - 'input_token' => null, - 'output_token' => null, - 'limit_key' => null, - 'result_key' => null, - 'more_results' => null, - ]); - - return $service; - }, - 'getHandlerList' => function () { - return new HandlerList(); - } - ]); - $manager = new S3TransferManager( - $client, - ); - $manager->downloadDirectory( - new DownloadDirectoryRequest( - "Bucket", - $destinationDirectory, - [], - $config - ) - )->wait(); - - $this->assertTrue($called); - $this->assertTrue($listObjectsCalled); + $this->assertTrue($called); + $this->assertTrue($listObjectsCalled); + } finally { + TestsUtility::cleanUpDir($destinationDirectory); + } } /** @@ -2113,50 +2092,54 @@ public function testDownloadDirectoryFailsOnInvalidFilter(): void { $this->expectException(InvalidArgumentException::class); $this->expectExceptionMessage("The provided config `filter` must be callable."); - $destinationDirectory = $this->tempDir . DIRECTORY_SEPARATOR . "download-directory-test"; + $destinationDirectory = sys_get_temp_dir() . "/download-directory-test"; if (!is_dir($destinationDirectory)) { mkdir($destinationDirectory, 0777, true); } - $called = false; - $client = $this->getS3ClientMock([ - 'executeAsync' => function (CommandInterface $command) use ( - &$called, - ) { - $called = true; - return Create::promiseFor(new Result([])); - }, - 'getApi' => function () { - $service = $this->getMockBuilder(Service::class) - ->disableOriginalConstructor() - ->onlyMethods(["getPaginatorConfig"]) - ->getMock(); - $service->method('getPaginatorConfig') - ->willReturn([ - 'input_token' => null, - 'output_token' => null, - 'limit_key' => null, - 'result_key' => null, - 'more_results' => null, - ]); - - return $service; - }, - 'getHandlerList' => function () { - return new HandlerList(); - } - ]); - $manager = new S3TransferManager( - $client, - ); - $manager->downloadDirectory( - new DownloadDirectoryRequest( - "Bucket", - $destinationDirectory, - [], - ['filter' => false] - ) - )->wait(); - $this->assertTrue($called); + try { + $called = false; + $client = $this->getS3ClientMock([ + 'executeAsync' => function (CommandInterface $command) use ( + &$called, + ) { + $called = true; + return Create::promiseFor(new Result([])); + }, + 'getApi' => function () { + $service = $this->getMockBuilder(Service::class) + ->disableOriginalConstructor() + ->onlyMethods(["getPaginatorConfig"]) + ->getMock(); + $service->method('getPaginatorConfig') + ->willReturn([ + 'input_token' => null, + 'output_token' => null, + 'limit_key' => null, + 'result_key' => null, + 'more_results' => null, + ]); + + return $service; + }, + 'getHandlerList' => function () { + return new HandlerList(); + } + ]); + $manager = new S3TransferManager( + $client, + ); + $manager->downloadDirectory( + new DownloadDirectoryRequest( + "Bucket", + $destinationDirectory, + [], + ['filter' => false] + ) + )->wait(); + $this->assertTrue($called); + } finally { + TestsUtility::cleanUpDir($destinationDirectory); + } } /** @@ -2166,51 +2149,54 @@ public function testDownloadDirectoryFailsOnInvalidFailurePolicy(): void { $this->expectException(InvalidArgumentException::class); $this->expectExceptionMessage("The provided config `failure_policy` must be callable."); - $destinationDirectory = $this->tempDir . DIRECTORY_SEPARATOR . "download-directory-test"; + $destinationDirectory = sys_get_temp_dir() . "/download-directory-test"; if (!is_dir($destinationDirectory)) { mkdir($destinationDirectory, 0777, true); } - - $called = false; - $client = $this->getS3ClientMock([ - 'executeAsync' => function (CommandInterface $command) use ( - &$called, - ) { - $called = true; - return Create::promiseFor(new Result([])); - }, - 'getApi' => function () { - $service = $this->getMockBuilder(Service::class) - ->disableOriginalConstructor() - ->onlyMethods(["getPaginatorConfig"]) - ->getMock(); - $service->method('getPaginatorConfig') - ->willReturn([ - 'input_token' => null, - 'output_token' => null, - 'limit_key' => null, - 'result_key' => null, - 'more_results' => null, - ]); - - return $service; - }, - 'getHandlerList' => function () { - return new HandlerList(); - } - ]); - $manager = new S3TransferManager( - $client, - ); - $manager->downloadDirectory( - new DownloadDirectoryRequest( - "Bucket", - $destinationDirectory, - [], - ['failure_policy' => false] - ) - )->wait(); - $this->assertTrue($called); + try { + $called = false; + $client = $this->getS3ClientMock([ + 'executeAsync' => function (CommandInterface $command) use ( + &$called, + ) { + $called = true; + return Create::promiseFor(new Result([])); + }, + 'getApi' => function () { + $service = $this->getMockBuilder(Service::class) + ->disableOriginalConstructor() + ->onlyMethods(["getPaginatorConfig"]) + ->getMock(); + $service->method('getPaginatorConfig') + ->willReturn([ + 'input_token' => null, + 'output_token' => null, + 'limit_key' => null, + 'result_key' => null, + 'more_results' => null, + ]); + + return $service; + }, + 'getHandlerList' => function () { + return new HandlerList(); + } + ]); + $manager = new S3TransferManager( + $client, + ); + $manager->downloadDirectory( + new DownloadDirectoryRequest( + "Bucket", + $destinationDirectory, + [], + ['failure_policy' => false] + ) + )->wait(); + $this->assertTrue($called); + } finally { + TestsUtility::cleanUpDir($destinationDirectory); + } } /** @@ -2218,75 +2204,80 @@ public function testDownloadDirectoryFailsOnInvalidFailurePolicy(): void */ public function testDownloadDirectoryUsesFailurePolicy(): void { - $destinationDirectory = $this->tempDir . DIRECTORY_SEPARATOR . "download-directory-test"; + $destinationDirectory = sys_get_temp_dir() . "/download-directory-test"; if (!is_dir($destinationDirectory)) { mkdir($destinationDirectory, 0777, true); } - $client = new S3Client([ - 'region' => 'us-west-2', - 'handler' => function (CommandInterface $command) { - if ($command->getName() === 'ListObjectsV2') { - return Create::promiseFor(new Result([ - 'Contents' => [ - [ - 'Key' => 'file1.txt', - ], - [ - 'Key' => 'file2.txt', + try { + $client = new S3Client([ + 'region' => 'us-west-2', + 'handler' => function (CommandInterface $command) { + if ($command->getName() === 'ListObjectsV2') { + return Create::promiseFor(new Result([ + 'Contents' => [ + [ + 'Key' => 'file1.txt', + ], + [ + 'Key' => 'file2.txt', + ] ] - ] - ])); - } elseif ($command->getName() === 'GetObject') { - if ($command['Key'] === 'file2.txt') { - return Create::rejectionFor( - new Exception("Failed downloading file") - ); + ])); + } elseif ($command->getName() === 'GetObject') { + if ($command['Key'] === 'file2.txt') { + return Create::rejectionFor( + new Exception("Failed downloading file") + ); + } } - } - return Create::promiseFor(new Result([ - 'Body' => Utils::streamFor(), - 'PartsCount' => 1, - '@metadata' => [] - ])); - } - ]); - $manager = new S3TransferManager( - $client, - ); - $manager->downloadDirectory( - new DownloadDirectoryRequest( - "Bucket", - $destinationDirectory, - [], - ['failure_policy' => function ( - array $requestArgs, - array $uploadDirectoryRequestArgs, - \Throwable $reason, - DownloadDirectoryResult $downloadDirectoryResponse - ) use ($destinationDirectory, &$called) { - $called = true; - $this->assertEquals( - $destinationDirectory, - $uploadDirectoryRequestArgs['destination_directory'] - ); - $this->assertEquals( - "Failed downloading file", - $reason->getMessage() - ); - $this->assertEquals( - 1, - $downloadDirectoryResponse->getObjectsDownloaded() - ); - $this->assertEquals( - 1, - $downloadDirectoryResponse->getObjectsFailed() - ); - }] - ) - )->wait(); - $this->assertTrue($called); + return Create::promiseFor(new Result([ + 'Body' => Utils::streamFor(), + 'PartsCount' => 1, + 'ContentLength' => random_int(1, 100), + '@metadata' => [] + ])); + } + ]); + $manager = new S3TransferManager( + $client, + ); + $manager->downloadDirectory( + new DownloadDirectoryRequest( + "Bucket", + $destinationDirectory, + [], + ['failure_policy' => function ( + array $requestArgs, + array $uploadDirectoryRequestArgs, + \Throwable $reason, + DownloadDirectoryResult $downloadDirectoryResponse + ) use ($destinationDirectory, &$called) { + $called = true; + $this->assertEquals( + $destinationDirectory, + $uploadDirectoryRequestArgs['destination_directory'] + ); + $this->assertEquals( + "Failed downloading file", + $reason->getMessage() + ); + $this->assertEquals( + 1, + $downloadDirectoryResponse->getObjectsDownloaded() + ); + $this->assertEquals( + 1, + $downloadDirectoryResponse->getObjectsFailed() + ); + }] + ) + )->wait(); + $this->assertTrue($called); + } finally { + TestsUtility::cleanUpDir($destinationDirectory); + } } /** @@ -2294,7 +2285,7 @@ public function testDownloadDirectoryUsesFailurePolicy(): void * @param array $objectList * @param array $expectedObjectList * - * @dataProvider downloadDirectoryAppliesFilterProvider + * @dataProvider downloadDirectoryAppliesFilter * * @return void */ @@ -2304,106 +2295,91 @@ public function testDownloadDirectoryAppliesFilter( array $expectedObjectList, ): void { - $destinationDirectory = $this->tempDir . DIRECTORY_SEPARATOR . "download-directory-test"; + $destinationDirectory = sys_get_temp_dir() . "/download-directory-test"; if (!is_dir($destinationDirectory)) { mkdir($destinationDirectory, 0777, true); } - $called = false; - $client = $this->getS3ClientMock([ - 'executeAsync' => function (CommandInterface $command) use ( - $objectList, - &$called, - &$downloadObjectKeys - ) { - $called = true; - if ($command->getName() === 'ListObjectsV2') { + try { + $called = false; + $downloadObjectKeys = []; + foreach ($expectedObjectList as $objectKey) { + $downloadObjectKeys[$objectKey] = false; + } + $client = $this->getS3ClientMock([ + 'executeAsync' => function (CommandInterface $command) use ( + $objectList, + &$called, + &$downloadObjectKeys + ) { + $called = true; + if ($command->getName() === 'ListObjectsV2') { + return Create::promiseFor(new Result([ + 'Contents' => $objectList, + ])); + } elseif ($command->getName() === 'GetObject') { + $downloadObjectKeys[$command['Key']] = true; + } + return Create::promiseFor(new Result([ - 'Contents' => $objectList, + 'Body' => Utils::streamFor(), + 'PartsCount' => 1, + 'ContentLength' => random_int(1, 100), + '@metadata' => [] ])); - } elseif ($command->getName() === 'GetObject') { - $downloadObjectKeys[$command['Key']] = true; + }, + 'getApi' => function () { + $service = $this->getMockBuilder(Service::class) + ->disableOriginalConstructor() + ->onlyMethods(["getPaginatorConfig"]) + ->getMock(); + $service->method('getPaginatorConfig') + ->willReturn([ + 'input_token' => null, + 'output_token' => null, + 'limit_key' => null, + 'result_key' => null, + 'more_results' => null, + ]); + + return $service; + }, + 'getHandlerList' => function () { + return new HandlerList(); } - - return Create::promiseFor(new Result([ - 'Body' => Utils::streamFor(), - 'PartsCount' => 1, - '@metadata' => [] - ])); - }, - 'getApi' => function () { - $service = $this->getMockBuilder(Service::class) - ->disableOriginalConstructor() - ->onlyMethods(["getPaginatorConfig"]) - ->getMock(); - $service->method('getPaginatorConfig') - ->willReturn([ - 'input_token' => null, - 'output_token' => null, - 'limit_key' => null, - 'result_key' => null, - 'more_results' => null, - ]); - - return $service; - }, - 'getHandlerList' => function () { - return new HandlerList(); - } - ]); - $manager = new S3TransferManager( - $client, - ); - $manager->downloadDirectory( - new DownloadDirectoryRequest( - "Bucket", - $destinationDirectory, - [], - ['filter' => $filter] - ) - )->wait(); - - $this->assertTrue($called); - - $dirIterator = new RecursiveDirectoryIterator( - $destinationDirectory - ); - $dirIterator->setFlags(FilesystemIterator::SKIP_DOTS); - // Filter just files - $files = filter($dirIterator, function ($file) { - return !is_dir($file); - }); - $expectedObjectList = array_flip($expectedObjectList); - foreach ($files as $file) { - // Strip the parent directory - $file = str_replace( - $destinationDirectory, - "", - $file - ); - - // Make the separator the one defined in the test values - $file = str_replace( - DIRECTORY_SEPARATOR, - "/", - $file + ]); + $manager = new S3TransferManager( + $client, ); + $manager->downloadDirectory( + new DownloadDirectoryRequest( + "Bucket", + $destinationDirectory, + [], + ['filter' => $filter] + ) + )->wait(); - $this->assertTrue( - isset($expectedObjectList[$file]), - "The file $file should have been downloaded!" - ); + $this->assertTrue($called); + foreach ($downloadObjectKeys as $key => $validated) { + $this->assertTrue( + $validated, + "The key `$key` should have been validated" + ); + } + } finally { + TestsUtility::cleanUpDir($destinationDirectory); } } /** * @return array[] */ - public function downloadDirectoryAppliesFilterProvider(): array + public function downloadDirectoryAppliesFilter(): array { return [ 'filter_1' => [ 'filter' => function (string $objectKey) { - return str_starts_with($objectKey, "folder_2" . DIRECTORY_SEPARATOR); + return str_starts_with($objectKey, "folder_2/"); }, 'object_list' => [ [ @@ -2426,7 +2402,7 @@ public function downloadDirectoryAppliesFilterProvider(): array ], 'filter_2' => [ 'filter' => function (string $objectKey) { - return $objectKey === "folder_2" . DIRECTORY_SEPARATOR . "key_1.txt"; + return $objectKey === "folder_2/key_1.txt"; }, 'object_list' => [ [ @@ -2448,7 +2424,7 @@ public function downloadDirectoryAppliesFilterProvider(): array ], 'filter_3' => [ 'filter' => function (string $objectKey) { - return $objectKey !== "folder_2" . DIRECTORY_SEPARATOR . "key_1.txt"; + return $objectKey !== "folder_2/key_1.txt"; }, 'object_list' => [ [ @@ -2465,9 +2441,9 @@ public function downloadDirectoryAppliesFilterProvider(): array ] ], 'expected_object_list' => [ - "folder_1/key_1.txt", - "folder_1/key_2.txt", "folder_2/key_2.txt", + "folder_1/key_1.txt", + "folder_1/key_1.txt", ] ] ]; @@ -2482,55 +2458,58 @@ public function testDownloadDirectoryFailsOnInvalidGetObjectRequestCallback(): v $this->expectExceptionMessage( "The provided config `download_object_request_modifier` must be callable." ); - $destinationDirectory = $this->tempDir . DIRECTORY_SEPARATOR . "download-directory-test"; + $destinationDirectory = sys_get_temp_dir() . "/download-directory-test"; if (!is_dir($destinationDirectory)) { mkdir($destinationDirectory, 0777, true); } + try { + $client = $this->getS3ClientMock([ + 'executeAsync' => function (CommandInterface $command) { + if ($command->getName() === 'ListObjectsV2') { + return Create::promiseFor(new Result([ + 'Contents' => [], + ])); + } - $client = $this->getS3ClientMock([ - 'executeAsync' => function (CommandInterface $command) { - if ($command->getName() === 'ListObjectsV2') { return Create::promiseFor(new Result([ - 'Contents' => [], + 'Body' => Utils::streamFor(), + '@metadata' => [] ])); + }, + 'getApi' => function () { + $service = $this->getMockBuilder(Service::class) + ->disableOriginalConstructor() + ->onlyMethods(["getPaginatorConfig"]) + ->getMock(); + $service->method('getPaginatorConfig') + ->willReturn([ + 'input_token' => null, + 'output_token' => null, + 'limit_key' => null, + 'result_key' => null, + 'more_results' => null, + ]); + + return $service; + }, + 'getHandlerList' => function () { + return new HandlerList(); } - - return Create::promiseFor(new Result([ - 'Body' => Utils::streamFor(), - '@metadata' => [] - ])); - }, - 'getApi' => function () { - $service = $this->getMockBuilder(Service::class) - ->disableOriginalConstructor() - ->onlyMethods(["getPaginatorConfig"]) - ->getMock(); - $service->method('getPaginatorConfig') - ->willReturn([ - 'input_token' => null, - 'output_token' => null, - 'limit_key' => null, - 'result_key' => null, - 'more_results' => null, - ]); - - return $service; - }, - 'getHandlerList' => function () { - return new HandlerList(); - } - ]); - $manager = new S3TransferManager( - $client, - ); - $manager->downloadDirectory( - new DownloadDirectoryRequest( - "Bucket", - $destinationDirectory, - [], - ['download_object_request_modifier' => false] - ) - )->wait(); + ]); + $manager = new S3TransferManager( + $client, + ); + $manager->downloadDirectory( + new DownloadDirectoryRequest( + "Bucket", + $destinationDirectory, + [], + ['download_object_request_modifier' => false] + ) + )->wait(); + } finally { + TestsUtility::cleanUpDir($destinationDirectory); + } } /** @@ -2538,73 +2517,77 @@ public function testDownloadDirectoryFailsOnInvalidGetObjectRequestCallback(): v */ public function testDownloadDirectoryGetObjectRequestCallbackWorks(): void { - $destinationDirectory = $this->tempDir . DIRECTORY_SEPARATOR . "download-directory-test"; + $destinationDirectory = sys_get_temp_dir() . "/download-directory-test"; if (!is_dir($destinationDirectory)) { mkdir($destinationDirectory, 0777, true); } + try { + $called = false; + $listObjectsContent = [ + [ + 'Key' => 'folder_1/key_1.txt', + ] + ]; + $client = $this->getS3ClientMock([ + 'executeAsync' => function (CommandInterface $command) use ($listObjectsContent) { + if ($command->getName() === 'ListObjectsV2') { + return Create::promiseFor(new Result([ + 'Contents' => $listObjectsContent, + ])); + } - $called = false; - $client = $this->getS3ClientMock([ - 'executeAsync' => function (CommandInterface $command) { - $listObjectsContent = [ - [ - 'Key' => 'folder_1/key_1.txt', - ] - ]; - if ($command->getName() === 'ListObjectsV2') { return Create::promiseFor(new Result([ - 'Contents' => $listObjectsContent, + 'Body' => Utils::streamFor(), + 'PartsCount' => 1, + 'ContentLength' => random_int(1, 100), + '@metadata' => [] ])); + }, + 'getApi' => function () { + $service = $this->getMockBuilder(Service::class) + ->disableOriginalConstructor() + ->onlyMethods(["getPaginatorConfig"]) + ->getMock(); + $service->method('getPaginatorConfig') + ->willReturn([ + 'input_token' => null, + 'output_token' => null, + 'limit_key' => null, + 'result_key' => null, + 'more_results' => null, + ]); + + return $service; + }, + 'getHandlerList' => function () { + return new HandlerList(); } - - return Create::promiseFor(new Result([ - 'Body' => Utils::streamFor(), - 'PartsCount' => 1, - '@metadata' => [] - ])); - }, - 'getApi' => function () { - $service = $this->getMockBuilder(Service::class) - ->disableOriginalConstructor() - ->onlyMethods(["getPaginatorConfig"]) - ->getMock(); - $service->method('getPaginatorConfig') - ->willReturn([ - 'input_token' => null, - 'output_token' => null, - 'limit_key' => null, - 'result_key' => null, - 'more_results' => null, - ]); - - return $service; - }, - 'getHandlerList' => function () { - return new HandlerList(); - } - ]); - $manager = new S3TransferManager( - $client, - ); - $getObjectRequestCallback = function($requestArgs) use (&$called) { - $called = true; - $this->assertTrue(isset($requestArgs['CustomParameter'])); - $this->assertEquals( - 'CustomParameterValue', - $requestArgs['CustomParameter'] + ]); + $manager = new S3TransferManager( + $client, ); - }; - $manager->downloadDirectory( - new DownloadDirectoryRequest( - "Bucket", - $destinationDirectory, - [ - 'CustomParameter' => 'CustomParameterValue' - ], - ['download_object_request_modifier' => $getObjectRequestCallback] - ) - )->wait(); - $this->assertTrue($called); + $getObjectRequestCallback = function($requestArgs) use (&$called) { + $called = true; + $this->assertTrue(isset($requestArgs['CustomParameter'])); + $this->assertEquals( + 'CustomParameterValue', + $requestArgs['CustomParameter'] + ); + }; + $manager->downloadDirectory( + new DownloadDirectoryRequest( + "Bucket", + $destinationDirectory, + [ + 'CustomParameter' => 'CustomParameterValue' + ], + ['download_object_request_modifier' => $getObjectRequestCallback] + ) + )->wait(); + $this->assertTrue($called); + } finally { + TestsUtility::cleanUpDir($destinationDirectory); + } } /** @@ -2620,68 +2603,74 @@ public function testDownloadDirectoryCreateFiles( array $expectedFileKeys, ): void { - $destinationDirectory = $this->tempDir . DIRECTORY_SEPARATOR . "download-directory-test"; + $destinationDirectory = sys_get_temp_dir() . "/download-directory-test"; if (!is_dir($destinationDirectory)) { mkdir($destinationDirectory, 0777, true); } - $called = false; - $client = $this->getS3ClientMock([ - 'executeAsync' => function (CommandInterface $command) use ( - $listObjectsContent, - &$called - ) { - $called = true; - if ($command->getName() === 'ListObjectsV2') { + try { + $called = false; + $client = $this->getS3ClientMock([ + 'executeAsync' => function (CommandInterface $command) use ( + $listObjectsContent, + &$called + ) { + $called = true; + if ($command->getName() === 'ListObjectsV2') { + return Create::promiseFor(new Result([ + 'Contents' => $listObjectsContent, + ])); + } + return Create::promiseFor(new Result([ - 'Contents' => $listObjectsContent, + 'Body' => Utils::streamFor( + "Test file " . $command['Key'] + ), + 'PartsCount' => 1, + 'ContentLength' => random_int(1, 100), + 'ContentRange' => 'bytes 0-1/1', + '@metadata' => [] ])); + }, + 'getApi' => function () { + $service = $this->getMockBuilder(Service::class) + ->disableOriginalConstructor() + ->onlyMethods(["getPaginatorConfig"]) + ->getMock(); + $service->method('getPaginatorConfig') + ->willReturn([ + 'input_token' => null, + 'output_token' => null, + 'limit_key' => null, + 'result_key' => null, + 'more_results' => null, + ]); + + return $service; + }, + 'getHandlerList' => function () { + return new HandlerList(); } - - return Create::promiseFor(new Result([ - 'Body' => Utils::streamFor( - "Test file " . $command['Key'] - ), - 'PartsCount' => 1, - '@metadata' => [] - ])); - }, - 'getApi' => function () { - $service = $this->getMockBuilder(Service::class) - ->disableOriginalConstructor() - ->onlyMethods(["getPaginatorConfig"]) - ->getMock(); - $service->method('getPaginatorConfig') - ->willReturn([ - 'input_token' => null, - 'output_token' => null, - 'limit_key' => null, - 'result_key' => null, - 'more_results' => null, - ]); - - return $service; - }, - 'getHandlerList' => function () { - return new HandlerList(); - } - ]); - $manager = new S3TransferManager( - $client, - ); - $manager->downloadDirectory( - new DownloadDirectoryRequest( - "Bucket", - $destinationDirectory, - ) - )->wait(); - $this->assertTrue($called); - foreach ($expectedFileKeys as $key) { - $file = $destinationDirectory . DIRECTORY_SEPARATOR . $key; - $this->assertFileExists($file); - $this->assertEquals( - "Test file " . $key, - file_get_contents($file) + ]); + $manager = new S3TransferManager( + $client, ); + $manager->downloadDirectory( + new DownloadDirectoryRequest( + "Bucket", + $destinationDirectory, + ) + )->wait(); + $this->assertTrue($called); + foreach ($expectedFileKeys as $key) { + $file = $destinationDirectory . "/" . $key; + $this->assertFileExists($file); + $this->assertEquals( + "Test file " . $key, + file_get_contents($file) + ); + } + } finally { + TestsUtility::cleanUpDir($destinationDirectory); } } @@ -2743,79 +2732,81 @@ public function testResolvesOutsideTargetDirectory( } $bucket = "test-bucket"; - $directory = $this->tempDir . DIRECTORY_SEPARATOR . "test-directory"; - if (is_dir($directory)) { - TestsUtility::cleanUpDir($directory); - } - mkdir($directory, 0777, true); - $called = false; - $client = $this->getS3ClientMock([ - 'executeAsync' => function (CommandInterface $command) use ( - $objects, - &$called - ) { - $called = true; - if ($command->getName() === 'ListObjectsV2') { + $directory = "test-directory"; + try { + $fullDirectoryPath = sys_get_temp_dir() . DIRECTORY_SEPARATOR . $directory; + if (is_dir($fullDirectoryPath)) { + TestsUtility::cleanUpDir($fullDirectoryPath); + } + mkdir($fullDirectoryPath, 0777, true); + $called = false; + $client = $this->getS3ClientMock([ + 'executeAsync' => function (CommandInterface $command) use ( + $objects, + &$called + ) { + $called = true; + if ($command->getName() === 'ListObjectsV2') { + return Create::promiseFor(new Result([ + 'Contents' => $objects, + ])); + } + + $body = Utils::streamFor( + "Test file " . $command['Key'] + ); return Create::promiseFor(new Result([ - 'Contents' => $objects, + 'Body' => $body, + 'PartsCount' => 1, + 'ContentLength' => $body->getSize(), + 'ContentRange' => 'bytes 0-' . $body->getSize() . "/" . $body->getSize(), + '@metadata' => [] ])); + }, + 'getApi' => function () { + $service = $this->getMockBuilder(Service::class) + ->disableOriginalConstructor() + ->onlyMethods(["getPaginatorConfig"]) + ->getMock(); + $service->method('getPaginatorConfig') + ->willReturn([ + 'input_token' => null, + 'output_token' => null, + 'limit_key' => null, + 'result_key' => null, + 'more_results' => null, + ]); + + return $service; + }, + 'getHandlerList' => function () { + return new HandlerList(); } - - return Create::promiseFor(new Result([ - 'Body' => Utils::streamFor( - "Test file " . $command['Key'] - ), - 'PartsCount' => 1, - '@metadata' => [] - ])); - }, - 'getApi' => function () { - $service = $this->getMockBuilder(Service::class) - ->disableOriginalConstructor() - ->onlyMethods(["getPaginatorConfig"]) - ->getMock(); - $service->method('getPaginatorConfig') - ->willReturn([ - 'input_token' => null, - 'output_token' => null, - 'limit_key' => null, - 'result_key' => null, - 'more_results' => null, - ]); - - return $service; - }, - 'getHandlerList' => function () { - return new HandlerList(); - } - ]); - $manager = new S3TransferManager( - $client, - ); - $manager->downloadDirectory( - new DownloadDirectoryRequest( - $bucket, - $directory, - [], - [ - 's3_prefix' => $prefix, - ] - ) - )->wait(); - $this->assertTrue($called); - // Validate the expected file output - if ($expectedOutput['success']) { - $fileName = $expectedOutput['filename']; - // Make sure we use the OS directory separator - $fileName = str_replace( - '/', - DIRECTORY_SEPARATOR, - $fileName - ); - $fullFilePath = $directory . DIRECTORY_SEPARATOR . $fileName; - $this->assertFileExists( - $fullFilePath + ]); + $manager = new S3TransferManager( + $client, ); + $manager->downloadDirectory( + new DownloadDirectoryRequest( + $bucket, + $fullDirectoryPath, + [], + [ + 's3_prefix' => $prefix, + ] + ) + )->wait(); + $this->assertTrue($called); + // Validate the expected file output + if ($expectedOutput['success']) { + $this->assertFileExists( + $fullDirectoryPath + . DIRECTORY_SEPARATOR + . $expectedOutput['filename'] + ); + } + } finally { + TestsUtility::cleanUpDir($directory); } } @@ -2837,18 +2828,6 @@ public function resolvesOutsideTargetDirectoryProvider(): array 'filename' => '2023/Jan/1.png', ] ], - 'download_directory_1_windows_or_linux' => [ - 'prefix' => null, - 'objects' => [ - [ - 'Key' => '2023/Jan/1.png' - ], - ], - 'expected_output' => [ - 'success' => true, - 'filename' => '2023/Jan/1.png', - ] - ], 'download_directory_2' => [ 'prefix' => '2023/Jan/', 'objects' => [ @@ -3034,9 +3013,7 @@ public function __construct( } /** - * @param array $context - * - * @return bool + * @inheritDoc */ public function bytesTransferred(array $context): bool { $snapshot = $context[ @@ -3192,9 +3169,7 @@ public function __construct( } /** - * @param array $context - * - * @return void + * @inheritDoc */ public function bytesTransferred(array $context): bool { $snapshot = $context[ @@ -3247,7 +3222,7 @@ public function bytesTransferred(array $context): bool { /** * @param string $testId * @param array $config - * @param array|null $uploadDirectoryRequestArgs + * @param array $uploadDirectoryRequestArgs * @param array|null $sourceStructure * @param array $expectations * @param array $outcomes @@ -3258,21 +3233,19 @@ public function bytesTransferred(array $context): bool { public function testModeledCasesForUploadDirectory( string $testId, array $config, - ?array $uploadDirectoryRequestArgs, + array $uploadDirectoryRequestArgs, ?array $sourceStructure, array $expectations, array $outcomes ) { $testsToSkip = [ "Test upload directory - S3 directory bucket" => true, - "Test upload directory - Linux case sensitivity (distinct files)" => php_uname('s') !== 'Linux', - "Test upload directory - Windows happy case" => php_uname('s') !== 'Windows' ]; - if ($testsToSkip[$testId] ?? false) { - $this->markTestSkipped("The test with id `$testId` is not supported by this platform"); + $this->markTestSkipped( + "The test `" . $testId . "` is not supported yet." + ); } - // Parse config and request args $this->parseConfigFromCamelCaseToSnakeCase($config); $this->parseConfigFromCamelCaseToSnakeCase($uploadDirectoryRequestArgs); @@ -3304,12 +3277,8 @@ public function testModeledCasesForUploadDirectory( } // Prepare source directory - $sourceDirectory = $this->tempDir . DIRECTORY_SEPARATOR . "upload-directory-test"; - if (!str_starts_with($source, DIRECTORY_SEPARATOR)) { - $source = DIRECTORY_SEPARATOR . $source; - } - - $source = $sourceDirectory . $source; + $sourceDirectory = sys_get_temp_dir() . DIRECTORY_SEPARATOR . "upload-directory-test"; + $source = $sourceDirectory . DIRECTORY_SEPARATOR . $source; if ($sourceStructure !== null) { // Create source folder first if (is_dir($source)) { @@ -3406,6 +3375,8 @@ function (string $operation, ?array $body): StreamInterface { ); } $this->assertTrue(true); + } finally { + TestsUtility::cleanUpDir($sourceDirectory); } } @@ -3433,16 +3404,12 @@ public function testModeledCasesForDownloadDirectory( ) { $testsToSkip = [ "Test download directory - S3 directory bucket" => true, - "Test download directory - Windows happy case" => php_uname('s') !== "Windows", - "Test download directory - Linux case sensitivity (no conflict)" => php_uname('s') !== "Linux", - "Test download directory - Linux special characters allowed" => php_uname('s') !== "Linux", ]; if ($testsToSkip[$testId] ?? false) { $this->markTestSkipped( - "The test with id `$testId` is not supported by this platform" + "The test `" . $testId . "` is not supported yet." ); } - // Parse config and request args $this->parseConfigFromCamelCaseToSnakeCase($config); $this->parseConfigFromCamelCaseToSnakeCase($downloadDirectoryRequestArgs); @@ -3464,7 +3431,7 @@ public function testModeledCasesForDownloadDirectory( }; } // Prepare destination directory - $baseDirectory = $this->tempDir . DIRECTORY_SEPARATOR . "download-directory-test"; + $baseDirectory = sys_get_temp_dir() . DIRECTORY_SEPARATOR . "download-directory-test"; $targetDirectory = $baseDirectory . DIRECTORY_SEPARATOR . $destination; if (is_dir($targetDirectory)) { TestsUtility::cleanUpDir($targetDirectory); @@ -3493,7 +3460,7 @@ function ( if ($operation === 'ListObjectsV2') { $listObjectsV2Template = self::$s3BodyTemplates[$operation]; $listObjectsV2ContentsTemplate = self::$s3BodyTemplates[ - $operation . "::Contents" + $operation . "::Contents" ]; $bodyBuilder = str_replace( "{{Bucket}}", @@ -3512,10 +3479,9 @@ function ( $itemBuilder = $itemBuilder . "\n$listObjectsV2ContentsTemplate"; $itemBuilder = str_replace( ['{Key}', '{Size}'], - [htmlspecialchars($item['key'], ENT_XML1, 'UTF-8'), $item['size']], + [$item['key'], $item['size']], $itemBuilder ); - } $bodyBuilder = str_replace( @@ -3599,6 +3565,8 @@ function ( ); } $this->assertTrue(true); + } finally { + TestsUtility::cleanUpDir($targetDirectory); } } @@ -3628,13 +3596,13 @@ private function getS3ClientWithSequentialResponses( $headers = $response['headers'] ?? []; $body = call_user_func_array( $bodyBuilder, - [ - $response['operation'], - $response['body'] - ?? $response['contents'] + [ + $response['operation'], + $response['body'] + ?? $response['contents'] ?? null, - &$headers - ] + &$headers + ] ); $this->parseCaseHeadersToAmzHeaders($headers); @@ -3728,25 +3696,13 @@ public function modeledUploadCasesProvider(): Generator */ public function modeledUploadDirectoryCasesProvider(): Generator { - $uploadDirectoryCases = json_decode( + $downloadCases = json_decode( file_get_contents( self::UPLOAD_DIRECTORY_BASE_CASES ), true ); - $crossPlatformUploadDirectoryCases = json_decode( - file_get_contents( - self::UPLOAD_DIRECTORY_CROSS_PLATFORM_BASE_CASES - ), - true - ); - - $allUploadDirectoryCases = array_merge( - $uploadDirectoryCases, - $crossPlatformUploadDirectoryCases - ); - - foreach ($allUploadDirectoryCases as $case) { + foreach ($downloadCases as $case) { yield $case['summary'] => [ 'test_id' => $case['summary'], 'config' => $case['config'], @@ -3763,23 +3719,13 @@ public function modeledUploadDirectoryCasesProvider(): Generator */ public function modeledDownloadDirectoryCasesProvider(): Generator { - $downloadDirectoryCases = json_decode( + $downloadCases = json_decode( file_get_contents( self::DOWNLOAD_DIRECTORY_BASE_CASES ), true ); - $crossPlatformDownloadDirectoryCases = json_decode( - file_get_contents( - self::DOWNLOAD_DIRECTORY_CROSS_PLATFORM_BASE_CASES - ), - true - ); - $allDownloadDirectoryCases = array_merge( - $downloadDirectoryCases, - $crossPlatformDownloadDirectoryCases - ); - foreach ($allDownloadDirectoryCases as $case) { + foreach ($downloadCases as $case) { yield $case['summary'] => [ 'test_id' => $case['summary'], 'config' => $case['config'], @@ -3827,10 +3773,10 @@ private function parseCaseHeadersToAmzHeaders(array &$caseHeaders): void default: if (preg_match('/Checksum[A-Z]+/', $key)) { $newKey = 'x-amz-checksum-' . str_replace( - 'Checksum', - '', - $key - ); + 'Checksum', + '', + $key + ); } } @@ -3886,12 +3832,6 @@ private function getS3ClientMock( }; } - if (!isset($methodsCallback['getHandlerList'])) { - $methodsCallback['getHandlerList'] = function () { - return new HandlerList(); - }; - } - $client = $this->getMockBuilder(S3Client::class) ->disableOriginalConstructor() ->onlyMethods(array_keys($methodsCallback)) @@ -3902,4 +3842,359 @@ private function getS3ClientMock( return $client; } + + /** + * @return void + */ + public function testResumeDownloadFailsWithInvalidResumeFile(): void + { + $invalidResumeFile = $this->tempDir . 'invalid.resume'; + file_put_contents($invalidResumeFile, 'invalid json content'); + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->getMock(); + + $manager = new S3TransferManager($mockClient); + $request = new ResumeDownloadRequest($invalidResumeFile); + + $this->expectException(S3TransferException::class); + $this->expectExceptionMessage( + "Resume file `$invalidResumeFile` is not a valid resumable file." + ); + $manager->resumeDownload($request)->wait(); + } + + /** + * @return void + */ + public function testResumeDownloadFailsWhenTemporaryFileNoLongerExists(): void + { + $destination = $this->tempDir . 'download.txt'; + $tempFile = $this->tempDir . 'temp.s3tmp.12345678'; + $resumeFile = $this->tempDir . 'test.resume'; + + $resumable = new ResumableDownload( + $resumeFile, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + ['target_part_size_bytes' => 5242880], + ['transferred_bytes' => 500, 'total_bytes' => 1000], + ['ETag' => 'test-etag', 'ContentLength' => 1000], + [1 => true], + 2, + $tempFile, + 'test-etag', + 1000, + 500, + $destination + ); + $resumable->toFile(); + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->getMock(); + + $manager = new S3TransferManager($mockClient); + $request = new ResumeDownloadRequest($resumeFile); + + $this->expectException(S3TransferException::class); + $this->expectExceptionMessage( + "Cannot resume download: temporary file does not exist: " . $tempFile + ); + $manager->resumeDownload($request)->wait(); + } + + /** + * @return void + */ + public function testResumeUploadFailsWithInvalidResumeFile(): void + { + $invalidResumeFile = $this->tempDir . 'invalid.resume'; + file_put_contents($invalidResumeFile, 'invalid json content'); + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->getMock(); + + $manager = new S3TransferManager($mockClient); + $request = new ResumeUploadRequest($invalidResumeFile); + + $this->expectException(S3TransferException::class); + $this->expectExceptionMessage( + "Resume file `$invalidResumeFile` is not a valid resumable file." + ); + $manager->resumeUpload($request)->wait(); + } + + /** + * @return void + */ + public function testResumeUploadFailsWhenSourceFileNoLongerExists(): void + { + $sourceFile = $this->tempDir . 'upload.txt'; + $resumeFile = $this->tempDir . 'test.resume'; + + $resumable = new ResumableUpload( + $resumeFile, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + ['target_part_size_bytes' => 5242880], + ['transferred_bytes' => 500, 'total_bytes' => 1000], + 'upload-id-123', + [1 => ['PartNumber' => 1, 'ETag' => 'etag1']], + $sourceFile, + 1000, + 500, + false + ); + $resumable->toFile(); + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->getMock(); + + $manager = new S3TransferManager($mockClient); + $request = new ResumeUploadRequest($resumeFile); + + $this->expectException(S3TransferException::class); + $this->expectExceptionMessage( + "Cannot resume upload: source file does not exist: " . $sourceFile + ); + $manager->resumeUpload($request)->wait(); + } + + /** + * @return void + */ + public function testResumeUploadFailsWhenUploadIdNotFoundInS3(): void + { + $sourceFile = $this->tempDir . 'upload.txt'; + file_put_contents($sourceFile, str_repeat('a', 1000)); + $resumeFile = $this->tempDir . 'test.resume'; + $uploadId = 'test-upload-id-123'; + $resumable = new ResumableUpload( + $resumeFile, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + ['target_part_size_bytes' => 500], + ['transferred_bytes' => 500, 'total_bytes' => 1000], + $uploadId, + [1 => ['PartNumber' => 1, 'ETag' => 'etag1']], + $sourceFile, + 1000, + 500, + false + ); + $resumable->toFile(); + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->getMock(); + + $mockClient->method('executeAsync') + ->willReturnCallback(function ($command) { + if ($command->getName() === 'ListMultipartUploads') { + return Create::promiseFor(new Result(['Uploads' => []])); + } + return Create::promiseFor(new Result([])); + }); + + $mockClient->method('getCommand') + ->willReturnCallback(function ($commandName, $args) { + return new Command($commandName, $args); + }); + + $manager = new S3TransferManager($mockClient); + $request = new ResumeUploadRequest($resumeFile); + + $this->expectException(S3TransferException::class); + $this->expectExceptionMessage( + "Cannot resume upload: multipart upload no longer exists (UploadId: " . $uploadId. ")" + ); + $manager->resumeUpload($request)->wait(); + } + + public function testResumeDownloadFailsWhenETagNoLongerMatches(): void + { + $destination = $this->tempDir . 'download.txt'; + $tempFile = $this->tempDir . 'temp.s3tmp.12345678'; + file_put_contents($tempFile, str_repeat("\0", 1000)); + $resumeFile = $this->tempDir . 'test.resume'; + + $resumable = new ResumableDownload( + $resumeFile, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + ['target_part_size_bytes' => 500], + ['transferred_bytes' => 500, 'total_bytes' => 1000], + ['ETag' => 'old-etag', 'ContentLength' => 500], + [1 => true], + 2, + $tempFile, + 'old-etag', + 1000, + 500, + $destination + ); + $resumable->toFile(); + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->onlyMethods(['__call']) + ->getMock(); + + $mockClient->method('__call') + ->willReturnCallback(function ($name, $args) { + if ($name === 'headObject') { + return new Result(['ETag' => 'new-etag']); + } + return new Result([]); + }); + + $manager = new S3TransferManager($mockClient); + $request = new ResumeDownloadRequest($resumeFile); + + $this->expectException(S3TransferException::class); + $this->expectExceptionMessage('ETag mismatch'); + $manager->resumeDownload($request)->wait(); + } + + /** + * @return void + */ + public function testSuccessfullyResumesFailedDownload(): void + { + $destination = $this->tempDir . 'download.txt'; + $tempFile = $this->tempDir . 'temp.s3tmp.12345678'; + file_put_contents($tempFile, str_repeat('a', 500) . str_repeat("\0", 500)); + $resumeFile = $this->tempDir . 'test.resume'; + + $resumable = new ResumableDownload( + $resumeFile, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + [ + 'target_part_size_bytes' => 500, + 'resume_enabled' => true, + 'multipart_download_type' => 'ranged' + ], + ['transferred_bytes' => 500, 'total_bytes' => 1000, 'identifier' => 'test-key'], + ['ETag' => 'test-etag', 'ContentLength' => 500], + [1 => true], + 2, + $tempFile, + 'test-etag', + 1000, + 500, + $destination + ); + $resumable->toFile(); + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->onlyMethods(['__call', 'getCommand', 'executeAsync']) + ->getMock(); + + $mockClient->method('__call') + ->willReturnCallback(function ($name, $args) { + if ($name === 'headObject') { + return new Result(['ETag' => 'test-etag']); + } + return new Result([]); + }); + + $mockClient->method('executeAsync') + ->willReturnCallback(function ($command) { + if ($command->getName() === 'GetObject') { + return Create::promiseFor(new Result([ + 'Body' => Utils::streamFor(str_repeat('b', 500)), + 'ContentRange' => 'bytes 500-999/1000', + 'ContentLength' => 500 + ])); + } + return Create::promiseFor(new Result([])); + }); + + $mockClient->method('getCommand') + ->willReturnCallback(function ($commandName, $args) { + return new Command($commandName, $args); + }); + + $manager = new S3TransferManager($mockClient); + $request = new ResumeDownloadRequest($resumeFile); + + $manager->resumeDownload($request)->wait(); + $this->assertFileExists($destination); + $this->assertEquals( + str_repeat('a', 500).str_repeat('b', 500), + file_get_contents($destination) + ); + } + + /** + * @return void + */ + public function testSuccessfullyResumesFailedUpload(): void + { + $sourceFile = $this->tempDir . 'upload.txt'; + file_put_contents($sourceFile, str_repeat('a', 10485760)); + $resumeFile = $this->tempDir . 'test.resume'; + + $resumable = new ResumableUpload( + $resumeFile, + ['Bucket' => 'test-bucket', 'Key' => 'test-key'], + ['target_part_size_bytes' => 5242880, 'resume_enabled' => true], + ['transferred_bytes' => 5242880, 'total_bytes' => 10485760, 'identifier' => 'test-key'], + 'test-upload-id', + [1 => ['PartNumber' => 1, 'ETag' => 'etag1']], + $sourceFile, + 10485760, + 5242880, + false + ); + $resumable->toFile(); + + $mockClient = $this->getMockBuilder(S3Client::class) + ->disableOriginalConstructor() + ->onlyMethods(['__call', 'getCommand', 'executeAsync']) + ->getMock(); + + $mockClient->method('__call') + ->willReturnCallback(function ($name, $args) { + if ($name === 'listMultipartUploads') { + return new Result([ + 'Uploads' => [ + ['UploadId' => 'test-upload-id', 'Key' => 'test-key'] + ] + ]); + } + return new Result([]); + }); + + $mockClient->method('executeAsync') + ->willReturnCallback(function ($command) { + if ($command->getName() === 'UploadPart') { + return Create::promiseFor(new Result(['ETag' => 'etag2'])); + } + if ($command->getName() === 'CompleteMultipartUpload') { + return Create::promiseFor(new Result(['Location' => 's3://test-bucket/test-key'])); + } + return Create::promiseFor(new Result([])); + }); + + $mockClient->method('getCommand') + ->willReturnCallback(function ($commandName, $args) { + return new Command($commandName, $args); + }); + + $manager = new S3TransferManager($mockClient); + $request = new ResumeUploadRequest($resumeFile); + + $manager->resumeUpload($request)->wait(); + $this->assertFileDoesNotExist($resumeFile); + } + + public function testDefaultRegionIsRequiredWhenUsingDefaultS3Client(): void + { + $this->expectException(S3TransferException::class); + $this->expectExceptionMessage("When using the default S3 Client you must define a default region." + . "\nThe config parameter is `default_region`.`"); + new S3TransferManager(); + } } diff --git a/tests/S3/S3Transfer/Utils/FileDownloadHandlerTest.php b/tests/S3/S3Transfer/Utils/FileDownloadHandlerTest.php new file mode 100644 index 0000000000..2dc6cb90ac --- /dev/null +++ b/tests/S3/S3Transfer/Utils/FileDownloadHandlerTest.php @@ -0,0 +1,262 @@ +tempDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'file-download-handler-test/'; + if (!is_dir($this->tempDir)) { + mkdir($this->tempDir, 0777, true); + } + } + + protected function tearDown(): void + { + TestsUtility::cleanUpDir($this->tempDir); + } + + public function testFailsWhenDestinationExistsAndFailOnDestinationExistsIsTrue(): void + { + $destination = $this->tempDir . 'existing-file.txt'; + file_put_contents($destination, 'existing content'); + + $handler = new FileDownloadHandler($destination, true); + + $this->expectException(FileDownloadException::class); + $this->expectExceptionMessage("The destination '{$destination}' already exists."); + $handler->transferInitiated([]); + } + + public function testFailsWhenDestinationIsDirectory(): void + { + $destination = $this->tempDir . 'directory/'; + mkdir($destination, 0777, true); + + $handler = new FileDownloadHandler($destination, false); + + $this->expectException(FileDownloadException::class); + $this->expectExceptionMessage("The destination '{$destination}' can't be a directory."); + $handler->transferInitiated([]); + } + + public function testCreatesDestinationDirectoryWhenItDoesNotExist(): void + { + $destination = $this->tempDir . 'new-dir/subdir/file.txt'; + $handler = new FileDownloadHandler($destination, false); + + $handler->transferInitiated([]); + + $this->assertDirectoryExists(dirname($destination)); + } + + public function testReplacesDestinationWhenItExistsAndFailOnDestinationExistsIsFalse(): void + { + $destination = $this->tempDir . 'file.txt'; + file_put_contents($destination, 'old content'); + + $handler = new FileDownloadHandler($destination, false); + $handler->transferInitiated([]); + + $response = [ + 'ContentLength' => 11, + 'ContentRange' => 'bytes 0-10/11', + 'Body' => Utils::streamFor('new content') + ]; + $snapshot = new TransferProgressSnapshot('test-key', 11, 11, $response); + + $handler->bytesTransferred([AbstractTransferListener::PROGRESS_SNAPSHOT_KEY => $snapshot]); + $handler->transferComplete([]); + + $this->assertEquals('new content', file_get_contents($destination)); + } + + public function testDoesNotDeleteTemporaryFileWhenResumeIsEnabled(): void + { + $destination = $this->tempDir . 'file.txt'; + $handler = new FileDownloadHandler( + $destination, + false, + true + ); + $handler->transferInitiated([]); + + $response = [ + 'ContentLength' => 10, + 'ContentRange' => 'bytes 0-9/10', + 'Body' => Utils::streamFor('test data!') + ]; + $snapshot = new TransferProgressSnapshot( + 'test-key', + 10, + 10, + $response + ); + + $handler->bytesTransferred([ + AbstractTransferListener::PROGRESS_SNAPSHOT_KEY => $snapshot + ]); + + $tempFile = $handler->getTemporaryFilePath(); + $handler->transferFail([AbstractTransferListener::REASON_KEY => 'Test failure']); + + $this->assertFileExists($tempFile); + } + + public function testOpensExistentFilesWhenTemporaryFileIsGiven(): void + { + $destination = $this->tempDir . 'file.txt'; + $tempFile = $this->tempDir . 'temp.s3tmp.12345678'; + // First 50 bytes with custom value + file_put_contents( + $tempFile, + str_repeat("-", 50), + ); + // Last 50 bytes to be filled by handler + file_put_contents( + $tempFile, + str_repeat("\0", 50), + FILE_APPEND + ); + + $handler = new FileDownloadHandler( + $destination, + false, + true, + $tempFile, + 50 + ); + $handler->transferInitiated([]); + + $response = [ + 'ContentLength' => 50, + 'ContentRange' => 'bytes 50-99/100', + 'Body' => Utils::streamFor(str_repeat('x', 50)) + ]; + $snapshot = new TransferProgressSnapshot( + 'test-key', + 100, + 100, + $response + ); + + $result = $handler->bytesTransferred([ + AbstractTransferListener::PROGRESS_SNAPSHOT_KEY => $snapshot + ]); + $this->assertTrue($result); + $this->assertFileExists($tempFile); + $expectedContent = str_repeat('-', 50) + . str_repeat('x', 50); + $this->assertEquals( + $expectedContent, + file_get_contents($tempFile) + ); + } + + /** + * @dataProvider validatePartChecksumWhenWritingToDiskProvider + * + * @param string $checksumAlgorithm + * @return void + */ + public function testValidatesPartChecksumWhenWritingToDisk( + string $checksumAlgorithm, + ): void + { + $destination = $this->tempDir . 'file.txt'; + $handler = new FileDownloadHandler($destination, false); + $handler->transferInitiated([]); + + $content = 'test content'; + $checksum = base64_encode(hash($checksumAlgorithm, $content, true)); + + $response = [ + 'ContentLength' => strlen($content), + 'ContentRange' => 'bytes 0-' . (strlen($content) - 1) . '/' . strlen($content), + 'Body' => Utils::streamFor($content), + "Checksum".strtoupper($checksumAlgorithm) => $checksum + ]; + $snapshot = new TransferProgressSnapshot( + 'test-key', + strlen($content), + strlen($content), + $response + ); + + $result = $handler->bytesTransferred([ + AbstractTransferListener::PROGRESS_SNAPSHOT_KEY => $snapshot + ]); + $this->assertTrue($result); + } + + /** + * @return array + */ + public function validatePartChecksumWhenWritingToDiskProvider(): array + { + return [ + 'crc32' => [ + 'checksum_algorithm' => 'crc32b', + ], + 'sha256' => [ + 'checksum_algorithm' => 'sha256', + ] + ]; + } + + public function testFailsOnChecksumMismatch(): void + { + $destination = $this->tempDir . 'file.txt'; + $handler = new FileDownloadHandler($destination, false); + $handler->transferInitiated([]); + + $content = 'test content'; + $invalidChecksum = base64_encode('invalid'); + + $response = [ + 'ContentLength' => strlen($content), + 'ContentRange' => 'bytes 0-' . (strlen($content) - 1) . '/' . strlen($content), + 'Body' => Utils::streamFor($content), + 'ChecksumSHA256' => $invalidChecksum + ]; + $snapshot = new TransferProgressSnapshot('test-key', strlen($content), strlen($content), $response); + + $this->expectException(FileDownloadException::class); + $this->expectExceptionMessage('Checksum mismatch when writing part to destination file.'); + $handler->bytesTransferred([AbstractTransferListener::PROGRESS_SNAPSHOT_KEY => $snapshot]); + } + + public function testCleansUpResourcesAfterFailure(): void + { + $destination = $this->tempDir . 'file.txt'; + $handler = new FileDownloadHandler($destination, false, false); + $handler->transferInitiated([]); + + $response = [ + 'ContentLength' => 10, + 'ContentRange' => 'bytes 0-9/10', + 'Body' => Utils::streamFor('test data!') + ]; + $snapshot = new TransferProgressSnapshot('test-key', 10, 10, $response); + + $handler->bytesTransferred([AbstractTransferListener::PROGRESS_SNAPSHOT_KEY => $snapshot]); + + $tempFile = $handler->getTemporaryFilePath(); + $this->assertFileExists($tempFile); + + $handler->transferFail([AbstractTransferListener::REASON_KEY => 'Test failure']); + + $this->assertFileDoesNotExist($tempFile); + } +}