Class: Aws::OpenSearchService::Types::GetCompatibleVersionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::GetCompatibleVersionsRequest
- Defined in:
- gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb
Overview
Note:
When making an API call, you may pass GetCompatibleVersionsRequest data as a hash:
{
domain_name: "DomainName",
}
Container for the request parameters to GetCompatibleVersions
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The name of an domain.
Instance Attribute Details
#domain_name ⇒ String
The name of an domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).
2915 2916 2917 2918 2919 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2915 class GetCompatibleVersionsRequest < Struct.new( :domain_name) SENSITIVE = [] include Aws::Structure end |