DomainStatus
public struct DomainStatus : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Undocumented
Declaration
Swift
public let arn: String?
-
True if the search domain is created. It can take several minutes to initialize a domain when CreateDomain is called. Newly created search domains are returned from DescribeDomains with a false value for Created until domain creation is complete.
Declaration
Swift
public let created: Bool?
-
True if the search domain has been deleted. The system must clean up resources dedicated to the search domain when DeleteDomain is called. Newly deleted search domains are returned from DescribeDomains with a true value for IsDeleted for several minutes until resource cleanup is complete.
Declaration
Swift
public let deleted: Bool?
-
The service endpoint for updating documents in a search domain.
Declaration
Swift
public let docService: ServiceEndpoint?
-
Undocumented
Declaration
Swift
public let domainId: String
-
Undocumented
Declaration
Swift
public let domainName: String
-
Undocumented
Declaration
Swift
public let limits: Limits?
-
True if processing is being done to activate the current domain configuration.
Declaration
Swift
public let processing: Bool?
-
True if IndexDocuments needs to be called to activate the current domain configuration.
Declaration
Swift
public let requiresIndexDocuments: Bool
-
The number of search instances that are available to process search requests.
Declaration
Swift
public let searchInstanceCount: Int?
-
The instance type that is being used to process search requests.
Declaration
Swift
public let searchInstanceType: String?
-
The number of partitions across which the search index is spread.
Declaration
Swift
public let searchPartitionCount: Int?
-
The service endpoint for requesting search results from a search domain.
Declaration
Swift
public let searchService: ServiceEndpoint?
-
init(arn:created:deleted:docService:domainId:domainName:limits:processing:requiresIndexDocuments:searchInstanceCount:searchInstanceType:searchPartitionCount:searchService:)
Undocumented
Declaration
Swift
public init(arn: String? = nil, created: Bool? = nil, deleted: Bool? = nil, docService: ServiceEndpoint? = nil, domainId: String, domainName: String, limits: Limits? = nil, processing: Bool? = nil, requiresIndexDocuments: Bool, searchInstanceCount: Int? = nil, searchInstanceType: String? = nil, searchPartitionCount: Int? = nil, searchService: ServiceEndpoint? = nil)