Class: Aws::OpenSearchService::Types::AWSDomainInformation
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::AWSDomainInformation
- Defined in:
- gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb
Overview
Note:
When making an API call, you may pass AWSDomainInformation data as a hash:
{
owner_id: "OwnerId",
domain_name: "DomainName", # required
region: "Region",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The name of an domain.
-
#owner_id ⇒ String
-
#region ⇒ String
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).
37 38 39 40 41 42 43 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 37 class AWSDomainInformation < Struct.new( :owner_id, :domain_name, :region) SENSITIVE = [] include Aws::Structure end |
#owner_id ⇒ String
37 38 39 40 41 42 43 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 37 class AWSDomainInformation < Struct.new( :owner_id, :domain_name, :region) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
37 38 39 40 41 42 43 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 37 class AWSDomainInformation < Struct.new( :owner_id, :domain_name, :region) SENSITIVE = [] include Aws::Structure end |