diff --git a/CHANGELOG.md b/CHANGELOG.md index fc3feeddb62..3b69e2c9d59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +Release v1.38.64 (2021-06-17) +=== + +### Service Client Updates +* `service/chime`: Updates service API and documentation + * This release adds a new API UpdateSipMediaApplicationCall, to update an in-progress call for SipMediaApplication. +* `service/kendra`: Updates service API and documentation + * Amazon Kendra now supports the indexing of web documents for search through the web crawler. +* `service/rds`: Updates service API, documentation, waiters, paginators, and examples + * This release enables Database Activity Streams for RDS Oracle +* `service/sagemaker`: Updates service API and documentation + * Enable ml.g4dn instance types for SageMaker Batch Transform and SageMaker Processing + +### SDK Bugs +* `aws/ec2metadata`: Fix client retrying 404 responses ([#3962](https://github.com/aws/aws-sdk-go/pull/3962)) + * Fixes the EC2 IMDS client to not retry 404 HTTP errors received for operations like GetMetadata. + Release v1.38.63 (2021-06-16) === diff --git a/CHANGELOG_PENDING.md b/CHANGELOG_PENDING.md index 9553994d0dd..8a1927a39ca 100644 --- a/CHANGELOG_PENDING.md +++ b/CHANGELOG_PENDING.md @@ -3,5 +3,3 @@ ### SDK Enhancements ### SDK Bugs -* `aws/ec2metadata`: Fix client retrying 404 responses ([#3962](https://github.com/aws/aws-sdk-go/pull/3962)) - * Fixes the EC2 IMDS client to not retry 404 HTTP errors received for operations like GetMetadata. diff --git a/aws/endpoints/defaults.go b/aws/endpoints/defaults.go index fc4988738e7..a07649e9063 100644 --- a/aws/endpoints/defaults.go +++ b/aws/endpoints/defaults.go @@ -32,7 +32,6 @@ const ( EuWest1RegionID = "eu-west-1" // Europe (Ireland). EuWest2RegionID = "eu-west-2" // Europe (London). EuWest3RegionID = "eu-west-3" // Europe (Paris). - InAmazon1RegionID = "in-amazon-1" // India (Begumpet). MeSouth1RegionID = "me-south-1" // Middle East (Bahrain). SaEast1RegionID = "sa-east-1" // South America (Sao Paulo). UsEast1RegionID = "us-east-1" // US East (N. Virginia). @@ -101,7 +100,7 @@ var awsPartition = partition{ DNSSuffix: "amazonaws.com", RegionRegex: regionRegex{ Regexp: func() *regexp.Regexp { - reg, _ := regexp.Compile("^(us|eu|ap|sa|ca|me|af|in)\\-\\w+\\-\\d+$") + reg, _ := regexp.Compile("^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$") return reg }(), }, @@ -156,9 +155,6 @@ var awsPartition = partition{ "eu-west-3": region{ Description: "Europe (Paris)", }, - "in-amazon-1": region{ - Description: "India (Begumpet)", - }, "me-south-1": region{ Description: "Middle East (Bahrain)", }, @@ -6851,15 +6847,9 @@ var awsPartition = partition{ "eu-west-1": endpoint{}, "eu-west-2": endpoint{}, "eu-west-3": endpoint{}, - "in-amazon-1": endpoint{ - Hostname: "sts.ap-south-1.amazonaws.com", - CredentialScope: credentialScope{ - Region: "ap-south-1", - }, - }, - "me-south-1": endpoint{}, - "sa-east-1": endpoint{}, - "us-east-1": endpoint{}, + "me-south-1": endpoint{}, + "sa-east-1": endpoint{}, + "us-east-1": endpoint{}, "us-east-1-fips": endpoint{ Hostname: "sts-fips.us-east-1.amazonaws.com", CredentialScope: credentialScope{ diff --git a/aws/version.go b/aws/version.go index f31a01db93b..a4136ac05fc 100644 --- a/aws/version.go +++ b/aws/version.go @@ -5,4 +5,4 @@ package aws const SDKName = "aws-sdk-go" // SDKVersion is the version of this SDK -const SDKVersion = "1.38.63" +const SDKVersion = "1.38.64" diff --git a/models/apis/chime/2018-05-01/api-2.json b/models/apis/chime/2018-05-01/api-2.json index 5660ee36cbb..3dd5380c143 100644 --- a/models/apis/chime/2018-05-01/api-2.json +++ b/models/apis/chime/2018-05-01/api-2.json @@ -3390,6 +3390,26 @@ {"shape":"ServiceFailureException"} ] }, + "UpdateSipMediaApplicationCall":{ + "name":"UpdateSipMediaApplicationCall", + "http":{ + "method":"POST", + "requestUri":"/sip-media-applications/{sipMediaApplicationId}/calls/{transactionId}", + "responseCode":202 + }, + "input":{"shape":"UpdateSipMediaApplicationCallRequest"}, + "output":{"shape":"UpdateSipMediaApplicationCallResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"NotFoundException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ] + }, "UpdateSipRule":{ "name":"UpdateSipRule", "http":{ @@ -8157,6 +8177,13 @@ "RetentionDays":{"shape":"RetentionDays"} } }, + "SMAUpdateCallArgumentsMap":{ + "type":"map", + "key":{"shape":"SensitiveString"}, + "value":{"shape":"SensitiveString"}, + "max":20, + "min":0 + }, "SearchAvailablePhoneNumbersRequest":{ "type":"structure", "members":{ @@ -8935,6 +8962,33 @@ "Room":{"shape":"Room"} } }, + "UpdateSipMediaApplicationCallRequest":{ + "type":"structure", + "required":[ + "SipMediaApplicationId", + "TransactionId", + "Arguments" + ], + "members":{ + "SipMediaApplicationId":{ + "shape":"NonEmptyString", + "location":"uri", + "locationName":"sipMediaApplicationId" + }, + "TransactionId":{ + "shape":"NonEmptyString", + "location":"uri", + "locationName":"transactionId" + }, + "Arguments":{"shape":"SMAUpdateCallArgumentsMap"} + } + }, + "UpdateSipMediaApplicationCallResponse":{ + "type":"structure", + "members":{ + "SipMediaApplicationCall":{"shape":"SipMediaApplicationCall"} + } + }, "UpdateSipMediaApplicationRequest":{ "type":"structure", "required":["SipMediaApplicationId"], diff --git a/models/apis/chime/2018-05-01/docs-2.json b/models/apis/chime/2018-05-01/docs-2.json index fb830e485d2..cd65a732f27 100644 --- a/models/apis/chime/2018-05-01/docs-2.json +++ b/models/apis/chime/2018-05-01/docs-2.json @@ -101,7 +101,7 @@ "GetUserSettings": "

Retrieves settings for the specified user ID, such as any associated phone number settings.

", "GetVoiceConnector": "

Retrieves details for the specified Amazon Chime Voice Connector, such as timestamps,name, outbound host, and encryption requirements.

", "GetVoiceConnectorEmergencyCallingConfiguration": "

Gets the emergency calling configuration details for the specified Amazon Chime Voice Connector.

", - "GetVoiceConnectorGroup": "

Retrieves details for the specified Amazon Chime Voice Connector group, such as timestamps,name, and associated VoiceConnectorItems .

", + "GetVoiceConnectorGroup": "

Retrieves details for the specified Amazon Chime Voice Connector group, such as timestamps,name, and associated VoiceConnectorItems.

", "GetVoiceConnectorLoggingConfiguration": "

Retrieves the logging configuration details for the specified Amazon Chime Voice Connector. Shows whether SIP message logs are enabled for sending to Amazon CloudWatch Logs.

", "GetVoiceConnectorOrigination": "

Retrieves origination setting details for the specified Amazon Chime Voice Connector.

", "GetVoiceConnectorProxy": "

Gets the proxy configuration details for the specified Amazon Chime Voice Connector.

", @@ -124,7 +124,7 @@ "ListChannels": "

Lists all Channels created under a single Chime App as a paginated list. You can specify filters to narrow results.

Functionality & restrictions

The x-amz-chime-bearer request header is mandatory. Use the AppInstanceUserArn of the user that makes the API call as the value in the header.

", "ListChannelsModeratedByAppInstanceUser": "

A list of the channels moderated by an AppInstanceUser.

The x-amz-chime-bearer request header is mandatory. Use the AppInstanceUserArn of the user that makes the API call as the value in the header.

", "ListMeetingTags": "

Lists the tags applied to an Amazon Chime SDK meeting resource.

", - "ListMeetings": "

Lists up to 100 active Amazon Chime SDK meetings. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .

", + "ListMeetings": "

Lists up to 100 active Amazon Chime SDK meetings. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

", "ListPhoneNumberOrders": "

Lists the phone number orders for the administrator's Amazon Chime account.

", "ListPhoneNumbers": "

Lists the phone numbers for the specified Amazon Chime account, Amazon Chime user, Amazon Chime Voice Connector, or Amazon Chime Voice Connector group.

", "ListProxySessions": "

Lists the proxy sessions for the specified Amazon Chime Voice Connector.

", @@ -142,7 +142,7 @@ "PutAppInstanceRetentionSettings": "

Sets the amount of time in days that a given AppInstance retains data.

", "PutAppInstanceStreamingConfigurations": "

The data streaming configurations of an AppInstance.

", "PutEventsConfiguration": "

Creates an events configuration that allows a bot to receive outgoing events sent by Amazon Chime. Choose either an HTTPS endpoint or a Lambda function ARN. For more information, see Bot.

", - "PutRetentionSettings": "

Puts retention settings for the specified Amazon Chime Enterprise account. We recommend using AWS CloudTrail to monitor usage of this API for your account. For more information, see Logging Amazon Chime API Calls with AWS CloudTrail in the Amazon Chime Administration Guide .

To turn off existing retention settings, remove the number of days from the corresponding RetentionDays field in the RetentionSettings object. For more information about retention settings, see Managing Chat Retention Policies in the Amazon Chime Administration Guide .

", + "PutRetentionSettings": "

Puts retention settings for the specified Amazon Chime Enterprise account. We recommend using AWS CloudTrail to monitor usage of this API for your account. For more information, see Logging Amazon Chime API Calls with AWS CloudTrail in the Amazon Chime Administration Guide.

To turn off existing retention settings, remove the number of days from the corresponding RetentionDays field in the RetentionSettings object. For more information about retention settings, see Managing Chat Retention Policies in the Amazon Chime Administration Guide.

", "PutSipMediaApplicationLoggingConfiguration": "

Updates the logging configuration for the specified SIP media application.

", "PutVoiceConnectorEmergencyCallingConfiguration": "

Puts emergency calling configuration details to the specified Amazon Chime Voice Connector, such as emergency phone numbers and calling countries. Origination and termination settings must be enabled for the Amazon Chime Voice Connector before emergency calling can be configured.

", "PutVoiceConnectorLoggingConfiguration": "

Adds a logging configuration for the specified Amazon Chime Voice Connector. The logging configuration specifies whether SIP message logs are enabled for sending to Amazon CloudWatch Logs.

", @@ -180,6 +180,7 @@ "UpdateRoom": "

Updates room details, such as the room name, for a room in an Amazon Chime Enterprise account.

", "UpdateRoomMembership": "

Updates room membership details, such as the member role, for a room in an Amazon Chime Enterprise account. The member role designates whether the member is a chat room administrator or a general chat room member. The member role can be updated only for user IDs.

", "UpdateSipMediaApplication": "

Updates the details of the specified SIP media application.

", + "UpdateSipMediaApplicationCall": "

Allows you to trigger a Lambda function at any time while a call is active, and replace the current actions with new actions returned by the invocation.

", "UpdateSipRule": "

Updates the details of the specified SIP rule.

", "UpdateUser": "

Updates user details for a specified user ID. Currently, only LicenseType updates are supported for this action.

", "UpdateUserSettings": "

Updates the settings for the specified user, such as phone number settings.

", @@ -2729,6 +2730,8 @@ "UpdateRoomMembershipRequest$MemberId": "

The member ID.

", "UpdateRoomRequest$AccountId": "

The Amazon Chime account ID.

", "UpdateRoomRequest$RoomId": "

The room ID.

", + "UpdateSipMediaApplicationCallRequest$SipMediaApplicationId": "

The ID of the SIP media application handling the call.

", + "UpdateSipMediaApplicationCallRequest$TransactionId": "

The ID of the call transaction.

", "UpdateSipMediaApplicationRequest$SipMediaApplicationId": "

The SIP media application ID.

", "UpdateSipRuleRequest$SipRuleId": "

The SIP rule ID.

", "UpdateUserRequest$AccountId": "

The Amazon Chime account ID.

", @@ -3337,6 +3340,12 @@ "RetentionSettings$RoomRetentionSettings": "

The chat room retention settings.

" } }, + "SMAUpdateCallArgumentsMap": { + "base": null, + "refs": { + "UpdateSipMediaApplicationCallRequest$Arguments": "

Arguments made available to the Lambda function as part of the CALL_UPDATE_REQUESTED event. Can contain 0-20 key-value pairs.

" + } + }, "SearchAvailablePhoneNumbersRequest": { "base": null, "refs": { @@ -3375,6 +3384,8 @@ "PutEventsConfigurationRequest$OutboundEventsHTTPSEndpoint": "

HTTPS endpoint that allows the bot to receive outgoing events.

", "PutEventsConfigurationRequest$LambdaFunctionArn": "

Lambda function ARN that allows the bot to receive outgoing events.

", "Room$Name": "

The room name.

", + "SMAUpdateCallArgumentsMap$key": null, + "SMAUpdateCallArgumentsMap$value": null, "SensitiveStringList$member": null, "UpdateRoomRequest$Name": "

The room name.

", "User$PrimaryProvisionedNumber": "

The primary phone number associated with the user.

", @@ -3429,7 +3440,8 @@ "SipMediaApplicationCall": { "base": "

A Call instance for a SIP media application.

", "refs": { - "CreateSipMediaApplicationCallResponse$SipMediaApplicationCall": "

The actual call.

" + "CreateSipMediaApplicationCallResponse$SipMediaApplicationCall": "

The actual call.

", + "UpdateSipMediaApplicationCallResponse$SipMediaApplicationCall": null } }, "SipMediaApplicationEndpoint": { @@ -3922,6 +3934,16 @@ "refs": { } }, + "UpdateSipMediaApplicationCallRequest": { + "base": null, + "refs": { + } + }, + "UpdateSipMediaApplicationCallResponse": { + "base": null, + "refs": { + } + }, "UpdateSipMediaApplicationRequest": { "base": null, "refs": { diff --git a/models/apis/kendra/2019-02-03/api-2.json b/models/apis/kendra/2019-02-03/api-2.json index 5d8e7064b70..7521b06763e 100644 --- a/models/apis/kendra/2019-02-03/api-2.json +++ b/models/apis/kendra/2019-02-03/api-2.json @@ -732,6 +732,31 @@ "type":"list", "member":{"shape":"AttributeFilter"} }, + "AuthenticationConfiguration":{ + "type":"structure", + "members":{ + "BasicAuthentication":{"shape":"BasicAuthenticationConfigurationList"} + } + }, + "BasicAuthenticationConfiguration":{ + "type":"structure", + "required":[ + "Host", + "Port", + "Credentials" + ], + "members":{ + "Host":{"shape":"Host"}, + "Port":{"shape":"Port"}, + "Credentials":{"shape":"SecretArn"} + } + }, + "BasicAuthenticationConfigurationList":{ + "type":"list", + "member":{"shape":"BasicAuthenticationConfiguration"}, + "max":10, + "min":0 + }, "BatchDeleteDocumentRequest":{ "type":"structure", "required":[ @@ -1108,6 +1133,11 @@ "PPT" ] }, + "CrawlDepth":{ + "type":"integer", + "max":10, + "min":0 + }, "CreateDataSourceRequest":{ "type":"structure", "required":[ @@ -1256,7 +1286,8 @@ "OneDriveConfiguration":{"shape":"OneDriveConfiguration"}, "ServiceNowConfiguration":{"shape":"ServiceNowConfiguration"}, "ConfluenceConfiguration":{"shape":"ConfluenceConfiguration"}, - "GoogleDriveConfiguration":{"shape":"GoogleDriveConfiguration"} + "GoogleDriveConfiguration":{"shape":"GoogleDriveConfiguration"}, + "WebCrawlerConfiguration":{"shape":"WebCrawlerConfiguration"} } }, "DataSourceDateFieldFormat":{ @@ -1401,7 +1432,8 @@ "SERVICENOW", "CUSTOM", "CONFLUENCE", - "GOOGLEDRIVE" + "GOOGLEDRIVE", + "WEBCRAWLER" ] }, "DataSourceVpcConfiguration":{ @@ -2024,6 +2056,12 @@ "THESAURUS_SYNONYM" ] }, + "Host":{ + "type":"string", + "max":253, + "min":1, + "pattern":"([^\\s]*)" + }, "Importance":{ "type":"integer", "max":10, @@ -2274,6 +2312,16 @@ } }, "Long":{"type":"long"}, + "MaxContentSizePerPageInMegaBytes":{ + "type":"float", + "max":50, + "min":1.0e-06 + }, + "MaxLinksPerPage":{ + "type":"integer", + "max":1000, + "min":1 + }, "MaxResultsIntegerForListDataSourceSyncJobsRequest":{ "type":"integer", "max":10, @@ -2304,6 +2352,11 @@ "max":100, "min":1 }, + "MaxUrlsPerMinuteCrawlRate":{ + "type":"integer", + "max":300, + "min":1 + }, "MetricValue":{ "type":"string", "pattern":"(([1-9][0-9]*)|0)" @@ -2380,6 +2433,11 @@ "DESCENDING" ] }, + "Port":{ + "type":"integer", + "max":65535, + "min":1 + }, "Principal":{ "type":"structure", "required":[ @@ -2410,6 +2468,18 @@ "GROUP" ] }, + "ProxyConfiguration":{ + "type":"structure", + "required":[ + "Host", + "Port" + ], + "members":{ + "Host":{"shape":"Host"}, + "Port":{"shape":"Port"}, + "Credentials":{"shape":"SecretArn"} + } + }, "QueryCapacityUnit":{ "type":"integer", "min":0 @@ -2835,6 +2905,26 @@ "max":10, "min":1 }, + "SeedUrl":{ + "type":"string", + "max":2048, + "min":1, + "pattern":"^(https?):\\/\\/([^\\s]*)" + }, + "SeedUrlConfiguration":{ + "type":"structure", + "required":["SeedUrls"], + "members":{ + "SeedUrls":{"shape":"SeedUrlList"}, + "WebCrawlerMode":{"shape":"WebCrawlerMode"} + } + }, + "SeedUrlList":{ + "type":"list", + "member":{"shape":"SeedUrl"}, + "max":100, + "min":0 + }, "ServerSideEncryptionConfiguration":{ "type":"structure", "members":{ @@ -2952,6 +3042,25 @@ "min":1, "pattern":"^\\P{C}*$" }, + "SiteMap":{ + "type":"string", + "max":2048, + "min":1, + "pattern":"^(https?):\\/\\/([^\\s]*)" + }, + "SiteMapsConfiguration":{ + "type":"structure", + "required":["SiteMaps"], + "members":{ + "SiteMaps":{"shape":"SiteMapsList"} + } + }, + "SiteMapsList":{ + "type":"list", + "member":{"shape":"SiteMap"}, + "max":3, + "min":0 + }, "SortOrder":{ "type":"string", "enum":[ @@ -3318,6 +3427,13 @@ "min":1, "pattern":"^(https?|ftp|file):\\/\\/([^\\s]*)" }, + "Urls":{ + "type":"structure", + "members":{ + "SeedUrlConfiguration":{"shape":"SeedUrlConfiguration"}, + "SiteMapsConfiguration":{"shape":"SiteMapsConfiguration"} + } + }, "UserAccount":{ "type":"string", "max":256, @@ -3383,6 +3499,29 @@ "max":200, "min":1, "pattern":"[-0-9a-zA-Z]+" + }, + "WebCrawlerConfiguration":{ + "type":"structure", + "required":["Urls"], + "members":{ + "Urls":{"shape":"Urls"}, + "CrawlDepth":{"shape":"CrawlDepth"}, + "MaxLinksPerPage":{"shape":"MaxLinksPerPage"}, + "MaxContentSizePerPageInMegaBytes":{"shape":"MaxContentSizePerPageInMegaBytes"}, + "MaxUrlsPerMinuteCrawlRate":{"shape":"MaxUrlsPerMinuteCrawlRate"}, + "UrlInclusionPatterns":{"shape":"DataSourceInclusionsExclusionsStrings"}, + "UrlExclusionPatterns":{"shape":"DataSourceInclusionsExclusionsStrings"}, + "ProxyConfiguration":{"shape":"ProxyConfiguration"}, + "AuthenticationConfiguration":{"shape":"AuthenticationConfiguration"} + } + }, + "WebCrawlerMode":{ + "type":"string", + "enum":[ + "HOST_ONLY", + "SUBDOMAINS", + "EVERYTHING" + ] } } } diff --git a/models/apis/kendra/2019-02-03/docs-2.json b/models/apis/kendra/2019-02-03/docs-2.json index eead502aaa2..171779fa6f0 100644 --- a/models/apis/kendra/2019-02-03/docs-2.json +++ b/models/apis/kendra/2019-02-03/docs-2.json @@ -107,6 +107,24 @@ "AttributeFilter$OrAllFilters": "

Performs a logical OR operation on all supplied filters.

" } }, + "AuthenticationConfiguration": { + "base": "

Provides the configuration information to connect to websites that require user authentication.

", + "refs": { + "WebCrawlerConfiguration$AuthenticationConfiguration": "

Provides configuration information required to connect to websites using authentication.

You can connect to websites using basic authentication of user name and password.

You must provide the website host name and port number. For example, the host name of https://a.example.com/page1.html is \"a.example.com\" and the port is 443, the standard port for HTTPS. You use a secret in AWS Secrets Manager to store your authentication credentials.

" + } + }, + "BasicAuthenticationConfiguration": { + "base": "

Provides the configuration information to connect to websites that require basic user authentication.

", + "refs": { + "BasicAuthenticationConfigurationList$member": null + } + }, + "BasicAuthenticationConfigurationList": { + "base": null, + "refs": { + "AuthenticationConfiguration$BasicAuthentication": "

The list of configuration information that's required to connect to and crawl a website host using basic authentication credentials.

The list includes the name and port number of the website host.

" + } + }, "BatchDeleteDocumentRequest": { "base": null, "refs": { @@ -200,7 +218,7 @@ } }, "CapacityUnitsConfiguration": { - "base": "

Specifies capacity units configured for your index. You can add and remove capacity units to tune an index to your requirements.

", + "base": "

Specifies capacity units configured for your enterprise edition index. You can add and remove capacity units to tune an index to your requirements.

", "refs": { "DescribeIndexResponse$CapacityUnits": "

For Enterprise edition indexes, you can choose to use additional capacity to meet the needs of your application. This contains the capacity units used for the index. A 0 for the query capacity or the storage capacity indicates that the index is using the default capacity for the index.

", "UpdateIndexRequest$CapacityUnits": "

Sets the number of additional storage and query capacity units that should be used by the index. You can change the capacity of the index up to 5 times per day.

If you are using extra storage units, you can't reduce the storage capacity below that required to meet the storage needs for your index.

" @@ -399,6 +417,12 @@ "Document$ContentType": "

The file type of the document in the Blob field.

" } }, + "CrawlDepth": { + "base": null, + "refs": { + "WebCrawlerConfiguration$CrawlDepth": "

Specifies the number of levels in a website that you want to crawl.

The first level begins from the website seed or starting point URL. For example, if a website has 3 levels – index level (i.e. seed in this example), sections level, and subsections level – and you are only interested in crawling information up to the sections level (i.e. levels 0-1), you can set your depth to 1.

The default crawl depth is set to 2.

" + } + }, "CreateDataSourceRequest": { "base": null, "refs": { @@ -521,7 +545,9 @@ "ServiceNowServiceCatalogConfiguration$IncludeAttachmentFilePatterns": "

A list of regular expression patterns. Documents that match the patterns are included in the index. Documents that don't match the patterns are excluded from the index. If a document matches both an exclusion pattern and an inclusion pattern, the document is not included in the index.

The regex is applied to the file name of the attachment.

", "ServiceNowServiceCatalogConfiguration$ExcludeAttachmentFilePatterns": "

A list of regular expression patterns. Documents that match the patterns are excluded from the index. Documents that don't match the patterns are included in the index. If a document matches both an exclusion pattern and an inclusion pattern, the document is not included in the index.

The regex is applied to the file name of the attachment.

", "SharePointConfiguration$InclusionPatterns": "

A list of regular expression patterns. Documents that match the patterns are included in the index. Documents that don't match the patterns are excluded from the index. If a document matches both an inclusion pattern and an exclusion pattern, the document is not included in the index.

The regex is applied to the display URL of the SharePoint document.

", - "SharePointConfiguration$ExclusionPatterns": "

A list of regular expression patterns. Documents that match the patterns are excluded from the index. Documents that don't match the patterns are included in the index. If a document matches both an exclusion pattern and an inclusion pattern, the document is not included in the index.

The regex is applied to the display URL of the SharePoint document.

" + "SharePointConfiguration$ExclusionPatterns": "

A list of regular expression patterns. Documents that match the patterns are excluded from the index. Documents that don't match the patterns are included in the index. If a document matches both an exclusion pattern and an inclusion pattern, the document is not included in the index.

The regex is applied to the display URL of the SharePoint document.

", + "WebCrawlerConfiguration$UrlInclusionPatterns": "

The regular expression pattern to include certain URLs to crawl.

If there is a regular expression pattern to exclude certain URLs that conflicts with the include pattern, the exclude pattern takes precedence.

", + "WebCrawlerConfiguration$UrlExclusionPatterns": "

The regular expression pattern to exclude certain URLs to crawl.

If there is a regular expression pattern to include certain URLs that conflicts with the exclude pattern, the exclude pattern takes precedence.

" } }, "DataSourceInclusionsExclusionsStringsMember": { @@ -1119,6 +1145,13 @@ "Highlight$Type": "

The highlight type.

" } }, + "Host": { + "base": null, + "refs": { + "BasicAuthenticationConfiguration$Host": "

The name of the website host you want to connect to using authentication credentials.

For example, the host name of https://a.example.com/page1.html is \"a.example.com\".

", + "ProxyConfiguration$Host": "

The name of the website host you want to connect to via a web proxy server.

For example, the host name of https://a.example.com/page1.html is \"a.example.com\".

" + } + }, "Importance": { "base": null, "refs": { @@ -1376,6 +1409,18 @@ "DocumentAttributeValue$LongValue": "

A long integer value.

" } }, + "MaxContentSizePerPageInMegaBytes": { + "base": null, + "refs": { + "WebCrawlerConfiguration$MaxContentSizePerPageInMegaBytes": "

The maximum size (in MB) of a webpage or attachment to crawl.

Files larger than this size (in MB) are skipped/not crawled.

The default maximum size of a webpage or attachment is set to 50 MB.

" + } + }, + "MaxLinksPerPage": { + "base": null, + "refs": { + "WebCrawlerConfiguration$MaxLinksPerPage": "

The maximum number of URLs on a webpage to include when crawling a website. This number is per webpage.

As a website’s webpages are crawled, any URLs the webpages link to are also crawled. URLs on a webpage are crawled in order of appearance.

The default maximum links per page is 100.

" + } + }, "MaxResultsIntegerForListDataSourceSyncJobsRequest": { "base": null, "refs": { @@ -1412,6 +1457,12 @@ "ListThesauriRequest$MaxResults": "

The maximum number of thesauri to return.

" } }, + "MaxUrlsPerMinuteCrawlRate": { + "base": null, + "refs": { + "WebCrawlerConfiguration$MaxUrlsPerMinuteCrawlRate": "

The maximum number of URLs crawled per website host per minute.

A minimum of one URL is required.

The default maximum number of URLs crawled per website host per minute is 300.

" + } + }, "MetricValue": { "base": null, "refs": { @@ -1503,6 +1554,13 @@ "Relevance$RankOrder": "

Determines how values should be interpreted.

When the RankOrder field is ASCENDING, higher numbers are better. For example, a document with a rating score of 10 is higher ranking than a document with a rating score of 1.

When the RankOrder field is DESCENDING, lower numbers are better. For example, in a task tracking application, a priority 1 task is more important than a priority 5 task.

Only applies to LONG and DOUBLE fields.

" } }, + "Port": { + "base": null, + "refs": { + "BasicAuthenticationConfiguration$Port": "

The port number of the website host you want to connect to using authentication credentials.

For example, the port for https://a.example.com/page1.html is 443, the standard port for HTTPS.

", + "ProxyConfiguration$Port": "

The port number of the website host you want to connect to via a web proxy server.

For example, the port for https://a.example.com/page1.html is 443, the standard port for HTTPS.

" + } + }, "Principal": { "base": "

Provides user and group information for document access filtering.

", "refs": { @@ -1527,10 +1585,16 @@ "Principal$Type": "

The type of principal.

" } }, + "ProxyConfiguration": { + "base": "

Provides the configuration information for a web proxy to connect to website hosts.

", + "refs": { + "WebCrawlerConfiguration$ProxyConfiguration": "

Provides configuration information required to connect to your internal websites via a web proxy.

You must provide the website host name and port number. For example, the host name of https://a.example.com/page1.html is \"a.example.com\" and the port is 443, the standard port for HTTPS.

Web proxy credentials are optional and you can use them to connect to a web proxy server that requires basic authentication. To store web proxy credentials, you use a secret in AWS Secrets Manager.

" + } + }, "QueryCapacityUnit": { "base": null, "refs": { - "CapacityUnitsConfiguration$QueryCapacityUnits": "

The amount of extra query capacity for an index. Each capacity unit provides 0.5 queries per second and 40,000 queries per day.

" + "CapacityUnitsConfiguration$QueryCapacityUnits": "

The amount of extra query capacity for an index and GetQuerySuggestions capacity.

A single extra capacity unit for an index provides 0.5 queries per second or approximately 40,000 queries per day.

GetQuerySuggestions capacity is 5 times the provisioned query capacity for an index. For example, the base capacity for an index is 0.5 queries per second, so GetQuerySuggestions capacity is 2.5 calls per second. If adding another 0.5 queries per second to total 1 queries per second for an index, the GetQuerySuggestions capacity is 5 calls per second.

" } }, "QueryId": { @@ -1868,10 +1932,12 @@ "SecretArn": { "base": null, "refs": { + "BasicAuthenticationConfiguration$Credentials": "

Your secret ARN, which you can create in AWS Secrets Manager

You use a secret if basic authentication credentials are required to connect to a website. The secret stores your credentials of user name and password.

", "ConfluenceConfiguration$SecretArn": "

The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the key/value pairs required to connect to your Confluence server. The secret must contain a JSON structure with the following keys:

", "ConnectionConfiguration$SecretArn": "

The Amazon Resource Name (ARN) of credentials stored in AWS Secrets Manager. The credentials should be a user/password pair. For more information, see Using a Database Data Source. For more information about AWS Secrets Manager, see What Is AWS Secrets Manager in the AWS Secrets Manager user guide.

", "GoogleDriveConfiguration$SecretArn": "

The Amazon Resource Name (ARN) of a AWS Secrets Manager secret that contains the credentials required to connect to Google Drive. For more information, see Using a Google Workspace Drive data source.

", "OneDriveConfiguration$SecretArn": "

The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the user name and password to connect to OneDrive. The user namd should be the application ID for the OneDrive application, and the password is the application key for the OneDrive application.

", + "ProxyConfiguration$Credentials": "

Your secret ARN, which you can create in AWS Secrets Manager

The credentials are optional. You use a secret if web proxy credentials are required to connect to a website host. Amazon Kendra currently support basic authentication to connect to a web proxy server. The secret stores your credentials.

", "SalesforceConfiguration$SecretArn": "

The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the key/value pairs required to connect to your Salesforce instance. The secret must contain a JSON structure with the following keys:

", "ServiceNowConfiguration$SecretArn": "

The Amazon Resource Name (ARN) of the AWS Secret Manager secret that contains the user name and password required to connect to the ServiceNow instance.

", "SharePointConfiguration$SecretArn": "

The Amazon Resource Name (ARN) of credentials stored in AWS Secrets Manager. The credentials should be a user/password pair. For more information, see Using a Microsoft SharePoint Data Source. For more information about AWS Secrets Manager, see What Is AWS Secrets Manager in the AWS Secrets Manager user guide.

" @@ -1883,6 +1949,24 @@ "DataSourceVpcConfiguration$SecurityGroupIds": "

A list of identifiers of security groups within your Amazon VPC. The security groups should enable Amazon Kendra to connect to the data source.

" } }, + "SeedUrl": { + "base": null, + "refs": { + "SeedUrlList$member": null + } + }, + "SeedUrlConfiguration": { + "base": "

Provides the configuration information of the seed or starting point URLs to crawl.

When selecting websites to index, you must adhere to the Amazon Acceptable Use Policy and all other Amazon terms. Remember that you must only use the Amazon Kendra web crawler to index your own webpages, or webpages that you have authorization to index.

", + "refs": { + "Urls$SeedUrlConfiguration": "

Provides the configuration of the seed or starting point URLs of the websites you want to crawl.

You can choose to crawl only the website host names, or the website host names with subdomains, or the website host names with subdomains and other domains that the webpages link to.

You can list up to 100 seed URLs.

" + } + }, + "SeedUrlList": { + "base": null, + "refs": { + "SeedUrlConfiguration$SeedUrls": "

The list of seed or starting point URLs of the websites you want to crawl.

The list can include a maximum of 100 seed URLs.

" + } + }, "ServerSideEncryptionConfiguration": { "base": "

Provides the identifier of the AWS KMS customer master key (CMK) used to encrypt data indexed by Amazon Kendra. Amazon Kendra doesn't support asymmetric CMKs.

", "refs": { @@ -1961,6 +2045,24 @@ "ExcludeSharedDrivesList$member": null } }, + "SiteMap": { + "base": null, + "refs": { + "SiteMapsList$member": null + } + }, + "SiteMapsConfiguration": { + "base": "

Provides the configuration information of the sitemap URLs to crawl.

When selecting websites to index, you must adhere to the Amazon Acceptable Use Policy and all other Amazon terms. Remember that you must only use the Amazon Kendra web crawler to index your own webpages, or webpages that you have authorization to index.

", + "refs": { + "Urls$SiteMapsConfiguration": "

Provides the configuration of the sitemap URLs of the websites you want to crawl.

Only URLs belonging to the same website host names are crawled. You can list up to three sitemap URLs.

" + } + }, + "SiteMapsList": { + "base": null, + "refs": { + "SiteMapsConfiguration$SiteMaps": "

The list of sitemap URLs of the websites you want to crawl.

The list can include a maximum of three sitemap URLs.

" + } + }, "SortOrder": { "base": null, "refs": { @@ -2003,7 +2105,7 @@ "StorageCapacityUnit": { "base": null, "refs": { - "CapacityUnitsConfiguration$StorageCapacityUnits": "

The amount of extra storage capacity for an index. Each capacity unit provides 150 Gb of storage space or 500,000 documents, whichever is reached first.

" + "CapacityUnitsConfiguration$StorageCapacityUnits": "

The amount of extra storage capacity for an index. A single capacity unit for an index provides 150 GB of storage space or 500,000 documents, whichever is reached first.

" } }, "String": { @@ -2294,6 +2396,12 @@ "SharePointUrlList$member": null } }, + "Urls": { + "base": "

Provides the configuration information of the URLs to crawl.

When selecting websites to index, you must adhere to the Amazon Acceptable Use Policy and all other Amazon terms. Remember that you must only use the Amazon Kendra web crawler to index your own webpages, or webpages that you have authorization to index.

", + "refs": { + "WebCrawlerConfiguration$Urls": "

Specifies the seed or starting point URLs of the websites or the sitemap URLs of the websites you want to crawl.

You can include website subdomains. You can list up to 100 seed URLs and up to three sitemap URLs.

When selecting websites to index, you must adhere to the Amazon Acceptable Use Policy and all other Amazon terms. Remember that you must only use the Amazon Kendra web crawler to index your own webpages, or webpages that you have authorization to index.

" + } + }, "UserAccount": { "base": null, "refs": { @@ -2362,6 +2470,18 @@ "refs": { "SecurityGroupIdList$member": null } + }, + "WebCrawlerConfiguration": { + "base": "

Provides the configuration information required for Amazon Kendra web crawler.

", + "refs": { + "DataSourceConfiguration$WebCrawlerConfiguration": null + } + }, + "WebCrawlerMode": { + "base": null, + "refs": { + "SeedUrlConfiguration$WebCrawlerMode": "

You can choose one of the following modes:

The default mode is set to HOST_ONLY.

" + } } } } diff --git a/models/apis/rds/2014-10-31/api-2.json b/models/apis/rds/2014-10-31/api-2.json index aa30b4aeaf5..e2cba301b63 100644 --- a/models/apis/rds/2014-10-31/api-2.json +++ b/models/apis/rds/2014-10-31/api-2.json @@ -2432,6 +2432,10 @@ "async" ] }, + "ActivityStreamModeList":{ + "type":"list", + "member":{"shape":"String"} + }, "ActivityStreamStatus":{ "type":"string", "enum":[ @@ -3858,7 +3862,12 @@ "TagList":{"shape":"TagList"}, "DBInstanceAutomatedBackupsReplications":{"shape":"DBInstanceAutomatedBackupsReplicationList"}, "CustomerOwnedIpEnabled":{"shape":"BooleanOptional"}, - "AwsBackupRecoveryPointArn":{"shape":"String"} + "AwsBackupRecoveryPointArn":{"shape":"String"}, + "ActivityStreamStatus":{"shape":"ActivityStreamStatus"}, + "ActivityStreamKmsKeyId":{"shape":"String"}, + "ActivityStreamKinesisStreamName":{"shape":"String"}, + "ActivityStreamMode":{"shape":"ActivityStreamMode"}, + "ActivityStreamEngineNativeAuditFieldsIncluded":{"shape":"BooleanOptional"} }, "wrapper":true }, @@ -6818,6 +6827,7 @@ "SupportsStorageAutoscaling":{"shape":"BooleanOptional"}, "SupportsKerberosAuthentication":{"shape":"BooleanOptional"}, "OutpostCapable":{"shape":"Boolean"}, + "SupportedActivityStreamModes":{"shape":"ActivityStreamModeList"}, "SupportsGlobalDatabases":{"shape":"Boolean"} }, "wrapper":true @@ -7752,7 +7762,8 @@ "ResourceArn":{"shape":"String"}, "Mode":{"shape":"ActivityStreamMode"}, "KmsKeyId":{"shape":"String"}, - "ApplyImmediately":{"shape":"BooleanOptional"} + "ApplyImmediately":{"shape":"BooleanOptional"}, + "EngineNativeAuditFieldsIncluded":{"shape":"BooleanOptional"} } }, "StartActivityStreamResponse":{ @@ -7762,7 +7773,8 @@ "KinesisStreamName":{"shape":"String"}, "Status":{"shape":"ActivityStreamStatus"}, "Mode":{"shape":"ActivityStreamMode"}, - "ApplyImmediately":{"shape":"Boolean"} + "ApplyImmediately":{"shape":"Boolean"}, + "EngineNativeAuditFieldsIncluded":{"shape":"BooleanOptional"} } }, "StartDBClusterMessage":{ diff --git a/models/apis/rds/2014-10-31/docs-2.json b/models/apis/rds/2014-10-31/docs-2.json index 3227f050b02..348f54f43fb 100644 --- a/models/apis/rds/2014-10-31/docs-2.json +++ b/models/apis/rds/2014-10-31/docs-2.json @@ -2,21 +2,21 @@ "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, 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 from an Amazon Aurora DB cluster. For more information, see Authorizing Amazon Aurora MySQL to Access Other AWS Services on Your Behalf in the Amazon Aurora User Guide.

This action only applies to Aurora DB clusters.

", - "AddRoleToDBInstance": "

Associates an AWS 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.

", + "AddRoleToDBCluster": "

Associates an Identity and Access Management (IAM) role from an Amazon Aurora DB cluster. For more information, see Authorizing Amazon Aurora MySQL to Access Other Amazon Web Services Services on Your Behalf in the Amazon Aurora User Guide.

This action only applies to Aurora DB clusters.

", + "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.

", "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 Amazon RDS resources, see Tagging 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 AWS 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.

", + "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.

", "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 only applies to Aurora MySQL DB clusters.

", "CancelExportTask": "

Cancels an export task in progress that is exporting a snapshot 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.

This action only applies to Aurora DB clusters.

", - "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 AWS Region. In that case, the AWS Region where you call the CopyDBClusterSnapshot action is the destination AWS Region for the encrypted DB cluster snapshot to be copied to. To copy an encrypted DB cluster snapshot from another AWS Region, you must provide the following values:

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 DB cluster snapshots from one AWS Region to another, see Copying a Snapshot in the Amazon Aurora User Guide.

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.

", + "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 action 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:

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 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, see What Is Amazon Aurora? in the Amazon Aurora User Guide.

This action only applies to Aurora DB clusters.

", "CopyDBParameterGroup": "

Copies the specified DB parameter group.

", - "CopyDBSnapshot": "

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

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

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

", + "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 action is the destination Amazon Web Services Region for the DB snapshot copy.

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

", "CopyOptionGroup": "

Copies the specified option group.

", "CreateCustomAvailabilityZone": "

Creates a custom Availability Zone (AZ).

A custom AZ is an on-premises AZ that is integrated with a VMware vSphere cluster.

For more information about RDS on VMware, see the RDS on VMware User Guide.

", - "CreateDBCluster": "

Creates a new Amazon Aurora DB cluster.

You can use the ReplicationSourceIdentifier parameter to create the DB cluster as a read replica of another DB cluster or Amazon RDS MySQL DB instance. For cross-region replication where the DB cluster identified by ReplicationSourceIdentifier is encrypted, you must also specify the PreSignedUrl parameter.

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.

", + "CreateDBCluster": "

Creates a new Amazon Aurora DB cluster.

You can use the ReplicationSourceIdentifier parameter to create the DB cluster as a read replica of another DB cluster or Amazon RDS MySQL or PostgreSQL DB instance. For cross-region replication where the DB cluster identified by ReplicationSourceIdentifier is encrypted, you must also specify the PreSignedUrl parameter.

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.

", "CreateDBClusterEndpoint": "

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

This action only applies 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 DB cluster, you need to reboot the DB instances in 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 action 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.

This action only applies to Aurora DB clusters.

", "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.

This action only applies to Aurora DB clusters.

", @@ -27,9 +27,9 @@ "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.

", "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 AWS Region.

", + "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 action 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 SourceIdentifier = myDBInstance1, you are notified of all the db-instance events for the specified source. If you specify a SourceType but do not specify a SourceIdentifier, you receive notice of the events for that source type for all your RDS sources. If you don't specify either the SourceType or the SourceIdentifier, you are notified of events generated from all RDS sources belonging to your customer account.

RDS event notification is only available for unencrypted SNS topics. If you specify an encrypted SNS topic, event notifications aren't sent for the topic.

", - "CreateGlobalCluster": "

Creates an Aurora global database spread across multiple AWS 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 add a primary cluster and a secondary cluster to it. Or you can specify an existing Aurora cluster during the create operation, and this cluster becomes the primary cluster of the global database.

This action only applies to Aurora DB clusters.

", + "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 add a primary cluster and a secondary cluster to it. Or you can specify an existing Aurora cluster during the create operation, and this cluster becomes the primary cluster of the global database.

This action only applies to Aurora DB clusters.

", "CreateOptionGroup": "

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

", "DeleteCustomAvailabilityZone": "

Deletes a custom Availability Zone (AZ).

A custom AZ is an on-premises AZ that is integrated with a VMware vSphere cluster.

For more information about RDS on VMware, see the RDS on VMware 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.

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.

", @@ -50,13 +50,13 @@ "DeleteOptionGroup": "

Deletes an existing option group.

", "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.

", - "DescribeCertificates": "

Lists the set of CA certificates provided by Amazon RDS for this AWS account.

", + "DescribeCertificates": "

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

", "DescribeCustomAvailabilityZones": "

Returns information about custom Availability Zones (AZs).

A custom AZ is an on-premises AZ that is integrated with a VMware vSphere cluster.

For more information about RDS on VMware, see the RDS on VMware User Guide.

", "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.

This action only applies to Aurora DB clusters.

", "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.

This action only applies to Aurora DB clusters.

", - "DescribeDBClusterSnapshotAttributes": "

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

When sharing snapshots with other AWS accounts, DescribeDBClusterSnapshotAttributes returns the restore attribute and a list of IDs for the AWS 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 AWS accounts.

To add or remove access for an AWS 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.

This action only applies to Aurora DB clusters.

", + "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.

This action only applies to Aurora DB clusters.

", "DescribeDBClusterSnapshots": "

Returns information about DB cluster snapshots. This API action 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.

", "DescribeDBClusters": "

Returns information about provisioned Aurora DB clusters. This API supports pagination.

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

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

", "DescribeDBEngineVersions": "

Returns a list of the available DB engines.

", @@ -70,7 +70,7 @@ "DescribeDBProxyTargetGroups": "

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

", "DescribeDBProxyTargets": "

Returns information about DBProxyTarget objects. This API supports pagination.

", "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.

", - "DescribeDBSnapshotAttributes": "

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

When sharing snapshots with other AWS accounts, DescribeDBSnapshotAttributes returns the restore attribute and a list of IDs for the AWS 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 AWS accounts.

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

", + "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.

", "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.

", @@ -87,27 +87,27 @@ "DescribePendingMaintenanceActions": "

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

", "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 AWS Regions where the current AWS Region can create a read replica, copy a DB snapshot from, or replicate automated backups from. This API action supports pagination.

", + "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. This API action supports pagination.

", "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.

", "DownloadDBLogFilePortion": "

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

", "FailoverDBCluster": "

Forces a failover for a DB cluster.

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

Amazon Aurora will automatically fail over to an Aurora Replica, if one exists, when the primary instance fails. You can force a failover when you want to simulate a failure of a primary instance for testing. Because each instance in a DB cluster has its own endpoint address, you will need 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, see What Is Amazon Aurora? in the Amazon Aurora User Guide.

This action only applies to Aurora DB clusters.

", "FailoverGlobalCluster": "

Initiates the failover process for an Aurora global database (GlobalCluster).

A failover for an Aurora global database promotes one of secondary read-only DB clusters to be the primary DB cluster and demotes the primary DB cluster to being a secondary (read-only) DB cluster. In other words, the role of the current primary DB cluster and the selected (target) DB cluster are switched. The selected secondary DB cluster assumes full read/write capabilities for the Aurora global database.

For more information about failing over an Amazon Aurora global database, see Managed planned failover for Amazon Aurora global databases in the Amazon Aurora User Guide.

This action applies to GlobalCluster (Aurora global databases) only. Use this action only on healthy Aurora global databases with running Aurora DB clusters and no Region-wide outages, to test disaster recovery scenarios or to reconfigure your Aurora global database topology.

", "ImportInstallationMedia": "

Imports the installation media for a DB engine that requires an on-premises customer provided license, such as SQL Server.

", "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.

", - "ModifyCertificates": "

Override the system-default Secure Sockets Layer/Transport Layer Security (SSL/TLS) certificate for Amazon RDS for new DB instances temporarily, 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:

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.

", + "ModifyCertificates": "

Override the system-default Secure Sockets Layer/Transport Layer Security (SSL/TLS) certificate for Amazon RDS for new DB instances temporarily, 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:

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 DB cluster to a specific value.

Aurora Serverless 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 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, see Using Amazon Aurora Serverless in the Amazon Aurora User Guide.

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

This action only applies to Aurora DB clusters.

", "ModifyDBCluster": "

Modify a setting for an Amazon Aurora DB 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 action only applies to Aurora DB clusters.

", "ModifyDBClusterEndpoint": "

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

This action 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.

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

Changes to dynamic parameters are applied immediately. Changes to static parameters require a reboot without failover to the DB cluster associated with the parameter group before the change can 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 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 action 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 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.

This action only applies to Aurora DB clusters.

", - "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 AWS accounts, specify restore as the AttributeName and use the ValuesToAdd parameter to add a list of IDs of the AWS 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 AWS 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 AWS accounts.

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

To view which AWS 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 action. The accounts are returned as values for the restore attribute.

This action 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.

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

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 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 action 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 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.

This action only applies to Aurora DB clusters.

", + "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 action. The accounts are returned as values for the restore attribute.

This action only applies to Aurora DB clusters.

", "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.

Changes to dynamic parameters are applied immediately. Changes to static parameters require a reboot without failover to the DB instance associated with the parameter group before the change can take effect.

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 action 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.

", + "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 action 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.

", "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, Oracle, and PostgreSQL.

", - "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 AWS accounts, specify restore as the AttributeName and use the ValuesToAdd parameter to add a list of IDs of the AWS 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 AWS accounts.

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

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

To view which AWS accounts have access to copy or restore a manual DB snapshot, or whether a manual DB snapshot public or private, use the DescribeDBSnapshotAttributes API action. 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 AWS Region.

", + "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 action. 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": "

Modify a setting for an Amazon Aurora global cluster. You can change one or more database configuration parameters by specifying these parameters and the new values in the request. For more information on Amazon Aurora, see What Is Amazon Aurora? in the Amazon Aurora User Guide.

This action only applies to Aurora DB clusters.

", "ModifyOptionGroup": "

Modifies an existing option group.

", @@ -117,8 +117,8 @@ "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.

", "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 action only applies to Aurora DB clusters.

", - "RemoveRoleFromDBCluster": "

Disassociates an AWS Identity and Access Management (IAM) role from an Amazon Aurora DB cluster. For more information, see Authorizing Amazon Aurora MySQL to Access Other AWS Services on Your Behalf in the Amazon Aurora User Guide.

This action only applies to Aurora DB clusters.

", - "RemoveRoleFromDBInstance": "

Disassociates an AWS Identity and Access Management (IAM) role from a DB instance.

", + "RemoveRoleFromDBCluster": "

Disassociates an Amazon Web Services Identity and Access Management (IAM) role from an Amazon Aurora DB cluster. For more information, see Authorizing Amazon Aurora MySQL to Access Other Amazon Web Services Services on Your Behalf in the Amazon Aurora User Guide.

This action only applies to Aurora DB clusters.

", + "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.

", "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, see What Is Amazon Aurora? in the Amazon Aurora User Guide.

This action only applies to Aurora DB clusters.

", @@ -131,14 +131,14 @@ "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 command 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).

", "StartActivityStream": "

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

", - "StartDBCluster": "

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

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

This action only applies to Aurora DB clusters.

", - "StartDBInstance": "

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

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 Aurora MySQL and Aurora PostgreSQL. For Aurora DB clusters, use StartDBCluster instead.

", - "StartDBInstanceAutomatedBackupsReplication": "

Enables replication of automated backups to a different AWS Region.

For more information, see Replicating Automated Backups to Another AWS Region 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 action.

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

This action 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 action.

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 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.

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

", "StartExportTask": "

Starts an export of a snapshot to Amazon S3. The provided IAM role must have access to the S3 bucket.

", - "StopActivityStream": "

Stops a database activity stream that was started using the AWS console, the start-activity-stream AWS CLI command, or the StartActivityStream action.

For more information, see Database Activity Streams 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 action.

For more information, see Database Activity Streams in the Amazon Aurora 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 action only applies to Aurora DB clusters.

", "StopDBInstance": "

Stops an Amazon RDS DB instance. 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.

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

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

", - "StopDBInstanceAutomatedBackupsReplication": "

Stops automated backup replication for a DB instance.

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

" + "StopDBInstanceAutomatedBackupsReplication": "

Stops automated backup replication for a DB instance.

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

" }, "shapes": { "AccountAttributesMessage": { @@ -147,7 +147,7 @@ } }, "AccountQuota": { - "base": "

Describes a quota for an AWS account.

The following are account quotas:

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.

", + "base": "

Describes a quota for an Amazon Web Services account.

The following are account quotas:

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 } @@ -162,14 +162,22 @@ "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.

", "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.

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

The status of the database activity stream.

", + "DBInstance$ActivityStreamStatus": "

The status of the database activity stream.

", "StartActivityStreamResponse$Status": "

The status of the database activity stream.

", "StopActivityStreamResponse$Status": "

The status of the database activity stream.

" } @@ -218,12 +226,12 @@ "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 AWS 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 AWS 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 AWS 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 AWS 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 AWS accounts to copy or restore a manual DB cluster snapshot, set this list to include one or more AWS account IDs, or all to make the manual DB cluster snapshot restorable by any AWS 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 AWS accounts.

", - "ModifyDBClusterSnapshotAttributeMessage$ValuesToRemove": "

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

To remove authorization for other AWS accounts to copy or restore a manual DB cluster snapshot, set this list to include one or more AWS account identifiers, or all to remove authorization for any AWS account to copy or restore the DB cluster snapshot. If you specify all, an AWS 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 AWS accounts to copy or restore a manual snapshot, set this list to include one or more AWS account IDs, or all to make the manual DB snapshot restorable by any AWS account. Do not add the all value for any manual DB snapshots that contain private information that you don't want available to all AWS accounts.

", - "ModifyDBSnapshotAttributeMessage$ValuesToRemove": "

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

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

" + "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.

" } }, "AuthScheme": { @@ -274,7 +282,7 @@ "AvailabilityZones": { "base": null, "refs": { - "CreateDBClusterMessage$AvailabilityZones": "

A list of Availability Zones (AZs) where instances in the DB cluster can be created. For information on AWS Regions and Availability Zones, see Choosing the Regions and Availability Zones in the Amazon Aurora User Guide.

", + "CreateDBClusterMessage$AvailabilityZones": "

A list of Availability Zones (AZs) where instances in the DB cluster can be created. For information on Amazon Web Services Regions and Availability Zones, see Choosing the Regions and Availability Zones in the Amazon Aurora User Guide.

", "DBCluster$AvailabilityZones": "

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

", "DBClusterSnapshot$AvailabilityZones": "

Provides 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.

", @@ -297,7 +305,7 @@ "AwsBackupRecoveryPointArn": { "base": null, "refs": { - "ModifyDBInstanceMessage$AwsBackupRecoveryPointArn": "

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

" + "ModifyDBInstanceMessage$AwsBackupRecoveryPointArn": "

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

" } }, "BacktrackDBClusterMessage": { @@ -318,7 +326,7 @@ "DBCluster$StorageEncrypted": "

Specifies whether the DB cluster is encrypted.

", "DBClusterMember$IsClusterWriter": "

Value that is true if the cluster member is the primary instance for the DB cluster and false otherwise.

", "DBClusterSnapshot$StorageEncrypted": "

Specifies whether the DB cluster snapshot is encrypted.

", - "DBClusterSnapshot$IAMDatabaseAuthenticationEnabled": "

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

", + "DBClusterSnapshot$IAMDatabaseAuthenticationEnabled": "

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

", "DBEngineVersion$SupportsLogExportsToCloudwatchLogs": "

A value that 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": "

A value that indicates whether you can use Aurora parallel query with a specific DB engine version.

", @@ -328,25 +336,25 @@ "DBInstance$PubliclyAccessible": "

Specifies the accessibility options for the DB instance.

When the DB instance is publicly accessible, its DNS endpoint resolves to the private IP address from within the DB instance's VPC, and 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, and 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.

", "DBInstance$StorageEncrypted": "

Specifies whether the DB instance is encrypted.

", "DBInstance$CopyTagsToSnapshot": "

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

Amazon Aurora

Not applicable. 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": "

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

IAM database authentication can be enabled for the following database engines

", + "DBInstance$IAMDatabaseAuthenticationEnabled": "

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

IAM database authentication can be enabled for the following database engines

", "DBInstance$DeletionProtection": "

Indicates if 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.

", "DBInstanceAutomatedBackup$Encrypted": "

Specifies whether the automated backup is encrypted.

", - "DBInstanceAutomatedBackup$IAMDatabaseAuthenticationEnabled": "

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

", + "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": "

Boolean value that is true if the instance is operating normally, or false if the instance is in an error state.

", "DBProxy$RequireTLS": "

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

", "DBProxy$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.

", "DBProxyEndpoint$IsDefault": "

A value that 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": "

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": "

Specifies whether the DB snapshot is encrypted.

", - "DBSnapshot$IAMDatabaseAuthenticationEnabled": "

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

", + "DBSnapshot$IAMDatabaseAuthenticationEnabled": "

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

", "DeleteDBClusterMessage$SkipFinalSnapshot": "

A value that indicates whether to skip the creation of a final DB cluster snapshot before the DB cluster is deleted. If skip is specified, no DB cluster snapshot is created. If skip isn't specified, a DB cluster snapshot is created before the DB cluster is deleted. By default, skip isn't specified, and the DB cluster snapshot is created. By default, this parameter is disabled.

You must specify a FinalDBSnapshotIdentifier parameter if SkipFinalSnapshot is disabled.

", "DeleteDBInstanceMessage$SkipFinalSnapshot": "

A value that indicates whether to skip the creation of a final DB snapshot before the DB instance is deleted. If skip is specified, no DB snapshot is created. If skip isn't specified, a DB snapshot is created before the DB instance is deleted. By default, skip isn't specified, and the DB snapshot is created.

When a DB instance is in a failure state and has a status of 'failed', 'incompatible-restore', or 'incompatible-network', it can only be deleted when skip is specified.

Specify skip when deleting a read replica.

The FinalDBSnapshotIdentifier parameter must be specified if skip isn't specified.

", - "DescribeDBClusterSnapshotsMessage$IncludeShared": "

A value that indicates whether to include shared manual DB cluster snapshots from other AWS accounts that this AWS account has been given permission to copy or restore. By default, these snapshots are not included.

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

", - "DescribeDBClusterSnapshotsMessage$IncludePublic": "

A value that indicates whether to include manual DB cluster snapshots that are public and can be copied or restored by any AWS 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": "

Optional Boolean parameter that specifies whether the output includes information about clusters shared from other AWS accounts.

", + "DescribeDBClusterSnapshotsMessage$IncludeShared": "

A value that indicates 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": "

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

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

", + "DescribeDBClustersMessage$IncludeShared": "

Optional Boolean parameter that specifies whether the output includes information about clusters shared from other Amazon Web Services accounts.

", "DescribeDBEngineVersionsMessage$DefaultOnly": "

A value that indicates whether only the default version of the specified engine or engine and major version combination is returned.

", - "DescribeDBSnapshotsMessage$IncludeShared": "

A value that indicates whether to include shared manual DB cluster snapshots from other AWS accounts that this AWS account has been given permission to copy or restore. By default, these snapshots are not included.

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

", - "DescribeDBSnapshotsMessage$IncludePublic": "

A value that indicates whether to include manual DB cluster snapshots that are public and can be copied or restored by any AWS account. By default, the public snapshots are not included.

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

", + "DescribeDBSnapshotsMessage$IncludeShared": "

A value that indicates 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.

", + "DescribeDBSnapshotsMessage$IncludePublic": "

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

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

", "DownloadDBLogFilePortionDetails$AdditionalDataPending": "

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

", "EventSubscription$Enabled": "

A Boolean value indicating if the subscription is enabled. True indicates the subscription is enabled.

", "GlobalClusterMember$IsWriter": "

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

", @@ -376,7 +384,7 @@ "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": "

True if a DB instance supports Performance Insights, otherwise false.

", - "OrderableDBInstanceOption$OutpostCapable": "

Whether a DB instance supports RDS on Outposts.

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

", + "OrderableDBInstanceOption$OutpostCapable": "

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": "

A value that indicates whether you can use Aurora global databases with a specific combination of other DB engine attributes.

", "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 if the reservation applies to Multi-AZ deployments.

", @@ -385,7 +393,7 @@ "ResetDBParameterGroupMessage$ResetAllParameters": "

A value that indicates 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": "

A value that indicates 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.

", "RestoreDBInstanceToPointInTimeMessage$UseLatestRestorableTime": "

A value that indicates 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": "

Whether the source AWS Region supports replicating automated backups to the current AWS Region.

", + "SourceRegion$SupportsDBInstanceAutomatedBackupsReplication": "

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.

", "UpgradeTarget$AutoUpgrade": "

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

", "UpgradeTarget$IsMajorVersionUpgrade": "

A value that indicates whether upgrading to the target version requires upgrading the major version of the database engine.

", @@ -398,11 +406,11 @@ "BacktrackDBClusterMessage$Force": "

A value that indicates whether to force the DB cluster to backtrack when binary logging is enabled. Otherwise, an error occurs when binary logging is enabled.

", "BacktrackDBClusterMessage$UseEarliestTimeOnPointInTimeUnavailable": "

A value that indicates 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": "

Whether there is an override for the default certificate identifier.

", - "ClusterPendingModifiedValues$IAMDatabaseAuthenticationEnabled": "

A value that indicates whether mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled.

", + "ClusterPendingModifiedValues$IAMDatabaseAuthenticationEnabled": "

A value that indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

", "CopyDBClusterSnapshotMessage$CopyTags": "

A value that indicates 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": "

A value that indicates whether to copy all tags from the source DB snapshot to the target DB snapshot. By default, tags are not copied.

", "CreateDBClusterMessage$StorageEncrypted": "

A value that indicates whether the DB cluster is encrypted.

", - "CreateDBClusterMessage$EnableIAMDatabaseAuthentication": "

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide.

", + "CreateDBClusterMessage$EnableIAMDatabaseAuthentication": "

A value that indicates 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, see IAM Database Authentication in the Amazon Aurora User Guide.

", "CreateDBClusterMessage$DeletionProtection": "

A value that indicates whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection is disabled.

", "CreateDBClusterMessage$EnableHttpEndpoint": "

A value that indicates whether to enable the HTTP endpoint for an Aurora Serverless DB cluster. By default, the HTTP endpoint is disabled.

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

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

", "CreateDBClusterMessage$CopyTagsToSnapshot": "

A value that indicates whether to copy all tags from the DB cluster to snapshots of the DB cluster. The default is not to copy them.

", @@ -412,15 +420,15 @@ "CreateDBInstanceMessage$PubliclyAccessible": "

A value that indicates whether the DB instance is publicly accessible.

When the DB instance is publicly accessible, its DNS endpoint resolves to the private IP address from within the DB instance's VPC, and 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, and 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 DBSubnetGroupName is specified, and PubliclyAccessible isn't specified, the following applies:

", "CreateDBInstanceMessage$StorageEncrypted": "

A value that indicates whether the DB instance is encrypted. By default, it isn't encrypted.

Amazon Aurora

Not applicable. The encryption for DB instances is managed by the DB cluster.

", "CreateDBInstanceMessage$CopyTagsToSnapshot": "

A value that indicates whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied.

Amazon Aurora

Not applicable. 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": "

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts to database accounts is managed by the DB cluster.

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

", + "CreateDBInstanceMessage$EnableIAMDatabaseAuthentication": "

A value that indicates whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

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, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

", "CreateDBInstanceMessage$EnablePerformanceInsights": "

A value that indicates whether to enable Performance Insights for the DB instance.

For more information, see Using Amazon Performance Insights in the Amazon Relational Database Service User Guide.

", "CreateDBInstanceMessage$DeletionProtection": "

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

Amazon Aurora

Not applicable. 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": "

A value that indicates 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 AWS Outposts in the Amazon RDS User Guide.

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

", + "CreateDBInstanceMessage$EnableCustomerOwnedIp": "

A value that indicates 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.

", "CreateDBInstanceReadReplicaMessage$MultiAZ": "

A value that indicates 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 database is a Multi-AZ DB instance.

", "CreateDBInstanceReadReplicaMessage$AutoMinorVersionUpgrade": "

A value that indicates whether minor engine upgrades are applied automatically to the read replica during the maintenance window.

Default: Inherits from the source DB instance

", "CreateDBInstanceReadReplicaMessage$PubliclyAccessible": "

A value that indicates whether the DB instance is publicly accessible.

When the DB instance is publicly accessible, its DNS endpoint resolves to the private IP address from within the DB instance's VPC, and 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, and 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.

", "CreateDBInstanceReadReplicaMessage$CopyTagsToSnapshot": "

A value that indicates whether to copy all tags from the read replica to snapshots of the read replica. By default, tags are not copied.

", - "CreateDBInstanceReadReplicaMessage$EnableIAMDatabaseAuthentication": "

A value that indicates whether to enable mapping of AWS 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.

", + "CreateDBInstanceReadReplicaMessage$EnableIAMDatabaseAuthentication": "

A value that indicates 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.

", "CreateDBInstanceReadReplicaMessage$EnablePerformanceInsights": "

A value that indicates whether to enable Performance Insights for the read replica.

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

", "CreateDBInstanceReadReplicaMessage$UseDefaultProcessorFeatures": "

A value that indicates whether the DB instance class of the DB instance uses its default processor features.

", "CreateDBInstanceReadReplicaMessage$DeletionProtection": "

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

", @@ -428,14 +436,15 @@ "CreateGlobalClusterMessage$DeletionProtection": "

The deletion protection setting for the new global database. The global database can't be deleted when deletion protection is enabled.

", "CreateGlobalClusterMessage$StorageEncrypted": "

The storage encryption setting for the new global database cluster.

", "DBCluster$MultiAZ": "

Specifies whether the DB cluster has instances in multiple Availability Zones.

", - "DBCluster$IAMDatabaseAuthenticationEnabled": "

A value that indicates whether the mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled.

", + "DBCluster$IAMDatabaseAuthenticationEnabled": "

A value that indicates whether the mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

", "DBCluster$DeletionProtection": "

Indicates if the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled.

", "DBCluster$HttpEndpointEnabled": "

A value that indicates whether the HTTP endpoint for an Aurora Serverless DB cluster is enabled.

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

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

", "DBCluster$CopyTagsToSnapshot": "

Specifies whether tags are copied from the DB cluster to snapshots of the DB cluster.

", - "DBCluster$CrossAccountClone": "

Specifies whether the DB cluster is a clone of a DB cluster owned by a different AWS account.

", + "DBCluster$CrossAccountClone": "

Specifies whether the DB cluster is a clone of a DB cluster owned by a different Amazon Web Services account.

", "DBCluster$GlobalWriteForwardingRequested": "

Specifies whether you have requested to enable write forwarding 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.

", "DBInstance$PerformanceInsightsEnabled": "

True if Performance Insights is enabled for the DB instance, and otherwise false.

", - "DBInstance$CustomerOwnedIpEnabled": "

Specifies 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 AWS Outposts in the Amazon RDS User Guide.

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

", + "DBInstance$CustomerOwnedIpEnabled": "

Specifies 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.

", "DeleteDBInstanceMessage$DeleteAutomatedBackups": "

A value that indicates 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": "

A value that indicates 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.

", "DescribeDBEngineVersionsMessage$ListSupportedTimezones": "

A value that indicates 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.

", @@ -446,7 +455,7 @@ "GlobalCluster$StorageEncrypted": "

The storage encryption setting for the global database cluster.

", "GlobalCluster$DeletionProtection": "

The deletion protection setting for the new global database cluster.

", "ModifyCertificatesMessage$RemoveCustomerOverride": "

A value that indicates whether to remove the override for the default certificate. If the override is removed, the default certificate is the system default.

", - "ModifyDBClusterMessage$EnableIAMDatabaseAuthentication": "

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide.

", + "ModifyDBClusterMessage$EnableIAMDatabaseAuthentication": "

A value that indicates 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, see IAM Database Authentication in the Amazon Aurora User Guide.

", "ModifyDBClusterMessage$DeletionProtection": "

A value that indicates whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection is disabled.

", "ModifyDBClusterMessage$EnableHttpEndpoint": "

A value that indicates whether to enable the HTTP endpoint for an Aurora Serverless DB cluster. By default, the HTTP endpoint is disabled.

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

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

", "ModifyDBClusterMessage$CopyTagsToSnapshot": "

A value that indicates whether to copy all tags from the DB cluster to snapshots of the DB cluster. The default is not to copy them.

", @@ -455,12 +464,12 @@ "ModifyDBInstanceMessage$AutoMinorVersionUpgrade": "

A value that indicates whether minor version upgrades are applied automatically to the DB instance during the maintenance window. Changing this parameter doesn't result in an outage except in the following case and the change is asynchronously applied as soon as possible. An outage results if this parameter is enabled during the maintenance window, and a newer minor version is available, and RDS has enabled auto patching for that engine version.

", "ModifyDBInstanceMessage$CopyTagsToSnapshot": "

A value that indicates whether to copy all tags from the DB instance to snapshots of the DB instance. By default, tags are not copied.

Amazon Aurora

Not applicable. 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": "

A value that indicates whether the DB instance is publicly accessible.

When the DB instance is publicly accessible, its DNS endpoint resolves to the private IP address from within the DB instance's VPC, and 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, and 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.

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": "

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

This setting doesn't apply to Amazon Aurora. Mapping AWS 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.

", + "ModifyDBInstanceMessage$EnableIAMDatabaseAuthentication": "

A value that indicates whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

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.

", "ModifyDBInstanceMessage$EnablePerformanceInsights": "

A value that indicates whether to enable Performance Insights for the DB instance.

For more information, see Using Amazon Performance Insights in the Amazon Relational Database Service User Guide.

", "ModifyDBInstanceMessage$UseDefaultProcessorFeatures": "

A value that indicates whether the DB instance class of the DB instance uses its default processor features.

", "ModifyDBInstanceMessage$DeletionProtection": "

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

", "ModifyDBInstanceMessage$CertificateRotationRestart": "

A value that indicates 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:

", - "ModifyDBInstanceMessage$EnableCustomerOwnedIp": "

A value that indicates 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 AWS Outposts in the Amazon RDS User Guide.

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

", + "ModifyDBInstanceMessage$EnableCustomerOwnedIp": "

A value that indicates 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.

", "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": "

A value that indicates whether to activate the subscription.

", @@ -470,32 +479,32 @@ "OrderableDBInstanceOption$SupportsStorageAutoscaling": "

Whether Amazon RDS can automatically scale storage for DB instances that use the specified DB instance class.

", "OrderableDBInstanceOption$SupportsKerberosAuthentication": "

Whether a DB instance supports Kerberos Authentication.

", "PendingModifiedValues$MultiAZ": "

A value that indicates that the Single-AZ DB instance will change to a Multi-AZ deployment.

", - "PendingModifiedValues$IAMDatabaseAuthenticationEnabled": "

Whether mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled.

", + "PendingModifiedValues$IAMDatabaseAuthenticationEnabled": "

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

", "RebootDBInstanceMessage$ForceFailover": "

A value that indicates 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": "

A value that indicates whether the restored DB cluster is encrypted.

", - "RestoreDBClusterFromS3Message$EnableIAMDatabaseAuthentication": "

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide.

", + "RestoreDBClusterFromS3Message$EnableIAMDatabaseAuthentication": "

A value that indicates 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, see IAM Database Authentication in the Amazon Aurora User Guide.

", "RestoreDBClusterFromS3Message$DeletionProtection": "

A value that indicates whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection is disabled.

", "RestoreDBClusterFromS3Message$CopyTagsToSnapshot": "

A value that indicates whether to copy all tags from the restored DB cluster to snapshots of the restored DB cluster. The default is not to copy them.

", - "RestoreDBClusterFromSnapshotMessage$EnableIAMDatabaseAuthentication": "

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide.

", + "RestoreDBClusterFromSnapshotMessage$EnableIAMDatabaseAuthentication": "

A value that indicates 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, see IAM Database Authentication in the Amazon Aurora User Guide.

", "RestoreDBClusterFromSnapshotMessage$DeletionProtection": "

A value that indicates whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection is disabled.

", "RestoreDBClusterFromSnapshotMessage$CopyTagsToSnapshot": "

A value that indicates whether to copy all tags from the restored DB cluster to snapshots of the restored DB cluster. The default is not to copy them.

", - "RestoreDBClusterToPointInTimeMessage$EnableIAMDatabaseAuthentication": "

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

For more information, see IAM Database Authentication in the Amazon Aurora User Guide.

", + "RestoreDBClusterToPointInTimeMessage$EnableIAMDatabaseAuthentication": "

A value that indicates 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, see IAM Database Authentication in the Amazon Aurora User Guide.

", "RestoreDBClusterToPointInTimeMessage$DeletionProtection": "

A value that indicates whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection is disabled.

", "RestoreDBClusterToPointInTimeMessage$CopyTagsToSnapshot": "

A value that indicates whether to copy all tags from the restored DB cluster to snapshots of the restored DB cluster. The default is not to copy them.

", "RestoreDBInstanceFromDBSnapshotMessage$MultiAZ": "

A value that indicates whether the DB instance is a Multi-AZ deployment.

Constraint: You can't specify the AvailabilityZone parameter if the DB instance is a Multi-AZ deployment.

", "RestoreDBInstanceFromDBSnapshotMessage$PubliclyAccessible": "

A value that indicates whether the DB instance is publicly accessible.

When the DB instance is publicly accessible, its DNS endpoint resolves to the private IP address from within the DB instance's VPC, and 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, and 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": "

A value that indicates whether minor version upgrades are applied automatically to the DB instance during the maintenance window.

", "RestoreDBInstanceFromDBSnapshotMessage$CopyTagsToSnapshot": "

A value that indicates whether to copy all tags from the restored DB instance to snapshots of the DB instance. By default, tags are not copied.

", - "RestoreDBInstanceFromDBSnapshotMessage$EnableIAMDatabaseAuthentication": "

A value that indicates whether to enable mapping of AWS 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.

", + "RestoreDBInstanceFromDBSnapshotMessage$EnableIAMDatabaseAuthentication": "

A value that indicates 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.

", "RestoreDBInstanceFromDBSnapshotMessage$UseDefaultProcessorFeatures": "

A value that indicates whether the DB instance class of the DB instance uses its default processor features.

", "RestoreDBInstanceFromDBSnapshotMessage$DeletionProtection": "

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

", - "RestoreDBInstanceFromDBSnapshotMessage$EnableCustomerOwnedIp": "

A value that indicates 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 AWS Outposts in the Amazon RDS User Guide.

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

", + "RestoreDBInstanceFromDBSnapshotMessage$EnableCustomerOwnedIp": "

A value that indicates 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.

", "RestoreDBInstanceFromS3Message$MultiAZ": "

A value that indicates 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": "

A value that indicates whether minor engine upgrades are applied automatically to the DB instance during the maintenance window. By default, minor engine upgrades are not applied automatically.

", "RestoreDBInstanceFromS3Message$PubliclyAccessible": "

A value that indicates whether the DB instance is publicly accessible.

When the DB instance is publicly accessible, its DNS endpoint resolves to the private IP address from within the DB instance's VPC, and 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, and 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": "

A value that indicates whether the new DB instance is encrypted or not.

", "RestoreDBInstanceFromS3Message$CopyTagsToSnapshot": "

A value that indicates whether to copy all tags from the DB instance to snapshots of the DB instance. By default, tags are not copied.

", - "RestoreDBInstanceFromS3Message$EnableIAMDatabaseAuthentication": "

A value that indicates whether to enable mapping of AWS 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.

", + "RestoreDBInstanceFromS3Message$EnableIAMDatabaseAuthentication": "

A value that indicates 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.

", "RestoreDBInstanceFromS3Message$EnablePerformanceInsights": "

A value that indicates whether to enable Performance Insights for the DB instance.

For more information, see Using Amazon Performance Insights in the Amazon Relational Database Service User Guide.

", "RestoreDBInstanceFromS3Message$UseDefaultProcessorFeatures": "

A value that indicates whether the DB instance class of the DB instance uses its default processor features.

", "RestoreDBInstanceFromS3Message$DeletionProtection": "

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

", @@ -503,13 +512,15 @@ "RestoreDBInstanceToPointInTimeMessage$PubliclyAccessible": "

A value that indicates whether the DB instance is publicly accessible.

When the DB instance is publicly accessible, its DNS endpoint resolves to the private IP address from within the DB instance's VPC, and 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, and 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.

", "RestoreDBInstanceToPointInTimeMessage$AutoMinorVersionUpgrade": "

A value that indicates whether minor version upgrades are applied automatically to the DB instance during the maintenance window.

", "RestoreDBInstanceToPointInTimeMessage$CopyTagsToSnapshot": "

A value that indicates whether to copy all tags from the restored DB instance to snapshots of the DB instance. By default, tags are not copied.

", - "RestoreDBInstanceToPointInTimeMessage$EnableIAMDatabaseAuthentication": "

A value that indicates whether to enable mapping of AWS 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.

", + "RestoreDBInstanceToPointInTimeMessage$EnableIAMDatabaseAuthentication": "

A value that indicates 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.

", "RestoreDBInstanceToPointInTimeMessage$UseDefaultProcessorFeatures": "

A value that indicates whether the DB instance class of the DB instance uses its default processor features.

", "RestoreDBInstanceToPointInTimeMessage$DeletionProtection": "

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

", - "RestoreDBInstanceToPointInTimeMessage$EnableCustomerOwnedIp": "

A value that indicates 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 AWS Outposts in the Amazon RDS User Guide.

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

", + "RestoreDBInstanceToPointInTimeMessage$EnableCustomerOwnedIp": "

A value that indicates 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.

", "ScalingConfiguration$AutoPause": "

A value that 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": "

A value that 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 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 only applies to an Oracle 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": "

A value that indicates whether you can use Aurora parallel query with the target engine version.

", "UpgradeTarget$SupportsGlobalDatabases": "

A value that indicates whether you can use Aurora global databases with the target engine version.

" @@ -521,7 +532,7 @@ } }, "Certificate": { - "base": "

A CA certificate for an AWS account.

", + "base": "

A CA certificate for an Amazon Web Services account.

", "refs": { "CertificateList$member": null, "ModifyCertificatesResult$Certificate": null @@ -530,7 +541,7 @@ "CertificateList": { "base": null, "refs": { - "CertificateMessage$Certificates": "

The list of Certificate objects for the AWS account.

" + "CertificateMessage$Certificates": "

The list of Certificate objects for the Amazon Web Services account.

" } }, "CertificateMessage": { @@ -796,7 +807,7 @@ "CustomAvailabilityZoneList": { "base": null, "refs": { - "CustomAvailabilityZoneMessage$CustomAvailabilityZones": "

The list of CustomAvailabilityZone objects for the AWS account.

" + "CustomAvailabilityZoneMessage$CustomAvailabilityZones": "

The list of CustomAvailabilityZone objects for the Amazon Web Services account.

" } }, "CustomAvailabilityZoneMessage": { @@ -897,7 +908,7 @@ "DBClusterIdentifier": { "base": null, "refs": { - "FailoverGlobalClusterMessage$TargetDbClusterIdentifier": "

Identifier of the secondary Aurora DB cluster that you want to promote to primary for the Aurora global database (GlobalCluster.) Use the Amazon Resource Name (ARN) for the identifier so that Aurora can locate the cluster in its AWS Region.

" + "FailoverGlobalClusterMessage$TargetDbClusterIdentifier": "

Identifier of the secondary Aurora DB cluster that you want to promote to primary for the Aurora global database (GlobalCluster.) Use the Amazon Resource Name (ARN) for the identifier so that Aurora can locate the cluster in its Amazon Web Services Region.

" } }, "DBClusterList": { @@ -980,7 +991,7 @@ } }, "DBClusterRole": { - "base": "

Describes an AWS Identity and Access Management (IAM) role that is associated with a DB cluster.

", + "base": "

Describes an Amazon Web Services Identity and Access Management (IAM) role that is associated with a DB cluster.

", "refs": { "DBClusterRoles$member": null } @@ -1003,7 +1014,7 @@ "DBClusterRoles": { "base": null, "refs": { - "DBCluster$AssociatedRoles": "

Provides a list of the AWS 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 AWS services on your behalf.

" + "DBCluster$AssociatedRoles": "

Provides 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": { @@ -1021,7 +1032,7 @@ } }, "DBClusterSnapshotAttribute": { - "base": "

Contains the name and values of a manual DB cluster snapshot attribute.

Manual DB cluster snapshot attributes are used to authorize other AWS accounts to restore a manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

", + "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 } @@ -1033,7 +1044,7 @@ } }, "DBClusterSnapshotAttributesResult": { - "base": "

Contains the results of a successful call to the DescribeDBClusterSnapshotAttributes API action.

Manual DB cluster snapshot attributes are used to authorize other AWS accounts to copy or restore a manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

", + "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 @@ -1125,7 +1136,7 @@ } }, "DBInstanceAutomatedBackupsReplication": { - "base": "

Automated backups of a DB instance replicated to another AWS Region. They consist of system backups, transaction logs, and database instance properties.

", + "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 } @@ -1134,7 +1145,7 @@ "base": null, "refs": { "DBInstance$DBInstanceAutomatedBackupsReplications": "

The list of replicated automated backups associated with the DB instance.

", - "DBInstanceAutomatedBackup$DBInstanceAutomatedBackupsReplications": "

The list of replications to different AWS Regions associated with the automated backup.

" + "DBInstanceAutomatedBackup$DBInstanceAutomatedBackupsReplications": "

The list of replications to different Amazon Web Services Regions associated with the automated backup.

" } }, "DBInstanceList": { @@ -1154,7 +1165,7 @@ } }, "DBInstanceRole": { - "base": "

Describes an AWS Identity and Access Management (IAM) role that is associated with a DB instance.

", + "base": "

Describes an Amazon Web Services Identity and Access Management (IAM) role that is associated with a DB instance.

", "refs": { "DBInstanceRoles$member": null } @@ -1170,14 +1181,14 @@ } }, "DBInstanceRoleQuotaExceededFault": { - "base": "

You can't associate any more AWS Identity and Access Management (IAM) roles with the DB instance because the quota has been reached.

", + "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 AWS Identity and Access Management (IAM) roles associated with the DB instance.

" + "DBInstance$AssociatedRoles": "

The Amazon Web Services Identity and Access Management (IAM) roles associated with the DB instance.

" } }, "DBInstanceStatusInfo": { @@ -1263,7 +1274,7 @@ } }, "DBProxyAlreadyExistsFault": { - "base": "

The specified proxy name must be unique for all proxies owned by your AWS account in the specified AWS Region.

", + "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": { } }, @@ -1277,7 +1288,7 @@ } }, "DBProxyEndpointAlreadyExistsFault": { - "base": "

The specified DB proxy endpoint name must be unique for all DB proxy endpoints owned by your AWS account in the specified AWS Region.

", + "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": { } }, @@ -1334,12 +1345,12 @@ } }, "DBProxyNotFoundFault": { - "base": "

The specified proxy name doesn't correspond to a proxy owned by your AWS account in the specified AWS Region.

", + "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 AWS account already has the maximum number of proxies in the specified AWS Region.

", + "base": "

Your Amazon Web Services account already has the maximum number of proxies in the specified Amazon Web Services Region.

", "refs": { } }, @@ -1368,12 +1379,12 @@ } }, "DBProxyTargetGroupNotFoundFault": { - "base": "

The specified target group isn't available for a proxy owned by your AWS account in the specified AWS Region.

", + "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 AWS account in the specified AWS Region.

", + "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": { } }, @@ -1455,7 +1466,7 @@ } }, "DBSnapshotAttribute": { - "base": "

Contains the name and values of a manual DB snapshot attribute

Manual DB snapshot attributes are used to authorize other AWS accounts to restore a manual DB snapshot. For more information, see the ModifyDBSnapshotAttribute API.

", + "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 } @@ -1467,7 +1478,7 @@ } }, "DBSnapshotAttributesResult": { - "base": "

Contains the results of a successful call to the DescribeDBSnapshotAttributes API action.

Manual DB snapshot attributes are used to authorize other AWS accounts to copy or restore a manual DB snapshot. For more information, see the ModifyDBSnapshotAttribute API action.

", + "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 @@ -2300,8 +2311,8 @@ "IAMAuthMode": { "base": null, "refs": { - "UserAuthConfig$IAMAuth": "

Whether to require or disallow AWS Identity and Access Management (IAM) authentication for connections to the proxy.

", - "UserAuthConfigInfo$IAMAuth": "

Whether to require or disallow AWS Identity and Access Management (IAM) authentication for connections to the proxy.

" + "UserAuthConfig$IAMAuth": "

Whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy.

", + "UserAuthConfigInfo$IAMAuth": "

Whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy.

" } }, "IPRange": { @@ -2351,7 +2362,7 @@ "InstallationMediaList": { "base": null, "refs": { - "InstallationMediaMessage$InstallationMedia": "

The list of InstallationMedia objects for the AWS account.

" + "InstallationMediaMessage$InstallationMedia": "

The list of InstallationMedia objects for the Amazon Web Services account.

" } }, "InstallationMediaMessage": { @@ -2533,7 +2544,7 @@ "RestoreDBInstanceToPointInTimeMessage$MaxAllocatedStorage": "

The upper limit 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.

", "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.

", + "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.

", "ScalingConfigurationInfo$MinCapacity": "

The maximum capacity for the 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).

", @@ -2661,7 +2672,7 @@ } }, "KMSKeyNotAccessibleFault": { - "base": "

An error occurred accessing an AWS KMS key.

", + "base": "

An error occurred accessing an Amazon Web Services KMS key.

", "refs": { } }, @@ -2977,7 +2988,7 @@ } }, "OptionGroupQuotaExceededFault": { - "base": "

The quota of 20 option groups was exceeded for this AWS account.

", + "base": "

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

", "refs": { } }, @@ -3059,9 +3070,9 @@ } }, "Outpost": { - "base": "

A data type that represents an Outpost.

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

", + "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 AWS Outposts in the Amazon RDS User Guide.

" + "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": { @@ -3076,8 +3087,8 @@ "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.

", - "ModifyDBParameterGroupMessage$Parameters": "

An array of parameter names, values, and the apply method for the parameter update. At least one parameter name, value, and apply 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, and changes are applied when you reboot the DB instance without failover.

", + "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 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.

", "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

" } @@ -3497,7 +3508,7 @@ } }, "SourceRegion": { - "base": "

Contains an AWS Region name as the result of a successful call to the DescribeSourceRegions action.

", + "base": "

Contains an Amazon Web Services Region name as the result of a successful call to the DescribeSourceRegions action.

", "refs": { "SourceRegionList$member": null } @@ -3505,7 +3516,7 @@ "SourceRegionList": { "base": null, "refs": { - "SourceRegionMessage$SourceRegions": "

A list of SourceRegion instances that contains each source AWS Region that the current AWS Region can get a read replica or a DB snapshot from.

" + "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": { @@ -3618,7 +3629,8 @@ "String": { "base": null, "refs": { - "AccountQuota$AccountQuotaName": "

The name of the Amazon RDS quota for this AWS account.

", + "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 the list of supported feature names, see DBEngineVersion.

", @@ -3636,7 +3648,7 @@ "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": "

AWS account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter. The AWS 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.

", + "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.

", @@ -3659,18 +3671,18 @@ "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:

", "CopyDBClusterParameterGroupMessage$TargetDBClusterParameterGroupIdentifier": "

The identifier for the copied DB cluster parameter group.

Constraints:

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 AWS Region to another.

Constraints:

Example: my-cluster-snapshot1

", + "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:

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:

Example: my-cluster-snapshot2

", - "CopyDBClusterSnapshotMessage$KmsKeyId": "

The AWS KMS key identifier for an encrypted DB cluster snapshot. The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

If you copy an encrypted DB cluster snapshot from your AWS account, you can specify a value for KmsKeyId to encrypt the copy with a new AWS KMS CMK. If you don't specify a value for KmsKeyId, then the copy of the DB cluster snapshot is encrypted with the same AWS KMS key as the source DB cluster snapshot.

If you copy an encrypted DB cluster snapshot that is shared from another AWS account, then you must specify a value for KmsKeyId.

To copy an encrypted DB cluster snapshot to another AWS Region, you must set KmsKeyId to the AWS KMS key identifier you want to use to encrypt the copy of the DB cluster snapshot in the destination AWS Region. AWS KMS CMKs are specific to the AWS Region that they are created in, and you can't use CMKs from one AWS Region in another AWS Region.

If you copy an unencrypted DB cluster snapshot and specify a value for the KmsKeyId parameter, an error is returned.

", - "CopyDBClusterSnapshotMessage$PreSignedUrl": "

The URL that contains a Signature Version 4 signed request for the CopyDBClusterSnapshot API action in the AWS Region that contains the source DB cluster snapshot to copy. The PreSignedUrl parameter must be used when copying an encrypted DB cluster snapshot from another AWS Region. Don't specify PreSignedUrl when you are copying an encrypted DB cluster snapshot in the same AWS Region.

The pre-signed URL must be a valid request for the CopyDBClusterSnapshot API action that can be executed in the source AWS Region that contains the encrypted DB cluster snapshot to be copied. The pre-signed URL request must contain the following parameter values:

To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (AWS Signature Version 4) and Signature Version 4 Signing Process.

If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion (or --source-region for the AWS CLI) instead of specifying PreSignedUrl manually. Specifying SourceRegion autogenerates a pre-signed URL that is a valid request for the operation that can be executed in the source AWS Region.

", + "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 customer master key (CMK).

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 Amazon Web Services KMS CMK. If you don't specify a value for KmsKeyId, then the copy of the DB cluster snapshot is encrypted with the same Amazon Web Services 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. Amazon Web Services KMS CMKs are specific to the Amazon Web Services Region that they are created in, and you can't use CMKs 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.

", + "CopyDBClusterSnapshotMessage$PreSignedUrl": "

The URL that contains a Signature Version 4 signed request for the CopyDBClusterSnapshot API action in the Amazon Web Services Region that contains the source DB cluster snapshot to copy. The PreSignedUrl parameter must be used when copying an encrypted DB cluster snapshot from another Amazon Web Services Region. Don't specify PreSignedUrl when you are copying an encrypted DB cluster snapshot in the same Amazon Web Services Region.

The pre-signed URL must be a valid request for the CopyDBClusterSnapshot API action that can be executed in the source Amazon Web Services Region that contains the encrypted DB cluster snapshot to be copied. The pre-signed URL request must contain the following parameter values:

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 pre-signed URL that is a valid request for the operation that can be executed in the source Amazon Web Services Region.

", "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:

", "CopyDBParameterGroupMessage$TargetDBParameterGroupIdentifier": "

The identifier for the copied DB parameter group.

Constraints:

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 AWS 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 AWS 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 AWS Region, and must match the SourceDBSnapshotIdentifier in the PreSignedUrl parameter.

Constraints:

Example: rds:mydb-2012-04-02-00-01

Example: arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805

", + "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, and must match the SourceDBSnapshotIdentifier in the PreSignedUrl parameter.

Constraints:

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:

Example: my-db-snapshot

", - "CopyDBSnapshotMessage$KmsKeyId": "

The AWS KMS key identifier for an encrypted DB snapshot. The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

If you copy an encrypted DB snapshot from your AWS account, you can specify a value for this parameter to encrypt the copy with a new AWS KMS CMK. If you don't specify a value for this parameter, then the copy of the DB snapshot is encrypted with the same AWS KMS key as the source DB snapshot.

If you copy an encrypted DB snapshot that is shared from another AWS 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 AWS Region, then you must specify a AWS KMS key identifier for the destination AWS Region. AWS KMS CMKs are specific to the AWS Region that they are created in, and you can't use CMKs from one AWS Region in another AWS Region.

", - "CopyDBSnapshotMessage$PreSignedUrl": "

The URL that contains a Signature Version 4 signed request for the CopyDBSnapshot API action in the source AWS Region that contains the source DB snapshot to copy.

You must specify this parameter when you copy an encrypted DB snapshot from another AWS Region by using the Amazon RDS API. Don't specify PreSignedUrl when you are copying an encrypted DB snapshot in the same AWS Region.

The presigned URL must be a valid request for the CopyDBSnapshot API action that can be executed in the source AWS Region that contains the encrypted DB snapshot to be copied. The presigned URL request must contain the following parameter values:

To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (AWS Signature Version 4) and Signature Version 4 Signing Process.

If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion (or --source-region for the AWS CLI) instead of specifying PreSignedUrl manually. Specifying SourceRegion autogenerates a pre-signed URL that is a valid request for the operation that can be executed in the source AWS 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 AWS 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 AWS Regions. For more information, see Option group considerations in the Amazon RDS User Guide.

", + "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 Amazon Web Services KMS customer master key (CMK).

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 Amazon Web Services KMS CMK. 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 a Amazon Web Services KMS key identifier for the destination Amazon Web Services Region. Amazon Web Services KMS CMKs are specific to the Amazon Web Services Region that they are created in, and you can't use CMKs from one Amazon Web Services Region in another Amazon Web Services Region.

", + "CopyDBSnapshotMessage$PreSignedUrl": "

The URL that contains a Signature Version 4 signed request for the CopyDBSnapshot API action in the source Amazon Web Services Region that contains the source DB snapshot to copy.

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 CopyDBSnapshot API action that can be executed in the source Amazon Web Services Region that contains the encrypted DB snapshot to be copied. The presigned URL request must contain the following parameter values:

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 pre-signed URL that is a valid request for the operation that can be executed in the source 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:

", "CopyOptionGroupMessage$TargetOptionGroupIdentifier": "

The identifier for the copied option group.

Constraints:

Example: my-option-group

", @@ -3692,32 +3704,32 @@ "CreateDBClusterMessage$MasterUsername": "

The name of the master user for the DB cluster.

Constraints:

", "CreateDBClusterMessage$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.

", "CreateDBClusterMessage$OptionGroupName": "

A value that indicates that the DB cluster should be associated with the specified option group.

Permanent options can't be removed from an option group. The option group can't be removed from a DB cluster once it is associated with a DB cluster.

", - "CreateDBClusterMessage$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 AWS Region. To view the time blocks available, see Backup window in the Amazon Aurora User Guide.

Constraints:

", - "CreateDBClusterMessage$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 AWS 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.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

Constraints: Minimum 30-minute window.

", + "CreateDBClusterMessage$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:

", + "CreateDBClusterMessage$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 DB Cluster Maintenance Window in the Amazon Aurora User Guide.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

Constraints: Minimum 30-minute window.

", "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.

", - "CreateDBClusterMessage$KmsKeyId": "

The AWS KMS key identifier for an encrypted DB cluster.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK). To use a CMK in a different AWS account, specify the key ARN or alias ARN.

When a CMK isn't specified in KmsKeyId:

There is a default CMK for your AWS account. Your AWS account has a different default CMK for each AWS Region.

If you create a read replica of an encrypted DB cluster in another AWS Region, you must set KmsKeyId to a AWS KMS key identifier that is valid in the destination AWS Region. This CMK is used to encrypt the read replica in that AWS Region.

", - "CreateDBClusterMessage$PreSignedUrl": "

A URL that contains a Signature Version 4 signed request for the CreateDBCluster action to be called in the source AWS Region where the DB cluster is replicated from. You only need to specify PreSignedUrl when you are performing cross-region replication from an encrypted DB cluster.

The pre-signed URL must be a valid request for the CreateDBCluster API action that can be executed in the source AWS Region that contains the encrypted DB cluster to be copied.

The pre-signed URL request must contain the following parameter values:

To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (AWS Signature Version 4) and Signature Version 4 Signing Process.

If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion (or --source-region for the AWS CLI) instead of specifying PreSignedUrl manually. Specifying SourceRegion autogenerates a pre-signed URL that is a valid request for the operation that can be executed in the source AWS Region.

", + "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 Amazon Web Services KMS customer master key (CMK). To use a CMK in a different Amazon Web Services account, specify the key ARN or alias ARN.

When a CMK isn't specified in KmsKeyId:

There is a default CMK for your Amazon Web Services account. Your Amazon Web Services account has a different default CMK for each Amazon Web Services Region.

If you create a read replica of an encrypted DB cluster in another Amazon Web Services Region, you must set KmsKeyId to a Amazon Web Services KMS key identifier that is valid in the destination Amazon Web Services Region. This CMK is used to encrypt the read replica in that Amazon Web Services Region.

", + "CreateDBClusterMessage$PreSignedUrl": "

A URL that contains a Signature Version 4 signed request for the CreateDBCluster action to be called in the source Amazon Web Services Region where the DB cluster is replicated from. You only need to specify PreSignedUrl when you are performing cross-region replication from an encrypted DB cluster.

The pre-signed URL must be a valid request for the CreateDBCluster API action that can be executed in the source Amazon Web Services Region that contains the encrypted DB cluster to be copied.

The pre-signed URL request must contain the following parameter values:

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 pre-signed URL that is a valid request for the operation that can be executed in the source Amazon Web Services Region.

", "CreateDBClusterMessage$EngineMode": "

The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster.

The parallelquery engine mode isn't required for Aurora MySQL version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x versions.

The global engine mode isn't required for Aurora MySQL version 1.22 and higher 1.x versions, and global engine mode isn't required for any 2.x versions.

The multimaster engine mode only applies for DB clusters created with Aurora MySQL version 5.6.10a.

For Aurora PostgreSQL, the global engine mode isn't required, and both the parallelquery and the multimaster engine modes currently aren't supported.

Limitations and requirements apply to some DB engine modes. For more information, see the following sections in the Amazon Aurora User Guide:

", "CreateDBClusterMessage$GlobalClusterIdentifier": "

The global cluster ID of an Aurora cluster that becomes the primary cluster in the new global database cluster.

", "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.

", "CreateDBClusterMessage$DomainIAMRoleName": "

Specify the name of the IAM role to be used when making API calls to the Directory Service.

", "CreateDBClusterParameterGroupMessage$DBClusterParameterGroupName": "

The name of the DB cluster parameter group.

Constraints:

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: aurora5.6, aurora-mysql5.7

Aurora PostgreSQL

Example: aurora-postgresql9.6

", + "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: aurora5.6, aurora-mysql5.7

Aurora PostgreSQL

Example: aurora-postgresql9.6

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:

", "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:

Example: my-cluster1-snapshot1

", "CreateDBClusterSnapshotMessage$DBClusterIdentifier": "

The identifier of the DB cluster to create a snapshot for. This parameter isn't case-sensitive.

Constraints:

Example: my-cluster1

", "CreateDBInstanceMessage$DBName": "

The meaning of this parameter differs according to the database engine you use.

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:

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:

PostgreSQL

The name of the database to create when the DB instance is created. If this parameter isn't specified, a database named postgres is created in the DB instance.

Constraints:

Oracle

The Oracle System ID (SID) of the created DB instance. If you specify null, the default value ORCL is used. You can't specify the string NULL, or any other reserved word, for DBName.

Default: ORCL

Constraints:

SQL Server

Not applicable. Must be null.

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:

Amazon Aurora PostgreSQL

The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is created. If this parameter isn't specified for an Aurora PostgreSQL DB cluster, a database named postgres is created in the DB cluster.

Constraints:

", "CreateDBInstanceMessage$DBInstanceIdentifier": "

The DB instance identifier. This parameter is stored as a lowercase string.

Constraints:

Example: mydbinstance

", - "CreateDBInstanceMessage$DBInstanceClass": "

The compute and memory capacity of the DB instance, for example, db.m4.large. Not all DB instance classes are available in all AWS 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.

", - "CreateDBInstanceMessage$Engine": "

The name of the database engine to be used for this instance.

Not every database engine is available for every AWS Region.

Valid Values:

", + "CreateDBInstanceMessage$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.

", + "CreateDBInstanceMessage$Engine": "

The name of the database engine to be used for this instance.

Not every database engine is available for every Amazon Web Services Region.

Valid Values:

", "CreateDBInstanceMessage$MasterUsername": "

The name for the master user.

Amazon Aurora

Not applicable. The name for the master user is managed by the DB cluster.

MariaDB

Constraints:

Microsoft SQL Server

Constraints:

MySQL

Constraints:

Oracle

Constraints:

PostgreSQL

Constraints:

", "CreateDBInstanceMessage$MasterUserPassword": "

The password for the master user. The password can include any printable ASCII character except \"/\", \"\"\", or \"@\".

Amazon Aurora

Not applicable. The password for the master user is managed by the DB cluster.

MariaDB

Constraints: Must contain from 8 to 41 characters.

Microsoft SQL Server

Constraints: Must contain from 8 to 128 characters.

MySQL

Constraints: Must contain from 8 to 41 characters.

Oracle

Constraints: Must contain from 8 to 30 characters.

PostgreSQL

Constraints: Must contain from 8 to 128 characters.

", - "CreateDBInstanceMessage$AvailabilityZone": "

The Availability Zone (AZ) where the database will be created. For information on AWS Regions and Availability Zones, see Regions and Availability Zones.

Default: A random, system-chosen Availability Zone in the endpoint's AWS 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 AWS Region as the current endpoint.

If you're creating a DB instance in an RDS on VMware environment, specify the identifier of the custom Availability Zone to create the DB instance in.

For more information about RDS on VMware, see the RDS on VMware User Guide.

", + "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.

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.

If you're creating a DB instance in an RDS on VMware environment, specify the identifier of the custom Availability Zone to create the DB instance in.

For more information about RDS on VMware, see the RDS on VMware User Guide.

", "CreateDBInstanceMessage$DBSubnetGroupName": "

A DB subnet group to associate with this DB instance.

If there is no DB subnet group, then it is a non-VPC DB instance.

", - "CreateDBInstanceMessage$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.

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 AWS Region, occurring on a random day of the week.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

Constraints: Minimum 30-minute window.

", + "CreateDBInstanceMessage$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.

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.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

Constraints: Minimum 30-minute window.

", "CreateDBInstanceMessage$DBParameterGroupName": "

The name of the DB parameter group to associate with this DB instance. If you do not specify a value, then the default DB parameter group for the specified DB engine and version is used.

Constraints:

", - "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 AWS Region. For more information, see Backup window in the Amazon RDS User Guide.

Amazon Aurora

Not applicable. The daily time range for creating automated backups is managed by the DB cluster.

Constraints:

", - "CreateDBInstanceMessage$EngineVersion": "

The version number of the database engine to use.

For a list of valid engine versions, use the DescribeDBEngineVersions action.

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 AWS Region.

Amazon Aurora

Not applicable. The version number of the database engine to be used by the DB instance is managed by the DB cluster.

MariaDB

See MariaDB on Amazon RDS Versions in the Amazon RDS User Guide.

Microsoft SQL Server

See Microsoft SQL Server Versions on Amazon RDS in the Amazon RDS User Guide.

MySQL

See MySQL on Amazon RDS Versions in the Amazon RDS User Guide.

Oracle

See Oracle Database Engine Release Notes in the Amazon RDS User Guide.

PostgreSQL

See Amazon RDS for PostgreSQL versions and extensions in the Amazon RDS User Guide.

", + "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.

Amazon Aurora

Not applicable. The daily time range for creating automated backups is managed by the DB cluster.

Constraints:

", + "CreateDBInstanceMessage$EngineVersion": "

The version number of the database engine to use.

For a list of valid engine versions, use the DescribeDBEngineVersions action.

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 Aurora

Not applicable. The version number of the database engine to be used by the DB instance is managed by the DB cluster.

MariaDB

See MariaDB on Amazon RDS Versions in the Amazon RDS User Guide.

Microsoft SQL Server

See Microsoft SQL Server Versions on Amazon RDS in the Amazon RDS User Guide.

MySQL

See MySQL on Amazon RDS Versions in the Amazon RDS User Guide.

Oracle

See Oracle Database Engine Release Notes in the Amazon RDS User Guide.

PostgreSQL

See Amazon RDS for PostgreSQL versions and extensions in the Amazon RDS User Guide.

", "CreateDBInstanceMessage$LicenseModel": "

License model information for this DB instance.

Valid values: license-included | bring-your-own-license | general-public-license

", "CreateDBInstanceMessage$OptionGroupName": "

A value that indicates that the DB instance should be associated with the specified option group.

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 once it is associated with a DB instance

", "CreateDBInstanceMessage$CharacterSetName": "

For supported engines, indicates that the DB instance should be associated with the specified CharacterSet.

Amazon Aurora

Not applicable. The character set is managed by the DB cluster. For more information, see CreateDBCluster.

", @@ -3726,31 +3738,31 @@ "CreateDBInstanceMessage$StorageType": "

Specifies the storage type to be associated with the DB instance.

Valid values: standard | gp2 | io1

If you specify io1, you must also include a value for the Iops parameter.

Default: io1 if the Iops parameter is specified, otherwise gp2

", "CreateDBInstanceMessage$TdeCredentialArn": "

The ARN from the key store with which to associate the instance for TDE encryption.

", "CreateDBInstanceMessage$TdeCredentialPassword": "

The password for the given ARN from the key store in order to access the device.

", - "CreateDBInstanceMessage$KmsKeyId": "

The AWS KMS key identifier for an encrypted DB instance.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK). To use a CMK in a different AWS account, specify the key ARN or alias ARN.

Amazon Aurora

Not applicable. The AWS 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 CMK. There is a default CMK for your AWS account. Your AWS account has a different default CMK for each AWS Region.

", + "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 Amazon Web Services KMS customer master key (CMK). To use a CMK in a different Amazon Web Services account, specify the key ARN or alias ARN.

Amazon Aurora

Not applicable. 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 CMK. There is a default CMK for your Amazon Web Services account. Your Amazon Web Services account has a different default CMK for each Amazon Web Services Region.

", "CreateDBInstanceMessage$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.

", "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, go to 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.

", "CreateDBInstanceMessage$DomainIAMRoleName": "

Specify the name of the IAM role to be used when making API calls to the Directory Service.

", "CreateDBInstanceMessage$Timezone": "

The time zone of the DB instance. The time zone parameter is currently supported only by Microsoft SQL Server.

", - "CreateDBInstanceMessage$PerformanceInsightsKMSKeyId": "

The AWS KMS key identifier for encryption of Performance Insights data.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default CMK. There is a default CMK for your AWS account. Your AWS account has a different default CMK for each AWS Region.

", + "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 Amazon Web Services KMS customer master key (CMK).

If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default CMK. There is a default CMK for your Amazon Web Services account. Your Amazon Web Services account has a different default CMK for each Amazon Web Services Region.

", "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 five read replicas.

Constraints:

", - "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 AWS 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 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 AWS Region.

Example: us-east-1d

", + "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 five read replicas.

Constraints:

", + "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 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 the DB instance is associated with. If omitted, the option group associated with the source instance is used.

For SQL Server, you must use the option group associated with the source instance.

", "CreateDBInstanceReadReplicaMessage$DBParameterGroupName": "

The name of the DB parameter group to associate with this DB instance.

If you do not specify a value for DBParameterGroupName, then Amazon RDS uses the DBParameterGroup of source DB instance for a same region read replica, or the default DBParameterGroup for the specified DB engine for a cross region read replica.

Currently, specifying a parameter group for this operation is only supported for Oracle DB instances.

Constraints:

", - "CreateDBInstanceReadReplicaMessage$DBSubnetGroupName": "

Specifies 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:

Example: mySubnetgroup

", + "CreateDBInstanceReadReplicaMessage$DBSubnetGroupName": "

Specifies 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:

Example: mySubnetgroup

", "CreateDBInstanceReadReplicaMessage$StorageType": "

Specifies the storage type to be associated with the read replica.

Valid values: standard | gp2 | io1

If you specify io1, you must also include a value for the Iops parameter.

Default: io1 if the Iops parameter is specified, otherwise gp2

", "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.

", - "CreateDBInstanceReadReplicaMessage$KmsKeyId": "

The AWS KMS key identifier for an encrypted read replica.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS CMK.

If you create an encrypted read replica in the same AWS Region as the source DB instance, then do not specify a value for this parameter. A read replica in the same Region is always encrypted with the same AWS KMS CMK as the source DB instance.

If you create an encrypted read replica in a different AWS Region, then you must specify a AWS KMS key identifier for the destination AWS Region. AWS KMS CMKs are specific to the AWS Region that they are created in, and you can't use CMKs from one AWS Region in another AWS Region.

You can't create an encrypted read replica from an unencrypted DB instance.

", - "CreateDBInstanceReadReplicaMessage$PreSignedUrl": "

The URL that contains a Signature Version 4 signed request for the CreateDBInstanceReadReplica API action in the source AWS Region that contains the source DB instance.

You must specify this parameter when you create an encrypted read replica from another AWS Region by using the Amazon RDS API. Don't specify PreSignedUrl when you are creating an encrypted read replica in the same AWS Region.

The presigned URL must be a valid request for the CreateDBInstanceReadReplica API action that can be executed in the source AWS Region that contains the encrypted source DB instance. The presigned URL request must contain the following parameter values:

To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (AWS Signature Version 4) and Signature Version 4 Signing Process.

If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion (or --source-region for the AWS CLI) instead of specifying PreSignedUrl manually. Specifying SourceRegion autogenerates a presigned URL that is a valid request for the operation that can be executed in the source AWS Region.

SourceRegion isn't supported for SQL Server, because SQL Server on Amazon RDS doesn't support cross-region read replicas.

", - "CreateDBInstanceReadReplicaMessage$PerformanceInsightsKMSKeyId": "

The AWS KMS key identifier for encryption of Performance Insights data.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default CMK. There is a default CMK for your AWS account. Your AWS account has a different default CMK for each AWS Region.

", + "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 Amazon Web Services KMS CMK.

If you create an encrypted read replica in the same Amazon Web Services Region as the source DB instance, then do not specify a value for this parameter. A read replica in the same Region is always encrypted with the same Amazon Web Services KMS CMK as the source DB instance.

If you create an encrypted read replica in a different Amazon Web Services Region, then you must specify a Amazon Web Services KMS key identifier for the destination Amazon Web Services Region. Amazon Web Services KMS CMKs are specific to the Amazon Web Services Region that they are created in, and you can't use CMKs 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.

", + "CreateDBInstanceReadReplicaMessage$PreSignedUrl": "

The URL that contains a Signature Version 4 signed request for the CreateDBInstanceReadReplica API action in the source Amazon Web Services Region that contains the source DB instance.

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 action that can be executed in the source Amazon Web Services Region that contains the encrypted source DB instance. The presigned URL request must contain the following parameter values:

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 be executed in the source Amazon Web Services Region.

SourceRegion isn't supported for SQL Server, because SQL Server on Amazon RDS doesn't support cross-region read replicas.

", + "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 Amazon Web Services KMS customer master key (CMK).

If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default CMK. There is a default CMK for your Amazon Web Services account. Your Amazon Web Services account has a different default CMK for each Amazon Web Services Region.

", "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.

", "CreateDBInstanceReadReplicaMessage$DomainIAMRoleName": "

Specify the name of the IAM role to be used when making API calls to the Directory Service.

", "CreateDBParameterGroupMessage$DBParameterGroupName": "

The name of the DB parameter group.

Constraints:

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, use the following command:

aws rds describe-db-engine-versions --query \"DBEngineVersions[].DBParameterGroupFamily\"

The output contains duplicates.

", + "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:

", "CreateDBParameterGroupMessage$Description": "

The description for the DB parameter group.

", - "CreateDBProxyRequest$DBProxyName": "

The identifier for the proxy. This name must be unique for all proxies owned by your AWS account in the specified AWS 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.

", - "CreateDBProxyRequest$RoleArn": "

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

", + "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.

", + "CreateDBProxyRequest$RoleArn": "

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

", "CreateDBSecurityGroupMessage$DBSecurityGroupName": "

The name for the DB security group. This value is stored as a lowercase string.

Constraints:

Example: mysecuritygroup

", "CreateDBSecurityGroupMessage$DBSecurityGroupDescription": "

The description for the DB security group.

", "CreateDBSnapshotMessage$DBSnapshotIdentifier": "

The identifier for the DB snapshot.

Constraints:

Example: my-snapshot-id

", @@ -3766,7 +3778,7 @@ "CreateGlobalClusterMessage$EngineVersion": "

The engine version of the Aurora global database.

", "CreateGlobalClusterMessage$DatabaseName": "

The name for your database of up to 64 alpha-numeric characters. If you do not provide a name, Amazon Aurora will not create a database in the global database cluster you are creating.

", "CreateOptionGroupMessage$OptionGroupName": "

Specifies the name of the option group to be created.

Constraints:

Example: myoptiongroup

", - "CreateOptionGroupMessage$EngineName": "

Specifies the name of the engine that this option group should be associated with.

Valid Values:

", + "CreateOptionGroupMessage$EngineName": "

Specifies the name of the engine that this option group should be associated with.

Valid Values:

", "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.

", "CustomAvailabilityZone$CustomAvailabilityZoneId": "

The identifier of the custom AZ.

Amazon RDS generates a unique identifier when a custom AZ is created.

", @@ -3789,12 +3801,12 @@ "DBCluster$PreferredMaintenanceWindow": "

Specifies the weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).

", "DBCluster$ReplicationSourceIdentifier": "

Contains the identifier of the source DB cluster if this DB cluster is a read replica.

", "DBCluster$HostedZoneId": "

Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.

", - "DBCluster$KmsKeyId": "

If StorageEncrypted is enabled, the AWS KMS key identifier for the encrypted DB cluster.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

", - "DBCluster$DbClusterResourceId": "

The AWS Region-unique, immutable identifier for the DB cluster. This identifier is found in AWS CloudTrail log entries whenever the AWS KMS CMK for the DB cluster is accessed.

", + "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 Amazon Web Services KMS customer master key (CMK).

", + "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 Amazon Web Services KMS CMK for the DB cluster is accessed.

", "DBCluster$DBClusterArn": "

The Amazon Resource Name (ARN) for the DB cluster.

", "DBCluster$CloneGroupId": "

Identifies the clone group to which the DB cluster is associated.

", "DBCluster$EngineMode": "

The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster.

For more information, see CreateDBCluster.

", - "DBCluster$ActivityStreamKmsKeyId": "

The AWS KMS key identifier used for encrypting messages in the database activity stream.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

", + "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 Amazon Web Services KMS customer master key (CMK).

", "DBCluster$ActivityStreamKinesisStreamName": "

The name of the Amazon Kinesis data stream used for the database activity stream.

", "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.

", @@ -3824,8 +3836,8 @@ "DBClusterParameterGroupNameMessage$DBClusterParameterGroupName": "

The name of the DB cluster parameter group.

Constraints:

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:

", - "DBClusterRole$FeatureName": "

The name of the feature associated with the AWS Identity and Access Management (IAM) role. For the list of supported feature names, see DBEngineVersion.

", + "DBClusterRole$Status": "

Describes the state of association between the IAM role and the DB cluster. The Status property returns one of the following values:

", + "DBClusterRole$FeatureName": "

The name of the feature associated with the Amazon Web Services Identity and Access Management (IAM) role. For the list of supported feature names, see DBEngineVersion.

", "DBClusterSnapshot$DBClusterSnapshotIdentifier": "

Specifies the identifier for the DB cluster snapshot.

", "DBClusterSnapshot$DBClusterIdentifier": "

Specifies the DB cluster identifier of the DB cluster that this DB cluster snapshot was created from.

", "DBClusterSnapshot$Engine": "

Specifies the name of the database engine for this DB cluster snapshot.

", @@ -3836,10 +3848,10 @@ "DBClusterSnapshot$EngineVersion": "

Provides the version of the database engine for this DB cluster snapshot.

", "DBClusterSnapshot$LicenseModel": "

Provides the license model information for this DB cluster snapshot.

", "DBClusterSnapshot$SnapshotType": "

Provides the type of the DB cluster snapshot.

", - "DBClusterSnapshot$KmsKeyId": "

If StorageEncrypted is true, the AWS KMS key identifier for the encrypted DB cluster snapshot.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

", + "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 Amazon Web Services KMS customer master key (CMK).

", "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.

", - "DBClusterSnapshotAttribute$AttributeName": "

The name of the manual DB cluster snapshot attribute.

The attribute named restore refers to the list of AWS accounts that have permission to copy or restore the manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

", + "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.

", "DBEngineVersion$Engine": "

The name of the database engine.

", @@ -3852,7 +3864,7 @@ "DBInstance$DBInstanceIdentifier": "

Contains a user-supplied database identifier. This identifier is the unique key that identifies a DB instance.

", "DBInstance$DBInstanceClass": "

Contains the name of the compute and memory capacity class of the DB instance.

", "DBInstance$Engine": "

The name of the database engine to be used for this DB instance.

", - "DBInstance$DBInstanceStatus": "

Specifies the current state of this database.

For information about DB instance statuses, see DB Instance Status in the Amazon RDS User Guide.

", + "DBInstance$DBInstanceStatus": "

Specifies 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": "

Contains the master username for the DB instance.

", "DBInstance$DBName": "

The meaning of this parameter differs according to the database engine you use.

MySQL, MariaDB, SQL Server, PostgreSQL

Contains the name of the initial database of this instance that was provided at create time, if one was specified when the DB instance was created. This same name is returned for the life of the DB instance.

Type: String

Oracle

Contains the Oracle System ID (SID) of the created DB instance. Not shown when the returned parameters do not apply to an Oracle DB instance.

", "DBInstance$PreferredBackupWindow": "

Specifies the daily time range during which automated backups are created if automated backups are enabled, as determined by the BackupRetentionPeriod.

", @@ -3867,21 +3879,23 @@ "DBInstance$StorageType": "

Specifies the storage type associated with 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, contains the name of the DB cluster that the DB instance is a member of.

", - "DBInstance$KmsKeyId": "

If StorageEncrypted is true, the AWS KMS key identifier for the encrypted DB instance.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

", - "DBInstance$DbiResourceId": "

The AWS Region-unique, immutable identifier for the DB instance. This identifier is found in AWS CloudTrail log entries whenever the AWS KMS customer master key (CMK) for the DB instance is accessed.

", + "DBInstance$KmsKeyId": "

If StorageEncrypted is true, 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 Amazon Web Services KMS customer master key (CMK).

", + "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 customer master key (CMK) for the DB instance is accessed.

", "DBInstance$CACertificateIdentifier": "

The identifier of the CA certificate for this DB instance.

", "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 Microsoft SQL Server DB instances that were created with a time zone specified.

", - "DBInstance$PerformanceInsightsKMSKeyId": "

The AWS KMS key identifier for encryption of Performance Insights data.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

", - "DBInstance$AwsBackupRecoveryPointArn": "

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

", + "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 Amazon Web Services KMS customer master key (CMK).

", + "DBInstance$AwsBackupRecoveryPointArn": "

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

", + "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 Amazon Web Services KMS customer master key (CMK).

", + "DBInstance$ActivityStreamKinesisStreamName": "

The name of the Amazon Kinesis data stream used for the database activity stream.

", "DBInstanceAutomatedBackup$DBInstanceArn": "

The Amazon Resource Name (ARN) for the automated backups.

", - "DBInstanceAutomatedBackup$DbiResourceId": "

The identifier for the source DB instance, which can't be changed and which is unique to an AWS Region.

", - "DBInstanceAutomatedBackup$Region": "

The AWS Region associated with the automated backup.

", + "DBInstanceAutomatedBackup$DbiResourceId": "

The identifier 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 customer id of the instance that is/was associated with the automated backup.

", "DBInstanceAutomatedBackup$Status": "

Provides a list of status information for an automated backup:

", - "DBInstanceAutomatedBackup$AvailabilityZone": "

The Availability Zone that the automated backup was created in. For information on AWS Regions and Availability Zones, see Regions and Availability Zones.

", + "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": "

Provides the VPC ID associated with the DB instance

", "DBInstanceAutomatedBackup$MasterUsername": "

The license model of an automated backup.

", "DBInstanceAutomatedBackup$Engine": "

The name of the database engine for this automated backup.

", @@ -3890,15 +3904,15 @@ "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": "

Specifies the storage type associated with the automated backup.

", - "DBInstanceAutomatedBackup$KmsKeyId": "

The AWS KMS key ID for an automated backup.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

", + "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 Amazon Web Services KMS customer master key (CMK).

", "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 AWS Identity and Access Management (IAM) role. For the list of supported feature names, see DBEngineVersion.

", - "DBInstanceRole$Status": "

Describes the state of association between the IAM role and the DB instance. The Status property returns one of the following values:

", + "DBInstanceRole$FeatureName": "

The name of the feature associated with the Amazon Web Services Identity and Access Management (IAM) role. For the list of supported feature names, see DBEngineVersion.

", + "DBInstanceRole$Status": "

Describes the state of association between the IAM role and the DB instance. The Status property returns one of the following values:

", "DBInstanceStatusInfo$StatusType": "

This value is currently \"read replication.\"

", "DBInstanceStatusInfo$Status": "

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.

", @@ -3911,7 +3925,7 @@ "DBParameterGroupStatus$DBParameterGroupName": "

The name of the DB parameter group.

", "DBParameterGroupStatus$ParameterApplyStatus": "

The status of parameter updates.

", "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 AWS account in the specified AWS Region.

", + "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 engine family applies to MySQL and PostgreSQL for both RDS and Aurora.

", "DBProxy$VpcId": "

Provides the VPC ID of the DB proxy.

", @@ -3927,10 +3941,10 @@ "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 AWS account in the specified AWS Region.

", + "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.

", - "DBSecurityGroup$OwnerId": "

Provides the AWS ID of the owner of a specific DB security group.

", + "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.

", @@ -3950,15 +3964,15 @@ "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 AWS Region that the DB snapshot was created in or copied from.

", + "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 value in case of cross-customer 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 AWS KMS key identifier for the encrypted DB snapshot.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

", + "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 Amazon Web Services KMS customer master key (CMK).

", "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 AWS Region.

", - "DBSnapshotAttribute$AttributeName": "

The name of the manual DB snapshot attribute.

The attribute named restore refers to the list of AWS accounts that have permission to copy or restore the manual DB cluster snapshot. For more information, see the ModifyDBSnapshotAttribute API action.

", + "DBSnapshot$DbiResourceId": "

The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web Services Region.

", + "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.

", "DBSubnetGroup$DBSubnetGroupName": "

The name of the DB subnet group.

", @@ -3973,7 +3987,7 @@ "DeleteDBClusterMessage$FinalDBSnapshotIdentifier": "

The DB cluster snapshot identifier of the new DB cluster snapshot created when SkipFinalSnapshot is disabled.

Specifying this parameter and also skipping the creation of a final DB cluster snapshot with the SkipFinalShapshot parameter results in an error.

Constraints:

", "DeleteDBClusterParameterGroupMessage$DBClusterParameterGroupName": "

The name of the DB cluster parameter group.

Constraints:

", "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 AWS Region.

", + "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.

", "DeleteDBInstanceMessage$DBInstanceIdentifier": "

The DB instance identifier for the DB instance to be deleted. This parameter isn't case-sensitive.

Constraints:

", "DeleteDBInstanceMessage$FinalDBSnapshotIdentifier": "

The DBSnapshotIdentifier of the new DBSnapshot created when the SkipFinalSnapshot parameter is disabled.

Specifying this parameter and also specifying to skip final DB snapshot creation in SkipFinalShapshot results in an error.

Constraints:

", @@ -4006,11 +4020,11 @@ "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:

", "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:

", - "DescribeDBClusterSnapshotsMessage$SnapshotType": "

The type of DB cluster snapshots to be returned. You can specify one of the following values:

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$SnapshotType": "

The type of DB cluster snapshots to be returned. You can specify one of the following values:

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.

", "DescribeDBClustersMessage$DBClusterIdentifier": "

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:

", "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.

Valid Values:

", + "DescribeDBEngineVersionsMessage$Engine": "

The database engine to return.

Valid Values:

", "DescribeDBEngineVersionsMessage$EngineVersion": "

The database engine version to return.

Example: 5.1.49

", "DescribeDBEngineVersionsMessage$DBParameterGroupFamily": "

The name of a specific DB parameter group family to return details for.

Constraints:

", "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.

", @@ -4030,7 +4044,7 @@ "DescribeDBParametersMessage$DBParameterGroupName": "

The name of a specific DB parameter group to return details for.

Constraints:

", "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$DBProxyName": "

The name of the DB proxy. If you omit this parameter, the output includes information about all DB proxies owned by your AWS account ID.

", + "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.

", "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.

", @@ -4048,7 +4062,7 @@ "DescribeDBSnapshotAttributesMessage$DBSnapshotIdentifier": "

The identifier for the DB snapshot to describe the attributes for.

", "DescribeDBSnapshotsMessage$DBInstanceIdentifier": "

The ID of the DB instance to retrieve the list of DB snapshots for. This parameter can't be used in conjunction with DBSnapshotIdentifier. This parameter isn't case-sensitive.

Constraints:

", "DescribeDBSnapshotsMessage$DBSnapshotIdentifier": "

A specific DB snapshot identifier to describe. This parameter can't be used in conjunction with DBInstanceIdentifier. This value is stored as a lowercase string.

Constraints:

", - "DescribeDBSnapshotsMessage$SnapshotType": "

The type of snapshots to be returned. You can specify one of the following values:

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$SnapshotType": "

The type of snapshots to be returned. You can specify one of the following values:

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.

", @@ -4069,18 +4083,18 @@ "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.

", "DescribeInstallationMediaMessage$InstallationMediaId": "

The installation medium ID.

", "DescribeInstallationMediaMessage$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.

", - "DescribeOptionGroupOptionsMessage$EngineName": "

A required parameter. Options available for the given engine name are described.

Valid Values:

", + "DescribeOptionGroupOptionsMessage$EngineName": "

A required parameter. Options available for the given engine name are described.

Valid Values:

", "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": "

Filters the list of option groups to only include groups associated with a specific database engine.

Valid Values:

", + "DescribeOptionGroupsMessage$EngineName": "

Filters the list of option groups to only include groups associated with a specific database engine.

Valid Values:

", "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 engine to retrieve DB instance options for.

Valid Values:

", + "DescribeOrderableDBInstanceOptionsMessage$Engine": "

The name of the engine to retrieve DB instance options for.

Valid Values:

", "DescribeOrderableDBInstanceOptionsMessage$EngineVersion": "

The engine version filter value. Specify this parameter to show only the available offerings matching the specified engine version.

", "DescribeOrderableDBInstanceOptionsMessage$DBInstanceClass": "

The DB instance class filter value. Specify this parameter to show only the available offerings matching the specified DB instance class.

", "DescribeOrderableDBInstanceOptionsMessage$LicenseModel": "

The license model filter value. Specify this parameter to show only the available offerings matching the specified license model.

", - "DescribeOrderableDBInstanceOptionsMessage$AvailabilityZoneGroup": "

The Availability Zone group associated with a Local Zone. Specify this parameter to retrieve available offerings for the Local Zones in the group.

Omit this parameter to show the available offerings in the specified AWS Region.

", + "DescribeOrderableDBInstanceOptionsMessage$AvailabilityZoneGroup": "

The Availability Zone group associated with a Local Zone. Specify this parameter to retrieve available offerings for the Local Zones in the group.

Omit this parameter to show the available offerings in the specified Amazon Web Services Region.

", "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.

", @@ -4090,7 +4104,7 @@ "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.

AWS Support might request the lease ID for an issue related to a reserved DB instance.

", + "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.

", @@ -4098,7 +4112,7 @@ "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 AWS Region name. For example, us-east-1.

Constraints:

", + "DescribeSourceRegionsMessage$RegionName": "

The source Amazon Web Services Region name. For example, us-east-1.

Constraints:

", "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.

", "DescribeValidDBInstanceModificationsMessage$DBInstanceIdentifier": "

The customer identifier or the ARN of your DB instance.

", "DomainMembership$Domain": "

The identifier of the Active Directory Domain.

", @@ -4113,7 +4127,7 @@ "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 AWS ID of the owner of the EC2 security group specified in the EC2SecurityGroupName field.

", + "EC2SecurityGroup$EC2SecurityGroupOwnerId": "

Specifies the Amazon Web Services ID of the owner of the EC2 security group specified in the EC2SecurityGroupName field.

", "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.

", @@ -4124,7 +4138,7 @@ "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 AWS customer account associated with the RDS event notification subscription.

", + "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.

", @@ -4138,7 +4152,7 @@ "ExportTask$S3Bucket": "

The Amazon S3 bucket that the snapshot is exported to.

", "ExportTask$S3Prefix": "

The Amazon S3 bucket prefix that is the file name and path of the exported snapshot.

", "ExportTask$IamRoleArn": "

The name of the IAM role that is used to write to Amazon S3 when exporting a snapshot.

", - "ExportTask$KmsKeyId": "

The key identifier of the AWS KMS customer master key (CMK) that is used to encrypt the snapshot when it's exported to Amazon S3. The AWS KMS CMK identifier is its key ARN, key ID, alias ARN, or alias name. The IAM role used for the snapshot export must have encryption and decryption permissions to use this AWS KMS CMK.

", + "ExportTask$KmsKeyId": "

The key identifier of the Amazon Web Services KMS customer master key (CMK) that is used to encrypt the snapshot when it's exported to Amazon S3. The Amazon Web Services KMS CMK identifier is its key ARN, key ID, alias ARN, or alias name. The IAM role used for the snapshot export must have encryption and decryption permissions to use this Amazon Web Services KMS CMK.

", "ExportTask$Status": "

The progress status of the export task.

", "ExportTask$FailureCause": "

The reason the export failed, if it failed.

", "ExportTask$WarningMessage": "

A warning about the snapshot export task.

", @@ -4151,7 +4165,7 @@ "Filter$Name": "

The name of the filter. Filter names are case-sensitive.

", "FilterValueList$member": null, "GlobalCluster$GlobalClusterIdentifier": "

Contains a user-supplied global database cluster identifier. This identifier is the unique key that identifies a global database cluster.

", - "GlobalCluster$GlobalClusterResourceId": "

The AWS Region-unique, immutable identifier for the global database cluster. This identifier is found in AWS CloudTrail log entries whenever the AWS KMS customer master key (CMK) for the DB cluster is accessed.

", + "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 customer master key (CMK) 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.

", @@ -4180,7 +4194,7 @@ "LogTypeList$member": null, "MinimumEngineVersionPerAllowedValue$AllowedValue": "

The allowed value for an option setting.

", "MinimumEngineVersionPerAllowedValue$MinimumEngineVersion": "

The minimum DB engine version required for the allowed value.

", - "ModifyCertificatesMessage$CertificateIdentifier": "

The new default certificate identifier to override the current one with.

To determine the valid values, use the describe-certificates AWS CLI command or the DescribeCertificates API operation.

", + "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:

", "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.

", @@ -4190,21 +4204,21 @@ "ModifyDBClusterMessage$DBClusterParameterGroupName": "

The name of the DB cluster parameter group to use for the DB cluster.

", "ModifyDBClusterMessage$MasterUserPassword": "

The new password for the master database user. This password can contain any printable ASCII character except \"/\", \"\"\", or \"@\".

Constraints: Must contain from 8 to 41 characters.

", "ModifyDBClusterMessage$OptionGroupName": "

A value that indicates that the DB cluster should be associated with the specified option group. Changing this parameter doesn't result in an outage except in the following case, and the change is applied during the next maintenance window unless the ApplyImmediately is enabled for this request. If the parameter change results in an option group that enables OEM, this change can cause a brief (sub-second) period during which new connections are rejected but existing connections are not interrupted.

Permanent options can't be removed from an option group. The option group can't be removed from a DB cluster once it is associated with a DB cluster.

", - "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 AWS Region. To view the time blocks available, see Backup window in the Amazon Aurora User Guide.

Constraints:

", - "ModifyDBClusterMessage$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 AWS 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.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

Constraints: Minimum 30-minute window.

", + "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.

Constraints:

", + "ModifyDBClusterMessage$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 DB Cluster Maintenance Window in the Amazon Aurora User Guide.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

Constraints: Minimum 30-minute window.

", "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.

To list all of the available engine versions for aurora (for MySQL 5.6-compatible Aurora), use the following command:

aws rds describe-db-engine-versions --engine aurora --query \"DBEngineVersions[].EngineVersion\"

To list all of the available engine versions for aurora-mysql (for MySQL 5.7-compatible Aurora), 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\"

", "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 aren't applied during the next maintenance window but instead are applied immediately.

Default: The existing name setting

Constraints:

", "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.

", "ModifyDBClusterMessage$DomainIAMRoleName": "

Specify the name of the IAM role to be used when making API calls to the Directory Service.

", "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 AWS 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 action.

", + "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 action.

", "ModifyDBInstanceMessage$DBInstanceIdentifier": "

The DB instance identifier. This value is stored as a lowercase string.

Constraints:

", - "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 AWS 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.

If you modify the DB instance class, an outage occurs during the change. The change is applied during the next maintenance window, unless ApplyImmediately is enabled for this request.

Default: Uses existing setting

", + "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.

If you modify the DB instance class, an outage occurs during the change. The change is applied during the next maintenance window, unless ApplyImmediately is enabled for this request.

Default: Uses existing setting

", "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.

Constraints: If supplied, must match the name of an existing DBSubnetGroup.

Example: mySubnetGroup

", "ModifyDBInstanceMessage$MasterUserPassword": "

The new password for the master user. The password can include any printable ASCII character except \"/\", \"\"\", or \"@\".

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 Aurora

Not applicable. The password for the master user is managed by the DB cluster. For more information, see ModifyDBCluster.

Default: Uses existing setting

MariaDB

Constraints: Must contain from 8 to 41 characters.

Microsoft SQL Server

Constraints: Must contain from 8 to 128 characters.

MySQL

Constraints: Must contain from 8 to 41 characters.

Oracle

Constraints: Must contain from 8 to 30 characters.

PostgreSQL

Constraints: Must contain from 8 to 128 characters.

Amazon RDS API actions never return the password, so this action 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.

", "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 isn't applied during the next maintenance window.

Default: Uses existing setting

Constraints: The DB parameter group must be in the same DB parameter group family as this 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 AWS Region. For more information, see Backup window in the Amazon RDS User Guide.

Amazon Aurora

Not applicable. The daily time range for creating automated backups is managed by the DB cluster. For more information, see ModifyDBCluster.

Constraints:

", + "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.

Amazon Aurora

Not applicable. The daily time range for creating automated backups is managed by the DB cluster. For more information, see ModifyDBCluster.

Constraints:

", "ModifyDBInstanceMessage$PreferredMaintenanceWindow": "

The weekly time range (in UTC) 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 will cause a reboot of the DB instance. If moving 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

Format: ddd:hh24:mi-ddd:hh24:mi

Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun

Constraints: 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 will update 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.

", "ModifyDBInstanceMessage$LicenseModel": "

The license model for the DB instance.

Valid values: license-included | bring-your-own-license | general-public-license

", @@ -4217,16 +4231,16 @@ "ModifyDBInstanceMessage$Domain": "

The Active Directory directory ID to move the DB instance to. Specify none to remove the instance from its current domain. 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.

", "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, 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.

", "ModifyDBInstanceMessage$DomainIAMRoleName": "

The name of the IAM role to use when making API calls to the Directory Service.

", - "ModifyDBInstanceMessage$PerformanceInsightsKMSKeyId": "

The AWS KMS key identifier for encryption of Performance Insights data.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default CMK. There is a default CMK for your AWS account. Your AWS account has a different default CMK for each AWS Region.

", + "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 Amazon Web Services KMS customer master key (CMK).

If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default CMK. There is a default CMK for your Amazon Web Services account. Your Amazon Web Services account has a different default CMK for each Amazon Web Services Region.

", "ModifyDBParameterGroupMessage$DBParameterGroupName": "

The name of the DB parameter group.

Constraints:

", "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.

", - "ModifyDBProxyRequest$RoleArn": "

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

", + "ModifyDBProxyRequest$RoleArn": "

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

", "ModifyDBProxyTargetGroupRequest$TargetGroupName": "

The name of the new target group to assign to the proxy.

", "ModifyDBProxyTargetGroupRequest$DBProxyName": "

The name of the new proxy to which to assign the target group.

", "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.

", "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 AWS 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 action.

", + "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 action.

", "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

Oracle

PostgreSQL

For the list of engine versions that are available for upgrading a DB snapshot, see Upgrading the PostgreSQL DB Engine for Amazon RDS.

", "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.

", @@ -4307,7 +4321,7 @@ "ProcessorFeature$Value": "

The value of a processor feature name.

", "PromoteReadReplicaDBClusterMessage$DBClusterIdentifier": "

The identifier of the DB cluster read replica to promote. This parameter isn't case-sensitive.

Constraints:

Example: my-cluster-replica1

", "PromoteReadReplicaMessage$DBInstanceIdentifier": "

The DB instance identifier. This value is stored as a lowercase string.

Constraints:

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 AWS Region. To see the time blocks available, see Adjusting the Preferred Maintenance Window in the Amazon RDS User Guide.

Constraints:

", + "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:

", "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

", "ReadReplicaDBClusterIdentifierList$member": null, @@ -4337,7 +4351,7 @@ "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.

AWS Support might request the lease ID for an issue related to a 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.

", @@ -4358,14 +4372,14 @@ "RestoreDBClusterFromS3Message$MasterUsername": "

The name of the master user for the restored DB cluster.

Constraints:

", "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.

", "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 AWS Region. To view the time blocks available, see Backup window in the Amazon Aurora User Guide.

Constraints:

", - "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 AWS 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 AWS KMS key identifier for an encrypted DB cluster.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK). To use a CMK in a different AWS 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 CMK. There is a default CMK for your AWS account. Your AWS account has a different default CMK for each AWS Region.

", + "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:

", + "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 Amazon Web Services KMS customer master key (CMK). To use a CMK 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 CMK. There is a default CMK for your Amazon Web Services account. Your Amazon Web Services account has a different default CMK 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.5, 5.6, and 5.7 are supported.

Example: 5.6.40, 5.7.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 AWS Identity and Access Management (IAM) role that authorizes Amazon RDS to access the Amazon S3 bucket on your behalf.

", + "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.

", "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:

Example: my-snapshot-id

", @@ -4375,7 +4389,7 @@ "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: mySubnetgroup

", "RestoreDBClusterFromSnapshotMessage$DatabaseName": "

The database name for the restored DB cluster.

", "RestoreDBClusterFromSnapshotMessage$OptionGroupName": "

The name of the option group to use for the restored DB cluster.

", - "RestoreDBClusterFromSnapshotMessage$KmsKeyId": "

The AWS KMS key identifier to use when restoring an encrypted DB cluster from a DB snapshot or DB cluster snapshot.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK). To use a CMK in a different AWS account, specify the key ARN or alias ARN.

When you don't specify a value for the KmsKeyId parameter, then the following occurs:

", + "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 Amazon Web Services KMS customer master key (CMK). To use a CMK 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:

", "RestoreDBClusterFromSnapshotMessage$EngineMode": "

The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster.

For more information, see CreateDBCluster.

", "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:

", "RestoreDBClusterFromSnapshotMessage$Domain": "

Specify 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.

", @@ -4385,19 +4399,19 @@ "RestoreDBClusterToPointInTimeMessage$SourceDBClusterIdentifier": "

The identifier of the source DB cluster from which to restore.

Constraints:

", "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: mySubnetgroup

", "RestoreDBClusterToPointInTimeMessage$OptionGroupName": "

The name of the option group for the new DB cluster.

", - "RestoreDBClusterToPointInTimeMessage$KmsKeyId": "

The AWS KMS key identifier to use when restoring an encrypted DB cluster from an encrypted DB cluster.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK). To use a CMK in a different AWS account, specify the key ARN or alias ARN.

You can restore to a new DB cluster and encrypt the new DB cluster with a AWS KMS CMK that is different than the AWS KMS key used to encrypt the source DB cluster. The new DB cluster is encrypted with the AWS KMS CMK identified by the KmsKeyId parameter.

If you don't specify a value for the KmsKeyId parameter, then the following occurs:

If DBClusterIdentifier refers to a DB cluster that isn't encrypted, then the restore request is rejected.

", + "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 Amazon Web Services KMS customer master key (CMK). To use a CMK 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 Amazon Web Services KMS CMK that is different than the Amazon Web Services KMS key used to encrypt the source DB cluster. The new DB cluster is encrypted with the Amazon Web Services KMS CMK identified by the KmsKeyId parameter.

If you don't specify a value for the KmsKeyId parameter, then the following occurs:

If DBClusterIdentifier refers to a DB cluster that isn't encrypted, then the restore request is rejected.

", "RestoreDBClusterToPointInTimeMessage$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:

", "RestoreDBClusterToPointInTimeMessage$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.

", "RestoreDBClusterToPointInTimeMessage$DomainIAMRoleName": "

Specify the name of the IAM role to be used when making API calls to the Directory Service.

", "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 clone from a provisioned cluster, or a provisioned clone from an Aurora Serverless cluster. To create a clone that is an Aurora Serverless cluster, the original cluster must be an Aurora Serverless cluster or an encrypted provisioned cluster.

", "RestoreDBInstanceFromDBSnapshotMessage$DBInstanceIdentifier": "

Name of the DB instance to create from the DB snapshot. This parameter isn't case-sensitive.

Constraints:

Example: my-snapshot-id

", "RestoreDBInstanceFromDBSnapshotMessage$DBSnapshotIdentifier": "

The identifier for the DB snapshot to restore from.

Constraints:

", - "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 AWS 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$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 DB subnet group name to use for the new instance.

Constraints: If supplied, must match the name of an existing DBSubnetGroup.

Example: mySubnetgroup

", "RestoreDBInstanceFromDBSnapshotMessage$LicenseModel": "

License model information for the restored DB instance.

Default: Same as source.

Valid values: license-included | bring-your-own-license | general-public-license

", "RestoreDBInstanceFromDBSnapshotMessage$DBName": "

The database name for the restored DB instance.

This parameter doesn't apply to the MySQL, PostgreSQL, or MariaDB engines.

", - "RestoreDBInstanceFromDBSnapshotMessage$Engine": "

The database engine to use for the new instance.

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:

", + "RestoreDBInstanceFromDBSnapshotMessage$Engine": "

The database engine to use for the new instance.

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:

", "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 once it is associated with a DB instance

", "RestoreDBInstanceFromDBSnapshotMessage$StorageType": "

Specifies the storage type to be associated with the DB instance.

Valid values: standard | gp2 | io1

If you specify io1, you must also include a value for the Iops parameter.

Default: io1 if the Iops parameter is specified, otherwise gp2

", "RestoreDBInstanceFromDBSnapshotMessage$TdeCredentialArn": "

The ARN from the key store with which to associate the instance for TDE encryption.

", @@ -4407,11 +4421,11 @@ "RestoreDBInstanceFromDBSnapshotMessage$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.

Constraints:

", "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:

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 AWS 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$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:

", "RestoreDBInstanceFromS3Message$MasterUserPassword": "

The password for the master user. The password can include any printable ASCII character except \"/\", \"\"\", or \"@\".

Constraints: Must contain from 8 to 41 characters.

", - "RestoreDBInstanceFromS3Message$AvailabilityZone": "

The Availability Zone that the DB instance is created in. For information about AWS 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 AWS 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 AWS Region as the current endpoint.

", + "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.

", "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:

", "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.

", @@ -4420,22 +4434,22 @@ "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: standard | gp2 | io1

If you specify io1, you must also include a value for the Iops parameter.

Default: io1 if the Iops parameter is specified; otherwise gp2

", - "RestoreDBInstanceFromS3Message$KmsKeyId": "

The AWS KMS key identifier for an encrypted DB instance.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK). To use a CMK in a different AWS 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 CMK. There is a default CMK for your AWS account. Your AWS account has a different default CMK for each AWS Region.

", + "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 Amazon Web Services KMS customer master key (CMK). To use a CMK 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 CMK. There is a default CMK for your Amazon Web Services account. Your Amazon Web Services account has a different default CMK 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 AWS Identity and Access Management (IAM) role to allow Amazon RDS to access your Amazon S3 bucket.

", - "RestoreDBInstanceFromS3Message$PerformanceInsightsKMSKeyId": "

The AWS KMS key identifier for encryption of Performance Insights data.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default CMK. There is a default CMK for your AWS account. Your AWS account has a different default CMK for each AWS Region.

", + "RestoreDBInstanceFromS3Message$S3IngestionRoleArn": "

An Amazon Web Services Identity and Access Management (IAM) role to allow Amazon RDS to access your Amazon S3 bucket.

", + "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 Amazon Web Services KMS customer master key (CMK).

If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon RDS uses your default CMK. There is a default CMK for your Amazon Web Services account. Your Amazon Web Services account has a different default CMK for each Amazon Web Services Region.

", "RestoreDBInstanceToPointInTimeMessage$SourceDBInstanceIdentifier": "

The identifier of the source DB instance from which to restore.

Constraints:

", "RestoreDBInstanceToPointInTimeMessage$TargetDBInstanceIdentifier": "

The name of the new DB instance to be created.

Constraints:

", - "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 AWS 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.

", + "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 DBInstanceClass 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.

Constraint: 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 DBSubnetGroup.

Example: mySubnetgroup

", "RestoreDBInstanceToPointInTimeMessage$LicenseModel": "

License model information for the restored DB instance.

Default: Same as source.

Valid values: license-included | bring-your-own-license | general-public-license

", "RestoreDBInstanceToPointInTimeMessage$DBName": "

The database name for the restored DB instance.

This parameter isn't used for the MySQL or MariaDB engines.

", - "RestoreDBInstanceToPointInTimeMessage$Engine": "

The database engine to use for the new instance.

Default: The same as source

Constraint: Must be compatible with the engine of the source

Valid Values:

", + "RestoreDBInstanceToPointInTimeMessage$Engine": "

The database engine to use for the new instance.

Default: The same as source

Constraint: Must be compatible with the engine of the source

Valid Values:

", "RestoreDBInstanceToPointInTimeMessage$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 once it is associated with a DB instance

", "RestoreDBInstanceToPointInTimeMessage$StorageType": "

Specifies the storage type to be associated with the DB instance.

Valid values: standard | gp2 | io1

If you specify io1, you must also include a value for the Iops parameter.

Default: io1 if the Iops parameter is specified, otherwise gp2

", "RestoreDBInstanceToPointInTimeMessage$TdeCredentialArn": "

The ARN from the key store with which to associate the instance for TDE encryption.

", @@ -4449,31 +4463,31 @@ "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 AWS account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter. The AWS 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.

", + "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 from finding a scaling point might be dropped.

For more information, see Autoscaling for Aurora Serverless in the Amazon Aurora User Guide.

", "ScalingConfigurationInfo$TimeoutAction": "

The timeout action of a call to ModifyCurrentDBClusterCapacity, either ForceApplyCapacityChange or RollbackCapacityChange.

", "SourceIdsList$member": null, - "SourceRegion$RegionName": "

The name of the source AWS Region.

", - "SourceRegion$Endpoint": "

The endpoint for the source AWS Region endpoint.

", - "SourceRegion$Status": "

The status of the source AWS Region.

", + "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 AWS KMS key identifier for encrypting messages in the database activity stream. The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

", - "StartActivityStreamResponse$KmsKeyId": "

The AWS KMS key identifier for encryption of messages in the database activity stream.

", + "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 Amazon Web Services KMS customer master key (CMK).

", + "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 AWS 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 AWS Region, for example, arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE.

", - "StartDBInstanceAutomatedBackupsReplicationMessage$PreSignedUrl": "

A URL that contains a Signature Version 4 signed request for the StartDBInstanceAutomatedBackupsReplication action to be called in the AWS Region of the source DB instance. The presigned URL must be a valid request for the StartDBInstanceAutomatedBackupsReplication API action that can be executed in the AWS Region that contains the source DB instance.

", + "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.

", + "StartDBInstanceAutomatedBackupsReplicationMessage$PreSignedUrl": "

A URL that contains a Signature Version 4 signed request for the StartDBInstanceAutomatedBackupsReplication action to be called in the Amazon Web Services Region of the source DB instance. The presigned URL must be a valid request for the StartDBInstanceAutomatedBackupsReplication API action that can be executed in the Amazon Web Services Region that contains the source DB instance.

", "StartDBInstanceMessage$DBInstanceIdentifier": "

The user-supplied instance identifier.

", "StartExportTaskMessage$ExportTaskIdentifier": "

A unique identifier for the snapshot export task. This ID isn't an identifier for the Amazon S3 bucket where the snapshot is to be exported to.

", "StartExportTaskMessage$SourceArn": "

The Amazon Resource Name (ARN) of the snapshot to export to Amazon S3.

", "StartExportTaskMessage$S3BucketName": "

The name of the Amazon S3 bucket to export the snapshot to.

", "StartExportTaskMessage$IamRoleArn": "

The name of the IAM role to use for writing to the Amazon S3 bucket when exporting a snapshot.

", - "StartExportTaskMessage$KmsKeyId": "

The ID of the AWS KMS customer master key (CMK) to use to encrypt the snapshot exported to Amazon S3. The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK). The caller of this operation must be authorized to execute the following operations. These can be set in the AWS KMS key policy:

", + "StartExportTaskMessage$KmsKeyId": "

The ID of the Amazon Web Services KMS customer master key (CMK) to use to encrypt the snapshot exported to Amazon S3. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). The caller of this operation must be authorized to execute the following operations. These can be set in the Amazon Web Services KMS key policy:

", "StartExportTaskMessage$S3Prefix": "

The Amazon S3 bucket prefix to use as the file name and path of the exported snapshot.

", "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 AWS KMS key identifier used for encrypting messages in the database activity stream.

The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS customer master key (CMK).

", + "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 Amazon Web Services KMS customer master key (CMK).

", "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 automated backups, for example, arn:aws:rds:us-west-2:123456789012:db:mydatabase.

", @@ -4483,8 +4497,8 @@ "Subnet$SubnetIdentifier": "

The identifier of the subnet.

", "Subnet$SubnetStatus": "

The status of the subnet.

", "SubnetIdentifierList$member": null, - "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}_.:/=+\\\\-@]*)$\").

", + "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.

", "Timezone$TimezoneName": "

The name of the time zone.

", "UpgradeTarget$Engine": "

The name of the upgrade target database engine.

", @@ -4502,7 +4516,7 @@ "VpcSecurityGroupMembership$Status": "

The status of the VPC security group.

", "VpnDetails$VpnId": "

The ID of the VPN.

", "VpnDetails$VpnTunnelOriginatorIP": "

The IP address of network traffic from your on-premises data center. A custom AZ receives the network traffic.

", - "VpnDetails$VpnGatewayIp": "

The IP address of network traffic from AWS to your on-premises data center.

", + "VpnDetails$VpnGatewayIp": "

The IP address of network traffic from Amazon Web Services to your on-premises data center.

", "VpnDetails$VpnName": "

The name of the VPN.

", "VpnDetails$VpnState": "

The state of the VPN.

" } @@ -4821,9 +4835,9 @@ } }, "VpnDetails": { - "base": "

Information about the virtual private network (VPN) between the VMware vSphere cluster and the AWS website.

For more information about RDS on VMware, see the RDS on VMware User Guide.

", + "base": "

Information about the virtual private network (VPN) between the VMware vSphere cluster and the Amazon Web Services website.

For more information about RDS on VMware, see the RDS on VMware User Guide.

", "refs": { - "CustomAvailabilityZone$VpnDetails": "

Information about the virtual private network (VPN) between the VMware vSphere cluster and the AWS website.

" + "CustomAvailabilityZone$VpnDetails": "

Information about the virtual private network (VPN) between the VMware vSphere cluster and the Amazon Web Services website.

" } }, "WriteForwardingStatus": { diff --git a/models/apis/sagemaker/2017-07-24/api-2.json b/models/apis/sagemaker/2017-07-24/api-2.json index 0e10d709c5a..960275bef70 100644 --- a/models/apis/sagemaker/2017-07-24/api-2.json +++ b/models/apis/sagemaker/2017-07-24/api-2.json @@ -11966,7 +11966,13 @@ "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", - "ml.r5.24xlarge" + "ml.r5.24xlarge", + "ml.g4dn.xlarge", + "ml.g4dn.2xlarge", + "ml.g4dn.4xlarge", + "ml.g4dn.8xlarge", + "ml.g4dn.12xlarge", + "ml.g4dn.16xlarge" ] }, "ProcessingJob":{ @@ -13978,7 +13984,13 @@ "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", - "ml.m5.24xlarge" + "ml.m5.24xlarge", + "ml.g4dn.xlarge", + "ml.g4dn.2xlarge", + "ml.g4dn.4xlarge", + "ml.g4dn.8xlarge", + "ml.g4dn.12xlarge", + "ml.g4dn.16xlarge" ] }, "TransformInstanceTypes":{ diff --git a/models/apis/sagemaker/2017-07-24/docs-2.json b/models/apis/sagemaker/2017-07-24/docs-2.json index 7f02827bf5f..de2635eafe9 100644 --- a/models/apis/sagemaker/2017-07-24/docs-2.json +++ b/models/apis/sagemaker/2017-07-24/docs-2.json @@ -4924,7 +4924,7 @@ "OnlineStoreSecurityConfig$KmsKeyId": "

The ID of the AWS Key Management Service (AWS KMS) key that SageMaker Feature Store uses to encrypt the Amazon S3 objects at rest using Amazon S3 server-side encryption.

The caller (either IAM user or IAM role) of CreateFeatureGroup must have below permissions to the OnlineStore KmsKeyId:

The caller (either IAM user or IAM role) to all DataPlane operations (PutRecord, GetRecord, DeleteRecord) must have the following permissions to the KmsKeyId:

", "OutputConfig$KmsKeyId": "

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume after compilation job. If you don't provide a KMS key ID, Amazon SageMaker uses the default KMS key for Amazon S3 for your role's account

The KmsKeyId can be any of the following formats:

", "OutputDataConfig$KmsKeyId": "

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption. The KmsKeyId can be any of the following formats:

If you use a KMS key ID or an alias of your master key, the Amazon SageMaker execution role must include permissions to call kms:Encrypt. If you don't provide a KMS key ID, Amazon SageMaker uses the default KMS key for Amazon S3 for your role's account. Amazon SageMaker uses server-side encryption with KMS-managed keys for OutputDataConfig. If you use a bucket policy with an s3:PutObject permission that only allows objects with server-side encryption, set the condition key of s3:x-amz-server-side-encryption to \"aws:kms\". For more information, see KMS-Managed Encryption Keys in the Amazon Simple Storage Service Developer Guide.

The KMS key policy must grant permission to the IAM role that you specify in your CreateTrainingJob, CreateTransformJob, or CreateHyperParameterTuningJob requests. For more information, see Using Key Policies in AWS KMS in the AWS Key Management Service Developer Guide.

", - "ProcessingClusterConfig$VolumeKmsKeyId": "

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume attached to the ML compute instance(s) that run the processing job.

", + "ProcessingClusterConfig$VolumeKmsKeyId": "

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume attached to the ML compute instance(s) that run the processing job.

Certain Nitro-based instances include local storage, dependent on the instance type. Local storage volumes are encrypted using a hardware module on the instance. You can't request a VolumeKmsKeyId when using an instance type with local storage.

For a list of instance types that support local instance storage, see Instance Store Volumes.

For more information about local instance storage encryption, see SSD Instance Store Volumes.

", "ProcessingOutputConfig$KmsKeyId": "

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the processing job output. KmsKeyId can be an ID of a KMS key, ARN of a KMS key, alias of a KMS key, or alias of a KMS key. The KmsKeyId is applied to all outputs.

", "ProductionVariantCoreDumpConfig$KmsKeyId": "

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the core dump data at rest using Amazon S3 server-side encryption. The KmsKeyId can be any of the following formats:

If you use a KMS key ID or an alias of your master key, the Amazon SageMaker execution role must include permissions to call kms:Encrypt. If you don't provide a KMS key ID, Amazon SageMaker uses the default KMS key for Amazon S3 for your role's account. Amazon SageMaker uses server-side encryption with KMS-managed keys for OutputDataConfig. If you use a bucket policy with an s3:PutObject permission that only allows objects with server-side encryption, set the condition key of s3:x-amz-server-side-encryption to \"aws:kms\". For more information, see KMS-Managed Encryption Keys in the Amazon Simple Storage Service Developer Guide.

The KMS key policy must grant permission to the IAM role that you specify in your CreateEndpoint and UpdateEndpoint requests. For more information, see Using Key Policies in AWS KMS in the AWS Key Management Service Developer Guide.

", "RedshiftDatasetDefinition$KmsKeyId": "

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data from a Redshift execution.

", @@ -4932,7 +4932,7 @@ "S3StorageConfig$KmsKeyId": "

The AWS Key Management Service (KMS) key ID of the key used to encrypt any objects written into the OfflineStore S3 location.

The IAM roleARN that is passed as a parameter to CreateFeatureGroup must have below permissions to the KmsKeyId:

", "SharingSettings$S3KmsKeyId": "

When NotebookOutputOption is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.

", "TransformOutput$KmsKeyId": "

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption. The KmsKeyId can be any of the following formats:

If you don't provide a KMS key ID, Amazon SageMaker uses the default KMS key for Amazon S3 for your role's account. For more information, see KMS-Managed Encryption Keys in the Amazon Simple Storage Service Developer Guide.

The KMS key policy must grant permission to the IAM role that you specify in your CreateModel request. For more information, see Using Key Policies in AWS KMS in the AWS Key Management Service Developer Guide.

", - "TransformResources$VolumeKmsKeyId": "

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt model data on the storage volume attached to the ML compute instance(s) that run the batch transform job. The VolumeKmsKeyId can be any of the following formats:

" + "TransformResources$VolumeKmsKeyId": "

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt model data on the storage volume attached to the ML compute instance(s) that run the batch transform job.

Certain Nitro-based instances include local storage, dependent on the instance type. Local storage volumes are encrypted using a hardware module on the instance. You can't request a VolumeKmsKeyId when using an instance type with local storage.

For a list of instance types that support local instance storage, see Instance Store Volumes.

For more information about local instance storage encryption, see SSD Instance Store Volumes.

The VolumeKmsKeyId can be any of the following formats:

" } }, "LabelAttributeName": { @@ -5945,7 +5945,7 @@ } }, "MetricDefinition": { - "base": "

Specifies a metric that the training algorithm writes to stderr or stdout . Amazon SageMakerhyperparameter tuning captures all defined metrics. You specify one metric that a hyperparameter tuning job uses as its objective metric to choose the best training job.

", + "base": "

Specifies a metric that the training algorithm writes to stderr or stdout. Amazon SageMakerhyperparameter tuning captures all defined metrics. You specify one metric that a hyperparameter tuning job uses as its objective metric to choose the best training job.

", "refs": { "MetricDefinitionList$member": null } @@ -7738,7 +7738,7 @@ "base": null, "refs": { "MonitoringClusterConfig$VolumeSizeInGB": "

The size of the ML storage volume, in gigabytes, that you want to provision. You must specify sufficient ML storage for your scenario.

", - "ProcessingClusterConfig$VolumeSizeInGB": "

The size of the ML storage volume in gigabytes that you want to provision. You must specify sufficient ML storage for your scenario.

" + "ProcessingClusterConfig$VolumeSizeInGB": "

The size of the ML storage volume in gigabytes that you want to provision. You must specify sufficient ML storage for your scenario.

Certain Nitro-based instances include local storage with a fixed total size, dependent on the instance type. When using these instances for processing, Amazon SageMaker mounts the local instance storage instead of Amazon EBS gp2 storage. You can't request a VolumeSizeInGB greater than the total size of the local instance storage.

For a list of instance types that support local instance storage, including the total size per instance type, see Instance Store Volumes.

" } }, "ProductId": { @@ -9739,7 +9739,7 @@ "base": null, "refs": { "TransformInstanceTypes$member": null, - "TransformResources$InstanceType": "

The ML compute instance type for the transform job. If you are using built-in algorithms to transform moderately sized datasets, we recommend using ml.m4.xlarge or ml.m5.large instance types.

" + "TransformResources$InstanceType": "

The ML compute instance type for the transform job. If you are using built-in algorithms to transform moderately sized datasets, we recommend using ml.m4.xlarge or ml.m5.largeinstance types.

" } }, "TransformInstanceTypes": { diff --git a/models/endpoints/endpoints.json b/models/endpoints/endpoints.json index a55580845c4..292ae993699 100644 --- a/models/endpoints/endpoints.json +++ b/models/endpoints/endpoints.json @@ -8,7 +8,7 @@ "dnsSuffix" : "amazonaws.com", "partition" : "aws", "partitionName" : "AWS Standard", - "regionRegex" : "^(us|eu|ap|sa|ca|me|af|in)\\-\\w+\\-\\d+$", + "regionRegex" : "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$", "regions" : { "af-south-1" : { "description" : "Africa (Cape Town)" @@ -55,9 +55,6 @@ "eu-west-3" : { "description" : "Europe (Paris)" }, - "in-amazon-1" : { - "description" : "India (Begumpet)" - }, "me-south-1" : { "description" : "Middle East (Bahrain)" }, @@ -6614,12 +6611,6 @@ "eu-west-1" : { }, "eu-west-2" : { }, "eu-west-3" : { }, - "in-amazon-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "hostname" : "sts.ap-south-1.amazonaws.com" - }, "me-south-1" : { }, "sa-east-1" : { }, "us-east-1" : { }, diff --git a/service/chime/api.go b/service/chime/api.go index 48b14df6698..93e12956b3a 100644 --- a/service/chime/api.go +++ b/service/chime/api.go @@ -10057,7 +10057,7 @@ func (c *Chime) GetVoiceConnectorGroupRequest(input *GetVoiceConnectorGroupInput // GetVoiceConnectorGroup API operation for Amazon Chime. // // Retrieves details for the specified Amazon Chime Voice Connector group, such -// as timestamps,name, and associated VoiceConnectorItems . +// as timestamps,name, and associated VoiceConnectorItems. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -13092,7 +13092,7 @@ func (c *Chime) ListMeetingsRequest(input *ListMeetingsInput) (req *request.Requ // // Lists up to 100 active Amazon Chime SDK meetings. For more information about // the Amazon Chime SDK, see Using the Amazon Chime SDK (https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html) -// in the Amazon Chime Developer Guide . +// in the Amazon Chime Developer Guide. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -15470,13 +15470,13 @@ func (c *Chime) PutRetentionSettingsRequest(input *PutRetentionSettingsInput) (r // We recommend using AWS CloudTrail to monitor usage of this API for your account. // For more information, see Logging Amazon Chime API Calls with AWS CloudTrail // (https://docs.aws.amazon.com/chime/latest/ag/cloudtrail.html) in the Amazon -// Chime Administration Guide . +// Chime Administration Guide. // // To turn off existing retention settings, remove the number of days from the // corresponding RetentionDays field in the RetentionSettings object. For more // information about retention settings, see Managing Chat Retention Policies // (https://docs.aws.amazon.com/chime/latest/ag/chat-retention.html) in the -// Amazon Chime Administration Guide . +// Amazon Chime Administration Guide. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -19284,6 +19284,107 @@ func (c *Chime) UpdateSipMediaApplicationWithContext(ctx aws.Context, input *Upd return out, req.Send() } +const opUpdateSipMediaApplicationCall = "UpdateSipMediaApplicationCall" + +// UpdateSipMediaApplicationCallRequest generates a "aws/request.Request" representing the +// client's request for the UpdateSipMediaApplicationCall operation. The "output" return +// value will be populated with the request's response once the request completes +// successfully. +// +// Use "Send" method on the returned Request to send the API call to the service. +// the "output" return value is not valid until after Send returns without error. +// +// See UpdateSipMediaApplicationCall for more information on using the UpdateSipMediaApplicationCall +// API call, and error handling. +// +// This method is useful when you want to inject custom logic or configuration +// into the SDK's request lifecycle. Such as custom headers, or retry logic. +// +// +// // Example sending a request using the UpdateSipMediaApplicationCallRequest method. +// req, resp := client.UpdateSipMediaApplicationCallRequest(params) +// +// err := req.Send() +// if err == nil { // resp is now filled +// fmt.Println(resp) +// } +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateSipMediaApplicationCall +func (c *Chime) UpdateSipMediaApplicationCallRequest(input *UpdateSipMediaApplicationCallInput) (req *request.Request, output *UpdateSipMediaApplicationCallOutput) { + op := &request.Operation{ + Name: opUpdateSipMediaApplicationCall, + HTTPMethod: "POST", + HTTPPath: "/sip-media-applications/{sipMediaApplicationId}/calls/{transactionId}", + } + + if input == nil { + input = &UpdateSipMediaApplicationCallInput{} + } + + output = &UpdateSipMediaApplicationCallOutput{} + req = c.newRequest(op, input, output) + return +} + +// UpdateSipMediaApplicationCall API operation for Amazon Chime. +// +// Allows you to trigger a Lambda function at any time while a call is active, +// and replace the current actions with new actions returned by the invocation. +// +// Returns awserr.Error for service API and SDK errors. Use runtime type assertions +// with awserr.Error's Code and Message methods to get detailed information about +// the error. +// +// See the AWS API reference guide for Amazon Chime's +// API operation UpdateSipMediaApplicationCall for usage and error information. +// +// Returned Error Types: +// * BadRequestException +// The input parameters don't match the service's restrictions. +// +// * NotFoundException +// One or more of the resources in the request does not exist in the system. +// +// * ForbiddenException +// The client is permanently forbidden from making the request. +// +// * ResourceLimitExceededException +// The request exceeds the resource limit. +// +// * ThrottledClientException +// The client exceeded its request rate limit. +// +// * UnauthorizedClientException +// The client is not currently authorized to make the request. +// +// * ServiceUnavailableException +// The service is currently unavailable. +// +// * ServiceFailureException +// The service encountered an unexpected error. +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateSipMediaApplicationCall +func (c *Chime) UpdateSipMediaApplicationCall(input *UpdateSipMediaApplicationCallInput) (*UpdateSipMediaApplicationCallOutput, error) { + req, out := c.UpdateSipMediaApplicationCallRequest(input) + return out, req.Send() +} + +// UpdateSipMediaApplicationCallWithContext is the same as UpdateSipMediaApplicationCall with the addition of +// the ability to pass a context and additional request options. +// +// See UpdateSipMediaApplicationCall for details on how to use this API operation. +// +// The context must be non-nil and will be used for request cancellation. If +// the context is nil a panic will occur. In the future the SDK may create +// sub-contexts for http.Requests. See https://golang.org/pkg/context/ +// for more information on using Contexts. +func (c *Chime) UpdateSipMediaApplicationCallWithContext(ctx aws.Context, input *UpdateSipMediaApplicationCallInput, opts ...request.Option) (*UpdateSipMediaApplicationCallOutput, error) { + req, out := c.UpdateSipMediaApplicationCallRequest(input) + req.SetContext(ctx) + req.ApplyOptions(opts...) + return out, req.Send() +} + const opUpdateSipRule = "UpdateSipRule" // UpdateSipRuleRequest generates a "aws/request.Request" representing the @@ -39457,6 +39558,102 @@ func (s *UpdateRoomOutput) SetRoom(v *Room) *UpdateRoomOutput { return s } +type UpdateSipMediaApplicationCallInput struct { + _ struct{} `type:"structure"` + + // Arguments made available to the Lambda function as part of the CALL_UPDATE_REQUESTED + // event. Can contain 0-20 key-value pairs. + // + // Arguments is a required field + Arguments map[string]*string `type:"map" required:"true"` + + // The ID of the SIP media application handling the call. + // + // SipMediaApplicationId is a required field + SipMediaApplicationId *string `location:"uri" locationName:"sipMediaApplicationId" type:"string" required:"true"` + + // The ID of the call transaction. + // + // TransactionId is a required field + TransactionId *string `location:"uri" locationName:"transactionId" type:"string" required:"true"` +} + +// String returns the string representation +func (s UpdateSipMediaApplicationCallInput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s UpdateSipMediaApplicationCallInput) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *UpdateSipMediaApplicationCallInput) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "UpdateSipMediaApplicationCallInput"} + if s.Arguments == nil { + invalidParams.Add(request.NewErrParamRequired("Arguments")) + } + if s.SipMediaApplicationId == nil { + invalidParams.Add(request.NewErrParamRequired("SipMediaApplicationId")) + } + if s.SipMediaApplicationId != nil && len(*s.SipMediaApplicationId) < 1 { + invalidParams.Add(request.NewErrParamMinLen("SipMediaApplicationId", 1)) + } + if s.TransactionId == nil { + invalidParams.Add(request.NewErrParamRequired("TransactionId")) + } + if s.TransactionId != nil && len(*s.TransactionId) < 1 { + invalidParams.Add(request.NewErrParamMinLen("TransactionId", 1)) + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetArguments sets the Arguments field's value. +func (s *UpdateSipMediaApplicationCallInput) SetArguments(v map[string]*string) *UpdateSipMediaApplicationCallInput { + s.Arguments = v + return s +} + +// SetSipMediaApplicationId sets the SipMediaApplicationId field's value. +func (s *UpdateSipMediaApplicationCallInput) SetSipMediaApplicationId(v string) *UpdateSipMediaApplicationCallInput { + s.SipMediaApplicationId = &v + return s +} + +// SetTransactionId sets the TransactionId field's value. +func (s *UpdateSipMediaApplicationCallInput) SetTransactionId(v string) *UpdateSipMediaApplicationCallInput { + s.TransactionId = &v + return s +} + +type UpdateSipMediaApplicationCallOutput struct { + _ struct{} `type:"structure"` + + // A Call instance for a SIP media application. + SipMediaApplicationCall *SipMediaApplicationCall `type:"structure"` +} + +// String returns the string representation +func (s UpdateSipMediaApplicationCallOutput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s UpdateSipMediaApplicationCallOutput) GoString() string { + return s.String() +} + +// SetSipMediaApplicationCall sets the SipMediaApplicationCall field's value. +func (s *UpdateSipMediaApplicationCallOutput) SetSipMediaApplicationCall(v *SipMediaApplicationCall) *UpdateSipMediaApplicationCallOutput { + s.SipMediaApplicationCall = v + return s +} + type UpdateSipMediaApplicationInput struct { _ struct{} `type:"structure"` diff --git a/service/chime/chimeiface/interface.go b/service/chime/chimeiface/interface.go index 8c26449e220..470af58ba0f 100644 --- a/service/chime/chimeiface/interface.go +++ b/service/chime/chimeiface/interface.go @@ -847,6 +847,10 @@ type ChimeAPI interface { UpdateSipMediaApplicationWithContext(aws.Context, *chime.UpdateSipMediaApplicationInput, ...request.Option) (*chime.UpdateSipMediaApplicationOutput, error) UpdateSipMediaApplicationRequest(*chime.UpdateSipMediaApplicationInput) (*request.Request, *chime.UpdateSipMediaApplicationOutput) + UpdateSipMediaApplicationCall(*chime.UpdateSipMediaApplicationCallInput) (*chime.UpdateSipMediaApplicationCallOutput, error) + UpdateSipMediaApplicationCallWithContext(aws.Context, *chime.UpdateSipMediaApplicationCallInput, ...request.Option) (*chime.UpdateSipMediaApplicationCallOutput, error) + UpdateSipMediaApplicationCallRequest(*chime.UpdateSipMediaApplicationCallInput) (*request.Request, *chime.UpdateSipMediaApplicationCallOutput) + UpdateSipRule(*chime.UpdateSipRuleInput) (*chime.UpdateSipRuleOutput, error) UpdateSipRuleWithContext(aws.Context, *chime.UpdateSipRuleInput, ...request.Option) (*chime.UpdateSipRuleOutput, error) UpdateSipRuleRequest(*chime.UpdateSipRuleInput) (*request.Request, *chime.UpdateSipRuleOutput) diff --git a/service/kendra/api.go b/service/kendra/api.go index 9d63867996f..b56cf40a4fb 100644 --- a/service/kendra/api.go +++ b/service/kendra/api.go @@ -4137,6 +4137,141 @@ func (s *AttributeFilter) SetOrAllFilters(v []*AttributeFilter) *AttributeFilter return s } +// Provides the configuration information to connect to websites that require +// user authentication. +type AuthenticationConfiguration struct { + _ struct{} `type:"structure"` + + // The list of configuration information that's required to connect to and crawl + // a website host using basic authentication credentials. + // + // The list includes the name and port number of the website host. + BasicAuthentication []*BasicAuthenticationConfiguration `type:"list"` +} + +// String returns the string representation +func (s AuthenticationConfiguration) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s AuthenticationConfiguration) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *AuthenticationConfiguration) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "AuthenticationConfiguration"} + if s.BasicAuthentication != nil { + for i, v := range s.BasicAuthentication { + if v == nil { + continue + } + if err := v.Validate(); err != nil { + invalidParams.AddNested(fmt.Sprintf("%s[%v]", "BasicAuthentication", i), err.(request.ErrInvalidParams)) + } + } + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetBasicAuthentication sets the BasicAuthentication field's value. +func (s *AuthenticationConfiguration) SetBasicAuthentication(v []*BasicAuthenticationConfiguration) *AuthenticationConfiguration { + s.BasicAuthentication = v + return s +} + +// Provides the configuration information to connect to websites that require +// basic user authentication. +type BasicAuthenticationConfiguration struct { + _ struct{} `type:"structure"` + + // Your secret ARN, which you can create in AWS Secrets Manager (https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html) + // + // You use a secret if basic authentication credentials are required to connect + // to a website. The secret stores your credentials of user name and password. + // + // Credentials is a required field + Credentials *string `min:"1" type:"string" required:"true"` + + // The name of the website host you want to connect to using authentication + // credentials. + // + // For example, the host name of https://a.example.com/page1.html is "a.example.com". + // + // Host is a required field + Host *string `min:"1" type:"string" required:"true"` + + // The port number of the website host you want to connect to using authentication + // credentials. + // + // For example, the port for https://a.example.com/page1.html is 443, the standard + // port for HTTPS. + // + // Port is a required field + Port *int64 `min:"1" type:"integer" required:"true"` +} + +// String returns the string representation +func (s BasicAuthenticationConfiguration) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s BasicAuthenticationConfiguration) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *BasicAuthenticationConfiguration) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "BasicAuthenticationConfiguration"} + if s.Credentials == nil { + invalidParams.Add(request.NewErrParamRequired("Credentials")) + } + if s.Credentials != nil && len(*s.Credentials) < 1 { + invalidParams.Add(request.NewErrParamMinLen("Credentials", 1)) + } + if s.Host == nil { + invalidParams.Add(request.NewErrParamRequired("Host")) + } + if s.Host != nil && len(*s.Host) < 1 { + invalidParams.Add(request.NewErrParamMinLen("Host", 1)) + } + if s.Port == nil { + invalidParams.Add(request.NewErrParamRequired("Port")) + } + if s.Port != nil && *s.Port < 1 { + invalidParams.Add(request.NewErrParamMinValue("Port", 1)) + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetCredentials sets the Credentials field's value. +func (s *BasicAuthenticationConfiguration) SetCredentials(v string) *BasicAuthenticationConfiguration { + s.Credentials = &v + return s +} + +// SetHost sets the Host field's value. +func (s *BasicAuthenticationConfiguration) SetHost(v string) *BasicAuthenticationConfiguration { + s.Host = &v + return s +} + +// SetPort sets the Port field's value. +func (s *BasicAuthenticationConfiguration) SetPort(v int64) *BasicAuthenticationConfiguration { + s.Port = &v + return s +} + type BatchDeleteDocumentInput struct { _ struct{} `type:"structure"` @@ -4599,19 +4734,29 @@ func (s *BatchPutDocumentResponseFailedDocument) SetId(v string) *BatchPutDocume return s } -// Specifies capacity units configured for your index. You can add and remove -// capacity units to tune an index to your requirements. +// Specifies capacity units configured for your enterprise edition index. You +// can add and remove capacity units to tune an index to your requirements. type CapacityUnitsConfiguration struct { _ struct{} `type:"structure"` - // The amount of extra query capacity for an index. Each capacity unit provides - // 0.5 queries per second and 40,000 queries per day. + // The amount of extra query capacity for an index and GetQuerySuggestions (https://docs.aws.amazon.com/kendra/latest/dg/API_GetQuerySuggestions.html) + // capacity. + // + // A single extra capacity unit for an index provides 0.5 queries per second + // or approximately 40,000 queries per day. + // + // GetQuerySuggestions capacity is 5 times the provisioned query capacity for + // an index. For example, the base capacity for an index is 0.5 queries per + // second, so GetQuerySuggestions capacity is 2.5 calls per second. If adding + // another 0.5 queries per second to total 1 queries per second for an index, + // the GetQuerySuggestions capacity is 5 calls per second. // // QueryCapacityUnits is a required field QueryCapacityUnits *int64 `type:"integer" required:"true"` - // The amount of extra storage capacity for an index. Each capacity unit provides - // 150 Gb of storage space or 500,000 documents, whichever is reached first. + // The amount of extra storage capacity for an index. A single capacity unit + // for an index provides 150 GB of storage space or 500,000 documents, whichever + // is reached first. // // StorageCapacityUnits is a required field StorageCapacityUnits *int64 `type:"integer" required:"true"` @@ -6700,6 +6845,9 @@ type DataSourceConfiguration struct { // Provides information necessary to create a data source connector for a Microsoft // SharePoint site. SharePointConfiguration *SharePointConfiguration `type:"structure"` + + // Provides the configuration information required for Amazon Kendra web crawler. + WebCrawlerConfiguration *WebCrawlerConfiguration `type:"structure"` } // String returns the string representation @@ -6755,6 +6903,11 @@ func (s *DataSourceConfiguration) Validate() error { invalidParams.AddNested("SharePointConfiguration", err.(request.ErrInvalidParams)) } } + if s.WebCrawlerConfiguration != nil { + if err := s.WebCrawlerConfiguration.Validate(); err != nil { + invalidParams.AddNested("WebCrawlerConfiguration", err.(request.ErrInvalidParams)) + } + } if invalidParams.Len() > 0 { return invalidParams @@ -6810,6 +6963,12 @@ func (s *DataSourceConfiguration) SetSharePointConfiguration(v *SharePointConfig return s } +// SetWebCrawlerConfiguration sets the WebCrawlerConfiguration field's value. +func (s *DataSourceConfiguration) SetWebCrawlerConfiguration(v *WebCrawlerConfiguration) *DataSourceConfiguration { + s.WebCrawlerConfiguration = v + return s +} + // Summary information for a Amazon Kendra data source. Returned in a call to // the DescribeDataSource operation. type DataSourceSummary struct { @@ -11146,6 +11305,88 @@ func (s *Principal) SetType(v string) *Principal { return s } +// Provides the configuration information for a web proxy to connect to website +// hosts. +type ProxyConfiguration struct { + _ struct{} `type:"structure"` + + // Your secret ARN, which you can create in AWS Secrets Manager (https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html) + // + // The credentials are optional. You use a secret if web proxy credentials are + // required to connect to a website host. Amazon Kendra currently support basic + // authentication to connect to a web proxy server. The secret stores your credentials. + Credentials *string `min:"1" type:"string"` + + // The name of the website host you want to connect to via a web proxy server. + // + // For example, the host name of https://a.example.com/page1.html is "a.example.com". + // + // Host is a required field + Host *string `min:"1" type:"string" required:"true"` + + // The port number of the website host you want to connect to via a web proxy + // server. + // + // For example, the port for https://a.example.com/page1.html is 443, the standard + // port for HTTPS. + // + // Port is a required field + Port *int64 `min:"1" type:"integer" required:"true"` +} + +// String returns the string representation +func (s ProxyConfiguration) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s ProxyConfiguration) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *ProxyConfiguration) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "ProxyConfiguration"} + if s.Credentials != nil && len(*s.Credentials) < 1 { + invalidParams.Add(request.NewErrParamMinLen("Credentials", 1)) + } + if s.Host == nil { + invalidParams.Add(request.NewErrParamRequired("Host")) + } + if s.Host != nil && len(*s.Host) < 1 { + invalidParams.Add(request.NewErrParamMinLen("Host", 1)) + } + if s.Port == nil { + invalidParams.Add(request.NewErrParamRequired("Port")) + } + if s.Port != nil && *s.Port < 1 { + invalidParams.Add(request.NewErrParamMinValue("Port", 1)) + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetCredentials sets the Credentials field's value. +func (s *ProxyConfiguration) SetCredentials(v string) *ProxyConfiguration { + s.Credentials = &v + return s +} + +// SetHost sets the Host field's value. +func (s *ProxyConfiguration) SetHost(v string) *ProxyConfiguration { + s.Host = &v + return s +} + +// SetPort sets the Port field's value. +func (s *ProxyConfiguration) SetPort(v int64) *ProxyConfiguration { + s.Port = &v + return s +} + type QueryInput struct { _ struct{} `type:"structure"` @@ -12970,6 +13211,75 @@ func (s *Search) SetSortable(v bool) *Search { return s } +// Provides the configuration information of the seed or starting point URLs +// to crawl. +// +// When selecting websites to index, you must adhere to the Amazon Acceptable +// Use Policy (https://aws.amazon.com/aup/) and all other Amazon terms. Remember +// that you must only use the Amazon Kendra web crawler to index your own webpages, +// or webpages that you have authorization to index. +type SeedUrlConfiguration struct { + _ struct{} `type:"structure"` + + // The list of seed or starting point URLs of the websites you want to crawl. + // + // The list can include a maximum of 100 seed URLs. + // + // SeedUrls is a required field + SeedUrls []*string `type:"list" required:"true"` + + // You can choose one of the following modes: + // + // * HOST_ONLY – crawl only the website host names. For example, if the + // seed URL is "abc.example.com", then only URLs with host name "abc.example.com" + // are crawled. + // + // * SUBDOMAINS – crawl the website host names with subdomains. For example, + // if the seed URL is "abc.example.com", then "a.abc.example.com" and "b.abc.example.com" + // are also crawled. + // + // * EVERYTHING – crawl the website host names with subdomains and other + // domains that the webpages link to. + // + // The default mode is set to HOST_ONLY. + WebCrawlerMode *string `type:"string" enum:"WebCrawlerMode"` +} + +// String returns the string representation +func (s SeedUrlConfiguration) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s SeedUrlConfiguration) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *SeedUrlConfiguration) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "SeedUrlConfiguration"} + if s.SeedUrls == nil { + invalidParams.Add(request.NewErrParamRequired("SeedUrls")) + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetSeedUrls sets the SeedUrls field's value. +func (s *SeedUrlConfiguration) SetSeedUrls(v []*string) *SeedUrlConfiguration { + s.SeedUrls = v + return s +} + +// SetWebCrawlerMode sets the WebCrawlerMode field's value. +func (s *SeedUrlConfiguration) SetWebCrawlerMode(v string) *SeedUrlConfiguration { + s.WebCrawlerMode = &v + return s +} + // Provides the identifier of the AWS KMS customer master key (CMK) used to // encrypt data indexed by Amazon Kendra. Amazon Kendra doesn't support asymmetric // CMKs. @@ -13629,6 +13939,52 @@ func (s *SharePointConfiguration) SetVpcConfiguration(v *DataSourceVpcConfigurat return s } +// Provides the configuration information of the sitemap URLs to crawl. +// +// When selecting websites to index, you must adhere to the Amazon Acceptable +// Use Policy (https://aws.amazon.com/aup/) and all other Amazon terms. Remember +// that you must only use the Amazon Kendra web crawler to index your own webpages, +// or webpages that you have authorization to index. +type SiteMapsConfiguration struct { + _ struct{} `type:"structure"` + + // The list of sitemap URLs of the websites you want to crawl. + // + // The list can include a maximum of three sitemap URLs. + // + // SiteMaps is a required field + SiteMaps []*string `type:"list" required:"true"` +} + +// String returns the string representation +func (s SiteMapsConfiguration) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s SiteMapsConfiguration) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *SiteMapsConfiguration) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "SiteMapsConfiguration"} + if s.SiteMaps == nil { + invalidParams.Add(request.NewErrParamRequired("SiteMaps")) + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetSiteMaps sets the SiteMaps field's value. +func (s *SiteMapsConfiguration) SetSiteMaps(v []*string) *SiteMapsConfiguration { + s.SiteMaps = v + return s +} + // Specifies the document attribute to use to sort the response to a Amazon // Kendra query. You can specify a single attribute for sorting. The attribute // must have the Sortable flag set to true, otherwise Amazon Kendra returns @@ -15307,6 +15663,75 @@ func (s UpdateThesaurusOutput) GoString() string { return s.String() } +// Provides the configuration information of the URLs to crawl. +// +// When selecting websites to index, you must adhere to the Amazon Acceptable +// Use Policy (https://aws.amazon.com/aup/) and all other Amazon terms. Remember +// that you must only use the Amazon Kendra web crawler to index your own webpages, +// or webpages that you have authorization to index. +type Urls struct { + _ struct{} `type:"structure"` + + // Provides the configuration of the seed or starting point URLs of the websites + // you want to crawl. + // + // You can choose to crawl only the website host names, or the website host + // names with subdomains, or the website host names with subdomains and other + // domains that the webpages link to. + // + // You can list up to 100 seed URLs. + SeedUrlConfiguration *SeedUrlConfiguration `type:"structure"` + + // Provides the configuration of the sitemap URLs of the websites you want to + // crawl. + // + // Only URLs belonging to the same website host names are crawled. You can list + // up to three sitemap URLs. + SiteMapsConfiguration *SiteMapsConfiguration `type:"structure"` +} + +// String returns the string representation +func (s Urls) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s Urls) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *Urls) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "Urls"} + if s.SeedUrlConfiguration != nil { + if err := s.SeedUrlConfiguration.Validate(); err != nil { + invalidParams.AddNested("SeedUrlConfiguration", err.(request.ErrInvalidParams)) + } + } + if s.SiteMapsConfiguration != nil { + if err := s.SiteMapsConfiguration.Validate(); err != nil { + invalidParams.AddNested("SiteMapsConfiguration", err.(request.ErrInvalidParams)) + } + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetSeedUrlConfiguration sets the SeedUrlConfiguration field's value. +func (s *Urls) SetSeedUrlConfiguration(v *SeedUrlConfiguration) *Urls { + s.SeedUrlConfiguration = v + return s +} + +// SetSiteMapsConfiguration sets the SiteMapsConfiguration field's value. +func (s *Urls) SetSiteMapsConfiguration(v *SiteMapsConfiguration) *Urls { + s.SiteMapsConfiguration = v + return s +} + // Provides information about the user context for a Amazon Kendra index. type UserContext struct { _ struct{} `type:"structure"` @@ -15452,6 +15877,197 @@ func (s *ValidationException) RequestID() string { return s.RespMetadata.RequestID } +// Provides the configuration information required for Amazon Kendra web crawler. +type WebCrawlerConfiguration struct { + _ struct{} `type:"structure"` + + // Provides configuration information required to connect to websites using + // authentication. + // + // You can connect to websites using basic authentication of user name and password. + // + // You must provide the website host name and port number. For example, the + // host name of https://a.example.com/page1.html is "a.example.com" and the + // port is 443, the standard port for HTTPS. You use a secret in AWS Secrets + // Manager (https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html) + // to store your authentication credentials. + AuthenticationConfiguration *AuthenticationConfiguration `type:"structure"` + + // Specifies the number of levels in a website that you want to crawl. + // + // The first level begins from the website seed or starting point URL. For example, + // if a website has 3 levels – index level (i.e. seed in this example), sections + // level, and subsections level – and you are only interested in crawling + // information up to the sections level (i.e. levels 0-1), you can set your + // depth to 1. + // + // The default crawl depth is set to 2. + CrawlDepth *int64 `type:"integer"` + + // The maximum size (in MB) of a webpage or attachment to crawl. + // + // Files larger than this size (in MB) are skipped/not crawled. + // + // The default maximum size of a webpage or attachment is set to 50 MB. + MaxContentSizePerPageInMegaBytes *float64 `min:"1e-06" type:"float"` + + // The maximum number of URLs on a webpage to include when crawling a website. + // This number is per webpage. + // + // As a website’s webpages are crawled, any URLs the webpages link to are + // also crawled. URLs on a webpage are crawled in order of appearance. + // + // The default maximum links per page is 100. + MaxLinksPerPage *int64 `min:"1" type:"integer"` + + // The maximum number of URLs crawled per website host per minute. + // + // A minimum of one URL is required. + // + // The default maximum number of URLs crawled per website host per minute is + // 300. + MaxUrlsPerMinuteCrawlRate *int64 `min:"1" type:"integer"` + + // Provides configuration information required to connect to your internal websites + // via a web proxy. + // + // You must provide the website host name and port number. For example, the + // host name of https://a.example.com/page1.html is "a.example.com" and the + // port is 443, the standard port for HTTPS. + // + // Web proxy credentials are optional and you can use them to connect to a web + // proxy server that requires basic authentication. To store web proxy credentials, + // you use a secret in AWS Secrets Manager (https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html). + ProxyConfiguration *ProxyConfiguration `type:"structure"` + + // The regular expression pattern to exclude certain URLs to crawl. + // + // If there is a regular expression pattern to include certain URLs that conflicts + // with the exclude pattern, the exclude pattern takes precedence. + UrlExclusionPatterns []*string `type:"list"` + + // The regular expression pattern to include certain URLs to crawl. + // + // If there is a regular expression pattern to exclude certain URLs that conflicts + // with the include pattern, the exclude pattern takes precedence. + UrlInclusionPatterns []*string `type:"list"` + + // Specifies the seed or starting point URLs of the websites or the sitemap + // URLs of the websites you want to crawl. + // + // You can include website subdomains. You can list up to 100 seed URLs and + // up to three sitemap URLs. + // + // When selecting websites to index, you must adhere to the Amazon Acceptable + // Use Policy (https://aws.amazon.com/aup/) and all other Amazon terms. Remember + // that you must only use the Amazon Kendra web crawler to index your own webpages, + // or webpages that you have authorization to index. + // + // Urls is a required field + Urls *Urls `type:"structure" required:"true"` +} + +// String returns the string representation +func (s WebCrawlerConfiguration) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s WebCrawlerConfiguration) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *WebCrawlerConfiguration) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "WebCrawlerConfiguration"} + if s.MaxContentSizePerPageInMegaBytes != nil && *s.MaxContentSizePerPageInMegaBytes < 1e-06 { + invalidParams.Add(request.NewErrParamMinValue("MaxContentSizePerPageInMegaBytes", 1e-06)) + } + if s.MaxLinksPerPage != nil && *s.MaxLinksPerPage < 1 { + invalidParams.Add(request.NewErrParamMinValue("MaxLinksPerPage", 1)) + } + if s.MaxUrlsPerMinuteCrawlRate != nil && *s.MaxUrlsPerMinuteCrawlRate < 1 { + invalidParams.Add(request.NewErrParamMinValue("MaxUrlsPerMinuteCrawlRate", 1)) + } + if s.Urls == nil { + invalidParams.Add(request.NewErrParamRequired("Urls")) + } + if s.AuthenticationConfiguration != nil { + if err := s.AuthenticationConfiguration.Validate(); err != nil { + invalidParams.AddNested("AuthenticationConfiguration", err.(request.ErrInvalidParams)) + } + } + if s.ProxyConfiguration != nil { + if err := s.ProxyConfiguration.Validate(); err != nil { + invalidParams.AddNested("ProxyConfiguration", err.(request.ErrInvalidParams)) + } + } + if s.Urls != nil { + if err := s.Urls.Validate(); err != nil { + invalidParams.AddNested("Urls", err.(request.ErrInvalidParams)) + } + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetAuthenticationConfiguration sets the AuthenticationConfiguration field's value. +func (s *WebCrawlerConfiguration) SetAuthenticationConfiguration(v *AuthenticationConfiguration) *WebCrawlerConfiguration { + s.AuthenticationConfiguration = v + return s +} + +// SetCrawlDepth sets the CrawlDepth field's value. +func (s *WebCrawlerConfiguration) SetCrawlDepth(v int64) *WebCrawlerConfiguration { + s.CrawlDepth = &v + return s +} + +// SetMaxContentSizePerPageInMegaBytes sets the MaxContentSizePerPageInMegaBytes field's value. +func (s *WebCrawlerConfiguration) SetMaxContentSizePerPageInMegaBytes(v float64) *WebCrawlerConfiguration { + s.MaxContentSizePerPageInMegaBytes = &v + return s +} + +// SetMaxLinksPerPage sets the MaxLinksPerPage field's value. +func (s *WebCrawlerConfiguration) SetMaxLinksPerPage(v int64) *WebCrawlerConfiguration { + s.MaxLinksPerPage = &v + return s +} + +// SetMaxUrlsPerMinuteCrawlRate sets the MaxUrlsPerMinuteCrawlRate field's value. +func (s *WebCrawlerConfiguration) SetMaxUrlsPerMinuteCrawlRate(v int64) *WebCrawlerConfiguration { + s.MaxUrlsPerMinuteCrawlRate = &v + return s +} + +// SetProxyConfiguration sets the ProxyConfiguration field's value. +func (s *WebCrawlerConfiguration) SetProxyConfiguration(v *ProxyConfiguration) *WebCrawlerConfiguration { + s.ProxyConfiguration = v + return s +} + +// SetUrlExclusionPatterns sets the UrlExclusionPatterns field's value. +func (s *WebCrawlerConfiguration) SetUrlExclusionPatterns(v []*string) *WebCrawlerConfiguration { + s.UrlExclusionPatterns = v + return s +} + +// SetUrlInclusionPatterns sets the UrlInclusionPatterns field's value. +func (s *WebCrawlerConfiguration) SetUrlInclusionPatterns(v []*string) *WebCrawlerConfiguration { + s.UrlInclusionPatterns = v + return s +} + +// SetUrls sets the Urls field's value. +func (s *WebCrawlerConfiguration) SetUrls(v *Urls) *WebCrawlerConfiguration { + s.Urls = v + return s +} + const ( // AdditionalResultAttributeValueTypeTextWithHighlightsValue is a AdditionalResultAttributeValueType enum value AdditionalResultAttributeValueTypeTextWithHighlightsValue = "TEXT_WITH_HIGHLIGHTS_VALUE" @@ -15775,6 +16391,9 @@ const ( // DataSourceTypeGoogledrive is a DataSourceType enum value DataSourceTypeGoogledrive = "GOOGLEDRIVE" + + // DataSourceTypeWebcrawler is a DataSourceType enum value + DataSourceTypeWebcrawler = "WEBCRAWLER" ) // DataSourceType_Values returns all elements of the DataSourceType enum @@ -15789,6 +16408,7 @@ func DataSourceType_Values() []string { DataSourceTypeCustom, DataSourceTypeConfluence, DataSourceTypeGoogledrive, + DataSourceTypeWebcrawler, } } @@ -16424,3 +17044,23 @@ func UserContextPolicy_Values() []string { UserContextPolicyUserToken, } } + +const ( + // WebCrawlerModeHostOnly is a WebCrawlerMode enum value + WebCrawlerModeHostOnly = "HOST_ONLY" + + // WebCrawlerModeSubdomains is a WebCrawlerMode enum value + WebCrawlerModeSubdomains = "SUBDOMAINS" + + // WebCrawlerModeEverything is a WebCrawlerMode enum value + WebCrawlerModeEverything = "EVERYTHING" +) + +// WebCrawlerMode_Values returns all elements of the WebCrawlerMode enum +func WebCrawlerMode_Values() []string { + return []string{ + WebCrawlerModeHostOnly, + WebCrawlerModeSubdomains, + WebCrawlerModeEverything, + } +} diff --git a/service/rds/api.go b/service/rds/api.go index cb7258fc43a..fa81b26cc69 100644 --- a/service/rds/api.go +++ b/service/rds/api.go @@ -60,7 +60,7 @@ func (c *RDS) AddRoleToDBClusterRequest(input *AddRoleToDBClusterInput) (req *re // // Associates an Identity and Access Management (IAM) role from an Amazon Aurora // DB cluster. For more information, see Authorizing Amazon Aurora MySQL to -// Access Other AWS Services on Your Behalf (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Integrating.Authorizing.html) +// Access Other Amazon Web Services Services on Your Behalf (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Integrating.Authorizing.html) // in the Amazon Aurora User Guide. // // This action only applies to Aurora DB clusters. @@ -154,7 +154,8 @@ func (c *RDS) AddRoleToDBInstanceRequest(input *AddRoleToDBInstanceInput) (req * // AddRoleToDBInstance API operation for Amazon Relational Database Service. // -// Associates an AWS Identity and Access Management (IAM) role with a DB instance. +// 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. // @@ -177,8 +178,8 @@ func (c *RDS) AddRoleToDBInstanceRequest(input *AddRoleToDBInstanceInput) (req * // The DB instance isn't in a valid state. // // * ErrCodeDBInstanceRoleQuotaExceededFault "DBInstanceRoleQuotaExceeded" -// You can't associate any more AWS Identity and Access Management (IAM) roles -// with the DB instance because the quota has been reached. +// 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. // // See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddRoleToDBInstance func (c *RDS) AddRoleToDBInstance(input *AddRoleToDBInstanceInput) (*AddRoleToDBInstanceOutput, error) { @@ -354,12 +355,12 @@ func (c *RDS) AddTagsToResourceRequest(input *AddTagsToResourceInput) (req *requ // DBSnapshotIdentifier doesn't refer to an existing DB snapshot. // // * ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" -// The specified proxy name doesn't correspond to a proxy owned by your AWS -// account in the specified AWS Region. +// The specified proxy name doesn't correspond to a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" -// The specified target group isn't available for a proxy owned by your AWS -// account in the specified AWS Region. +// The specified target group isn't available for a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddTagsToResource func (c *RDS) AddTagsToResource(input *AddTagsToResourceInput) (*AddTagsToResourceOutput, error) { @@ -521,9 +522,10 @@ func (c *RDS) AuthorizeDBSecurityGroupIngressRequest(input *AuthorizeDBSecurityG // 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 AWS 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. +// 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 (http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing). // @@ -878,57 +880,60 @@ func (c *RDS) CopyDBClusterSnapshotRequest(input *CopyDBClusterSnapshotInput) (r // 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 AWS Region. In -// that case, the AWS Region where you call the CopyDBClusterSnapshot action -// is the destination AWS Region for the encrypted DB cluster snapshot to be -// copied to. To copy an encrypted DB cluster snapshot from another AWS Region, -// you must provide the following values: +// 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 +// action 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 AWS Key Management System (AWS KMS) key identifier for -// the key to use to encrypt the copy of the DB cluster snapshot in the destination -// AWS Region. +// * 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. // // * PreSignedUrl - A URL that contains a Signature Version 4 signed request -// for the CopyDBClusterSnapshot action to be called in the source AWS Region -// where the DB cluster snapshot is copied from. The pre-signed URL must -// be a valid request for the CopyDBClusterSnapshot API action that can be -// executed in the source AWS Region that contains the encrypted DB cluster -// snapshot to be copied. The pre-signed URL request must contain the following -// parameter values: KmsKeyId - The AWS KMS key identifier for the customer -// master key (CMK) to use to encrypt the copy of the DB cluster snapshot -// in the destination AWS Region. This is the same identifier for both the -// CopyDBClusterSnapshot action that is called in the destination AWS Region, -// and the action contained in the pre-signed URL. DestinationRegion - The -// name of the AWS 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 AWS Region. -// For example, if you are copying an encrypted DB cluster snapshot from -// the us-west-2 AWS Region, then your SourceDBClusterSnapshotIdentifier +// for the CopyDBClusterSnapshot action to be called in the source Amazon +// Web Services Region where the DB cluster snapshot is copied from. The +// pre-signed URL must be a valid request for the CopyDBClusterSnapshot API +// action that can be executed in the source Amazon Web Services Region that +// contains the encrypted DB cluster snapshot to be copied. The pre-signed +// URL request must contain the following parameter values: KmsKeyId - The +// Amazon Web Services KMS key identifier for the customer master key (CMK) +// 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 +// action that is called in the destination Amazon Web Services Region, and +// the action contained in the pre-signed 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 (AWS Signature Version 4) (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html) +// Requests: Using Query Parameters (Amazon Web Services Signature Version +// 4) (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html) // and Signature Version 4 Signing Process (https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html). -// If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion -// (or --source-region for the AWS CLI) instead of specifying PreSignedUrl +// 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 pre-signed URL that // is a valid request for the operation that can be executed in the source -// AWS Region. +// Amazon Web Services Region. // // * TargetDBClusterSnapshotIdentifier - The identifier for the new copy -// of the DB cluster snapshot in the destination AWS Region. +// 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 AWS Region and is the same value as -// the SourceDBClusterSnapshotIdentifier in the pre-signed URL. +// be in the ARN format for the source Amazon Web Services Region and is +// the same value as the SourceDBClusterSnapshotIdentifier in the pre-signed +// 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 DB cluster snapshots from one AWS -// Region to another, see Copying a Snapshot (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_CopySnapshot.html) +// For more information on copying encrypted DB cluster snapshots from one Amazon +// Web Services Region to another, see Copying a Snapshot (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_CopySnapshot.html) // in the Amazon Aurora User Guide. // // For more information on Amazon Aurora, see What Is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) @@ -960,7 +965,7 @@ func (c *RDS) CopyDBClusterSnapshotRequest(input *CopyDBClusterSnapshotInput) (r // The request would result in the user exceeding the allowed number of DB snapshots. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBClusterSnapshot func (c *RDS) CopyDBClusterSnapshot(input *CopyDBClusterSnapshotInput) (*CopyDBClusterSnapshotOutput, error) { @@ -1117,9 +1122,10 @@ func (c *RDS) CopyDBSnapshotRequest(input *CopyDBSnapshotInput) (req *request.Re // Copies the specified DB snapshot. The source DB snapshot must be in the available // state. // -// You can copy a snapshot from one AWS Region to another. In that case, the -// AWS Region where you call the CopyDBSnapshot action is the destination AWS -// Region for the DB snapshot copy. +// 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 +// action is the destination Amazon Web Services Region for the DB snapshot +// copy. // // For more information about copying snapshots, see Copying a DB Snapshot (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopyDBSnapshot) // in the Amazon RDS User Guide. @@ -1145,7 +1151,7 @@ func (c *RDS) CopyDBSnapshotRequest(input *CopyDBSnapshotInput) (req *request.Re // The request would result in the user exceeding the allowed number of DB snapshots. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // * ErrCodeCustomAvailabilityZoneNotFoundFault "CustomAvailabilityZoneNotFound" // CustomAvailabilityZoneId doesn't refer to an existing custom Availability @@ -1234,7 +1240,7 @@ func (c *RDS) CopyOptionGroupRequest(input *CopyOptionGroupInput) (req *request. // The specified option group could not be found. // // * ErrCodeOptionGroupQuotaExceededFault "OptionGroupQuotaExceededFault" -// The quota of 20 option groups was exceeded for this AWS account. +// The quota of 20 option groups was exceeded for this Amazon Web Services account. // // See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyOptionGroup func (c *RDS) CopyOptionGroup(input *CopyOptionGroupInput) (*CopyOptionGroupOutput, error) { @@ -1326,7 +1332,7 @@ func (c *RDS) CreateCustomAvailabilityZoneRequest(input *CreateCustomAvailabilit // You have exceeded the maximum number of custom Availability Zones. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomAvailabilityZone func (c *RDS) CreateCustomAvailabilityZone(input *CreateCustomAvailabilityZoneInput) (*CreateCustomAvailabilityZoneOutput, error) { @@ -1397,9 +1403,10 @@ func (c *RDS) CreateDBClusterRequest(input *CreateDBClusterInput) (req *request. // Creates a new Amazon Aurora DB cluster. // // You can use the ReplicationSourceIdentifier parameter to create the DB cluster -// as a read replica of another DB cluster or Amazon RDS MySQL DB instance. -// For cross-region replication where the DB cluster identified by ReplicationSourceIdentifier -// is encrypted, you must also specify the PreSignedUrl parameter. +// as a read replica of another DB cluster or Amazon RDS MySQL or PostgreSQL +// DB instance. For cross-region replication where the DB cluster identified +// by ReplicationSourceIdentifier is encrypted, you must also specify the PreSignedUrl +// parameter. // // For more information on Amazon Aurora, see What Is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) // in the Amazon Aurora User Guide. @@ -1455,7 +1462,7 @@ func (c *RDS) CreateDBClusterRequest(input *CreateDBClusterInput) (req *request. // group. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // * ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" // DBClusterIdentifier doesn't refer to an existing DB cluster. @@ -1916,7 +1923,7 @@ func (c *RDS) CreateDBInstanceRequest(input *CreateDBInstanceInput) (req *reques // your behalf. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // * ErrCodeDomainNotFoundFault "DomainNotFoundFault" // Domain doesn't refer to an existing Active Directory domain. @@ -2071,7 +2078,7 @@ func (c *RDS) CreateDBInstanceReadReplicaRequest(input *CreateDBInstanceReadRepl // Storage of the StorageType specified can't be associated with the DB instance. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // * ErrCodeDomainNotFoundFault "DomainNotFoundFault" // Domain doesn't refer to an existing Active Directory domain. @@ -2260,12 +2267,12 @@ func (c *RDS) CreateDBProxyRequest(input *CreateDBProxyInput) (req *request.Requ // are not all in a common VPC. // // * ErrCodeDBProxyAlreadyExistsFault "DBProxyAlreadyExistsFault" -// The specified proxy name must be unique for all proxies owned by your AWS -// account in the specified AWS Region. +// The specified proxy name must be unique for all proxies owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeDBProxyQuotaExceededFault "DBProxyQuotaExceededFault" -// Your AWS account already has the maximum number of proxies in the specified -// AWS Region. +// Your Amazon Web Services account already has the maximum number of proxies +// in the specified Amazon Web Services Region. // // See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxy func (c *RDS) CreateDBProxy(input *CreateDBProxyInput) (*CreateDBProxyOutput, error) { @@ -2351,12 +2358,13 @@ func (c *RDS) CreateDBProxyEndpointRequest(input *CreateDBProxyEndpointInput) (r // are not all in a common VPC. // // * ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" -// The specified proxy name doesn't correspond to a proxy owned by your AWS -// account in the specified AWS Region. +// The specified proxy name doesn't correspond to a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeDBProxyEndpointAlreadyExistsFault "DBProxyEndpointAlreadyExistsFault" // The specified DB proxy endpoint name must be unique for all DB proxy endpoints -// owned by your AWS account in the specified AWS Region. +// owned by your Amazon Web Services account in the specified Amazon Web Services +// Region. // // * ErrCodeDBProxyEndpointQuotaExceededFault "DBProxyEndpointQuotaExceededFault" // The DB proxy already has the maximum number of endpoints. @@ -2611,7 +2619,7 @@ func (c *RDS) CreateDBSubnetGroupRequest(input *CreateDBSubnetGroupInput) (req * // CreateDBSubnetGroup API operation for Amazon Relational Database Service. // // Creates a new DB subnet group. DB subnet groups must contain at least one -// subnet in at least two AZs in the AWS Region. +// subnet in at least two AZs in the Amazon Web Services Region. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -2824,10 +2832,11 @@ func (c *RDS) CreateGlobalClusterRequest(input *CreateGlobalClusterInput) (req * // CreateGlobalCluster API operation for Amazon Relational Database Service. // -// Creates an Aurora global database spread across multiple AWS 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. +// 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 add a // primary cluster and a secondary cluster to it. Or you can specify an existing @@ -2938,7 +2947,7 @@ func (c *RDS) CreateOptionGroupRequest(input *CreateOptionGroupInput) (req *requ // The option group you are trying to create already exists. // // * ErrCodeOptionGroupQuotaExceededFault "OptionGroupQuotaExceededFault" -// The quota of 20 option groups was exceeded for this AWS account. +// The quota of 20 option groups was exceeded for this Amazon Web Services account. // // See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateOptionGroup func (c *RDS) CreateOptionGroup(input *CreateOptionGroupInput) (*CreateOptionGroupOutput, error) { @@ -3027,7 +3036,7 @@ func (c *RDS) DeleteCustomAvailabilityZoneRequest(input *DeleteCustomAvailabilit // Zone identifier. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomAvailabilityZone func (c *RDS) DeleteCustomAvailabilityZone(input *DeleteCustomAvailabilityZoneInput) (*DeleteCustomAvailabilityZoneOutput, error) { @@ -3764,8 +3773,8 @@ func (c *RDS) DeleteDBProxyRequest(input *DeleteDBProxyInput) (req *request.Requ // // Returned Error Codes: // * ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" -// The specified proxy name doesn't correspond to a proxy owned by your AWS -// account in the specified AWS Region. +// The specified proxy name doesn't correspond to a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" // The requested operation can't be performed while the proxy is in this state. @@ -4527,15 +4536,16 @@ func (c *RDS) DeregisterDBProxyTargetsRequest(input *DeregisterDBProxyTargetsInp // Returned Error Codes: // * ErrCodeDBProxyTargetNotFoundFault "DBProxyTargetNotFoundFault" // The specified RDS DB instance or Aurora DB cluster isn't available for a -// proxy owned by your AWS account in the specified AWS Region. +// proxy owned by your Amazon Web Services account in the specified Amazon Web +// Services Region. // // * ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" -// The specified target group isn't available for a proxy owned by your AWS -// account in the specified AWS Region. +// The specified target group isn't available for a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" -// The specified proxy name doesn't correspond to a proxy owned by your AWS -// account in the specified AWS Region. +// The specified proxy name doesn't correspond to a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" // The requested operation can't be performed while the proxy is in this state. @@ -4691,7 +4701,8 @@ func (c *RDS) DescribeCertificatesRequest(input *DescribeCertificatesInput) (req // DescribeCertificates API operation for Amazon Relational Database Service. // -// Lists the set of CA certificates provided by Amazon RDS for this AWS account. +// Lists the set of CA certificates provided by Amazon RDS for this Amazon Web +// Services account. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -5540,15 +5551,16 @@ func (c *RDS) DescribeDBClusterSnapshotAttributesRequest(input *DescribeDBCluste // Returns a list of DB cluster snapshot attribute names and values for a manual // DB cluster snapshot. // -// When sharing snapshots with other AWS accounts, DescribeDBClusterSnapshotAttributes -// returns the restore attribute and a list of IDs for the AWS 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 AWS accounts. +// 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 AWS 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. +// 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. // // This action only applies to Aurora DB clusters. // @@ -6761,8 +6773,8 @@ func (c *RDS) DescribeDBProxiesRequest(input *DescribeDBProxiesInput) (req *requ // // Returned Error Codes: // * ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" -// The specified proxy name doesn't correspond to a proxy owned by your AWS -// account in the specified AWS Region. +// The specified proxy name doesn't correspond to a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxies func (c *RDS) DescribeDBProxies(input *DescribeDBProxiesInput) (*DescribeDBProxiesOutput, error) { @@ -6899,8 +6911,8 @@ func (c *RDS) DescribeDBProxyEndpointsRequest(input *DescribeDBProxyEndpointsInp // // Returned Error Codes: // * ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" -// The specified proxy name doesn't correspond to a proxy owned by your AWS -// account in the specified AWS Region. +// The specified proxy name doesn't correspond to a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeDBProxyEndpointNotFoundFault "DBProxyEndpointNotFoundFault" // The DB proxy endpoint doesn't exist. @@ -7041,12 +7053,12 @@ func (c *RDS) DescribeDBProxyTargetGroupsRequest(input *DescribeDBProxyTargetGro // // Returned Error Codes: // * ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" -// The specified proxy name doesn't correspond to a proxy owned by your AWS -// account in the specified AWS Region. +// The specified proxy name doesn't correspond to a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" -// The specified target group isn't available for a proxy owned by your AWS -// account in the specified AWS Region. +// The specified target group isn't available for a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" // The requested operation can't be performed while the proxy is in this state. @@ -7186,16 +7198,17 @@ func (c *RDS) DescribeDBProxyTargetsRequest(input *DescribeDBProxyTargetsInput) // // Returned Error Codes: // * ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" -// The specified proxy name doesn't correspond to a proxy owned by your AWS -// account in the specified AWS Region. +// The specified proxy name doesn't correspond to a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeDBProxyTargetNotFoundFault "DBProxyTargetNotFoundFault" // The specified RDS DB instance or Aurora DB cluster isn't available for a -// proxy owned by your AWS account in the specified AWS Region. +// proxy owned by your Amazon Web Services account in the specified Amazon Web +// Services Region. // // * ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" -// The specified target group isn't available for a proxy owned by your AWS -// account in the specified AWS Region. +// The specified target group isn't available for a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" // The requested operation can't be performed while the proxy is in this state. @@ -7460,15 +7473,16 @@ func (c *RDS) DescribeDBSnapshotAttributesRequest(input *DescribeDBSnapshotAttri // Returns a list of DB snapshot attribute names and values for a manual DB // snapshot. // -// When sharing snapshots with other AWS accounts, DescribeDBSnapshotAttributes -// returns the restore attribute and a list of IDs for the AWS 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 AWS accounts. +// 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 AWS account to copy or restore a manual DB -// snapshot, or to make the manual DB snapshot public or private, use the ModifyDBSnapshotAttribute -// API action. +// 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. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -9631,9 +9645,9 @@ func (c *RDS) DescribeSourceRegionsRequest(input *DescribeSourceRegionsInput) (r // DescribeSourceRegions API operation for Amazon Relational Database Service. // -// Returns a list of the source AWS Regions where the current AWS Region can -// create a read replica, copy a DB snapshot from, or replicate automated backups -// from. This API action supports pagination. +// 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. This API action supports pagination. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -10297,12 +10311,12 @@ func (c *RDS) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req * // DBClusterIdentifier doesn't refer to an existing DB cluster. // // * ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" -// The specified proxy name doesn't correspond to a proxy owned by your AWS -// account in the specified AWS Region. +// The specified proxy name doesn't correspond to a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" -// The specified target group isn't available for a proxy owned by your AWS -// account in the specified AWS Region. +// The specified target group isn't available for a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ListTagsForResource func (c *RDS) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error) { @@ -10383,12 +10397,12 @@ func (c *RDS) ModifyCertificatesRequest(input *ModifyCertificatesInput) (req *re // // * 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 AWS Region. +// RDS default CA certificate for the specified Amazon Web Services Region. // // * RDS has already moved to a new default CA certificate for the specified -// AWS 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. +// 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 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html) @@ -10805,10 +10819,6 @@ func (c *RDS) ModifyDBClusterParameterGroupRequest(input *ModifyDBClusterParamet // For more information on Amazon Aurora, see What Is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) // in the Amazon Aurora User Guide. // -// Changes to dynamic parameters are applied immediately. Changes to static -// parameters require a reboot without failover to the DB cluster associated -// with the parameter group before the change can 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 @@ -10913,23 +10923,26 @@ func (c *RDS) ModifyDBClusterSnapshotAttributeRequest(input *ModifyDBClusterSnap // 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 AWS accounts, specify restore -// as the AttributeName and use the ValuesToAdd parameter to add a list of IDs -// of the AWS 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 AWS accounts. +// 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 AWS accounts. +// 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 AWS account IDs for the ValuesToAdd parameter. -// You can't use all as a value for that parameter in this case. +// 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 AWS 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 action. The accounts are returned -// as values for the restore attribute. +// 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 action. +// The accounts are returned as values for the restore attribute. // // This action only applies to Aurora DB clusters. // @@ -11088,7 +11101,7 @@ func (c *RDS) ModifyDBInstanceRequest(input *ModifyDBInstanceInput) (req *reques // * ErrCodeBackupPolicyNotFoundFault "BackupPolicyNotFoundFault" // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // * ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" // The requested operation can't be performed while the cluster is in this state. @@ -11163,10 +11176,6 @@ func (c *RDS) ModifyDBParameterGroupRequest(input *ModifyDBParameterGroupInput) // parameter, submit a list of the following: ParameterName, ParameterValue, // and ApplyMethod. A maximum of 20 parameters can be modified in a single request. // -// Changes to dynamic parameters are applied immediately. Changes to static -// parameters require a reboot without failover to the DB instance associated -// with the parameter group before the change can take effect. -// // 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 @@ -11271,12 +11280,12 @@ func (c *RDS) ModifyDBProxyRequest(input *ModifyDBProxyInput) (req *request.Requ // // Returned Error Codes: // * ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" -// The specified proxy name doesn't correspond to a proxy owned by your AWS -// account in the specified AWS Region. +// The specified proxy name doesn't correspond to a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeDBProxyAlreadyExistsFault "DBProxyAlreadyExistsFault" -// The specified proxy name must be unique for all proxies owned by your AWS -// account in the specified AWS Region. +// The specified proxy name must be unique for all proxies owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" // The requested operation can't be performed while the proxy is in this state. @@ -11362,7 +11371,8 @@ func (c *RDS) ModifyDBProxyEndpointRequest(input *ModifyDBProxyEndpointInput) (r // // * ErrCodeDBProxyEndpointAlreadyExistsFault "DBProxyEndpointAlreadyExistsFault" // The specified DB proxy endpoint name must be unique for all DB proxy endpoints -// owned by your AWS account in the specified AWS Region. +// owned by your Amazon Web Services account in the specified Amazon Web Services +// Region. // // * ErrCodeInvalidDBProxyEndpointStateFault "InvalidDBProxyEndpointStateFault" // You can't perform this operation while the DB proxy endpoint is in a particular @@ -11448,12 +11458,12 @@ func (c *RDS) ModifyDBProxyTargetGroupRequest(input *ModifyDBProxyTargetGroupInp // // Returned Error Codes: // * ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" -// The specified proxy name doesn't correspond to a proxy owned by your AWS -// account in the specified AWS Region. +// The specified proxy name doesn't correspond to a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" -// The specified target group isn't available for a proxy owned by your AWS -// account in the specified AWS Region. +// The specified target group isn't available for a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" // The requested operation can't be performed while the proxy is in this state. @@ -11609,22 +11619,24 @@ func (c *RDS) ModifyDBSnapshotAttributeRequest(input *ModifyDBSnapshotAttributeI // 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 AWS accounts, specify restore as -// the AttributeName and use the ValuesToAdd parameter to add a list of IDs -// of the AWS 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 AWS accounts. +// 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 AWS accounts. +// 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 AWS account IDs for the ValuesToAdd parameter. You can't -// use all as a value for that parameter in this case. +// 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 AWS accounts have access to copy or restore a manual DB snapshot, -// or whether a manual DB snapshot public or private, use the DescribeDBSnapshotAttributes -// API action. The accounts are returned as values for the restore attribute. +// 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 action. The accounts are returned +// as values for the restore attribute. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -11711,7 +11723,7 @@ func (c *RDS) ModifyDBSubnetGroupRequest(input *ModifyDBSubnetGroupInput) (req * // ModifyDBSubnetGroup API operation for Amazon Relational Database Service. // // Modifies an existing DB subnet group. DB subnet groups must contain at least -// one subnet in at least two AZs in the AWS Region. +// one subnet in at least two AZs in the Amazon Web Services Region. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -12449,12 +12461,12 @@ func (c *RDS) RegisterDBProxyTargetsRequest(input *RegisterDBProxyTargetsInput) // // Returned Error Codes: // * ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" -// The specified proxy name doesn't correspond to a proxy owned by your AWS -// account in the specified AWS Region. +// The specified proxy name doesn't correspond to a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" -// The specified target group isn't available for a proxy owned by your AWS -// account in the specified AWS Region. +// The specified target group isn't available for a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" // DBClusterIdentifier doesn't refer to an existing DB cluster. @@ -12639,9 +12651,10 @@ func (c *RDS) RemoveRoleFromDBClusterRequest(input *RemoveRoleFromDBClusterInput // RemoveRoleFromDBCluster API operation for Amazon Relational Database Service. // -// Disassociates an AWS Identity and Access Management (IAM) role from an Amazon -// Aurora DB cluster. For more information, see Authorizing Amazon Aurora MySQL -// to Access Other AWS Services on Your Behalf (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Integrating.Authorizing.html) +// Disassociates an Amazon Web Services Identity and Access Management (IAM) +// role from an Amazon Aurora DB cluster. For more information, see Authorizing +// Amazon Aurora MySQL to Access Other Amazon Web Services Services on Your +// Behalf (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Integrating.Authorizing.html) // in the Amazon Aurora User Guide. // // This action only applies to Aurora DB clusters. @@ -12731,8 +12744,8 @@ func (c *RDS) RemoveRoleFromDBInstanceRequest(input *RemoveRoleFromDBInstanceInp // RemoveRoleFromDBInstance API operation for Amazon Relational Database Service. // -// Disassociates an AWS Identity and Access Management (IAM) role from a DB -// instance. +// Disassociates an Amazon Web Services Identity and Access Management (IAM) +// role from a DB instance. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -12925,12 +12938,12 @@ func (c *RDS) RemoveTagsFromResourceRequest(input *RemoveTagsFromResourceInput) // DBClusterIdentifier doesn't refer to an existing DB cluster. // // * ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" -// The specified proxy name doesn't correspond to a proxy owned by your AWS -// account in the specified AWS Region. +// The specified proxy name doesn't correspond to a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // * ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" -// The specified target group isn't available for a proxy owned by your AWS -// account in the specified AWS Region. +// The specified target group isn't available for a proxy owned by your Amazon +// Web Services account in the specified Amazon Web Services Region. // // See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveTagsFromResource func (c *RDS) RemoveTagsFromResource(input *RemoveTagsFromResourceInput) (*RemoveTagsFromResourceOutput, error) { @@ -13250,7 +13263,7 @@ func (c *RDS) RestoreDBClusterFromS3Request(input *RestoreDBClusterFromS3Input) // group. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // * ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" // DBClusterIdentifier doesn't refer to an existing DB cluster. @@ -13411,7 +13424,7 @@ func (c *RDS) RestoreDBClusterFromSnapshotRequest(input *RestoreDBClusterFromSna // The specified option group could not be found. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // * ErrCodeDomainNotFoundFault "DomainNotFoundFault" // Domain doesn't refer to an existing Active Directory domain. @@ -13557,7 +13570,7 @@ func (c *RDS) RestoreDBClusterToPointInTimeRequest(input *RestoreDBClusterToPoin // because of users' change. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // * ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" // The specified option group could not be found. @@ -13725,7 +13738,7 @@ func (c *RDS) RestoreDBInstanceFromDBSnapshotRequest(input *RestoreDBInstanceFro // your behalf. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // * ErrCodeDBSecurityGroupNotFoundFault "DBSecurityGroupNotFound" // DBSecurityGroupName doesn't refer to an existing DB security group. @@ -13877,7 +13890,7 @@ func (c *RDS) RestoreDBInstanceFromS3Request(input *RestoreDBInstanceFromS3Input // your behalf. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // * ErrCodeBackupPolicyNotFoundFault "BackupPolicyNotFoundFault" // @@ -14030,7 +14043,7 @@ func (c *RDS) RestoreDBInstanceToPointInTimeRequest(input *RestoreDBInstanceToPo // your behalf. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // * ErrCodeDBSecurityGroupNotFoundFault "DBSecurityGroupNotFound" // DBSecurityGroupName doesn't refer to an existing DB security group. @@ -14232,7 +14245,7 @@ func (c *RDS) StartActivityStreamRequest(input *StartActivityStreamInput) (req * // DBInstanceIdentifier doesn't refer to an existing DB instance. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartActivityStream func (c *RDS) StartActivityStream(input *StartActivityStreamInput) (*StartActivityStreamOutput, error) { @@ -14300,8 +14313,8 @@ func (c *RDS) StartDBClusterRequest(input *StartDBClusterInput) (req *request.Re // StartDBCluster API operation for Amazon Relational Database Service. // -// Starts an Amazon Aurora DB cluster that was stopped using the AWS console, -// the stop-db-cluster AWS CLI command, or the StopDBCluster action. +// Starts an Amazon Aurora DB cluster that was stopped using the Amazon Web +// Services console, the stop-db-cluster CLI command, or the StopDBCluster action. // // For more information, see Stopping and Starting an Aurora Cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-cluster-stop-start.html) // in the Amazon Aurora User Guide. @@ -14391,8 +14404,8 @@ func (c *RDS) StartDBInstanceRequest(input *StartDBInstanceInput) (req *request. // StartDBInstance API operation for Amazon Relational Database Service. // -// Starts an Amazon RDS DB instance that was stopped using the AWS console, -// the stop-db-instance AWS CLI command, or the StopDBInstance action. +// Starts an Amazon RDS DB instance that was stopped using the Amazon Web Services +// console, the stop-db-instance CLI command, or the StopDBInstance action. // // For more information, see Starting an Amazon RDS DB instance That Was Previously // Stopped (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_StartInstance.html) @@ -14448,7 +14461,7 @@ func (c *RDS) StartDBInstanceRequest(input *StartDBInstanceInput) (req *request. // your behalf. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance func (c *RDS) StartDBInstance(input *StartDBInstanceInput) (*StartDBInstanceOutput, error) { @@ -14516,10 +14529,11 @@ func (c *RDS) StartDBInstanceAutomatedBackupsReplicationRequest(input *StartDBIn // StartDBInstanceAutomatedBackupsReplication API operation for Amazon Relational Database Service. // -// Enables replication of automated backups to a different AWS Region. +// Enables replication of automated backups to a different Amazon Web Services +// Region. // -// For more information, see Replicating Automated Backups to Another AWS Region -// (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html) +// For more information, see Replicating Automated Backups to Another Amazon +// Web Services Region (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html) // in the Amazon RDS User Guide. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions @@ -14537,7 +14551,7 @@ func (c *RDS) StartDBInstanceAutomatedBackupsReplicationRequest(input *StartDBIn // The DB instance isn't in a valid state. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // * ErrCodeDBInstanceAutomatedBackupQuotaExceededFault "DBInstanceAutomatedBackupQuotaExceeded" // The quota for retained automated backups was exceeded. This prevents you @@ -14648,7 +14662,7 @@ func (c *RDS) StartExportTaskRequest(input *StartExportTaskInput) (req *request. // The export is invalid for exporting to an Amazon S3 bucket. // // * ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" -// An error occurred accessing an AWS KMS key. +// An error occurred accessing an Amazon Web Services KMS key. // // * ErrCodeInvalidExportSourceStateFault "InvalidExportSourceState" // The state of the export snapshot is invalid for exporting to an Amazon S3 @@ -14720,8 +14734,9 @@ func (c *RDS) StopActivityStreamRequest(input *StopActivityStreamInput) (req *re // StopActivityStream API operation for Amazon Relational Database Service. // -// Stops a database activity stream that was started using the AWS console, -// the start-activity-stream AWS CLI command, or the StartActivityStream action. +// Stops a database activity stream that was started using the Amazon Web Services +// console, the start-activity-stream CLI command, or the StartActivityStream +// action. // // For more information, see Database Activity Streams (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/DBActivityStreams.html) // in the Amazon Aurora User Guide. @@ -15011,8 +15026,8 @@ func (c *RDS) StopDBInstanceAutomatedBackupsReplicationRequest(input *StopDBInst // // Stops automated backup replication for a DB instance. // -// For more information, see Replicating Automated Backups to Another AWS Region -// (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html) +// For more information, see Replicating Automated Backups to Another Amazon +// Web Services Region (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html) // in the Amazon RDS User Guide. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions @@ -15051,7 +15066,7 @@ func (c *RDS) StopDBInstanceAutomatedBackupsReplicationWithContext(ctx aws.Conte return out, req.Send() } -// Describes a quota for an AWS account. +// Describes a quota for an Amazon Web Services account. // // The following are account quotas: // @@ -15072,10 +15087,11 @@ func (c *RDS) StopDBInstanceAutomatedBackupsReplicationWithContext(ctx aws.Conte // 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 AWS 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. +// * 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. @@ -15136,7 +15152,7 @@ func (c *RDS) StopDBInstanceAutomatedBackupsReplicationWithContext(ctx aws.Conte type AccountQuota struct { _ struct{} `type:"structure"` - // The name of the Amazon RDS quota for this AWS account. + // The name of the Amazon RDS quota for this Amazon Web Services account. AccountQuotaName *string `type:"string"` // The maximum allowed value for the quota. @@ -15622,11 +15638,11 @@ type AuthorizeDBSecurityGroupIngressInput struct { // either EC2SecurityGroupName or EC2SecurityGroupId must be provided. EC2SecurityGroupName *string `type:"string"` - // AWS account number of the owner of the EC2 security group specified in the - // EC2SecurityGroupName parameter. The AWS 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. + // 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. EC2SecurityGroupOwnerId *string `type:"string"` } @@ -16035,11 +16051,11 @@ type CancelExportTaskOutput struct { // a snapshot. IamRoleArn *string `type:"string"` - // The key identifier of the AWS KMS customer master key (CMK) that is used - // to encrypt the snapshot when it's exported to Amazon S3. The AWS KMS CMK - // identifier is its key ARN, key ID, alias ARN, or alias name. The IAM role - // used for the snapshot export must have encryption and decryption permissions - // to use this AWS KMS CMK. + // The key identifier of the Amazon Web Services KMS customer master key (CMK) + // that is used to encrypt the snapshot when it's exported to Amazon S3. The + // Amazon Web Services KMS CMK identifier is its key ARN, key ID, alias ARN, + // or alias name. The IAM role used for the snapshot export must have encryption + // and decryption permissions to use this Amazon Web Services KMS CMK. KmsKeyId *string `type:"string"` // The progress of the snapshot export task as a percentage. @@ -16174,7 +16190,7 @@ func (s *CancelExportTaskOutput) SetWarningMessage(v string) *CancelExportTaskOu return s } -// A CA certificate for an AWS account. +// A CA certificate for an Amazon Web Services account. type Certificate struct { _ struct{} `type:"structure"` @@ -16352,8 +16368,8 @@ type ClusterPendingModifiedValues struct { // The database engine version. EngineVersion *string `type:"string"` - // A value that indicates whether mapping of AWS Identity and Access Management - // (IAM) accounts to database accounts is enabled. + // A value that indicates whether mapping of Amazon Web Services Identity and + // Access Management (IAM) accounts to database accounts is enabled. IAMDatabaseAuthenticationEnabled *bool `type:"boolean"` // The master credentials for the DB cluster. @@ -16707,81 +16723,86 @@ type CopyDBClusterSnapshotInput struct { // DestinationRegion is used for presigning the request to a given region. DestinationRegion *string `type:"string"` - // The AWS KMS key identifier for an encrypted DB cluster snapshot. The AWS - // KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the - // AWS KMS customer master key (CMK). + // 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 customer master key (CMK). // - // If you copy an encrypted DB cluster snapshot from your AWS account, you can - // specify a value for KmsKeyId to encrypt the copy with a new AWS KMS CMK. - // If you don't specify a value for KmsKeyId, then the copy of the DB cluster - // snapshot is encrypted with the same AWS KMS key as the source DB cluster - // snapshot. + // 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 Amazon Web Services KMS CMK. If you don't specify a value for KmsKeyId, + // then the copy of the DB cluster snapshot is encrypted with the same Amazon + // Web Services KMS key as the source DB cluster snapshot. // // If you copy an encrypted DB cluster snapshot that is shared from another - // AWS account, then you must specify a value for KmsKeyId. + // Amazon Web Services account, then you must specify a value for KmsKeyId. // - // To copy an encrypted DB cluster snapshot to another AWS Region, you must - // set KmsKeyId to the AWS KMS key identifier you want to use to encrypt the - // copy of the DB cluster snapshot in the destination AWS Region. AWS KMS CMKs - // are specific to the AWS Region that they are created in, and you can't use - // CMKs from one AWS Region in another AWS Region. + // 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. Amazon Web Services KMS CMKs are specific to + // the Amazon Web Services Region that they are created in, and you can't use + // CMKs 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. KmsKeyId *string `type:"string"` // The URL that contains a Signature Version 4 signed request for the CopyDBClusterSnapshot - // API action in the AWS Region that contains the source DB cluster snapshot - // to copy. The PreSignedUrl parameter must be used when copying an encrypted - // DB cluster snapshot from another AWS Region. Don't specify PreSignedUrl when - // you are copying an encrypted DB cluster snapshot in the same AWS Region. + // API action in the Amazon Web Services Region that contains the source DB + // cluster snapshot to copy. The PreSignedUrl parameter must be used when copying + // an encrypted DB cluster snapshot from another Amazon Web Services Region. + // Don't specify PreSignedUrl when you are copying an encrypted DB cluster snapshot + // in the same Amazon Web Services Region. // // The pre-signed URL must be a valid request for the CopyDBClusterSnapshot - // API action that can be executed in the source AWS Region that contains the - // encrypted DB cluster snapshot to be copied. The pre-signed URL request must - // contain the following parameter values: + // API action that can be executed in the source Amazon Web Services Region + // that contains the encrypted DB cluster snapshot to be copied. The pre-signed + // URL request must contain the following parameter values: // - // * KmsKeyId - The AWS KMS key identifier for the customer master key (CMK) - // to use to encrypt the copy of the DB cluster snapshot in the destination - // AWS Region. This is the same identifier for both the CopyDBClusterSnapshot - // action that is called in the destination AWS Region, and the action contained - // in the pre-signed URL. + // * KmsKeyId - The Amazon Web Services KMS key identifier for the customer + // master key (CMK) 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 action that is called in the destination + // Amazon Web Services Region, and the action contained in the pre-signed + // URL. // - // * DestinationRegion - The name of the AWS Region that the DB cluster snapshot - // is to be created in. + // * 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 AWS Region. - // For example, if you are copying an encrypted DB cluster snapshot from - // the us-west-2 AWS Region, then your SourceDBClusterSnapshotIdentifier + // 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 (AWS Signature Version 4) (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html) + // Requests: Using Query Parameters (Amazon Web Services Signature Version 4) + // (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html) // and Signature Version 4 Signing Process (https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html). // - // If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion - // (or --source-region for the AWS CLI) instead of specifying PreSignedUrl manually. - // Specifying SourceRegion autogenerates a pre-signed URL that is a valid request - // for the operation that can be executed in the source AWS Region. + // 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 pre-signed URL that is + // a valid request for the operation that can be executed in the source Amazon + // Web Services Region. PreSignedUrl *string `type:"string"` // 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 AWS Region - // to another. + // 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 AWS Region as the copy, specify - // a valid DB snapshot identifier. + // * 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 AWS Region than the copy, specify - // a valid DB cluster snapshot ARN. For more information, go to Copying Snapshots - // Across AWS Regions (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_CopySnapshot.html#USER_CopySnapshot.AcrossRegions) + // * 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 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_CopySnapshot.html#USER_CopySnapshot.AcrossRegions) // in the Amazon Aurora User Guide. // // Example: my-cluster-snapshot1 @@ -17045,94 +17066,103 @@ type CopyDBSnapshotInput struct { // DestinationRegion is used for presigning the request to a given region. DestinationRegion *string `type:"string"` - // The AWS KMS key identifier for an encrypted DB snapshot. The AWS KMS key - // identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS - // customer master key (CMK). + // 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 Amazon Web Services KMS customer master key (CMK). // - // If you copy an encrypted DB snapshot from your AWS account, you can specify - // a value for this parameter to encrypt the copy with a new AWS KMS CMK. If - // you don't specify a value for this parameter, then the copy of the DB snapshot - // is encrypted with the same AWS KMS key as the source DB snapshot. + // 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 + // Amazon Web Services KMS CMK. 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 AWS account, - // then you must specify a value for this parameter. + // 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 AWS Region, then you must - // specify a AWS KMS key identifier for the destination AWS Region. AWS KMS - // CMKs are specific to the AWS Region that they are created in, and you can't - // use CMKs from one AWS Region in another AWS Region. + // If you copy an encrypted snapshot to a different Amazon Web Services Region, + // then you must specify a Amazon Web Services KMS key identifier for the destination + // Amazon Web Services Region. Amazon Web Services KMS CMKs are specific to + // the Amazon Web Services Region that they are created in, and you can't use + // CMKs from one Amazon Web Services Region in another Amazon Web Services Region. KmsKeyId *string `type:"string"` // 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 AWS 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 AWS Regions. For - // more information, see Option group considerations (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopySnapshot.Options) + // 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 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopySnapshot.Options) // in the Amazon RDS User Guide. OptionGroupName *string `type:"string"` // The URL that contains a Signature Version 4 signed request for the CopyDBSnapshot - // API action in the source AWS Region that contains the source DB snapshot - // to copy. + // API action in the source Amazon Web Services Region that contains the source + // DB snapshot to copy. // // You must specify this parameter when you copy an encrypted DB snapshot from - // another AWS Region by using the Amazon RDS API. Don't specify PreSignedUrl - // when you are copying an encrypted DB snapshot in the same AWS Region. + // 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 CopyDBSnapshot API action - // that can be executed in the source AWS Region that contains the encrypted - // DB snapshot to be copied. The presigned URL request must contain the following - // parameter values: - // - // * DestinationRegion - The AWS Region that the encrypted DB snapshot is - // copied to. This AWS Region is the same one where the CopyDBSnapshot action - // is called that contains this presigned URL. For example, if you copy an - // encrypted DB snapshot from the us-west-2 AWS Region to the us-east-1 AWS - // Region, then you call the CopyDBSnapshot action in the us-east-1 AWS Region - // and provide a presigned URL that contains a call to the CopyDBSnapshot - // action in the us-west-2 AWS Region. For this example, the DestinationRegion - // in the presigned URL must be set to the us-east-1 AWS Region. - // - // * KmsKeyId - The AWS KMS key identifier for the customer master key (CMK) - // to use to encrypt the copy of the DB snapshot in the destination AWS Region. - // This is the same identifier for both the CopyDBSnapshot action that is - // called in the destination AWS Region, and the action contained in the - // presigned URL. + // that can be executed in the source Amazon Web Services Region that contains + // the encrypted DB snapshot to be copied. 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 action 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 action in the us-east-1 Amazon Web Services + // Region and provide a presigned URL that contains a call to the CopyDBSnapshot + // action 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 Amazon Web Services KMS key identifier for the customer + // master key (CMK) 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 action that is called in the destination Amazon + // Web Services Region, and the action 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 AWS Region. For example, if you are copying - // an encrypted DB snapshot from the us-west-2 AWS Region, then your SourceDBSnapshotIdentifier - // looks like the following example: arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20161115. + // 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 (AWS Signature Version 4) (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html) + // Requests: Using Query Parameters (Amazon Web Services Signature Version 4) + // (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html) // and Signature Version 4 Signing Process (https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html). // - // If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion - // (or --source-region for the AWS CLI) instead of specifying PreSignedUrl manually. - // Specifying SourceRegion autogenerates a pre-signed URL that is a valid request - // for the operation that can be executed in the source AWS Region. + // 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 pre-signed URL that is + // a valid request for the operation that can be executed in the source Amazon + // Web Services Region. PreSignedUrl *string `type:"string"` // The identifier for the source DB snapshot. // - // If the source snapshot is in the same AWS 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 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 AWS 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 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 AWS Region, and must match the SourceDBSnapshotIdentifier + // format for the source Amazon Web Services Region, and must match the SourceDBSnapshotIdentifier // in the PreSignedUrl parameter. // // Constraints: @@ -17729,8 +17759,8 @@ type CreateDBClusterInput struct { _ struct{} `type:"structure"` // A list of Availability Zones (AZs) where instances in the DB cluster can - // be created. For information on AWS Regions and Availability Zones, see Choosing - // the Regions and Availability Zones (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html) + // be created. For information on Amazon Web Services Regions and Availability + // Zones, see Choosing the Regions and Availability Zones (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html) // in the Amazon Aurora User Guide. AvailabilityZones []*string `locationNameList:"AvailabilityZone" type:"list"` @@ -17860,8 +17890,9 @@ type CreateDBClusterInput struct { // in the Amazon Aurora User Guide. EnableHttpEndpoint *bool `type:"boolean"` - // A value that indicates whether to enable mapping of AWS Identity and Access - // Management (IAM) accounts to database accounts. By default, mapping is disabled. + // A value that indicates 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, see IAM Database Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html) // in the Amazon Aurora User Guide. @@ -17932,11 +17963,12 @@ type CreateDBClusterInput struct { // in the new global database cluster. GlobalClusterIdentifier *string `type:"string"` - // The AWS KMS key identifier for an encrypted DB cluster. + // The Amazon Web Services KMS key identifier for an encrypted DB cluster. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). To use a CMK in a different AWS - // account, specify the key ARN or alias ARN. + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). + // To use a CMK in a different Amazon Web Services account, specify the key + // ARN or alias ARN. // // When a CMK isn't specified in KmsKeyId: // @@ -17947,12 +17979,14 @@ type CreateDBClusterInput struct { // * If the StorageEncrypted parameter is enabled and ReplicationSourceIdentifier // isn't specified, then Amazon RDS will use your default CMK. // - // There is a default CMK for your AWS account. Your AWS account has a different - // default CMK for each AWS Region. + // There is a default CMK for your Amazon Web Services account. Your Amazon + // Web Services account has a different default CMK for each Amazon Web Services + // Region. // - // If you create a read replica of an encrypted DB cluster in another AWS Region, - // you must set KmsKeyId to a AWS KMS key identifier that is valid in the destination - // AWS Region. This CMK is used to encrypt the read replica in that AWS Region. + // If you create a read replica of an encrypted DB cluster in another Amazon + // Web Services Region, you must set KmsKeyId to a Amazon Web Services KMS key + // identifier that is valid in the destination Amazon Web Services Region. This + // CMK is used to encrypt the read replica in that Amazon Web Services Region. KmsKeyId *string `type:"string"` // The password for the master database user. This password can contain any @@ -17985,47 +18019,51 @@ type CreateDBClusterInput struct { Port *int64 `type:"integer"` // A URL that contains a Signature Version 4 signed request for the CreateDBCluster - // action to be called in the source AWS Region where the DB cluster is replicated - // from. You only need to specify PreSignedUrl when you are performing cross-region - // replication from an encrypted DB cluster. + // action to be called in the source Amazon Web Services Region where the DB + // cluster is replicated from. You only need to specify PreSignedUrl when you + // are performing cross-region replication from an encrypted DB cluster. // // The pre-signed URL must be a valid request for the CreateDBCluster API action - // that can be executed in the source AWS Region that contains the encrypted - // DB cluster to be copied. + // that can be executed in the source Amazon Web Services Region that contains + // the encrypted DB cluster to be copied. // // The pre-signed URL request must contain the following parameter values: // - // * KmsKeyId - The AWS KMS key identifier for the key to use to encrypt - // the copy of the DB cluster in the destination AWS Region. This should - // refer to the same AWS KMS CMK for both the CreateDBCluster action that - // is called in the destination AWS Region, and the action contained in the - // pre-signed URL. + // * KmsKeyId - The Amazon Web Services KMS key identifier for the key to + // use to encrypt the copy of the DB cluster in the destination Amazon Web + // Services Region. This should refer to the same Amazon Web Services KMS + // CMK for both the CreateDBCluster action that is called in the destination + // Amazon Web Services Region, and the action contained in the pre-signed + // URL. // - // * DestinationRegion - The name of the AWS Region that Aurora read replica - // will be created in. + // * 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 AWS Region. For example, if you are copying - // an encrypted DB cluster from the us-west-2 AWS Region, then your ReplicationSourceIdentifier - // would look like Example: arn:aws:rds:us-west-2:123456789012:cluster:aurora-cluster1. + // 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 (AWS Signature Version 4) (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html) + // Requests: Using Query Parameters (Amazon Web Services Signature Version 4) + // (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html) // and Signature Version 4 Signing Process (https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html). // - // If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion - // (or --source-region for the AWS CLI) instead of specifying PreSignedUrl manually. - // Specifying SourceRegion autogenerates a pre-signed URL that is a valid request - // for the operation that can be executed in the source AWS Region. + // 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 pre-signed URL that is + // a valid request for the operation that can be executed in the source Amazon + // Web Services Region. PreSignedUrl *string `type:"string"` // The daily time range during which automated backups are created if automated // backups are enabled using the BackupRetentionPeriod parameter. // // The default is a 30-minute window selected at random from an 8-hour block - // of time for each AWS Region. To view the time blocks available, see Backup - // window (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow) + // of time for each Amazon Web Services Region. To view the time blocks available, + // see Backup window (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow) // in the Amazon Aurora User Guide. // // Constraints: @@ -18045,9 +18083,9 @@ type CreateDBClusterInput struct { // 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 AWS Region, occurring on a random day of the week. To see - // the time blocks available, see Adjusting the Preferred DB Cluster Maintenance - // Window (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora) + // 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 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora) // in the Amazon Aurora User Guide. // // Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. @@ -18367,6 +18405,28 @@ type CreateDBClusterParameterGroupInput struct { // // Example: aurora-postgresql9.6 // + // 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 + // + // 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 (for MySQL 5.6-compatible Aurora) + // + // * aurora-mysql (for MySQL 5.7-compatible Aurora) + // + // * aurora-postgresql + // // DBParameterGroupFamily is a required field DBParameterGroupFamily *string `type:"string" required:"true"` @@ -18639,17 +18699,17 @@ type CreateDBInstanceInput struct { AutoMinorVersionUpgrade *bool `type:"boolean"` // The Availability Zone (AZ) where the database will be created. For information - // on AWS Regions and Availability Zones, see Regions and Availability Zones - // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html). + // on Amazon Web Services Regions and Availability Zones, see Regions and Availability + // Zones (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html). // - // Default: A random, system-chosen Availability Zone in the endpoint's AWS - // Region. + // 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 AWS Region as the current endpoint. + // same Amazon Web Services Region as the current endpoint. // // If you're creating a DB instance in an RDS on VMware environment, specify // the identifier of the custom Availability Zone to create the DB instance @@ -18699,9 +18759,9 @@ type CreateDBInstanceInput struct { DBClusterIdentifier *string `type:"string"` // The compute and memory capacity of the DB instance, for example, db.m4.large. - // Not all DB instance classes are available in all AWS Regions, or for all - // database engines. For the full list of DB instance classes, and availability - // for your engine, see DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html) + // 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 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html) // in the Amazon RDS User Guide. // // DBInstanceClass is a required field @@ -18900,18 +18960,19 @@ type CreateDBInstanceInput struct { // its virtual private cloud (VPC) on your local network. // // For more information about RDS on Outposts, see Working with Amazon RDS on - // AWS Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) + // Amazon Web Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) // in the Amazon RDS User Guide. // // For more information about CoIPs, see Customer-owned IP addresses (https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing) - // in the AWS Outposts User Guide. + // in the Amazon Web Services Outposts User Guide. EnableCustomerOwnedIp *bool `type:"boolean"` - // A value that indicates whether to enable mapping of AWS Identity and Access - // Management (IAM) accounts to database accounts. By default, mapping is disabled. + // A value that indicates whether to enable mapping of Amazon Web Services Identity + // and Access Management (IAM) accounts to database accounts. By default, mapping + // is disabled. // - // This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts to - // database accounts is managed by the DB cluster. + // 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, see IAM Database Authentication for MySQL and PostgreSQL // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html) @@ -18927,7 +18988,7 @@ type CreateDBInstanceInput struct { // The name of the database engine to be used for this instance. // - // Not every database engine is available for every AWS Region. + // Not every database engine is available for every Amazon Web Services Region. // // Valid Values: // @@ -18943,11 +19004,11 @@ type CreateDBInstanceInput struct { // // * oracle-ee // - // * oracle-se2 + // * oracle-ee-cdb // - // * oracle-se1 + // * oracle-se2 // - // * oracle-se + // * oracle-se2-cdb // // * postgres // @@ -18968,7 +19029,7 @@ type CreateDBInstanceInput struct { // // 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 AWS Region. + // engine is available for every Amazon Web Services Region. // // Amazon Aurora // @@ -19012,21 +19073,22 @@ type CreateDBInstanceInput struct { // amount for the DB instance. Iops *int64 `type:"integer"` - // The AWS KMS key identifier for an encrypted DB instance. + // The Amazon Web Services KMS key identifier for an encrypted DB instance. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). To use a CMK in a different AWS - // account, specify the key ARN or alias ARN. + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). + // To use a CMK in a different Amazon Web Services account, specify the key + // ARN or alias ARN. // // Amazon Aurora // - // Not applicable. The AWS KMS key identifier is managed by the DB cluster. - // For more information, see CreateDBCluster. + // Not applicable. 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 CMK. There is a default CMK - // for your AWS account. Your AWS account has a different default CMK for each - // AWS Region. + // for your Amazon Web Services account. Your Amazon Web Services account has + // a different default CMK for each Amazon Web Services Region. KmsKeyId *string `type:"string"` // License model information for this DB instance. @@ -19172,14 +19234,16 @@ type CreateDBInstanceInput struct { // from a DB instance once it is associated with a DB instance OptionGroupName *string `type:"string"` - // The AWS KMS key identifier for encryption of Performance Insights data. + // The Amazon Web Services KMS key identifier for encryption of Performance + // Insights data. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). // // If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon - // RDS uses your default CMK. There is a default CMK for your AWS account. Your - // AWS account has a different default CMK for each AWS Region. + // RDS uses your default CMK. There is a default CMK for your Amazon Web Services + // account. Your Amazon Web Services account has a different default CMK for + // each Amazon Web Services Region. PerformanceInsightsKMSKeyId *string `type:"string"` // The amount of time, in days, to retain Performance Insights data. Valid values @@ -19237,7 +19301,8 @@ type CreateDBInstanceInput struct { // The daily time range during which automated backups are created if automated // backups are enabled, using the BackupRetentionPeriod parameter. The default // is a 30-minute window selected at random from an 8-hour block of time for - // each AWS Region. For more information, see Backup window (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow) + // each Amazon Web Services Region. For more information, see Backup window + // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow) // in the Amazon RDS User Guide. // // Amazon Aurora @@ -19263,7 +19328,8 @@ type CreateDBInstanceInput struct { // 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 AWS Region, occurring on a random day of the week. + // of time for each Amazon Web Services Region, occurring on a random day of + // the week. // // Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. // @@ -19713,8 +19779,8 @@ type CreateDBInstanceReadReplicaInput struct { // The Availability Zone (AZ) where the read replica will be created. // - // Default: A random, system-chosen Availability Zone in the endpoint's AWS - // Region. + // Default: A random, system-chosen Availability Zone in the endpoint's Amazon + // Web Services Region. // // Example: us-east-1d AvailabilityZone *string `type:"string"` @@ -19724,9 +19790,9 @@ type CreateDBInstanceReadReplicaInput struct { CopyTagsToSnapshot *bool `type:"boolean"` // The compute and memory capacity of the read replica, for example, db.m4.large. - // Not all DB instance classes are available in all AWS Regions, or for all - // database engines. For the full list of DB instance classes, and availability - // for your engine, see DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html) + // 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 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html) // in the Amazon RDS User Guide. // // Default: Inherits from the source DB instance. @@ -19765,17 +19831,18 @@ type CreateDBInstanceReadReplicaInput struct { // Constraints: // // * Can only be specified if the source DB instance identifier specifies - // a DB instance in another AWS Region. + // a DB instance in another Amazon Web Services Region. // // * If supplied, must match the name of an existing DBSubnetGroup. // - // * The specified DB subnet group must be in the same AWS Region in which - // the operation is running. + // * 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 AWS 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. + // * 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: mySubnetgroup DBSubnetGroupName *string `type:"string"` @@ -19807,8 +19874,9 @@ type CreateDBInstanceReadReplicaInput struct { // in the Amazon RDS User Guide. EnableCloudwatchLogsExports []*string `type:"list"` - // A value that indicates whether to enable mapping of AWS Identity and Access - // Management (IAM) accounts to database accounts. By default, mapping is disabled. + // A value that indicates 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 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html) @@ -19826,20 +19894,22 @@ type CreateDBInstanceReadReplicaInput struct { // initially allocated for the DB instance. Iops *int64 `type:"integer"` - // The AWS KMS key identifier for an encrypted read replica. + // The Amazon Web Services KMS key identifier for an encrypted read replica. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS CMK. + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS CMK. // - // If you create an encrypted read replica in the same AWS Region as the source - // DB instance, then do not specify a value for this parameter. A read replica - // in the same Region is always encrypted with the same AWS KMS CMK as the source - // DB instance. + // If you create an encrypted read replica in the same Amazon Web Services Region + // as the source DB instance, then do not specify a value for this parameter. + // A read replica in the same Region is always encrypted with the same Amazon + // Web Services KMS CMK as the source DB instance. // - // If you create an encrypted read replica in a different AWS Region, then you - // must specify a AWS KMS key identifier for the destination AWS Region. AWS - // KMS CMKs are specific to the AWS Region that they are created in, and you - // can't use CMKs from one AWS Region in another AWS Region. + // If you create an encrypted read replica in a different Amazon Web Services + // Region, then you must specify a Amazon Web Services KMS key identifier for + // the destination Amazon Web Services Region. Amazon Web Services KMS CMKs + // are specific to the Amazon Web Services Region that they are created in, + // and you can't use CMKs 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. KmsKeyId *string `type:"string"` @@ -19888,14 +19958,16 @@ type CreateDBInstanceReadReplicaInput struct { // instance. OptionGroupName *string `type:"string"` - // The AWS KMS key identifier for encryption of Performance Insights data. + // The Amazon Web Services KMS key identifier for encryption of Performance + // Insights data. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). // // If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon - // RDS uses your default CMK. There is a default CMK for your AWS account. Your - // AWS account has a different default CMK for each AWS Region. + // RDS uses your default CMK. There is a default CMK for your Amazon Web Services + // account. Your Amazon Web Services account has a different default CMK for + // each Amazon Web Services Region. PerformanceInsightsKMSKeyId *string `type:"string"` // The amount of time, in days, to retain Performance Insights data. Valid values @@ -19910,47 +19982,54 @@ type CreateDBInstanceReadReplicaInput struct { Port *int64 `type:"integer"` // The URL that contains a Signature Version 4 signed request for the CreateDBInstanceReadReplica - // API action in the source AWS Region that contains the source DB instance. + // API action in the source Amazon Web Services Region that contains the source + // DB instance. // // You must specify this parameter when you create an encrypted read replica - // from another AWS Region by using the Amazon RDS API. Don't specify PreSignedUrl - // when you are creating an encrypted read replica in the same AWS Region. + // 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 action that can be executed in the source AWS Region that contains the - // encrypted source DB instance. The presigned URL request must contain the - // following parameter values: - // - // * DestinationRegion - The AWS Region that the encrypted read replica is - // created in. This AWS Region is the same one where the CreateDBInstanceReadReplica - // action is called that contains this presigned URL. For example, if you - // create an encrypted DB instance in the us-west-1 AWS Region, from a source - // DB instance in the us-east-2 AWS Region, then you call the CreateDBInstanceReadReplica - // action in the us-east-1 AWS Region and provide a presigned URL that contains - // a call to the CreateDBInstanceReadReplica action in the us-west-2 AWS - // Region. For this example, the DestinationRegion in the presigned URL must - // be set to the us-east-1 AWS Region. - // - // * KmsKeyId - The AWS KMS key identifier for the key to use to encrypt - // the read replica in the destination AWS Region. This is the same identifier - // for both the CreateDBInstanceReadReplica action that is called in the - // destination AWS Region, and the action contained in the presigned URL. + // API action that can be executed 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 action 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 + // action in the us-east-1 Amazon Web Services Region and provide a presigned + // URL that contains a call to the CreateDBInstanceReadReplica action 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 Amazon Web Services 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 + // action that is called in the destination Amazon Web Services Region, and + // the action 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 AWS Region. For example, if you are creating - // an encrypted read replica from a DB instance in the us-west-2 AWS Region, - // then your SourceDBInstanceIdentifier looks like the following example: - // arn:aws:rds:us-west-2:123456789012:instance:mysql-instance1-20161115. + // 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 (AWS Signature Version 4) (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html) + // Requests: Using Query Parameters (Amazon Web Services Signature Version 4) + // (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html) // and Signature Version 4 Signing Process (https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html). // - // If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion - // (or --source-region for the AWS CLI) instead of specifying PreSignedUrl manually. - // Specifying SourceRegion autogenerates a presigned URL that is a valid request - // for the operation that can be executed in the source AWS Region. + // 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 be executed in the source Amazon + // Web Services Region. // // SourceRegion isn't supported for SQL Server, because SQL Server on Amazon // RDS doesn't support cross-region read replicas. @@ -20016,12 +20095,12 @@ type CreateDBInstanceReadReplicaInput struct { // * 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 AWS Region as the read replica, - // specify a valid DB instance identifier. + // * 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 AWS Region from the read - // replica, specify a valid DB instance ARN. For more information, see Constructing - // an ARN for Amazon RDS (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing) + // * 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 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing) // in the Amazon RDS User Guide. This doesn't apply to SQL Server, which // doesn't support cross-region replicas. // @@ -20319,13 +20398,50 @@ type CreateDBParameterGroupInput struct { // 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, use the following - // command: + // 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 + // + // 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 (for MySQL 5.6-compatible Aurora) + // + // * aurora-mysql (for MySQL 5.7-compatible Aurora) + // + // * aurora-postgresql + // + // * mariadb + // + // * mysql + // + // * oracle-ee + // + // * oracle-ee-cdb + // + // * oracle-se2 + // + // * oracle-se2-cdb + // + // * postgres + // + // * sqlserver-ee + // + // * sqlserver-se + // + // * sqlserver-ex + // + // * sqlserver-web + // // DBParameterGroupFamily is a required field DBParameterGroupFamily *string `type:"string" required:"true"` @@ -20570,9 +20686,10 @@ type CreateDBProxyInput struct { Auth []*UserAuthConfig `type:"list" required:"true"` // The identifier for the proxy. This name must be unique for all proxies owned - // by your AWS account in the specified AWS 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. + // 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. // // DBProxyName is a required field DBProxyName *string `type:"string" required:"true"` @@ -20605,7 +20722,7 @@ type CreateDBProxyInput struct { RequireTLS *bool `type:"boolean"` // The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access - // secrets in AWS Secrets Manager. + // secrets in Amazon Web Services Secrets Manager. // // RoleArn is a required field RoleArn *string `type:"string" required:"true"` @@ -21328,11 +21445,11 @@ type CreateOptionGroupInput struct { // // * oracle-ee // - // * oracle-se2 + // * oracle-ee-cdb // - // * oracle-se1 + // * oracle-se2 // - // * oracle-se + // * oracle-se2-cdb // // * postgres // @@ -21481,7 +21598,7 @@ type CustomAvailabilityZone struct { CustomAvailabilityZoneStatus *string `type:"string"` // Information about the virtual private network (VPN) between the VMware vSphere - // cluster and the AWS website. + // cluster and the Amazon Web Services website. VpnDetails *VpnDetails `type:"structure"` } @@ -21530,11 +21647,11 @@ type DBCluster struct { // stream. ActivityStreamKinesisStreamName *string `type:"string"` - // The AWS KMS key identifier used for encrypting messages in the database activity - // stream. + // The Amazon Web Services KMS key identifier used for encrypting messages in + // the database activity stream. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). ActivityStreamKmsKeyId *string `type:"string"` // The mode of the database activity stream. Database events such as a change @@ -21551,10 +21668,10 @@ type DBCluster struct { // instead automatically adjusts as needed. AllocatedStorage *int64 `type:"integer"` - // Provides a list of the AWS 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 AWS services - // on your behalf. + // Provides 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. AssociatedRoles []*DBClusterRole `locationNameList:"DBClusterRole" type:"list"` // Provides the list of Availability Zones (AZs) where instances in the DB cluster @@ -21595,7 +21712,7 @@ type DBCluster struct { CopyTagsToSnapshot *bool `type:"boolean"` // Specifies whether the DB cluster is a clone of a DB cluster owned by a different - // AWS account. + // Amazon Web Services account. CrossAccountClone *bool `type:"boolean"` // Identifies all custom endpoints associated with the cluster. @@ -21626,9 +21743,9 @@ type DBCluster struct { // same name is returned for the life of the DB cluster. DatabaseName *string `type:"string"` - // The AWS Region-unique, immutable identifier for the DB cluster. This identifier - // is found in AWS CloudTrail log entries whenever the AWS KMS CMK for the DB - // cluster is accessed. + // 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 Amazon Web Services KMS CMK for the DB cluster is accessed. DbClusterResourceId *string `type:"string"` // Indicates if the DB cluster has deletion protection enabled. The database @@ -21693,15 +21810,15 @@ type DBCluster struct { // in the Amazon Aurora User Guide. HttpEndpointEnabled *bool `type:"boolean"` - // A value that indicates whether the mapping of AWS Identity and Access Management - // (IAM) accounts to database accounts is enabled. + // A value that indicates whether the mapping of Amazon Web Services Identity + // and Access Management (IAM) accounts to database accounts is enabled. IAMDatabaseAuthenticationEnabled *bool `type:"boolean"` - // If StorageEncrypted is enabled, the AWS KMS key identifier for the encrypted - // DB cluster. + // If StorageEncrypted is enabled, the Amazon Web Services KMS key identifier + // for the encrypted DB cluster. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). KmsKeyId *string `type:"string"` // Specifies the latest time to which a database can be restored with point-in-time @@ -22425,13 +22542,14 @@ func (s *DBClusterParameterGroupNameMessage) SetDBClusterParameterGroupName(v st return s } -// Describes an AWS Identity and Access Management (IAM) role that is associated -// with a DB cluster. +// Describes an Amazon Web Services Identity and Access Management (IAM) role +// that is associated with a DB cluster. type DBClusterRole struct { _ struct{} `type:"structure"` - // The name of the feature associated with the AWS Identity and Access Management - // (IAM) role. For the list of supported feature names, see DBEngineVersion. + // The name of the feature associated with the Amazon Web Services Identity + // and Access Management (IAM) role. For the list of supported feature names, + // see DBEngineVersion. FeatureName *string `type:"string"` // The Amazon Resource Name (ARN) of the IAM role that is associated with the @@ -22442,13 +22560,13 @@ type DBClusterRole struct { // 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 AWS services on your behalf. + // 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 AWS - // services on your behalf. + // DB cluster is unable to assume the IAM role in order to access other Amazon + // Web Services on your behalf. Status *string `type:"string"` } @@ -22517,15 +22635,15 @@ type DBClusterSnapshot struct { // Provides the version of the database engine for this DB cluster snapshot. EngineVersion *string `type:"string"` - // True if mapping of AWS Identity and Access Management (IAM) accounts to database - // accounts is enabled, and otherwise false. + // True if mapping of Amazon Web Services Identity and Access Management (IAM) + // accounts to database accounts is enabled, and otherwise false. IAMDatabaseAuthenticationEnabled *bool `type:"boolean"` - // If StorageEncrypted is true, the AWS KMS key identifier for the encrypted - // DB cluster snapshot. + // If StorageEncrypted is true, the Amazon Web Services KMS key identifier for + // the encrypted DB cluster snapshot. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). KmsKeyId *string `type:"string"` // Provides the license model information for this DB cluster snapshot. @@ -22711,26 +22829,26 @@ func (s *DBClusterSnapshot) SetVpcId(v string) *DBClusterSnapshot { // Contains the name and values of a manual DB cluster snapshot attribute. // -// Manual DB cluster snapshot attributes are used to authorize other AWS accounts -// to restore a manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute -// API action. +// 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. type DBClusterSnapshotAttribute struct { _ struct{} `type:"structure"` // The name of the manual DB cluster snapshot attribute. // - // The attribute named restore refers to the list of AWS accounts that have - // permission to copy or restore the manual DB cluster snapshot. For more information, - // see the ModifyDBClusterSnapshotAttribute API action. + // 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. AttributeName *string `type:"string"` // 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 AWS 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 AWS account to copy or - // restore. + // 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. AttributeValues []*string `locationNameList:"AttributeValue" type:"list"` } @@ -22759,9 +22877,9 @@ func (s *DBClusterSnapshotAttribute) SetAttributeValues(v []*string) *DBClusterS // Contains the results of a successful call to the DescribeDBClusterSnapshotAttributes // API action. // -// Manual DB cluster snapshot attributes are used to authorize other AWS accounts -// to copy or restore a manual DB cluster snapshot. For more information, see -// the ModifyDBClusterSnapshotAttribute 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. type DBClusterSnapshotAttributesResult struct { _ struct{} `type:"structure"` @@ -22990,11 +23108,33 @@ func (s *DBEngineVersion) SetValidUpgradeTarget(v []*UpgradeTarget) *DBEngineVer type DBInstance struct { _ struct{} `type:"structure"` + // Indicates whether engine-native audit fields are included in the database + // activity stream. + ActivityStreamEngineNativeAuditFieldsIncluded *bool `type:"boolean"` + + // The name of the Amazon Kinesis data stream used for the database activity + // stream. + ActivityStreamKinesisStreamName *string `type:"string"` + + // 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 Amazon Web Services + // KMS customer master key (CMK). + ActivityStreamKmsKeyId *string `type:"string"` + + // 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. + ActivityStreamMode *string `type:"string" enum:"ActivityStreamMode"` + + // The status of the database activity stream. + ActivityStreamStatus *string `type:"string" enum:"ActivityStreamStatus"` + // Specifies the allocated storage size specified in gibibytes. AllocatedStorage *int64 `type:"integer"` - // The AWS Identity and Access Management (IAM) roles associated with the DB - // instance. + // The Amazon Web Services Identity and Access Management (IAM) roles associated + // with the DB instance. AssociatedRoles []*DBInstanceRole `locationNameList:"DBInstanceRole" type:"list"` // A value that indicates that minor version patches are applied automatically. @@ -23003,7 +23143,8 @@ type DBInstance struct { // Specifies the name of the Availability Zone the DB instance is located in. AvailabilityZone *string `type:"string"` - // The Amazon Resource Name (ARN) of the recovery point in AWS Backup. + // The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services + // Backup. AwsBackupRecoveryPointArn *string `type:"string"` // Specifies the number of days for which automatic DB snapshots are retained. @@ -23035,11 +23176,11 @@ type DBInstance struct { // its virtual private cloud (VPC) on your local network. // // For more information about RDS on Outposts, see Working with Amazon RDS on - // AWS Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) + // Amazon Web Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) // in the Amazon RDS User Guide. // // For more information about CoIPs, see Customer-owned IP addresses (https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing) - // in the AWS Outposts User Guide. + // in the Amazon Web Services Outposts User Guide. CustomerOwnedIpEnabled *bool `type:"boolean"` // If the DB instance is a member of a DB cluster, contains the name of the @@ -23061,7 +23202,8 @@ type DBInstance struct { // Specifies the current state of this database. // - // For information about DB instance statuses, see DB Instance Status (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Status.html) + // For information about DB instance statuses, see Viewing DB instance status + // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status) // in the Amazon RDS User Guide. DBInstanceStatus *string `type:"string"` @@ -23097,9 +23239,10 @@ type DBInstance struct { // part of a DB cluster, this can be a different port than the DB cluster port. DbInstancePort *int64 `type:"integer"` - // The AWS Region-unique, immutable identifier for the DB instance. This identifier - // is found in AWS CloudTrail log entries whenever the AWS KMS customer master - // key (CMK) for the DB instance is accessed. + // 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 customer master key (CMK) for the DB instance + // is accessed. DbiResourceId *string `type:"string"` // Indicates if the DB instance has deletion protection enabled. The database @@ -23131,8 +23274,8 @@ type DBInstance struct { // receives the Enhanced Monitoring metrics data for the DB instance. EnhancedMonitoringResourceArn *string `type:"string"` - // True if mapping of AWS Identity and Access Management (IAM) accounts to database - // accounts is enabled, and otherwise false. + // True if mapping of Amazon Web Services Identity and Access Management (IAM) + // accounts to database accounts is enabled, and otherwise false. // // IAM database authentication can be enabled for the following database engines // @@ -23150,11 +23293,11 @@ type DBInstance struct { // Specifies the Provisioned IOPS (I/O operations per second) value. Iops *int64 `type:"integer"` - // If StorageEncrypted is true, the AWS KMS key identifier for the encrypted - // DB instance. + // If StorageEncrypted is true, the Amazon Web Services KMS key identifier for + // the encrypted DB instance. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). KmsKeyId *string `type:"string"` // Specifies the latest time to which a database can be restored with point-in-time @@ -23202,10 +23345,11 @@ type DBInstance struct { // false. PerformanceInsightsEnabled *bool `type:"boolean"` - // The AWS KMS key identifier for encryption of Performance Insights data. + // The Amazon Web Services KMS key identifier for encryption of Performance + // Insights data. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). PerformanceInsightsKMSKeyId *string `type:"string"` // The amount of time, in days, to retain Performance Insights data. Valid values @@ -23311,6 +23455,36 @@ func (s DBInstance) GoString() string { return s.String() } +// SetActivityStreamEngineNativeAuditFieldsIncluded sets the ActivityStreamEngineNativeAuditFieldsIncluded field's value. +func (s *DBInstance) SetActivityStreamEngineNativeAuditFieldsIncluded(v bool) *DBInstance { + s.ActivityStreamEngineNativeAuditFieldsIncluded = &v + return s +} + +// SetActivityStreamKinesisStreamName sets the ActivityStreamKinesisStreamName field's value. +func (s *DBInstance) SetActivityStreamKinesisStreamName(v string) *DBInstance { + s.ActivityStreamKinesisStreamName = &v + return s +} + +// SetActivityStreamKmsKeyId sets the ActivityStreamKmsKeyId field's value. +func (s *DBInstance) SetActivityStreamKmsKeyId(v string) *DBInstance { + s.ActivityStreamKmsKeyId = &v + return s +} + +// SetActivityStreamMode sets the ActivityStreamMode field's value. +func (s *DBInstance) SetActivityStreamMode(v string) *DBInstance { + s.ActivityStreamMode = &v + return s +} + +// SetActivityStreamStatus sets the ActivityStreamStatus field's value. +func (s *DBInstance) SetActivityStreamStatus(v string) *DBInstance { + s.ActivityStreamStatus = &v + return s +} + // SetAllocatedStorage sets the AllocatedStorage field's value. func (s *DBInstance) SetAllocatedStorage(v int64) *DBInstance { s.AllocatedStorage = &v @@ -23705,8 +23879,8 @@ type DBInstanceAutomatedBackup struct { AllocatedStorage *int64 `type:"integer"` // The Availability Zone that the automated backup was created in. For information - // on AWS Regions and Availability Zones, see Regions and Availability Zones - // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html). + // on Amazon Web Services Regions and Availability Zones, see Regions and Availability + // Zones (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html). AvailabilityZone *string `type:"string"` // The retention period for the automated backups. @@ -23718,8 +23892,8 @@ type DBInstanceAutomatedBackup struct { // The Amazon Resource Name (ARN) for the replicated automated backups. DBInstanceAutomatedBackupsArn *string `type:"string"` - // The list of replications to different AWS Regions associated with the automated - // backup. + // The list of replications to different Amazon Web Services Regions associated + // with the automated backup. DBInstanceAutomatedBackupsReplications []*DBInstanceAutomatedBackupsReplication `locationNameList:"DBInstanceAutomatedBackupsReplication" type:"list"` // The customer id of the instance that is/was associated with the automated @@ -23727,7 +23901,7 @@ type DBInstanceAutomatedBackup struct { DBInstanceIdentifier *string `type:"string"` // The identifier for the source DB instance, which can't be changed and which - // is unique to an AWS Region. + // is unique to an Amazon Web Services Region. DbiResourceId *string `type:"string"` // Specifies whether the automated backup is encrypted. @@ -23739,8 +23913,8 @@ type DBInstanceAutomatedBackup struct { // The version of the database engine for the automated backup. EngineVersion *string `type:"string"` - // True if mapping of AWS Identity and Access Management (IAM) accounts to database - // accounts is enabled, and otherwise false. + // True if mapping of Amazon Web Services Identity and Access Management (IAM) + // accounts to database accounts is enabled, and otherwise false. IAMDatabaseAuthenticationEnabled *bool `type:"boolean"` // Provides the date and time that the DB instance was created. @@ -23749,10 +23923,10 @@ type DBInstanceAutomatedBackup struct { // The IOPS (I/O operations per second) value for the automated backup. Iops *int64 `type:"integer"` - // The AWS KMS key ID for an automated backup. + // The Amazon Web Services KMS key ID for an automated backup. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). KmsKeyId *string `type:"string"` // License model information for the automated backup. @@ -23772,7 +23946,7 @@ type DBInstanceAutomatedBackup struct { // Valid Values: 1150-65535 Port *int64 `type:"integer"` - // The AWS Region associated with the automated backup. + // The Amazon Web Services Region associated with the automated backup. Region *string `type:"string"` // Earliest and latest time an instance can be restored to. @@ -23970,8 +24144,9 @@ func (s *DBInstanceAutomatedBackup) SetVpcId(v string) *DBInstanceAutomatedBacku return s } -// Automated backups of a DB instance replicated to another AWS Region. They -// consist of system backups, transaction logs, and database instance properties. +// Automated backups of a DB instance replicated to another Amazon Web Services +// Region. They consist of system backups, transaction logs, and database instance +// properties. type DBInstanceAutomatedBackupsReplication struct { _ struct{} `type:"structure"` @@ -23995,13 +24170,14 @@ func (s *DBInstanceAutomatedBackupsReplication) SetDBInstanceAutomatedBackupsArn return s } -// Describes an AWS Identity and Access Management (IAM) role that is associated -// with a DB instance. +// Describes an Amazon Web Services Identity and Access Management (IAM) role +// that is associated with a DB instance. type DBInstanceRole struct { _ struct{} `type:"structure"` - // The name of the feature associated with the AWS Identity and Access Management - // (IAM) role. For the list of supported feature names, see DBEngineVersion. + // The name of the feature associated with the Amazon Web Services Identity + // and Access Management (IAM) role. For the list of supported feature names, + // see DBEngineVersion. FeatureName *string `type:"string"` // The Amazon Resource Name (ARN) of the IAM role that is associated with the @@ -24012,13 +24188,13 @@ type DBInstanceRole struct { // 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 AWS services on your behalf. + // 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 - // AWS services on your behalf. + // Amazon Web Services services on your behalf. Status *string `type:"string"` } @@ -24249,7 +24425,8 @@ type DBProxy struct { DBProxyArn *string `type:"string"` // The identifier for the proxy. This name must be unique for all proxies owned - // by your AWS account in the specified AWS Region. + // by your Amazon Web Services account in the specified Amazon Web Services + // Region. DBProxyName *string `type:"string"` // Whether the proxy includes detailed information about SQL statements in its @@ -24667,7 +24844,8 @@ type DBProxyTargetGroup struct { TargetGroupArn *string `type:"string"` // The identifier for the target group. This name must be unique for all target - // groups owned by your AWS account in the specified AWS Region. + // groups owned by your Amazon Web Services account in the specified Amazon + // Web Services Region. TargetGroupName *string `type:"string"` // The date and time when the target group was last updated. @@ -24754,7 +24932,8 @@ type DBSecurityGroup struct { // Contains a list of IPRange elements. IPRanges []*IPRange `locationNameList:"IPRange" type:"list"` - // Provides the AWS ID of the owner of a specific DB security group. + // Provides the Amazon Web Services ID of the owner of a specific DB security + // group. OwnerId *string `type:"string"` // Provides the VpcId of the DB security group. @@ -24878,7 +25057,7 @@ type DBSnapshot struct { DBSnapshotIdentifier *string `type:"string"` // The identifier for the source DB instance, which can't be changed and which - // is unique to an AWS Region. + // is unique to an Amazon Web Services Region. DbiResourceId *string `type:"string"` // Specifies whether the DB snapshot is encrypted. @@ -24890,8 +25069,8 @@ type DBSnapshot struct { // Specifies the version of the database engine. EngineVersion *string `type:"string"` - // True if mapping of AWS Identity and Access Management (IAM) accounts to database - // accounts is enabled, and otherwise false. + // True if mapping of Amazon Web Services Identity and Access Management (IAM) + // accounts to database accounts is enabled, and otherwise false. IAMDatabaseAuthenticationEnabled *bool `type:"boolean"` // Specifies the time in Coordinated Universal Time (UTC) when the DB instance, @@ -24902,10 +25081,11 @@ type DBSnapshot struct { // instance at the time of the snapshot. Iops *int64 `type:"integer"` - // If Encrypted is true, the AWS KMS key identifier for the encrypted DB snapshot. + // If Encrypted is true, the Amazon Web Services KMS key identifier for the + // encrypted DB snapshot. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). KmsKeyId *string `type:"string"` // License model information for the restored DB instance. @@ -24938,7 +25118,8 @@ type DBSnapshot struct { // from. It only has value in case of cross-customer or cross-region copy. SourceDBSnapshotIdentifier *string `type:"string"` - // The AWS Region that the DB snapshot was created in or copied from. + // The Amazon Web Services Region that the DB snapshot was created in or copied + // from. SourceRegion *string `type:"string"` // Specifies the status of this DB snapshot. @@ -25149,25 +25330,26 @@ func (s *DBSnapshot) SetVpcId(v string) *DBSnapshot { // Contains the name and values of a manual DB snapshot attribute // -// Manual DB snapshot attributes are used to authorize other AWS accounts to -// restore a manual DB snapshot. For more information, see the ModifyDBSnapshotAttribute +// 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. type DBSnapshotAttribute struct { _ struct{} `type:"structure"` // The name of the manual DB snapshot attribute. // - // The attribute named restore refers to the list of AWS accounts that have - // permission to copy or restore the manual DB cluster snapshot. For more information, - // see the ModifyDBSnapshotAttribute API action. + // 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. AttributeName *string `type:"string"` // 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 AWS 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 AWS account to copy or restore. + // 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. AttributeValues []*string `locationNameList:"AttributeValue" type:"list"` } @@ -25196,9 +25378,9 @@ func (s *DBSnapshotAttribute) SetAttributeValues(v []*string) *DBSnapshotAttribu // Contains the results of a successful call to the DescribeDBSnapshotAttributes // API action. // -// Manual DB snapshot attributes are used to authorize other AWS accounts to -// copy or restore a manual DB snapshot. For more information, see the ModifyDBSnapshotAttribute -// 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. type DBSnapshotAttributesResult struct { _ struct{} `type:"structure"` @@ -25775,7 +25957,7 @@ type DeleteDBInstanceAutomatedBackupInput struct { DBInstanceAutomatedBackupsArn *string `type:"string"` // The identifier for the source DB instance, which can't be changed and which - // is unique to an AWS Region. + // is unique to an Amazon Web Services Region. DbiResourceId *string `type:"string"` } @@ -26835,7 +27017,7 @@ func (s *DescribeCertificatesInput) SetMaxRecords(v int64) *DescribeCertificates type DescribeCertificatesOutput struct { _ struct{} `type:"structure"` - // The list of Certificate objects for the AWS account. + // The list of Certificate objects for the Amazon Web Services account. Certificates []*Certificate `locationNameList:"Certificate" type:"list"` // An optional pagination token provided by a previous DescribeCertificates @@ -26948,7 +27130,7 @@ func (s *DescribeCustomAvailabilityZonesInput) SetMaxRecords(v int64) *DescribeC type DescribeCustomAvailabilityZonesOutput struct { _ struct{} `type:"structure"` - // The list of CustomAvailabilityZone objects for the AWS account. + // The list of CustomAvailabilityZone objects for the Amazon Web Services account. CustomAvailabilityZones []*CustomAvailabilityZone `locationNameList:"CustomAvailabilityZone" type:"list"` // An optional pagination token provided by a previous DescribeCustomAvailabilityZones @@ -27559,9 +27741,9 @@ type DescribeDBClusterSnapshotAttributesOutput struct { // Contains the results of a successful call to the DescribeDBClusterSnapshotAttributes // API action. // - // Manual DB cluster snapshot attributes are used to authorize other AWS accounts - // to copy or restore a manual DB cluster snapshot. For more information, see - // the ModifyDBClusterSnapshotAttribute 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. DBClusterSnapshotAttributesResult *DBClusterSnapshotAttributesResult `type:"structure"` } @@ -27620,19 +27802,21 @@ type DescribeDBClusterSnapshotsInput struct { Filters []*Filter `locationNameList:"Filter" type:"list"` // A value that indicates whether to include manual DB cluster snapshots that - // are public and can be copied or restored by any AWS account. By default, - // the public snapshots are not included. + // 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. IncludePublic *bool `type:"boolean"` // A value that indicates whether to include shared manual DB cluster snapshots - // from other AWS accounts that this AWS account has been given permission to - // copy or restore. By default, these snapshots are not included. + // 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 AWS account permission to restore a manual DB cluster snapshot - // from another AWS account by the ModifyDBClusterSnapshotAttribute API action. + // 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. IncludeShared *bool `type:"boolean"` // An optional pagination token provided by a previous DescribeDBClusterSnapshots @@ -27653,13 +27837,13 @@ type DescribeDBClusterSnapshotsInput struct { // following values: // // * automated - Return all DB cluster snapshots that have been automatically - // taken by Amazon RDS for my AWS account. + // taken by Amazon RDS for my Amazon Web Services account. // // * manual - Return all DB cluster snapshots that have been taken by my - // AWS account. + // Amazon Web Services account. // // * shared - Return all manual DB cluster snapshots that have been shared - // to my AWS account. + // to my Amazon Web Services account. // // * public - Return all DB cluster snapshots that have been marked as public. // @@ -27812,7 +27996,7 @@ type DescribeDBClustersInput struct { Filters []*Filter `locationNameList:"Filter" type:"list"` // Optional Boolean parameter that specifies whether the output includes information - // about clusters shared from other AWS accounts. + // about clusters shared from other Amazon Web Services accounts. IncludeShared *bool `type:"boolean"` // An optional pagination token provided by a previous DescribeDBClusters request. @@ -27954,11 +28138,11 @@ type DescribeDBEngineVersionsInput struct { // // * oracle-ee // - // * oracle-se2 + // * oracle-ee-cdb // - // * oracle-se1 + // * oracle-se2 // - // * oracle-se + // * oracle-se2-cdb // // * postgres // @@ -28878,7 +29062,8 @@ type DescribeDBProxiesInput struct { _ struct{} `type:"structure"` // The name of the DB proxy. If you omit this parameter, the output includes - // information about all DB proxies owned by your AWS account ID. + // information about all DB proxies owned by your Amazon Web Services account + // ID. DBProxyName *string `type:"string"` // This parameter is not currently supported. @@ -29542,9 +29727,9 @@ type DescribeDBSnapshotAttributesOutput struct { // Contains the results of a successful call to the DescribeDBSnapshotAttributes // API action. // - // Manual DB snapshot attributes are used to authorize other AWS accounts to - // copy or restore a manual DB snapshot. For more information, see the ModifyDBSnapshotAttribute - // 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. DBSnapshotAttributesResult *DBSnapshotAttributesResult `type:"structure"` } @@ -29608,19 +29793,21 @@ type DescribeDBSnapshotsInput struct { Filters []*Filter `locationNameList:"Filter" type:"list"` // A value that indicates whether to include manual DB cluster snapshots that - // are public and can be copied or restored by any AWS account. By default, - // the public snapshots are not included. + // 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. IncludePublic *bool `type:"boolean"` // A value that indicates whether to include shared manual DB cluster snapshots - // from other AWS accounts that this AWS account has been given permission to - // copy or restore. By default, these snapshots are not included. + // 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 AWS account permission to restore a manual DB snapshot from - // another AWS account by using the ModifyDBSnapshotAttribute API action. + // 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. IncludeShared *bool `type:"boolean"` // An optional pagination token provided by a previous DescribeDBSnapshots request. @@ -29641,18 +29828,19 @@ type DescribeDBSnapshotsInput struct { // values: // // * automated - Return all DB snapshots that have been automatically taken - // by Amazon RDS for my AWS account. + // by Amazon RDS for my Amazon Web Services account. // - // * manual - Return all DB snapshots that have been taken by my AWS 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 - // AWS account. + // Amazon Web Services account. // // * public - Return all DB snapshots that have been marked as public. // - // * awsbackup - Return the DB snapshots managed by the AWS Backup service. - // For information about AWS Backup, see the AWS Backup Developer Guide. - // (https://docs.aws.amazon.com/aws-backup/latest/devguide/whatisbackup.html) + // * 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. (https://docs.aws.amazon.com/aws-backup/latest/devguide/whatisbackup.html) // The awsbackup type does not apply to Aurora. // // If you don't specify a SnapshotType value, then both automated and manual @@ -30853,7 +31041,7 @@ func (s *DescribeInstallationMediaInput) SetMaxRecords(v int64) *DescribeInstall type DescribeInstallationMediaOutput struct { _ struct{} `type:"structure"` - // The list of InstallationMedia objects for the AWS account. + // The list of InstallationMedia objects for the Amazon Web Services account. InstallationMedia []*InstallationMedia `locationNameList:"InstallationMedia" type:"list"` // An optional pagination token provided by a previous DescribeInstallationMedia @@ -30897,11 +31085,11 @@ type DescribeOptionGroupOptionsInput struct { // // * oracle-ee // - // * oracle-se2 + // * oracle-ee-cdb // - // * oracle-se1 + // * oracle-se2 // - // * oracle-se + // * oracle-se2-cdb // // * postgres // @@ -31049,11 +31237,11 @@ type DescribeOptionGroupsInput struct { // // * oracle-ee // - // * oracle-se2 + // * oracle-ee-cdb // - // * oracle-se1 + // * oracle-se2 // - // * oracle-se + // * oracle-se2-cdb // // * postgres // @@ -31200,8 +31388,8 @@ type DescribeOrderableDBInstanceOptionsInput struct { // The Availability Zone group associated with a Local Zone. Specify this parameter // to retrieve available offerings for the Local Zones in the group. // - // Omit this parameter to show the available offerings in the specified AWS - // Region. + // Omit this parameter to show the available offerings in the specified Amazon + // Web Services Region. AvailabilityZoneGroup *string `type:"string"` // The DB instance class filter value. Specify this parameter to show only the @@ -31224,11 +31412,11 @@ type DescribeOrderableDBInstanceOptionsInput struct { // // * oracle-ee // - // * oracle-se2 + // * oracle-ee-cdb // - // * oracle-se1 + // * oracle-se2 // - // * oracle-se + // * oracle-se2-cdb // // * postgres // @@ -31539,8 +31727,8 @@ type DescribeReservedDBInstancesInput struct { // The lease identifier filter value. Specify this parameter to show only the // reservation that matches the specified lease ID. // - // AWS Support might request the lease ID for an issue related to a reserved - // DB instance. + // Amazon Web Services Support might request the lease ID for an issue related + // to a reserved DB instance. LeaseId *string `type:"string"` // An optional pagination token provided by a previous request. If this parameter @@ -31905,11 +32093,11 @@ type DescribeSourceRegionsInput struct { // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` - // The source AWS Region name. For example, us-east-1. + // The source Amazon Web Services Region name. For example, us-east-1. // // Constraints: // - // * Must specify a valid AWS Region name. + // * Must specify a valid Amazon Web Services Region name. RegionName *string `type:"string"` } @@ -31977,8 +32165,9 @@ type DescribeSourceRegionsOutput struct { // the value specified by MaxRecords. Marker *string `type:"string"` - // A list of SourceRegion instances that contains each source AWS Region that - // the current AWS Region can get a read replica or a DB snapshot from. + // 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. SourceRegions []*SourceRegion `locationNameList:"SourceRegion" type:"list"` } @@ -32310,8 +32499,8 @@ type EC2SecurityGroup struct { // Specifies the name of the EC2 security group. EC2SecurityGroupName *string `type:"string"` - // Specifies the AWS ID of the owner of the EC2 security group specified in - // the EC2SecurityGroupName field. + // Specifies the Amazon Web Services ID of the owner of the EC2 security group + // specified in the EC2SecurityGroupName field. EC2SecurityGroupOwnerId *string `type:"string"` // Provides the status of the EC2 security group. Status can be "authorizing", @@ -32563,7 +32752,8 @@ type EventSubscription struct { // The RDS event notification subscription Id. CustSubscriptionId *string `type:"string"` - // The AWS customer account associated with the RDS event notification subscription. + // The Amazon Web Services customer account associated with the RDS event notification + // subscription. CustomerAwsId *string `type:"string"` // A Boolean value indicating if the subscription is enabled. True indicates @@ -32702,11 +32892,11 @@ type ExportTask struct { // a snapshot. IamRoleArn *string `type:"string"` - // The key identifier of the AWS KMS customer master key (CMK) that is used - // to encrypt the snapshot when it's exported to Amazon S3. The AWS KMS CMK - // identifier is its key ARN, key ID, alias ARN, or alias name. The IAM role - // used for the snapshot export must have encryption and decryption permissions - // to use this AWS KMS CMK. + // The key identifier of the Amazon Web Services KMS customer master key (CMK) + // that is used to encrypt the snapshot when it's exported to Amazon S3. The + // Amazon Web Services KMS CMK identifier is its key ARN, key ID, alias ARN, + // or alias name. The IAM role used for the snapshot export must have encryption + // and decryption permissions to use this Amazon Web Services KMS CMK. KmsKeyId *string `type:"string"` // The progress of the snapshot export task as a percentage. @@ -32940,7 +33130,7 @@ type FailoverGlobalClusterInput struct { // Identifier of the secondary Aurora DB cluster that you want to promote to // primary for the Aurora global database (GlobalCluster.) Use the Amazon Resource // Name (ARN) for the identifier so that Aurora can locate the cluster in its - // AWS Region. + // Amazon Web Services Region. // // TargetDbClusterIdentifier is a required field TargetDbClusterIdentifier *string `min:"1" type:"string" required:"true"` @@ -33177,9 +33367,10 @@ type GlobalCluster struct { // cluster. Currently limited to 1 item. GlobalClusterMembers []*GlobalClusterMember `locationNameList:"GlobalClusterMember" type:"list"` - // The AWS Region-unique, immutable identifier for the global database cluster. - // This identifier is found in AWS CloudTrail log entries whenever the AWS KMS - // customer master key (CMK) for the DB cluster is accessed. + // 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 customer master key (CMK) + // for the DB cluster is accessed. GlobalClusterResourceId *string `type:"string"` // Specifies the current state of this global database cluster. @@ -33805,7 +33996,7 @@ type ModifyCertificatesInput struct { // The new default certificate identifier to override the current one with. // - // To determine the valid values, use the describe-certificates AWS CLI command + // To determine the valid values, use the describe-certificates CLI command // or the DescribeCertificates API operation. CertificateIdentifier *string `type:"string"` @@ -33839,7 +34030,7 @@ func (s *ModifyCertificatesInput) SetRemoveCustomerOverride(v bool) *ModifyCerti type ModifyCertificatesOutput struct { _ struct{} `type:"structure"` - // A CA certificate for an AWS account. + // A CA certificate for an Amazon Web Services account. Certificate *Certificate `type:"structure"` } @@ -34334,8 +34525,9 @@ type ModifyDBClusterInput struct { // in the Amazon Aurora User Guide. EnableHttpEndpoint *bool `type:"boolean"` - // A value that indicates whether to enable mapping of AWS Identity and Access - // Management (IAM) accounts to database accounts. By default, mapping is disabled. + // A value that indicates 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, see IAM Database Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html) // in the Amazon Aurora User Guide. @@ -34404,8 +34596,8 @@ type ModifyDBClusterInput struct { // backups are enabled, using the BackupRetentionPeriod parameter. // // The default is a 30-minute window selected at random from an 8-hour block - // of time for each AWS Region. To view the time blocks available, see Backup - // window (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow) + // of time for each Amazon Web Services Region. To view the time blocks available, + // see Backup window (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow) // in the Amazon Aurora User Guide. // // Constraints: @@ -34425,9 +34617,9 @@ type ModifyDBClusterInput struct { // 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 AWS Region, occurring on a random day of the week. To see - // the time blocks available, see Adjusting the Preferred DB Cluster Maintenance - // Window (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora) + // 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 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora) // in the Amazon Aurora User Guide. // // Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. @@ -34646,6 +34838,17 @@ type ModifyDBClusterParameterGroupInput struct { // 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. + // // Parameters is a required field Parameters []*Parameter `locationNameList:"Parameter" type:"list" required:"true"` } @@ -34693,8 +34896,8 @@ type ModifyDBClusterSnapshotAttributeInput struct { // The name of the DB cluster snapshot attribute to modify. // - // To manage authorization for other AWS accounts to copy or restore a manual - // DB cluster snapshot, set this value to restore. + // 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 action. @@ -34710,22 +34913,24 @@ type ModifyDBClusterSnapshotAttributeInput struct { // A list of DB cluster snapshot attributes to add to the attribute specified // by AttributeName. // - // To authorize other AWS accounts to copy or restore a manual DB cluster snapshot, - // set this list to include one or more AWS account IDs, or all to make the - // manual DB cluster snapshot restorable by any AWS 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 AWS accounts. + // 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. ValuesToAdd []*string `locationNameList:"AttributeValue" type:"list"` // A list of DB cluster snapshot attributes to remove from the attribute specified // by AttributeName. // - // To remove authorization for other AWS accounts to copy or restore a manual - // DB cluster snapshot, set this list to include one or more AWS account identifiers, - // or all to remove authorization for any AWS account to copy or restore the - // DB cluster snapshot. If you specify all, an AWS account whose account ID - // is explicitly added to the restore attribute can still copy or restore a - // manual DB cluster snapshot. + // 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. ValuesToRemove []*string `locationNameList:"AttributeValue" type:"list"` } @@ -34785,9 +34990,9 @@ type ModifyDBClusterSnapshotAttributeOutput struct { // Contains the results of a successful call to the DescribeDBClusterSnapshotAttributes // API action. // - // Manual DB cluster snapshot attributes are used to authorize other AWS accounts - // to copy or restore a manual DB cluster snapshot. For more information, see - // the ModifyDBClusterSnapshotAttribute 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. DBClusterSnapshotAttributesResult *DBClusterSnapshotAttributesResult `type:"structure"` } @@ -34851,7 +35056,8 @@ type ModifyDBInstanceInput struct { // and RDS has enabled auto patching for that engine version. AutoMinorVersionUpgrade *bool `type:"boolean"` - // The Amazon Resource Name (ARN) of the recovery point in AWS Backup. + // The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services + // Backup. AwsBackupRecoveryPointArn *string `min:"43" type:"string"` // The number of days to retain automated backups. Setting this parameter to @@ -34930,9 +35136,9 @@ type ModifyDBInstanceInput struct { CopyTagsToSnapshot *bool `type:"boolean"` // The new compute and memory capacity of the DB instance, for example, db.m4.large. - // Not all DB instance classes are available in all AWS Regions, or for all - // database engines. For the full list of DB instance classes, and availability - // for your engine, see DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html) + // 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 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html) // in the Amazon RDS User Guide. // // If you modify the DB instance class, an outage occurs during the change. @@ -35062,18 +35268,19 @@ type ModifyDBInstanceInput struct { // its virtual private cloud (VPC) on your local network. // // For more information about RDS on Outposts, see Working with Amazon RDS on - // AWS Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) + // Amazon Web Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) // in the Amazon RDS User Guide. // // For more information about CoIPs, see Customer-owned IP addresses (https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing) - // in the AWS Outposts User Guide. + // in the Amazon Web Services Outposts User Guide. EnableCustomerOwnedIp *bool `type:"boolean"` - // A value that indicates whether to enable mapping of AWS Identity and Access - // Management (IAM) accounts to database accounts. By default, mapping is disabled. + // A value that indicates whether to enable mapping of Amazon Web Services Identity + // and Access Management (IAM) accounts to database accounts. By default, mapping + // is disabled. // - // This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts to - // database accounts is managed by the DB cluster. + // 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 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html) @@ -35240,14 +35447,16 @@ type ModifyDBInstanceInput struct { // from a DB instance once it is associated with a DB instance OptionGroupName *string `type:"string"` - // The AWS KMS key identifier for encryption of Performance Insights data. + // The Amazon Web Services KMS key identifier for encryption of Performance + // Insights data. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). // // If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon - // RDS uses your default CMK. There is a default CMK for your AWS account. Your - // AWS account has a different default CMK for each AWS Region. + // RDS uses your default CMK. There is a default CMK for your Amazon Web Services + // account. Your Amazon Web Services account has a different default CMK for + // each Amazon Web Services Region. PerformanceInsightsKMSKeyId *string `type:"string"` // The amount of time, in days, to retain Performance Insights data. Valid values @@ -35258,8 +35467,8 @@ type ModifyDBInstanceInput struct { // 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 AWS Region. For more information, - // see Backup window (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow) + // random from an 8-hour block of time for each Amazon Web Services Region. + // For more information, see Backup window (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow) // in the Amazon RDS User Guide. // // Amazon Aurora @@ -35728,16 +35937,21 @@ type ModifyDBParameterGroupInput struct { // DBParameterGroupName is a required field DBParameterGroupName *string `type:"string" required:"true"` - // An array of parameter names, values, and the apply method for the parameter - // update. At least one parameter name, value, and apply method must be supplied; - // later arguments are optional. A maximum of 20 parameters can be modified - // in a single request. + // An array of parameter names, values, and the application methods for the + // parameter update. At least one parameter name, value, and application method + // 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, and changes - // are applied when you reboot the DB instance without failover. + // 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. // // Parameters is a required field Parameters []*Parameter `locationNameList:"Parameter" type:"list" required:"true"` @@ -35908,7 +36122,7 @@ type ModifyDBProxyInput struct { RequireTLS *bool `type:"boolean"` // The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access - // secrets in AWS Secrets Manager. + // secrets in Amazon Web Services Secrets Manager. RoleArn *string `type:"string"` // The new list of security groups for the DBProxy. @@ -36110,8 +36324,8 @@ type ModifyDBSnapshotAttributeInput struct { // The name of the DB snapshot attribute to modify. // - // To manage authorization for other AWS accounts to copy or restore a manual - // DB snapshot, set this value to restore. + // 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 action. @@ -36126,21 +36340,23 @@ type ModifyDBSnapshotAttributeInput struct { // A list of DB snapshot attributes to add to the attribute specified by AttributeName. // - // To authorize other AWS accounts to copy or restore a manual snapshot, set - // this list to include one or more AWS account IDs, or all to make the manual - // DB snapshot restorable by any AWS account. Do not add the all value for any - // manual DB snapshots that contain private information that you don't want - // available to all AWS accounts. + // 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. ValuesToAdd []*string `locationNameList:"AttributeValue" type:"list"` // A list of DB snapshot attributes to remove from the attribute specified by // AttributeName. // - // To remove authorization for other AWS accounts to copy or restore a manual - // snapshot, set this list to include one or more AWS account identifiers, or - // all to remove authorization for any AWS account to copy or restore the DB - // snapshot. If you specify all, an AWS account whose account ID is explicitly - // added to the restore attribute can still copy or restore the manual DB snapshot. + // 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. ValuesToRemove []*string `locationNameList:"AttributeValue" type:"list"` } @@ -36200,9 +36416,9 @@ type ModifyDBSnapshotAttributeOutput struct { // Contains the results of a successful call to the DescribeDBSnapshotAttributes // API action. // - // Manual DB snapshot attributes are used to authorize other AWS accounts to - // copy or restore a manual DB snapshot. For more information, see the ModifyDBSnapshotAttribute - // 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. DBSnapshotAttributesResult *DBSnapshotAttributesResult `type:"structure"` } @@ -37517,8 +37733,8 @@ type OrderableDBInstanceOption struct { // Whether a DB instance supports RDS on Outposts. // - // For more information about RDS on Outposts, see Amazon RDS on AWS Outposts - // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) + // For more information about RDS on Outposts, see Amazon RDS on Amazon Web + // Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) // in the Amazon RDS User Guide. OutpostCapable *bool `type:"boolean"` @@ -37528,6 +37744,12 @@ type OrderableDBInstanceOption struct { // Indicates the storage type for a DB instance. StorageType *string `type:"string"` + // 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. + SupportedActivityStreamModes []*string `type:"list"` + // A list of the supported DB engine modes. SupportedEngineModes []*string `type:"list"` @@ -37674,6 +37896,12 @@ func (s *OrderableDBInstanceOption) SetStorageType(v string) *OrderableDBInstanc return s } +// SetSupportedActivityStreamModes sets the SupportedActivityStreamModes field's value. +func (s *OrderableDBInstanceOption) SetSupportedActivityStreamModes(v []*string) *OrderableDBInstanceOption { + s.SupportedActivityStreamModes = v + return s +} + // SetSupportedEngineModes sets the SupportedEngineModes field's value. func (s *OrderableDBInstanceOption) SetSupportedEngineModes(v []*string) *OrderableDBInstanceOption { s.SupportedEngineModes = v @@ -37736,8 +37964,8 @@ func (s *OrderableDBInstanceOption) SetVpc(v bool) *OrderableDBInstanceOption { // A data type that represents an Outpost. // -// For more information about RDS on Outposts, see Amazon RDS on AWS Outposts -// (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) +// For more information about RDS on Outposts, see Amazon RDS on Amazon Web +// Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) // in the Amazon RDS User Guide. type Outpost struct { _ struct{} `type:"structure"` @@ -38025,8 +38253,8 @@ type PendingModifiedValues struct { // The database engine version. EngineVersion *string `type:"string"` - // Whether mapping of AWS Identity and Access Management (IAM) accounts to database - // accounts is enabled. + // Whether mapping of Amazon Web Services Identity and Access Management (IAM) + // accounts to database accounts is enabled. IAMDatabaseAuthenticationEnabled *bool `type:"boolean"` // The Provisioned IOPS value for the DB instance. @@ -38344,8 +38572,8 @@ type PromoteReadReplicaInput struct { // backups are enabled, using the BackupRetentionPeriod parameter. // // The default is a 30-minute window selected at random from an 8-hour block - // of time for each AWS Region. To see the time blocks available, see Adjusting - // the Preferred Maintenance Window (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html) + // of time for each Amazon Web Services Region. To see the time blocks available, + // see Adjusting the Preferred Maintenance Window (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html) // in the Amazon RDS User Guide. // // Constraints: @@ -39154,8 +39382,8 @@ type ReservedDBInstance struct { // The unique identifier for the lease associated with the reserved DB instance. // - // AWS Support might request the lease ID for an issue related to a reserved - // DB instance. + // Amazon Web Services Support might request the lease ID for an issue related + // to a reserved DB instance. LeaseId *string `type:"string"` // Indicates if the reservation applies to Multi-AZ deployments. @@ -39676,8 +39904,9 @@ type RestoreDBClusterFromS3Input struct { // in the Amazon Aurora User Guide. EnableCloudwatchLogsExports []*string `type:"list"` - // A value that indicates whether to enable mapping of AWS Identity and Access - // Management (IAM) accounts to database accounts. By default, mapping is disabled. + // A value that indicates 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, see IAM Database Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html) // in the Amazon Aurora User Guide. @@ -39717,16 +39946,17 @@ type RestoreDBClusterFromS3Input struct { // Example: 9.6.3, 10.7 EngineVersion *string `type:"string"` - // The AWS KMS key identifier for an encrypted DB cluster. + // The Amazon Web Services KMS key identifier for an encrypted DB cluster. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). To use a CMK in a different AWS - // account, specify the key ARN or alias ARN. + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). + // To use a CMK 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 CMK. There - // is a default CMK for your AWS account. Your AWS account has a different default - // CMK for each AWS Region. + // is a default CMK for your Amazon Web Services account. Your Amazon Web Services + // account has a different default CMK for each Amazon Web Services Region. KmsKeyId *string `type:"string"` // The password for the master database user. This password can contain any @@ -39767,8 +39997,8 @@ type RestoreDBClusterFromS3Input struct { // backups are enabled using the BackupRetentionPeriod parameter. // // The default is a 30-minute window selected at random from an 8-hour block - // of time for each AWS Region. To view the time blocks available, see Backup - // window (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow) + // of time for each Amazon Web Services Region. To view the time blocks available, + // see Backup window (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow) // in the Amazon Aurora User Guide. // // Constraints: @@ -39788,9 +40018,9 @@ type RestoreDBClusterFromS3Input struct { // 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 AWS Region, occurring on a random day of the week. To see - // the time blocks available, see Adjusting the Preferred Maintenance Window - // (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora) + // 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 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora) // in the Amazon Aurora User Guide. // // Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. @@ -39804,9 +40034,9 @@ type RestoreDBClusterFromS3Input struct { // S3BucketName is a required field S3BucketName *string `type:"string" required:"true"` - // The Amazon Resource Name (ARN) of the AWS Identity and Access Management - // (IAM) role that authorizes Amazon RDS to access the Amazon S3 bucket on your - // behalf. + // 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. // // S3IngestionRoleArn is a required field S3IngestionRoleArn *string `type:"string" required:"true"` @@ -40191,8 +40421,9 @@ type RestoreDBClusterFromSnapshotInput struct { // in the Amazon Aurora User Guide. EnableCloudwatchLogsExports []*string `type:"list"` - // A value that indicates whether to enable mapping of AWS Identity and Access - // Management (IAM) accounts to database accounts. By default, mapping is disabled. + // A value that indicates 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, see IAM Database Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html) // in the Amazon Aurora User Guide. @@ -40242,19 +40473,20 @@ type RestoreDBClusterFromSnapshotInput struct { // Example: 9.6.3, 10.7 EngineVersion *string `type:"string"` - // The AWS 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 to use when restoring an encrypted + // DB cluster from a DB snapshot or DB cluster snapshot. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). To use a CMK in a different AWS - // account, specify the key ARN or alias ARN. + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). + // To use a CMK 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 AWS KMS CMK that was - // used to encrypt the DB snapshot or DB cluster snapshot. + // then the restored DB cluster is encrypted using the Amazon Web Services + // KMS CMK 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. @@ -40561,8 +40793,9 @@ type RestoreDBClusterToPointInTimeInput struct { // in the Amazon Aurora User Guide. EnableCloudwatchLogsExports []*string `type:"list"` - // A value that indicates whether to enable mapping of AWS Identity and Access - // Management (IAM) accounts to database accounts. By default, mapping is disabled. + // A value that indicates 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, see IAM Database Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html) // in the Amazon Aurora User Guide. @@ -40576,23 +40809,25 @@ type RestoreDBClusterToPointInTimeInput struct { // cluster. EngineMode *string `type:"string"` - // The AWS KMS key identifier to use when restoring an encrypted DB cluster - // from an encrypted DB cluster. + // The Amazon Web Services KMS key identifier to use when restoring an encrypted + // DB cluster from an encrypted DB cluster. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). To use a CMK in a different AWS - // account, specify the key ARN or alias ARN. + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). + // To use a CMK 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 - // AWS KMS CMK that is different than the AWS KMS key used to encrypt the source - // DB cluster. The new DB cluster is encrypted with the AWS KMS CMK identified - // by the KmsKeyId parameter. + // Amazon Web Services KMS CMK that is different than the Amazon Web Services + // KMS key used to encrypt the source DB cluster. The new DB cluster is encrypted + // with the Amazon Web Services KMS CMK 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 AWS KMS CMK that was used to encrypt the source DB cluster. + // using the Amazon Web Services KMS CMK that was used to encrypt the source + // DB cluster. // // * If the DB cluster isn't encrypted, then the restored DB cluster isn't // encrypted. @@ -40872,9 +41107,9 @@ type RestoreDBInstanceFromDBSnapshotInput struct { CopyTagsToSnapshot *bool `type:"boolean"` // 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 AWS Regions, - // or for all database engines. For the full list of DB instance classes, and - // availability for your engine, see DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html) + // 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 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html) // in the Amazon RDS User Guide. // // Default: The same DBInstanceClass as the original DB instance. @@ -40970,15 +41205,16 @@ type RestoreDBInstanceFromDBSnapshotInput struct { // its virtual private cloud (VPC) on your local network. // // For more information about RDS on Outposts, see Working with Amazon RDS on - // AWS Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) + // Amazon Web Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) // in the Amazon RDS User Guide. // // For more information about CoIPs, see Customer-owned IP addresses (https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing) - // in the AWS Outposts User Guide. + // in the Amazon Web Services Outposts User Guide. EnableCustomerOwnedIp *bool `type:"boolean"` - // A value that indicates whether to enable mapping of AWS Identity and Access - // Management (IAM) accounts to database accounts. By default, mapping is disabled. + // A value that indicates 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 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html) @@ -41000,11 +41236,11 @@ type RestoreDBInstanceFromDBSnapshotInput struct { // // * oracle-ee // - // * oracle-se2 + // * oracle-ee-cdb // - // * oracle-se1 + // * oracle-se2 // - // * oracle-se + // * oracle-se2-cdb // // * postgres // @@ -41350,18 +41586,18 @@ type RestoreDBInstanceFromS3Input struct { AutoMinorVersionUpgrade *bool `type:"boolean"` // The Availability Zone that the DB instance is created in. For information - // about AWS Regions and Availability Zones, see Regions and Availability Zones - // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html) + // about Amazon Web Services Regions and Availability Zones, see Regions and + // Availability Zones (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html) // in the Amazon RDS User Guide. // - // Default: A random, system-chosen Availability Zone in the endpoint's AWS - // Region. + // 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 AWS Region as the current endpoint. + // same Amazon Web Services Region as the current endpoint. AvailabilityZone *string `type:"string"` // The number of days for which automated backups are retained. Setting this @@ -41374,9 +41610,9 @@ type RestoreDBInstanceFromS3Input struct { CopyTagsToSnapshot *bool `type:"boolean"` // The compute and memory capacity of the DB instance, for example, db.m4.large. - // Not all DB instance classes are available in all AWS Regions, or for all - // database engines. For the full list of DB instance classes, and availability - // for your engine, see DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html) + // 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 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html) // in the Amazon RDS User Guide. // // Importing from Amazon S3 isn't supported on the db.t2.micro DB instance class. @@ -41429,8 +41665,9 @@ type RestoreDBInstanceFromS3Input struct { // in the Amazon RDS User Guide. EnableCloudwatchLogsExports []*string `type:"list"` - // A value that indicates whether to enable mapping of AWS Identity and Access - // Management (IAM) accounts to database accounts. By default, mapping is disabled. + // A value that indicates 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 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html) @@ -41462,16 +41699,17 @@ type RestoreDBInstanceFromS3Input struct { // in the Amazon RDS User Guide. Iops *int64 `type:"integer"` - // The AWS KMS key identifier for an encrypted DB instance. + // The Amazon Web Services KMS key identifier for an encrypted DB instance. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). To use a CMK in a different AWS - // account, specify the key ARN or alias ARN. + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). + // To use a CMK 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 CMK. There - // is a default CMK for your AWS account. Your AWS account has a different default - // CMK for each AWS Region. + // is a default CMK for your Amazon Web Services account. Your Amazon Web Services + // account has a different default CMK for each Amazon Web Services Region. KmsKeyId *string `type:"string"` // The license model for this DB instance. Use general-public-license. @@ -41535,14 +41773,16 @@ type RestoreDBInstanceFromS3Input struct { // used. OptionGroupName *string `type:"string"` - // The AWS KMS key identifier for encryption of Performance Insights data. + // The Amazon Web Services KMS key identifier for encryption of Performance + // Insights data. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). // // If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon - // RDS uses your default CMK. There is a default CMK for your AWS account. Your - // AWS account has a different default CMK for each AWS Region. + // RDS uses your default CMK. There is a default CMK for your Amazon Web Services + // account. Your Amazon Web Services account has a different default CMK for + // each Amazon Web Services Region. PerformanceInsightsKMSKeyId *string `type:"string"` // The amount of time, in days, to retain Performance Insights data. Valid values @@ -41615,8 +41855,8 @@ type RestoreDBInstanceFromS3Input struct { // S3BucketName is a required field S3BucketName *string `type:"string" required:"true"` - // An AWS Identity and Access Management (IAM) role to allow Amazon RDS to access - // your Amazon S3 bucket. + // An Amazon Web Services Identity and Access Management (IAM) role to allow + // Amazon RDS to access your Amazon S3 bucket. // // S3IngestionRoleArn is a required field S3IngestionRoleArn *string `type:"string" required:"true"` @@ -42017,9 +42257,9 @@ type RestoreDBInstanceToPointInTimeInput struct { CopyTagsToSnapshot *bool `type:"boolean"` // 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 AWS Regions, - // or for all database engines. For the full list of DB instance classes, and - // availability for your engine, see DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html) + // 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 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html) // in the Amazon RDS User Guide. // // Default: The same DBInstanceClass as the original DB instance. @@ -42087,15 +42327,16 @@ type RestoreDBInstanceToPointInTimeInput struct { // its virtual private cloud (VPC) on your local network. // // For more information about RDS on Outposts, see Working with Amazon RDS on - // AWS Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) + // Amazon Web Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) // in the Amazon RDS User Guide. // // For more information about CoIPs, see Customer-owned IP addresses (https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing) - // in the AWS Outposts User Guide. + // in the Amazon Web Services Outposts User Guide. EnableCustomerOwnedIp *bool `type:"boolean"` - // A value that indicates whether to enable mapping of AWS Identity and Access - // Management (IAM) accounts to database accounts. By default, mapping is disabled. + // A value that indicates 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 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html) @@ -42116,11 +42357,11 @@ type RestoreDBInstanceToPointInTimeInput struct { // // * oracle-ee // - // * oracle-se2 + // * oracle-ee-cdb // - // * oracle-se1 + // * oracle-se2 // - // * oracle-se + // * oracle-se2-cdb // // * postgres // @@ -42583,11 +42824,11 @@ type RevokeDBSecurityGroupIngressInput struct { // and either EC2SecurityGroupName or EC2SecurityGroupId must be provided. EC2SecurityGroupName *string `type:"string"` - // The AWS account number of the owner of the EC2 security group specified in - // the EC2SecurityGroupName parameter. The AWS 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. + // 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. EC2SecurityGroupOwnerId *string `type:"string"` } @@ -42709,6 +42950,8 @@ type ScalingConfiguration struct { MinCapacity *int64 `type:"integer"` // The time, in seconds, before an Aurora DB cluster in serverless mode is paused. + // + // Specify a value between 300 and 86,400 seconds. SecondsUntilAutoPause *int64 `type:"integer"` // The action to take when the timeout is reached, either ForceApplyCapacityChange @@ -42839,22 +43082,22 @@ func (s *ScalingConfigurationInfo) SetTimeoutAction(v string) *ScalingConfigurat return s } -// Contains an AWS Region name as the result of a successful call to the DescribeSourceRegions -// action. +// Contains an Amazon Web Services Region name as the result of a successful +// call to the DescribeSourceRegions action. type SourceRegion struct { _ struct{} `type:"structure"` - // The endpoint for the source AWS Region endpoint. + // The endpoint for the source Amazon Web Services Region endpoint. Endpoint *string `type:"string"` - // The name of the source AWS Region. + // The name of the source Amazon Web Services Region. RegionName *string `type:"string"` - // The status of the source AWS Region. + // The status of the source Amazon Web Services Region. Status *string `type:"string"` - // Whether the source AWS Region supports replicating automated backups to the - // current AWS Region. + // Whether the source Amazon Web Services Region supports replicating automated + // backups to the current Amazon Web Services Region. SupportsDBInstanceAutomatedBackupsReplication *bool `type:"boolean"` } @@ -42899,9 +43142,15 @@ type StartActivityStreamInput struct { // as possible, regardless of the maintenance window for the database. ApplyImmediately *bool `type:"boolean"` - // The AWS KMS key identifier for encrypting messages in the database activity - // stream. The AWS KMS key identifier is the key ARN, key ID, alias ARN, or - // alias name for the AWS KMS customer master key (CMK). + // Specifies whether the database activity stream includes engine-native audit + // fields. This option only applies to an Oracle DB instance. By default, no + // engine-native audit fields are included. + EngineNativeAuditFieldsIncluded *bool `type:"boolean"` + + // 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 Amazon Web Services KMS + // customer master key (CMK). // // KmsKeyId is a required field KmsKeyId *string `type:"string" required:"true"` @@ -42954,6 +43203,12 @@ func (s *StartActivityStreamInput) SetApplyImmediately(v bool) *StartActivityStr return s } +// SetEngineNativeAuditFieldsIncluded sets the EngineNativeAuditFieldsIncluded field's value. +func (s *StartActivityStreamInput) SetEngineNativeAuditFieldsIncluded(v bool) *StartActivityStreamInput { + s.EngineNativeAuditFieldsIncluded = &v + return s +} + // SetKmsKeyId sets the KmsKeyId field's value. func (s *StartActivityStreamInput) SetKmsKeyId(v string) *StartActivityStreamInput { s.KmsKeyId = &v @@ -42979,12 +43234,16 @@ type StartActivityStreamOutput struct { // as possible, regardless of the maintenance window for the database. ApplyImmediately *bool `type:"boolean"` + // Indicates whether engine-native audit fields are included in the database + // activity stream. + EngineNativeAuditFieldsIncluded *bool `type:"boolean"` + // The name of the Amazon Kinesis data stream to be used for the database activity // stream. KinesisStreamName *string `type:"string"` - // The AWS KMS key identifier for encryption of messages in the database activity - // stream. + // The Amazon Web Services KMS key identifier for encryption of messages in + // the database activity stream. KmsKeyId *string `type:"string"` // The mode of the database activity stream. @@ -43010,6 +43269,12 @@ func (s *StartActivityStreamOutput) SetApplyImmediately(v bool) *StartActivitySt return s } +// SetEngineNativeAuditFieldsIncluded sets the EngineNativeAuditFieldsIncluded field's value. +func (s *StartActivityStreamOutput) SetEngineNativeAuditFieldsIncluded(v bool) *StartActivityStreamOutput { + s.EngineNativeAuditFieldsIncluded = &v + return s +} + // SetKinesisStreamName sets the KinesisStreamName field's value. func (s *StartActivityStreamOutput) SetKinesisStreamName(v string) *StartActivityStreamOutput { s.KinesisStreamName = &v @@ -43108,16 +43373,17 @@ type StartDBInstanceAutomatedBackupsReplicationInput struct { // DestinationRegion is used for presigning the request to a given region. DestinationRegion *string `type:"string"` - // The AWS 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 AWS Region, for example, arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE. + // 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. KmsKeyId *string `type:"string"` // A URL that contains a Signature Version 4 signed request for the StartDBInstanceAutomatedBackupsReplication - // action to be called in the AWS Region of the source DB instance. The presigned - // URL must be a valid request for the StartDBInstanceAutomatedBackupsReplication - // API action that can be executed in the AWS Region that contains the source - // DB instance. + // action to be called in the Amazon Web Services Region of the source DB instance. + // The presigned URL must be a valid request for the StartDBInstanceAutomatedBackupsReplication + // API action that can be executed in the Amazon Web Services Region that contains + // the source DB instance. PreSignedUrl *string `type:"string"` // The Amazon Resource Name (ARN) of the source DB instance for the replicated @@ -43309,11 +43575,12 @@ type StartExportTaskInput struct { // IamRoleArn is a required field IamRoleArn *string `type:"string" required:"true"` - // The ID of the AWS KMS customer master key (CMK) to use to encrypt the snapshot - // exported to Amazon S3. The AWS KMS key identifier is the key ARN, key ID, - // alias ARN, or alias name for the AWS KMS customer master key (CMK). The caller - // of this operation must be authorized to execute the following operations. - // These can be set in the AWS KMS key policy: + // The ID of the Amazon Web Services KMS customer master key (CMK) to use to + // encrypt the snapshot exported to Amazon S3. The Amazon Web Services KMS key + // identifier is the key ARN, key ID, alias ARN, or alias name for the Amazon + // Web Services KMS customer master key (CMK). The caller of this operation + // must be authorized to execute the following operations. These can be set + // in the Amazon Web Services KMS key policy: // // * GrantOperation.Encrypt // @@ -43459,11 +43726,11 @@ type StartExportTaskOutput struct { // a snapshot. IamRoleArn *string `type:"string"` - // The key identifier of the AWS KMS customer master key (CMK) that is used - // to encrypt the snapshot when it's exported to Amazon S3. The AWS KMS CMK - // identifier is its key ARN, key ID, alias ARN, or alias name. The IAM role - // used for the snapshot export must have encryption and decryption permissions - // to use this AWS KMS CMK. + // The key identifier of the Amazon Web Services KMS customer master key (CMK) + // that is used to encrypt the snapshot when it's exported to Amazon S3. The + // Amazon Web Services KMS CMK identifier is its key ARN, key ID, alias ARN, + // or alias name. The IAM role used for the snapshot export must have encryption + // and decryption permissions to use this Amazon Web Services KMS CMK. KmsKeyId *string `type:"string"` // The progress of the snapshot export task as a percentage. @@ -43654,11 +43921,11 @@ type StopActivityStreamOutput struct { // stream. KinesisStreamName *string `type:"string"` - // The AWS KMS key identifier used for encrypting messages in the database activity - // stream. + // The Amazon Web Services KMS key identifier used for encrypting messages in + // the database activity stream. // - // The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name - // for the AWS KMS customer master key (CMK). + // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias + // ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). KmsKeyId *string `type:"string"` // The status of the database activity stream. @@ -43911,8 +44178,8 @@ type Subnet struct { // If the subnet is associated with an Outpost, this value specifies the Outpost. // - // For more information about RDS on Outposts, see Amazon RDS on AWS Outposts - // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) + // For more information about RDS on Outposts, see Amazon RDS on Amazon Web + // Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) // in the Amazon RDS User Guide. SubnetOutpost *Outpost `type:"structure"` @@ -43959,15 +44226,15 @@ type Tag struct { _ struct{} `type:"structure"` // 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:". + // 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}_.:/=+\\-@]*)$"). Key *string `type:"string"` // 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}_.:/=+\\-@]*)$"). + // 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}_.:/=+\\-@]*)$"). Value *string `type:"string"` } @@ -44170,8 +44437,8 @@ type UserAuthConfig struct { // log in as a specific database user. Description *string `type:"string"` - // Whether to require or disallow AWS Identity and Access Management (IAM) authentication - // for connections to the proxy. + // Whether to require or disallow Amazon Web Services Identity and Access Management + // (IAM) authentication for connections to the proxy. IAMAuth *string `type:"string" enum:"IAMAuthMode"` // The Amazon Resource Name (ARN) representing the secret that the proxy uses @@ -44236,8 +44503,8 @@ type UserAuthConfigInfo struct { // log in as a specific database user. Description *string `type:"string"` - // Whether to require or disallow AWS Identity and Access Management (IAM) authentication - // for connections to the proxy. + // Whether to require or disallow Amazon Web Services Identity and Access Management + // (IAM) authentication for connections to the proxy. IAMAuth *string `type:"string" enum:"IAMAuthMode"` // The Amazon Resource Name (ARN) representing the secret that the proxy uses @@ -44424,14 +44691,15 @@ func (s *VpcSecurityGroupMembership) SetVpcSecurityGroupId(v string) *VpcSecurit } // Information about the virtual private network (VPN) between the VMware vSphere -// cluster and the AWS website. +// cluster and the Amazon Web Services website. // // For more information about RDS on VMware, see the RDS on VMware User Guide. // (https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html) type VpnDetails struct { _ struct{} `type:"structure"` - // The IP address of network traffic from AWS to your on-premises data center. + // The IP address of network traffic from Amazon Web Services to your on-premises + // data center. VpnGatewayIp *string `type:"string"` // The ID of the VPN. diff --git a/service/rds/errors.go b/service/rds/errors.go index c2d315c3677..30527f3be69 100644 --- a/service/rds/errors.go +++ b/service/rds/errors.go @@ -183,8 +183,8 @@ const ( // ErrCodeDBInstanceRoleQuotaExceededFault for service response error code // "DBInstanceRoleQuotaExceeded". // - // You can't associate any more AWS Identity and Access Management (IAM) roles - // with the DB instance because the quota has been reached. + // 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. ErrCodeDBInstanceRoleQuotaExceededFault = "DBInstanceRoleQuotaExceeded" // ErrCodeDBLogFileNotFoundFault for service response error code @@ -215,15 +215,16 @@ const ( // ErrCodeDBProxyAlreadyExistsFault for service response error code // "DBProxyAlreadyExistsFault". // - // The specified proxy name must be unique for all proxies owned by your AWS - // account in the specified AWS Region. + // The specified proxy name must be unique for all proxies owned by your Amazon + // Web Services account in the specified Amazon Web Services Region. ErrCodeDBProxyAlreadyExistsFault = "DBProxyAlreadyExistsFault" // ErrCodeDBProxyEndpointAlreadyExistsFault for service response error code // "DBProxyEndpointAlreadyExistsFault". // // The specified DB proxy endpoint name must be unique for all DB proxy endpoints - // owned by your AWS account in the specified AWS Region. + // owned by your Amazon Web Services account in the specified Amazon Web Services + // Region. ErrCodeDBProxyEndpointAlreadyExistsFault = "DBProxyEndpointAlreadyExistsFault" // ErrCodeDBProxyEndpointNotFoundFault for service response error code @@ -241,15 +242,15 @@ const ( // ErrCodeDBProxyNotFoundFault for service response error code // "DBProxyNotFoundFault". // - // The specified proxy name doesn't correspond to a proxy owned by your AWS - // account in the specified AWS Region. + // The specified proxy name doesn't correspond to a proxy owned by your Amazon + // Web Services account in the specified Amazon Web Services Region. ErrCodeDBProxyNotFoundFault = "DBProxyNotFoundFault" // ErrCodeDBProxyQuotaExceededFault for service response error code // "DBProxyQuotaExceededFault". // - // Your AWS account already has the maximum number of proxies in the specified - // AWS Region. + // Your Amazon Web Services account already has the maximum number of proxies + // in the specified Amazon Web Services Region. ErrCodeDBProxyQuotaExceededFault = "DBProxyQuotaExceededFault" // ErrCodeDBProxyTargetAlreadyRegisteredFault for service response error code @@ -262,15 +263,16 @@ const ( // ErrCodeDBProxyTargetGroupNotFoundFault for service response error code // "DBProxyTargetGroupNotFoundFault". // - // The specified target group isn't available for a proxy owned by your AWS - // account in the specified AWS Region. + // The specified target group isn't available for a proxy owned by your Amazon + // Web Services account in the specified Amazon Web Services Region. ErrCodeDBProxyTargetGroupNotFoundFault = "DBProxyTargetGroupNotFoundFault" // ErrCodeDBProxyTargetNotFoundFault for service response error code // "DBProxyTargetNotFoundFault". // // The specified RDS DB instance or Aurora DB cluster isn't available for a - // proxy owned by your AWS account in the specified AWS Region. + // proxy owned by your Amazon Web Services account in the specified Amazon Web + // Services Region. ErrCodeDBProxyTargetNotFoundFault = "DBProxyTargetNotFoundFault" // ErrCodeDBSecurityGroupAlreadyExistsFault for service response error code @@ -622,7 +624,7 @@ const ( // ErrCodeKMSKeyNotAccessibleFault for service response error code // "KMSKeyNotAccessibleFault". // - // An error occurred accessing an AWS KMS key. + // An error occurred accessing an Amazon Web Services KMS key. ErrCodeKMSKeyNotAccessibleFault = "KMSKeyNotAccessibleFault" // ErrCodeOptionGroupAlreadyExistsFault for service response error code @@ -640,7 +642,7 @@ const ( // ErrCodeOptionGroupQuotaExceededFault for service response error code // "OptionGroupQuotaExceededFault". // - // The quota of 20 option groups was exceeded for this AWS account. + // The quota of 20 option groups was exceeded for this Amazon Web Services account. ErrCodeOptionGroupQuotaExceededFault = "OptionGroupQuotaExceededFault" // ErrCodePointInTimeRestoreNotEnabledFault for service response error code diff --git a/service/sagemaker/api.go b/service/sagemaker/api.go index e69cf2b4103..b683c1bf6f6 100644 --- a/service/sagemaker/api.go +++ b/service/sagemaker/api.go @@ -60801,10 +60801,10 @@ func (s *MetricData) SetValue(v float64) *MetricData { return s } -// Specifies a metric that the training algorithm writes to stderr or stdout -// . Amazon SageMakerhyperparameter tuning captures all defined metrics. You -// specify one metric that a hyperparameter tuning job uses as its objective -// metric to choose the best training job. +// Specifies a metric that the training algorithm writes to stderr or stdout. +// Amazon SageMakerhyperparameter tuning captures all defined metrics. You specify +// one metric that a hyperparameter tuning job uses as its objective metric +// to choose the best training job. type MetricDefinition struct { _ struct{} `type:"structure"` @@ -66168,11 +66168,31 @@ type ProcessingClusterConfig struct { // The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to // encrypt data on the storage volume attached to the ML compute instance(s) // that run the processing job. + // + // Certain Nitro-based instances include local storage, dependent on the instance + // type. Local storage volumes are encrypted using a hardware module on the + // instance. You can't request a VolumeKmsKeyId when using an instance type + // with local storage. + // + // For a list of instance types that support local instance storage, see Instance + // Store Volumes (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html#instance-store-volumes). + // + // For more information about local instance storage encryption, see SSD Instance + // Store Volumes (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ssd-instance-store.html). VolumeKmsKeyId *string `type:"string"` // The size of the ML storage volume in gigabytes that you want to provision. // You must specify sufficient ML storage for your scenario. // + // Certain Nitro-based instances include local storage with a fixed total size, + // dependent on the instance type. When using these instances for processing, + // Amazon SageMaker mounts the local instance storage instead of Amazon EBS + // gp2 storage. You can't request a VolumeSizeInGB greater than the total size + // of the local instance storage. + // + // For a list of instance types that support local instance storage, including + // the total size per instance type, see Instance Store Volumes (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html#instance-store-volumes). + // // VolumeSizeInGB is a required field VolumeSizeInGB *int64 `min:"1" type:"integer" required:"true"` } @@ -73617,15 +73637,27 @@ type TransformResources struct { // The ML compute instance type for the transform job. If you are using built-in // algorithms to transform moderately sized datasets, we recommend using ml.m4.xlarge - // or ml.m5.large instance types. + // or ml.m5.largeinstance types. // // InstanceType is a required field InstanceType *string `type:"string" required:"true" enum:"TransformInstanceType"` // The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to // encrypt model data on the storage volume attached to the ML compute instance(s) - // that run the batch transform job. The VolumeKmsKeyId can be any of the following - // formats: + // that run the batch transform job. + // + // Certain Nitro-based instances include local storage, dependent on the instance + // type. Local storage volumes are encrypted using a hardware module on the + // instance. You can't request a VolumeKmsKeyId when using an instance type + // with local storage. + // + // For a list of instance types that support local instance storage, see Instance + // Store Volumes (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html#instance-store-volumes). + // + // For more information about local instance storage encryption, see SSD Instance + // Store Volumes (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ssd-instance-store.html). + // + // The VolumeKmsKeyId can be any of the following formats: // // * Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab // @@ -80667,6 +80699,24 @@ const ( // ProcessingInstanceTypeMlR524xlarge is a ProcessingInstanceType enum value ProcessingInstanceTypeMlR524xlarge = "ml.r5.24xlarge" + + // ProcessingInstanceTypeMlG4dnXlarge is a ProcessingInstanceType enum value + ProcessingInstanceTypeMlG4dnXlarge = "ml.g4dn.xlarge" + + // ProcessingInstanceTypeMlG4dn2xlarge is a ProcessingInstanceType enum value + ProcessingInstanceTypeMlG4dn2xlarge = "ml.g4dn.2xlarge" + + // ProcessingInstanceTypeMlG4dn4xlarge is a ProcessingInstanceType enum value + ProcessingInstanceTypeMlG4dn4xlarge = "ml.g4dn.4xlarge" + + // ProcessingInstanceTypeMlG4dn8xlarge is a ProcessingInstanceType enum value + ProcessingInstanceTypeMlG4dn8xlarge = "ml.g4dn.8xlarge" + + // ProcessingInstanceTypeMlG4dn12xlarge is a ProcessingInstanceType enum value + ProcessingInstanceTypeMlG4dn12xlarge = "ml.g4dn.12xlarge" + + // ProcessingInstanceTypeMlG4dn16xlarge is a ProcessingInstanceType enum value + ProcessingInstanceTypeMlG4dn16xlarge = "ml.g4dn.16xlarge" ) // ProcessingInstanceType_Values returns all elements of the ProcessingInstanceType enum @@ -80710,6 +80760,12 @@ func ProcessingInstanceType_Values() []string { ProcessingInstanceTypeMlR512xlarge, ProcessingInstanceTypeMlR516xlarge, ProcessingInstanceTypeMlR524xlarge, + ProcessingInstanceTypeMlG4dnXlarge, + ProcessingInstanceTypeMlG4dn2xlarge, + ProcessingInstanceTypeMlG4dn4xlarge, + ProcessingInstanceTypeMlG4dn8xlarge, + ProcessingInstanceTypeMlG4dn12xlarge, + ProcessingInstanceTypeMlG4dn16xlarge, } } @@ -82337,6 +82393,24 @@ const ( // TransformInstanceTypeMlM524xlarge is a TransformInstanceType enum value TransformInstanceTypeMlM524xlarge = "ml.m5.24xlarge" + + // TransformInstanceTypeMlG4dnXlarge is a TransformInstanceType enum value + TransformInstanceTypeMlG4dnXlarge = "ml.g4dn.xlarge" + + // TransformInstanceTypeMlG4dn2xlarge is a TransformInstanceType enum value + TransformInstanceTypeMlG4dn2xlarge = "ml.g4dn.2xlarge" + + // TransformInstanceTypeMlG4dn4xlarge is a TransformInstanceType enum value + TransformInstanceTypeMlG4dn4xlarge = "ml.g4dn.4xlarge" + + // TransformInstanceTypeMlG4dn8xlarge is a TransformInstanceType enum value + TransformInstanceTypeMlG4dn8xlarge = "ml.g4dn.8xlarge" + + // TransformInstanceTypeMlG4dn12xlarge is a TransformInstanceType enum value + TransformInstanceTypeMlG4dn12xlarge = "ml.g4dn.12xlarge" + + // TransformInstanceTypeMlG4dn16xlarge is a TransformInstanceType enum value + TransformInstanceTypeMlG4dn16xlarge = "ml.g4dn.16xlarge" ) // TransformInstanceType_Values returns all elements of the TransformInstanceType enum @@ -82368,6 +82442,12 @@ func TransformInstanceType_Values() []string { TransformInstanceTypeMlM54xlarge, TransformInstanceTypeMlM512xlarge, TransformInstanceTypeMlM524xlarge, + TransformInstanceTypeMlG4dnXlarge, + TransformInstanceTypeMlG4dn2xlarge, + TransformInstanceTypeMlG4dn4xlarge, + TransformInstanceTypeMlG4dn8xlarge, + TransformInstanceTypeMlG4dn12xlarge, + TransformInstanceTypeMlG4dn16xlarge, } }