Module Values.DomainStatusSource

The current status of an OpenSearch Service domain.

Sourcetype nonrec t = {
  1. domainId : DomainId.t option;
    (*

    Unique identifier for the domain.

    *)
  2. domainName : DomainName.t option;
    (*

    Name of the domain. Domain names are unique across all domains owned by the same account within an Amazon Web Services Region.

    *)
  3. aRN : ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the domain. For more information, see IAM identifiers in the Amazon Web Services Identity and Access Management User Guide.

    *)
  4. created : Boolean.t option;
    (*

    Creation status of an OpenSearch Service domain. True if domain creation is complete. False if domain creation is still in progress.

    *)
  5. deleted : Boolean.t option;
    (*

    Deletion status of an OpenSearch Service domain. True if domain deletion is complete. False if domain deletion is still in progress. Once deletion is complete, the status of the domain is no longer returned.

    *)
  6. endpoint : ServiceUrl.t option;
    (*

    Domain-specific endpoint used to submit index, search, and data upload requests to the domain.

    *)
  7. endpointV2 : ServiceUrl.t option;
    (*

    If IPAddressType to set to dualstack, a version 2 domain endpoint is provisioned. This endpoint functions like a normal endpoint, except that it works with both IPv4 and IPv6 IP addresses. Normal endpoints work only with IPv4 IP addresses.

    *)
  8. endpoints : EndpointsMap.t option;
    (*

    The key-value pair that exists if the OpenSearch Service domain uses VPC endpoints. For example: IPv4 IP addresses - 'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com' Dual stack IP addresses - 'vpcv2':'vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.aos.us-east-1.on.aws'

    *)
  9. domainEndpointV2HostedZoneId : HostedZoneId.t option;
    (*

    The dual stack hosted zone ID for the domain.

    *)
  10. processing : Boolean.t option;
    (*

    The status of the domain configuration. True if OpenSearch Service is processing configuration changes. False if the configuration is active.

    *)
  11. upgradeProcessing : Boolean.t option;
    (*

    The status of a domain version upgrade to a new version of OpenSearch or Elasticsearch. True if OpenSearch Service is in the process of a version upgrade. False if the configuration is active.

    *)
  12. engineVersion : VersionString.t option;
    (*

    Version of OpenSearch or Elasticsearch that the domain is running, in the format Elasticsearch_X.Y or OpenSearch_X.Y.

    *)
  13. clusterConfig : ClusterConfig.t option;
    (*

    Container for the cluster configuration of the domain.

    *)
  14. eBSOptions : EBSOptions.t option;
    (*

    Container for EBS-based storage settings for the domain.

    *)
  15. accessPolicies : PolicyDocument.t option;
    (*

    Identity and Access Management (IAM) policy document specifying the access policies for the domain.

    *)
  16. iPAddressType : IPAddressType.t option;
    (*

    The type of IP addresses supported by the endpoint for the domain.

    *)
  17. snapshotOptions : SnapshotOptions.t option;
    (*

    DEPRECATED. Container for parameters required to configure automated snapshots of domain indexes.

    *)
  18. vPCOptions : VPCDerivedInfo.t option;
    (*

    The VPC configuration for the domain.

    *)
  19. cognitoOptions : CognitoOptions.t option;
    (*

    Key-value pairs to configure Amazon Cognito authentication for OpenSearch Dashboards.

    *)
  20. encryptionAtRestOptions : EncryptionAtRestOptions.t option;
    (*

    Encryption at rest settings for the domain.

    *)
  21. nodeToNodeEncryptionOptions : NodeToNodeEncryptionOptions.t option;
    (*

    Whether node-to-node encryption is enabled or disabled.

    *)
  22. advancedOptions : AdvancedOptions.t option;
    (*

    Key-value pairs that specify advanced configuration options.

    *)
  23. logPublishingOptions : LogPublishingOptions.t option;
    (*

    Log publishing options for the domain.

    *)
  24. serviceSoftwareOptions : ServiceSoftwareOptions.t option;
    (*

    The current status of the domain's service software.

    *)
  25. domainEndpointOptions : DomainEndpointOptions.t option;
    (*

    Additional options for the domain endpoint, such as whether to require HTTPS for all traffic.

    *)
  26. advancedSecurityOptions : AdvancedSecurityOptions.t option;
    (*

    Settings for fine-grained access control.

    *)
  27. identityCenterOptions : IdentityCenterOptions.t option;
    (*

    Configuration options for controlling IAM Identity Center integration within a domain.

    *)
  28. autoTuneOptions : AutoTuneOptionsOutput.t option;
    (*

    Auto-Tune settings for the domain.

    *)
  29. changeProgressDetails : ChangeProgressDetails.t option;
    (*

    Information about a configuration change happening on the domain.

    *)
  30. offPeakWindowOptions : OffPeakWindowOptions.t option;
    (*

    Options that specify a custom 10-hour window during which OpenSearch Service can perform configuration changes on the domain.

    *)
  31. softwareUpdateOptions : SoftwareUpdateOptions.t option;
    (*

    Service software update options for the domain.

    *)
  32. domainProcessingStatus : DomainProcessingStatusType.t option;
    (*

    The status of any changes that are currently in progress for the domain.

    *)
  33. modifyingProperties : ModifyingPropertiesList.t option;
    (*

    Information about the domain properties that are currently being modified.

    *)
  34. aIMLOptions : AIMLOptionsOutput.t option;
    (*

    Container for parameters required to enable all machine learning features.

    *)
  35. deploymentStrategyOptions : DeploymentStrategyOptions.t option;
    (*

    The current status of the domain's deployment strategy options.

    *)
  36. automatedSnapshotPauseOptions : AutomatedSnapshotPauseOptions.t option;
    (*

    The current status of the domain's automated snapshot pause options.

    *)
}
Sourceval make : ?domainId:??? -> ?domainName:??? -> ?aRN:??? -> ?created:??? -> ?deleted:??? -> ?endpoint:??? -> ?endpointV2:??? -> ?endpoints:??? -> ?domainEndpointV2HostedZoneId:??? -> ?processing:??? -> ?upgradeProcessing:??? -> ?engineVersion:??? -> ?clusterConfig:??? -> ?eBSOptions:??? -> ?accessPolicies:??? -> ?iPAddressType:??? -> ?snapshotOptions:??? -> ?vPCOptions:??? -> ?cognitoOptions:??? -> ?encryptionAtRestOptions:??? -> ?nodeToNodeEncryptionOptions:??? -> ?advancedOptions:??? -> ?logPublishingOptions:??? -> ?serviceSoftwareOptions:??? -> ?domainEndpointOptions:??? -> ?advancedSecurityOptions:??? -> ?identityCenterOptions:??? -> ?autoTuneOptions:??? -> ?changeProgressDetails:??? -> ?offPeakWindowOptions:??? -> ?softwareUpdateOptions:??? -> ?domainProcessingStatus:??? -> ?modifyingProperties:??? -> ?aIMLOptions:??? -> ?deploymentStrategyOptions:??? -> ?automatedSnapshotPauseOptions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `Map of ([> `Enum of string | `String of String_.t ] * [> `String of ServiceUrl.t | `Structure of (string * [> `Boolean of Boolean.t | `String of CloudWatchLogsLogGroupArn.t ]) list ]) list | `String of DomainId.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of IntegerClass.t | `List of [> `String of String_.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of IntegerClass.t ]) list ]) list ] list | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of IntegerClass.t | `String of String_.t | `Structure of (string * [> `Long of StartTimeHours.t | `String of SAMLMetadata.t ]) list ]) list | `Timestamp of DeploymentCloseDateTimeStamp.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t