1. Packages
  2. AWS
  3. API Docs
  4. opensearch
  5. getDomain
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.opensearch.getDomain

Explore with Pulumi AI

AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

Use this data source to get information about an OpenSearch Domain

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const myDomain = aws.opensearch.getDomain({
    domainName: "my-domain-name",
});
Copy
import pulumi
import pulumi_aws as aws

my_domain = aws.opensearch.get_domain(domain_name="my-domain-name")
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/opensearch"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := opensearch.LookupDomain(ctx, &opensearch.LookupDomainArgs{
			DomainName: "my-domain-name",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var myDomain = Aws.OpenSearch.GetDomain.Invoke(new()
    {
        DomainName = "my-domain-name",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.opensearch.OpensearchFunctions;
import com.pulumi.aws.opensearch.inputs.GetDomainArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var myDomain = OpensearchFunctions.getDomain(GetDomainArgs.builder()
            .domainName("my-domain-name")
            .build());

    }
}
Copy
variables:
  myDomain:
    fn::invoke:
      function: aws:opensearch:getDomain
      arguments:
        domainName: my-domain-name
Copy

Using getDomain

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getDomain(args: GetDomainArgs, opts?: InvokeOptions): Promise<GetDomainResult>
function getDomainOutput(args: GetDomainOutputArgs, opts?: InvokeOptions): Output<GetDomainResult>
Copy
def get_domain(domain_name: Optional[str] = None,
               off_peak_window_options: Optional[GetDomainOffPeakWindowOptions] = None,
               tags: Optional[Mapping[str, str]] = None,
               opts: Optional[InvokeOptions] = None) -> GetDomainResult
def get_domain_output(domain_name: Optional[pulumi.Input[str]] = None,
               off_peak_window_options: Optional[pulumi.Input[GetDomainOffPeakWindowOptionsArgs]] = None,
               tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
               opts: Optional[InvokeOptions] = None) -> Output[GetDomainResult]
Copy
func LookupDomain(ctx *Context, args *LookupDomainArgs, opts ...InvokeOption) (*LookupDomainResult, error)
func LookupDomainOutput(ctx *Context, args *LookupDomainOutputArgs, opts ...InvokeOption) LookupDomainResultOutput
Copy

> Note: This function is named LookupDomain in the Go SDK.

public static class GetDomain 
{
    public static Task<GetDomainResult> InvokeAsync(GetDomainArgs args, InvokeOptions? opts = null)
    public static Output<GetDomainResult> Invoke(GetDomainInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDomainResult> getDomain(GetDomainArgs args, InvokeOptions options)
public static Output<GetDomainResult> getDomain(GetDomainArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: aws:opensearch/getDomain:getDomain
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

DomainName This property is required. string
Name of the domain.
OffPeakWindowOptions GetDomainOffPeakWindowOptions
Off Peak update options
Tags Dictionary<string, string>
Tags assigned to the domain.
DomainName This property is required. string
Name of the domain.
OffPeakWindowOptions GetDomainOffPeakWindowOptions
Off Peak update options
Tags map[string]string
Tags assigned to the domain.
domainName This property is required. String
Name of the domain.
offPeakWindowOptions GetDomainOffPeakWindowOptions
Off Peak update options
tags Map<String,String>
Tags assigned to the domain.
domainName This property is required. string
Name of the domain.
offPeakWindowOptions GetDomainOffPeakWindowOptions
Off Peak update options
tags {[key: string]: string}
Tags assigned to the domain.
domain_name This property is required. str
Name of the domain.
off_peak_window_options GetDomainOffPeakWindowOptions
Off Peak update options
tags Mapping[str, str]
Tags assigned to the domain.
domainName This property is required. String
Name of the domain.
offPeakWindowOptions Property Map
Off Peak update options
tags Map<String>
Tags assigned to the domain.

getDomain Result

The following output properties are available:

AccessPolicies string
Policy document attached to the domain.
AdvancedOptions Dictionary<string, string>
Key-value string pairs to specify advanced configuration options.
AdvancedSecurityOptions List<GetDomainAdvancedSecurityOption>
Status of the OpenSearch domain's advanced security options. The block consists of the following attributes:
Arn string
ARN of the domain.
AutoTuneOptions List<GetDomainAutoTuneOption>
Configuration of the Auto-Tune options of the domain.
ClusterConfigs List<GetDomainClusterConfig>
Cluster configuration of the domain.
CognitoOptions List<GetDomainCognitoOption>
Domain Amazon Cognito Authentication options for Dashboard.
Created bool
Status of the creation of the domain.
DashboardEndpoint string
Domain-specific endpoint used to access the Dashboard application.
DashboardEndpointV2 string
V2 domain-specific endpoint used to access the Dashboard application
Deleted bool
Status of the deletion of the domain.
DomainEndpointV2HostedZoneId string
Dual stack hosted zone ID for the domain.
DomainId string
Unique identifier for the domain.
DomainName string
EbsOptions List<GetDomainEbsOption>
EBS Options for the instances in the domain.
EncryptionAtRests List<GetDomainEncryptionAtRest>
Domain encryption at rest related options.
Endpoint string
Domain-specific endpoint used to submit index, search, and data upload requests.
EndpointV2 string
V2 domain-specific endpoint that works with both IPv4 and IPv6 addresses, used to submit index, search, and data upload requests.
EngineVersion string
OpenSearch version for the domain.
Id string
The provider-assigned unique ID for this managed resource.
IpAddressType string
Type of IP addresses supported by the endpoint for the domain.
KibanaEndpoint string
(Deprecated) Domain-specific endpoint for kibana without https scheme. Use the dashboard_endpoint attribute instead.

Deprecated: kibana_endpoint is deprecated. Use dashboard_endpoint instead.

LogPublishingOptions List<GetDomainLogPublishingOption>
Domain log publishing related options.
NodeToNodeEncryptions List<GetDomainNodeToNodeEncryption>
Domain in transit encryption related options.
Processing bool
Status of a configuration change in the domain.
SnapshotOptions List<GetDomainSnapshotOption>
Domain snapshot related options.
SoftwareUpdateOptions List<GetDomainSoftwareUpdateOption>
Software update options for the domain
Tags Dictionary<string, string>
Tags assigned to the domain.
VpcOptions List<GetDomainVpcOption>
VPC Options for private OpenSearch domains.
OffPeakWindowOptions GetDomainOffPeakWindowOptions
Off Peak update options
AccessPolicies string
Policy document attached to the domain.
AdvancedOptions map[string]string
Key-value string pairs to specify advanced configuration options.
AdvancedSecurityOptions []GetDomainAdvancedSecurityOption
Status of the OpenSearch domain's advanced security options. The block consists of the following attributes:
Arn string
ARN of the domain.
AutoTuneOptions []GetDomainAutoTuneOption
Configuration of the Auto-Tune options of the domain.
ClusterConfigs []GetDomainClusterConfig
Cluster configuration of the domain.
CognitoOptions []GetDomainCognitoOption
Domain Amazon Cognito Authentication options for Dashboard.
Created bool
Status of the creation of the domain.
DashboardEndpoint string
Domain-specific endpoint used to access the Dashboard application.
DashboardEndpointV2 string
V2 domain-specific endpoint used to access the Dashboard application
Deleted bool
Status of the deletion of the domain.
DomainEndpointV2HostedZoneId string
Dual stack hosted zone ID for the domain.
DomainId string
Unique identifier for the domain.
DomainName string
EbsOptions []GetDomainEbsOption
EBS Options for the instances in the domain.
EncryptionAtRests []GetDomainEncryptionAtRest
Domain encryption at rest related options.
Endpoint string
Domain-specific endpoint used to submit index, search, and data upload requests.
EndpointV2 string
V2 domain-specific endpoint that works with both IPv4 and IPv6 addresses, used to submit index, search, and data upload requests.
EngineVersion string
OpenSearch version for the domain.
Id string
The provider-assigned unique ID for this managed resource.
IpAddressType string
Type of IP addresses supported by the endpoint for the domain.
KibanaEndpoint string
(Deprecated) Domain-specific endpoint for kibana without https scheme. Use the dashboard_endpoint attribute instead.

Deprecated: kibana_endpoint is deprecated. Use dashboard_endpoint instead.

LogPublishingOptions []GetDomainLogPublishingOption
Domain log publishing related options.
NodeToNodeEncryptions []GetDomainNodeToNodeEncryption
Domain in transit encryption related options.
Processing bool
Status of a configuration change in the domain.
SnapshotOptions []GetDomainSnapshotOption
Domain snapshot related options.
SoftwareUpdateOptions []GetDomainSoftwareUpdateOption
Software update options for the domain
Tags map[string]string
Tags assigned to the domain.
VpcOptions []GetDomainVpcOption
VPC Options for private OpenSearch domains.
OffPeakWindowOptions GetDomainOffPeakWindowOptions
Off Peak update options
accessPolicies String
Policy document attached to the domain.
advancedOptions Map<String,String>
Key-value string pairs to specify advanced configuration options.
advancedSecurityOptions List<GetDomainAdvancedSecurityOption>
Status of the OpenSearch domain's advanced security options. The block consists of the following attributes:
arn String
ARN of the domain.
autoTuneOptions List<GetDomainAutoTuneOption>
Configuration of the Auto-Tune options of the domain.
clusterConfigs List<GetDomainClusterConfig>
Cluster configuration of the domain.
cognitoOptions List<GetDomainCognitoOption>
Domain Amazon Cognito Authentication options for Dashboard.
created Boolean
Status of the creation of the domain.
dashboardEndpoint String
Domain-specific endpoint used to access the Dashboard application.
dashboardEndpointV2 String
V2 domain-specific endpoint used to access the Dashboard application
deleted Boolean
Status of the deletion of the domain.
domainEndpointV2HostedZoneId String
Dual stack hosted zone ID for the domain.
domainId String
Unique identifier for the domain.
domainName String
ebsOptions List<GetDomainEbsOption>
EBS Options for the instances in the domain.
encryptionAtRests List<GetDomainEncryptionAtRest>
Domain encryption at rest related options.
endpoint String
Domain-specific endpoint used to submit index, search, and data upload requests.
endpointV2 String
V2 domain-specific endpoint that works with both IPv4 and IPv6 addresses, used to submit index, search, and data upload requests.
engineVersion String
OpenSearch version for the domain.
id String
The provider-assigned unique ID for this managed resource.
ipAddressType String
Type of IP addresses supported by the endpoint for the domain.
kibanaEndpoint String
(Deprecated) Domain-specific endpoint for kibana without https scheme. Use the dashboard_endpoint attribute instead.

Deprecated: kibana_endpoint is deprecated. Use dashboard_endpoint instead.

logPublishingOptions List<GetDomainLogPublishingOption>
Domain log publishing related options.
nodeToNodeEncryptions List<GetDomainNodeToNodeEncryption>
Domain in transit encryption related options.
processing Boolean
Status of a configuration change in the domain.
snapshotOptions List<GetDomainSnapshotOption>
Domain snapshot related options.
softwareUpdateOptions List<GetDomainSoftwareUpdateOption>
Software update options for the domain
tags Map<String,String>
Tags assigned to the domain.
vpcOptions List<GetDomainVpcOption>
VPC Options for private OpenSearch domains.
offPeakWindowOptions GetDomainOffPeakWindowOptions
Off Peak update options
accessPolicies string
Policy document attached to the domain.
advancedOptions {[key: string]: string}
Key-value string pairs to specify advanced configuration options.
advancedSecurityOptions GetDomainAdvancedSecurityOption[]
Status of the OpenSearch domain's advanced security options. The block consists of the following attributes:
arn string
ARN of the domain.
autoTuneOptions GetDomainAutoTuneOption[]
Configuration of the Auto-Tune options of the domain.
clusterConfigs GetDomainClusterConfig[]
Cluster configuration of the domain.
cognitoOptions GetDomainCognitoOption[]
Domain Amazon Cognito Authentication options for Dashboard.
created boolean
Status of the creation of the domain.
dashboardEndpoint string
Domain-specific endpoint used to access the Dashboard application.
dashboardEndpointV2 string
V2 domain-specific endpoint used to access the Dashboard application
deleted boolean
Status of the deletion of the domain.
domainEndpointV2HostedZoneId string
Dual stack hosted zone ID for the domain.
domainId string
Unique identifier for the domain.
domainName string
ebsOptions GetDomainEbsOption[]
EBS Options for the instances in the domain.
encryptionAtRests GetDomainEncryptionAtRest[]
Domain encryption at rest related options.
endpoint string
Domain-specific endpoint used to submit index, search, and data upload requests.
endpointV2 string
V2 domain-specific endpoint that works with both IPv4 and IPv6 addresses, used to submit index, search, and data upload requests.
engineVersion string
OpenSearch version for the domain.
id string
The provider-assigned unique ID for this managed resource.
ipAddressType string
Type of IP addresses supported by the endpoint for the domain.
kibanaEndpoint string
(Deprecated) Domain-specific endpoint for kibana without https scheme. Use the dashboard_endpoint attribute instead.

Deprecated: kibana_endpoint is deprecated. Use dashboard_endpoint instead.

logPublishingOptions GetDomainLogPublishingOption[]
Domain log publishing related options.
nodeToNodeEncryptions GetDomainNodeToNodeEncryption[]
Domain in transit encryption related options.
processing boolean
Status of a configuration change in the domain.
snapshotOptions GetDomainSnapshotOption[]
Domain snapshot related options.
softwareUpdateOptions GetDomainSoftwareUpdateOption[]
Software update options for the domain
tags {[key: string]: string}
Tags assigned to the domain.
vpcOptions GetDomainVpcOption[]
VPC Options for private OpenSearch domains.
offPeakWindowOptions GetDomainOffPeakWindowOptions
Off Peak update options
access_policies str
Policy document attached to the domain.
advanced_options Mapping[str, str]
Key-value string pairs to specify advanced configuration options.
advanced_security_options Sequence[GetDomainAdvancedSecurityOption]
Status of the OpenSearch domain's advanced security options. The block consists of the following attributes:
arn str
ARN of the domain.
auto_tune_options Sequence[GetDomainAutoTuneOption]
Configuration of the Auto-Tune options of the domain.
cluster_configs Sequence[GetDomainClusterConfig]
Cluster configuration of the domain.
cognito_options Sequence[GetDomainCognitoOption]
Domain Amazon Cognito Authentication options for Dashboard.
created bool
Status of the creation of the domain.
dashboard_endpoint str
Domain-specific endpoint used to access the Dashboard application.
dashboard_endpoint_v2 str
V2 domain-specific endpoint used to access the Dashboard application
deleted bool
Status of the deletion of the domain.
domain_endpoint_v2_hosted_zone_id str
Dual stack hosted zone ID for the domain.
domain_id str
Unique identifier for the domain.
domain_name str
ebs_options Sequence[GetDomainEbsOption]
EBS Options for the instances in the domain.
encryption_at_rests Sequence[GetDomainEncryptionAtRest]
Domain encryption at rest related options.
endpoint str
Domain-specific endpoint used to submit index, search, and data upload requests.
endpoint_v2 str
V2 domain-specific endpoint that works with both IPv4 and IPv6 addresses, used to submit index, search, and data upload requests.
engine_version str
OpenSearch version for the domain.
id str
The provider-assigned unique ID for this managed resource.
ip_address_type str
Type of IP addresses supported by the endpoint for the domain.
kibana_endpoint str
(Deprecated) Domain-specific endpoint for kibana without https scheme. Use the dashboard_endpoint attribute instead.

Deprecated: kibana_endpoint is deprecated. Use dashboard_endpoint instead.

log_publishing_options Sequence[GetDomainLogPublishingOption]
Domain log publishing related options.
node_to_node_encryptions Sequence[GetDomainNodeToNodeEncryption]
Domain in transit encryption related options.
processing bool
Status of a configuration change in the domain.
snapshot_options Sequence[GetDomainSnapshotOption]
Domain snapshot related options.
software_update_options Sequence[GetDomainSoftwareUpdateOption]
Software update options for the domain
tags Mapping[str, str]
Tags assigned to the domain.
vpc_options Sequence[GetDomainVpcOption]
VPC Options for private OpenSearch domains.
off_peak_window_options GetDomainOffPeakWindowOptions
Off Peak update options
accessPolicies String
Policy document attached to the domain.
advancedOptions Map<String>
Key-value string pairs to specify advanced configuration options.
advancedSecurityOptions List<Property Map>
Status of the OpenSearch domain's advanced security options. The block consists of the following attributes:
arn String
ARN of the domain.
autoTuneOptions List<Property Map>
Configuration of the Auto-Tune options of the domain.
clusterConfigs List<Property Map>
Cluster configuration of the domain.
cognitoOptions List<Property Map>
Domain Amazon Cognito Authentication options for Dashboard.
created Boolean
Status of the creation of the domain.
dashboardEndpoint String
Domain-specific endpoint used to access the Dashboard application.
dashboardEndpointV2 String
V2 domain-specific endpoint used to access the Dashboard application
deleted Boolean
Status of the deletion of the domain.
domainEndpointV2HostedZoneId String
Dual stack hosted zone ID for the domain.
domainId String
Unique identifier for the domain.
domainName String
ebsOptions List<Property Map>
EBS Options for the instances in the domain.
encryptionAtRests List<Property Map>
Domain encryption at rest related options.
endpoint String
Domain-specific endpoint used to submit index, search, and data upload requests.
endpointV2 String
V2 domain-specific endpoint that works with both IPv4 and IPv6 addresses, used to submit index, search, and data upload requests.
engineVersion String
OpenSearch version for the domain.
id String
The provider-assigned unique ID for this managed resource.
ipAddressType String
Type of IP addresses supported by the endpoint for the domain.
kibanaEndpoint String
(Deprecated) Domain-specific endpoint for kibana without https scheme. Use the dashboard_endpoint attribute instead.

Deprecated: kibana_endpoint is deprecated. Use dashboard_endpoint instead.

logPublishingOptions List<Property Map>
Domain log publishing related options.
nodeToNodeEncryptions List<Property Map>
Domain in transit encryption related options.
processing Boolean
Status of a configuration change in the domain.
snapshotOptions List<Property Map>
Domain snapshot related options.
softwareUpdateOptions List<Property Map>
Software update options for the domain
tags Map<String>
Tags assigned to the domain.
vpcOptions List<Property Map>
VPC Options for private OpenSearch domains.
offPeakWindowOptions Property Map
Off Peak update options

Supporting Types

GetDomainAdvancedSecurityOption

AnonymousAuthEnabled This property is required. bool
Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
InternalUserDatabaseEnabled This property is required. bool
Whether the internal user database is enabled.
AnonymousAuthEnabled This property is required. bool
Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
InternalUserDatabaseEnabled This property is required. bool
Whether the internal user database is enabled.
anonymousAuthEnabled This property is required. Boolean
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window
internalUserDatabaseEnabled This property is required. Boolean
Whether the internal user database is enabled.
anonymousAuthEnabled This property is required. boolean
enabled This property is required. boolean
Enabled disabled toggle for off-peak update window
internalUserDatabaseEnabled This property is required. boolean
Whether the internal user database is enabled.
anonymous_auth_enabled This property is required. bool
enabled This property is required. bool
Enabled disabled toggle for off-peak update window
internal_user_database_enabled This property is required. bool
Whether the internal user database is enabled.
anonymousAuthEnabled This property is required. Boolean
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window
internalUserDatabaseEnabled This property is required. Boolean
Whether the internal user database is enabled.

GetDomainAutoTuneOption

DesiredState This property is required. string
Auto-Tune desired state for the domain.
MaintenanceSchedules This property is required. List<GetDomainAutoTuneOptionMaintenanceSchedule>
A list of the nested configurations for the Auto-Tune maintenance windows of the domain.
RollbackOnDisable This property is required. string
Whether the domain is set to roll back to default Auto-Tune settings when disabling Auto-Tune.
UseOffPeakWindow This property is required. bool
Whether to schedule Auto-Tune optimizations that require blue/green deployments during the domain's configured daily off-peak window.
DesiredState This property is required. string
Auto-Tune desired state for the domain.
MaintenanceSchedules This property is required. []GetDomainAutoTuneOptionMaintenanceSchedule
A list of the nested configurations for the Auto-Tune maintenance windows of the domain.
RollbackOnDisable This property is required. string
Whether the domain is set to roll back to default Auto-Tune settings when disabling Auto-Tune.
UseOffPeakWindow This property is required. bool
Whether to schedule Auto-Tune optimizations that require blue/green deployments during the domain's configured daily off-peak window.
desiredState This property is required. String
Auto-Tune desired state for the domain.
maintenanceSchedules This property is required. List<GetDomainAutoTuneOptionMaintenanceSchedule>
A list of the nested configurations for the Auto-Tune maintenance windows of the domain.
rollbackOnDisable This property is required. String
Whether the domain is set to roll back to default Auto-Tune settings when disabling Auto-Tune.
useOffPeakWindow This property is required. Boolean
Whether to schedule Auto-Tune optimizations that require blue/green deployments during the domain's configured daily off-peak window.
desiredState This property is required. string
Auto-Tune desired state for the domain.
maintenanceSchedules This property is required. GetDomainAutoTuneOptionMaintenanceSchedule[]
A list of the nested configurations for the Auto-Tune maintenance windows of the domain.
rollbackOnDisable This property is required. string
Whether the domain is set to roll back to default Auto-Tune settings when disabling Auto-Tune.
useOffPeakWindow This property is required. boolean
Whether to schedule Auto-Tune optimizations that require blue/green deployments during the domain's configured daily off-peak window.
desired_state This property is required. str
Auto-Tune desired state for the domain.
maintenance_schedules This property is required. Sequence[GetDomainAutoTuneOptionMaintenanceSchedule]
A list of the nested configurations for the Auto-Tune maintenance windows of the domain.
rollback_on_disable This property is required. str
Whether the domain is set to roll back to default Auto-Tune settings when disabling Auto-Tune.
use_off_peak_window This property is required. bool
Whether to schedule Auto-Tune optimizations that require blue/green deployments during the domain's configured daily off-peak window.
desiredState This property is required. String
Auto-Tune desired state for the domain.
maintenanceSchedules This property is required. List<Property Map>
A list of the nested configurations for the Auto-Tune maintenance windows of the domain.
rollbackOnDisable This property is required. String
Whether the domain is set to roll back to default Auto-Tune settings when disabling Auto-Tune.
useOffPeakWindow This property is required. Boolean
Whether to schedule Auto-Tune optimizations that require blue/green deployments during the domain's configured daily off-peak window.

GetDomainAutoTuneOptionMaintenanceSchedule

CronExpressionForRecurrence This property is required. string
Cron expression for an Auto-Tune maintenance schedule.
Durations This property is required. List<GetDomainAutoTuneOptionMaintenanceScheduleDuration>
Configuration block for the duration of the Auto-Tune maintenance window.
StartAt This property is required. string
Date and time at which the Auto-Tune maintenance schedule starts in RFC3339 format.
CronExpressionForRecurrence This property is required. string
Cron expression for an Auto-Tune maintenance schedule.
Durations This property is required. []GetDomainAutoTuneOptionMaintenanceScheduleDuration
Configuration block for the duration of the Auto-Tune maintenance window.
StartAt This property is required. string
Date and time at which the Auto-Tune maintenance schedule starts in RFC3339 format.
cronExpressionForRecurrence This property is required. String
Cron expression for an Auto-Tune maintenance schedule.
durations This property is required. List<GetDomainAutoTuneOptionMaintenanceScheduleDuration>
Configuration block for the duration of the Auto-Tune maintenance window.
startAt This property is required. String
Date and time at which the Auto-Tune maintenance schedule starts in RFC3339 format.
cronExpressionForRecurrence This property is required. string
Cron expression for an Auto-Tune maintenance schedule.
durations This property is required. GetDomainAutoTuneOptionMaintenanceScheduleDuration[]
Configuration block for the duration of the Auto-Tune maintenance window.
startAt This property is required. string
Date and time at which the Auto-Tune maintenance schedule starts in RFC3339 format.
cron_expression_for_recurrence This property is required. str
Cron expression for an Auto-Tune maintenance schedule.
durations This property is required. Sequence[GetDomainAutoTuneOptionMaintenanceScheduleDuration]
Configuration block for the duration of the Auto-Tune maintenance window.
start_at This property is required. str
Date and time at which the Auto-Tune maintenance schedule starts in RFC3339 format.
cronExpressionForRecurrence This property is required. String
Cron expression for an Auto-Tune maintenance schedule.
durations This property is required. List<Property Map>
Configuration block for the duration of the Auto-Tune maintenance window.
startAt This property is required. String
Date and time at which the Auto-Tune maintenance schedule starts in RFC3339 format.

GetDomainAutoTuneOptionMaintenanceScheduleDuration

Unit This property is required. string
Unit of time.
Value This property is required. int
Duration of an Auto-Tune maintenance window.
Unit This property is required. string
Unit of time.
Value This property is required. int
Duration of an Auto-Tune maintenance window.
unit This property is required. String
Unit of time.
value This property is required. Integer
Duration of an Auto-Tune maintenance window.
unit This property is required. string
Unit of time.
value This property is required. number
Duration of an Auto-Tune maintenance window.
unit This property is required. str
Unit of time.
value This property is required. int
Duration of an Auto-Tune maintenance window.
unit This property is required. String
Unit of time.
value This property is required. Number
Duration of an Auto-Tune maintenance window.

GetDomainClusterConfig

ColdStorageOptions This property is required. List<GetDomainClusterConfigColdStorageOption>
Configuration block containing cold storage configuration.
DedicatedMasterCount This property is required. int
Number of dedicated master nodes in the cluster.
DedicatedMasterEnabled This property is required. bool
Indicates whether dedicated master nodes are enabled for the cluster.
DedicatedMasterType This property is required. string
Instance type of the dedicated master nodes in the cluster.
InstanceCount This property is required. int
Number of instances in the cluster.
InstanceType This property is required. string
Instance type of data nodes in the cluster.
MultiAzWithStandbyEnabled This property is required. bool
Whether a multi-AZ domain is turned on with a standby AZ.
NodeOptions This property is required. List<GetDomainClusterConfigNodeOption>
List of node options for the domain.
WarmCount This property is required. int
Number of warm nodes in the cluster.
WarmType This property is required. string
Instance type for the OpenSearch cluster's warm nodes.
ZoneAwarenessConfigs This property is required. List<GetDomainClusterConfigZoneAwarenessConfig>
Configuration block containing zone awareness settings.
ZoneAwarenessEnabled This property is required. bool
Indicates whether zone awareness is enabled.
WarmEnabled bool
Warm storage is enabled.
ColdStorageOptions This property is required. []GetDomainClusterConfigColdStorageOption
Configuration block containing cold storage configuration.
DedicatedMasterCount This property is required. int
Number of dedicated master nodes in the cluster.
DedicatedMasterEnabled This property is required. bool
Indicates whether dedicated master nodes are enabled for the cluster.
DedicatedMasterType This property is required. string
Instance type of the dedicated master nodes in the cluster.
InstanceCount This property is required. int
Number of instances in the cluster.
InstanceType This property is required. string
Instance type of data nodes in the cluster.
MultiAzWithStandbyEnabled This property is required. bool
Whether a multi-AZ domain is turned on with a standby AZ.
NodeOptions This property is required. []GetDomainClusterConfigNodeOption
List of node options for the domain.
WarmCount This property is required. int
Number of warm nodes in the cluster.
WarmType This property is required. string
Instance type for the OpenSearch cluster's warm nodes.
ZoneAwarenessConfigs This property is required. []GetDomainClusterConfigZoneAwarenessConfig
Configuration block containing zone awareness settings.
ZoneAwarenessEnabled This property is required. bool
Indicates whether zone awareness is enabled.
WarmEnabled bool
Warm storage is enabled.
coldStorageOptions This property is required. List<GetDomainClusterConfigColdStorageOption>
Configuration block containing cold storage configuration.
dedicatedMasterCount This property is required. Integer
Number of dedicated master nodes in the cluster.
dedicatedMasterEnabled This property is required. Boolean
Indicates whether dedicated master nodes are enabled for the cluster.
dedicatedMasterType This property is required. String
Instance type of the dedicated master nodes in the cluster.
instanceCount This property is required. Integer
Number of instances in the cluster.
instanceType This property is required. String
Instance type of data nodes in the cluster.
multiAzWithStandbyEnabled This property is required. Boolean
Whether a multi-AZ domain is turned on with a standby AZ.
nodeOptions This property is required. List<GetDomainClusterConfigNodeOption>
List of node options for the domain.
warmCount This property is required. Integer
Number of warm nodes in the cluster.
warmType This property is required. String
Instance type for the OpenSearch cluster's warm nodes.
zoneAwarenessConfigs This property is required. List<GetDomainClusterConfigZoneAwarenessConfig>
Configuration block containing zone awareness settings.
zoneAwarenessEnabled This property is required. Boolean
Indicates whether zone awareness is enabled.
warmEnabled Boolean
Warm storage is enabled.
coldStorageOptions This property is required. GetDomainClusterConfigColdStorageOption[]
Configuration block containing cold storage configuration.
dedicatedMasterCount This property is required. number
Number of dedicated master nodes in the cluster.
dedicatedMasterEnabled This property is required. boolean
Indicates whether dedicated master nodes are enabled for the cluster.
dedicatedMasterType This property is required. string
Instance type of the dedicated master nodes in the cluster.
instanceCount This property is required. number
Number of instances in the cluster.
instanceType This property is required. string
Instance type of data nodes in the cluster.
multiAzWithStandbyEnabled This property is required. boolean
Whether a multi-AZ domain is turned on with a standby AZ.
nodeOptions This property is required. GetDomainClusterConfigNodeOption[]
List of node options for the domain.
warmCount This property is required. number
Number of warm nodes in the cluster.
warmType This property is required. string
Instance type for the OpenSearch cluster's warm nodes.
zoneAwarenessConfigs This property is required. GetDomainClusterConfigZoneAwarenessConfig[]
Configuration block containing zone awareness settings.
zoneAwarenessEnabled This property is required. boolean
Indicates whether zone awareness is enabled.
warmEnabled boolean
Warm storage is enabled.
cold_storage_options This property is required. Sequence[GetDomainClusterConfigColdStorageOption]
Configuration block containing cold storage configuration.
dedicated_master_count This property is required. int
Number of dedicated master nodes in the cluster.
dedicated_master_enabled This property is required. bool
Indicates whether dedicated master nodes are enabled for the cluster.
dedicated_master_type This property is required. str
Instance type of the dedicated master nodes in the cluster.
instance_count This property is required. int
Number of instances in the cluster.
instance_type This property is required. str
Instance type of data nodes in the cluster.
multi_az_with_standby_enabled This property is required. bool
Whether a multi-AZ domain is turned on with a standby AZ.
node_options This property is required. Sequence[GetDomainClusterConfigNodeOption]
List of node options for the domain.
warm_count This property is required. int
Number of warm nodes in the cluster.
warm_type This property is required. str
Instance type for the OpenSearch cluster's warm nodes.
zone_awareness_configs This property is required. Sequence[GetDomainClusterConfigZoneAwarenessConfig]
Configuration block containing zone awareness settings.
zone_awareness_enabled This property is required. bool
Indicates whether zone awareness is enabled.
warm_enabled bool
Warm storage is enabled.
coldStorageOptions This property is required. List<Property Map>
Configuration block containing cold storage configuration.
dedicatedMasterCount This property is required. Number
Number of dedicated master nodes in the cluster.
dedicatedMasterEnabled This property is required. Boolean
Indicates whether dedicated master nodes are enabled for the cluster.
dedicatedMasterType This property is required. String
Instance type of the dedicated master nodes in the cluster.
instanceCount This property is required. Number
Number of instances in the cluster.
instanceType This property is required. String
Instance type of data nodes in the cluster.
multiAzWithStandbyEnabled This property is required. Boolean
Whether a multi-AZ domain is turned on with a standby AZ.
nodeOptions This property is required. List<Property Map>
List of node options for the domain.
warmCount This property is required. Number
Number of warm nodes in the cluster.
warmType This property is required. String
Instance type for the OpenSearch cluster's warm nodes.
zoneAwarenessConfigs This property is required. List<Property Map>
Configuration block containing zone awareness settings.
zoneAwarenessEnabled This property is required. Boolean
Indicates whether zone awareness is enabled.
warmEnabled Boolean
Warm storage is enabled.

GetDomainClusterConfigColdStorageOption

Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window
enabled This property is required. boolean
Enabled disabled toggle for off-peak update window
enabled This property is required. bool
Enabled disabled toggle for off-peak update window
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window

GetDomainClusterConfigNodeOption

NodeConfigs This property is required. List<GetDomainClusterConfigNodeOptionNodeConfig>
Sizing of a node type.
NodeType This property is required. string
Type of node this configuration describes.
NodeConfigs This property is required. []GetDomainClusterConfigNodeOptionNodeConfig
Sizing of a node type.
NodeType This property is required. string
Type of node this configuration describes.
nodeConfigs This property is required. List<GetDomainClusterConfigNodeOptionNodeConfig>
Sizing of a node type.
nodeType This property is required. String
Type of node this configuration describes.
nodeConfigs This property is required. GetDomainClusterConfigNodeOptionNodeConfig[]
Sizing of a node type.
nodeType This property is required. string
Type of node this configuration describes.
node_configs This property is required. Sequence[GetDomainClusterConfigNodeOptionNodeConfig]
Sizing of a node type.
node_type This property is required. str
Type of node this configuration describes.
nodeConfigs This property is required. List<Property Map>
Sizing of a node type.
nodeType This property is required. String
Type of node this configuration describes.

GetDomainClusterConfigNodeOptionNodeConfig

Count This property is required. int
Number of nodes of a particular node type in the cluster.
Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
Type This property is required. string
The instance type of a particular node type in the cluster.
Count This property is required. int
Number of nodes of a particular node type in the cluster.
Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
Type This property is required. string
The instance type of a particular node type in the cluster.
count This property is required. Integer
Number of nodes of a particular node type in the cluster.
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window
type This property is required. String
The instance type of a particular node type in the cluster.
count This property is required. number
Number of nodes of a particular node type in the cluster.
enabled This property is required. boolean
Enabled disabled toggle for off-peak update window
type This property is required. string
The instance type of a particular node type in the cluster.
count This property is required. int
Number of nodes of a particular node type in the cluster.
enabled This property is required. bool
Enabled disabled toggle for off-peak update window
type This property is required. str
The instance type of a particular node type in the cluster.
count This property is required. Number
Number of nodes of a particular node type in the cluster.
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window
type This property is required. String
The instance type of a particular node type in the cluster.

GetDomainClusterConfigZoneAwarenessConfig

AvailabilityZoneCount This property is required. int
Number of availability zones used.
AvailabilityZoneCount This property is required. int
Number of availability zones used.
availabilityZoneCount This property is required. Integer
Number of availability zones used.
availabilityZoneCount This property is required. number
Number of availability zones used.
availability_zone_count This property is required. int
Number of availability zones used.
availabilityZoneCount This property is required. Number
Number of availability zones used.

GetDomainCognitoOption

Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
IdentityPoolId This property is required. string
Cognito Identity pool used by the domain.
RoleArn This property is required. string
IAM Role with the AmazonOpenSearchServiceCognitoAccess policy attached.
UserPoolId This property is required. string
Cognito User pool used by the domain.
Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
IdentityPoolId This property is required. string
Cognito Identity pool used by the domain.
RoleArn This property is required. string
IAM Role with the AmazonOpenSearchServiceCognitoAccess policy attached.
UserPoolId This property is required. string
Cognito User pool used by the domain.
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window
identityPoolId This property is required. String
Cognito Identity pool used by the domain.
roleArn This property is required. String
IAM Role with the AmazonOpenSearchServiceCognitoAccess policy attached.
userPoolId This property is required. String
Cognito User pool used by the domain.
enabled This property is required. boolean
Enabled disabled toggle for off-peak update window
identityPoolId This property is required. string
Cognito Identity pool used by the domain.
roleArn This property is required. string
IAM Role with the AmazonOpenSearchServiceCognitoAccess policy attached.
userPoolId This property is required. string
Cognito User pool used by the domain.
enabled This property is required. bool
Enabled disabled toggle for off-peak update window
identity_pool_id This property is required. str
Cognito Identity pool used by the domain.
role_arn This property is required. str
IAM Role with the AmazonOpenSearchServiceCognitoAccess policy attached.
user_pool_id This property is required. str
Cognito User pool used by the domain.
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window
identityPoolId This property is required. String
Cognito Identity pool used by the domain.
roleArn This property is required. String
IAM Role with the AmazonOpenSearchServiceCognitoAccess policy attached.
userPoolId This property is required. String
Cognito User pool used by the domain.

GetDomainEbsOption

EbsEnabled This property is required. bool
Whether EBS volumes are attached to data nodes in the domain.
Iops This property is required. int
Baseline input/output (I/O) performance of EBS volumes attached to data nodes.
Throughput This property is required. int
The throughput (in MiB/s) of the EBS volumes attached to data nodes.
VolumeSize This property is required. int
Size of EBS volumes attached to data nodes (in GB).
VolumeType This property is required. string
Type of EBS volumes attached to data nodes.
EbsEnabled This property is required. bool
Whether EBS volumes are attached to data nodes in the domain.
Iops This property is required. int
Baseline input/output (I/O) performance of EBS volumes attached to data nodes.
Throughput This property is required. int
The throughput (in MiB/s) of the EBS volumes attached to data nodes.
VolumeSize This property is required. int
Size of EBS volumes attached to data nodes (in GB).
VolumeType This property is required. string
Type of EBS volumes attached to data nodes.
ebsEnabled This property is required. Boolean
Whether EBS volumes are attached to data nodes in the domain.
iops This property is required. Integer
Baseline input/output (I/O) performance of EBS volumes attached to data nodes.
throughput This property is required. Integer
The throughput (in MiB/s) of the EBS volumes attached to data nodes.
volumeSize This property is required. Integer
Size of EBS volumes attached to data nodes (in GB).
volumeType This property is required. String
Type of EBS volumes attached to data nodes.
ebsEnabled This property is required. boolean
Whether EBS volumes are attached to data nodes in the domain.
iops This property is required. number
Baseline input/output (I/O) performance of EBS volumes attached to data nodes.
throughput This property is required. number
The throughput (in MiB/s) of the EBS volumes attached to data nodes.
volumeSize This property is required. number
Size of EBS volumes attached to data nodes (in GB).
volumeType This property is required. string
Type of EBS volumes attached to data nodes.
ebs_enabled This property is required. bool
Whether EBS volumes are attached to data nodes in the domain.
iops This property is required. int
Baseline input/output (I/O) performance of EBS volumes attached to data nodes.
throughput This property is required. int
The throughput (in MiB/s) of the EBS volumes attached to data nodes.
volume_size This property is required. int
Size of EBS volumes attached to data nodes (in GB).
volume_type This property is required. str
Type of EBS volumes attached to data nodes.
ebsEnabled This property is required. Boolean
Whether EBS volumes are attached to data nodes in the domain.
iops This property is required. Number
Baseline input/output (I/O) performance of EBS volumes attached to data nodes.
throughput This property is required. Number
The throughput (in MiB/s) of the EBS volumes attached to data nodes.
volumeSize This property is required. Number
Size of EBS volumes attached to data nodes (in GB).
volumeType This property is required. String
Type of EBS volumes attached to data nodes.

GetDomainEncryptionAtRest

Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
KmsKeyId This property is required. string
KMS key id used to encrypt data at rest.
Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
KmsKeyId This property is required. string
KMS key id used to encrypt data at rest.
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window
kmsKeyId This property is required. String
KMS key id used to encrypt data at rest.
enabled This property is required. boolean
Enabled disabled toggle for off-peak update window
kmsKeyId This property is required. string
KMS key id used to encrypt data at rest.
enabled This property is required. bool
Enabled disabled toggle for off-peak update window
kms_key_id This property is required. str
KMS key id used to encrypt data at rest.
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window
kmsKeyId This property is required. String
KMS key id used to encrypt data at rest.

GetDomainLogPublishingOption

CloudwatchLogGroupArn This property is required. string
CloudWatch Log Group where the logs are published.
Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
LogType This property is required. string
Type of OpenSearch log being published.
CloudwatchLogGroupArn This property is required. string
CloudWatch Log Group where the logs are published.
Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
LogType This property is required. string
Type of OpenSearch log being published.
cloudwatchLogGroupArn This property is required. String
CloudWatch Log Group where the logs are published.
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window
logType This property is required. String
Type of OpenSearch log being published.
cloudwatchLogGroupArn This property is required. string
CloudWatch Log Group where the logs are published.
enabled This property is required. boolean
Enabled disabled toggle for off-peak update window
logType This property is required. string
Type of OpenSearch log being published.
cloudwatch_log_group_arn This property is required. str
CloudWatch Log Group where the logs are published.
enabled This property is required. bool
Enabled disabled toggle for off-peak update window
log_type This property is required. str
Type of OpenSearch log being published.
cloudwatchLogGroupArn This property is required. String
CloudWatch Log Group where the logs are published.
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window
logType This property is required. String
Type of OpenSearch log being published.

GetDomainNodeToNodeEncryption

Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window
enabled This property is required. boolean
Enabled disabled toggle for off-peak update window
enabled This property is required. bool
Enabled disabled toggle for off-peak update window
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window

GetDomainOffPeakWindowOptions

Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
OffPeakWindows This property is required. List<GetDomainOffPeakWindowOptionsOffPeakWindow>
Enabled This property is required. bool
Enabled disabled toggle for off-peak update window
OffPeakWindows This property is required. []GetDomainOffPeakWindowOptionsOffPeakWindow
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window
offPeakWindows This property is required. List<GetDomainOffPeakWindowOptionsOffPeakWindow>
enabled This property is required. boolean
Enabled disabled toggle for off-peak update window
offPeakWindows This property is required. GetDomainOffPeakWindowOptionsOffPeakWindow[]
enabled This property is required. bool
Enabled disabled toggle for off-peak update window
off_peak_windows This property is required. Sequence[GetDomainOffPeakWindowOptionsOffPeakWindow]
enabled This property is required. Boolean
Enabled disabled toggle for off-peak update window
offPeakWindows This property is required. List<Property Map>

GetDomainOffPeakWindowOptionsOffPeakWindow

WindowStartTimes This property is required. []GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTime
10h window for updates
windowStartTimes This property is required. GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTime[]
10h window for updates
windowStartTimes This property is required. List<Property Map>
10h window for updates

GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTime

Hours This property is required. int
Starting hour of the 10-hour window for updates
Minutes This property is required. int
Starting minute of the 10-hour window for updates
Hours This property is required. int
Starting hour of the 10-hour window for updates
Minutes This property is required. int
Starting minute of the 10-hour window for updates
hours This property is required. Integer
Starting hour of the 10-hour window for updates
minutes This property is required. Integer
Starting minute of the 10-hour window for updates
hours This property is required. number
Starting hour of the 10-hour window for updates
minutes This property is required. number
Starting minute of the 10-hour window for updates
hours This property is required. int
Starting hour of the 10-hour window for updates
minutes This property is required. int
Starting minute of the 10-hour window for updates
hours This property is required. Number
Starting hour of the 10-hour window for updates
minutes This property is required. Number
Starting minute of the 10-hour window for updates

GetDomainSnapshotOption

AutomatedSnapshotStartHour This property is required. int
Hour during which the service takes an automated daily snapshot of the indices in the domain.
AutomatedSnapshotStartHour This property is required. int
Hour during which the service takes an automated daily snapshot of the indices in the domain.
automatedSnapshotStartHour This property is required. Integer
Hour during which the service takes an automated daily snapshot of the indices in the domain.
automatedSnapshotStartHour This property is required. number
Hour during which the service takes an automated daily snapshot of the indices in the domain.
automated_snapshot_start_hour This property is required. int
Hour during which the service takes an automated daily snapshot of the indices in the domain.
automatedSnapshotStartHour This property is required. Number
Hour during which the service takes an automated daily snapshot of the indices in the domain.

GetDomainSoftwareUpdateOption

AutoSoftwareUpdateEnabled This property is required. bool
Enabled or disabled.
AutoSoftwareUpdateEnabled This property is required. bool
Enabled or disabled.
autoSoftwareUpdateEnabled This property is required. Boolean
Enabled or disabled.
autoSoftwareUpdateEnabled This property is required. boolean
Enabled or disabled.
auto_software_update_enabled This property is required. bool
Enabled or disabled.
autoSoftwareUpdateEnabled This property is required. Boolean
Enabled or disabled.

GetDomainVpcOption

AvailabilityZones This property is required. List<string>
Availability zones used by the domain.
SecurityGroupIds This property is required. List<string>
Security groups used by the domain.
SubnetIds This property is required. List<string>
Subnets used by the domain.
VpcId This property is required. string
VPC used by the domain.
AvailabilityZones This property is required. []string
Availability zones used by the domain.
SecurityGroupIds This property is required. []string
Security groups used by the domain.
SubnetIds This property is required. []string
Subnets used by the domain.
VpcId This property is required. string
VPC used by the domain.
availabilityZones This property is required. List<String>
Availability zones used by the domain.
securityGroupIds This property is required. List<String>
Security groups used by the domain.
subnetIds This property is required. List<String>
Subnets used by the domain.
vpcId This property is required. String
VPC used by the domain.
availabilityZones This property is required. string[]
Availability zones used by the domain.
securityGroupIds This property is required. string[]
Security groups used by the domain.
subnetIds This property is required. string[]
Subnets used by the domain.
vpcId This property is required. string
VPC used by the domain.
availability_zones This property is required. Sequence[str]
Availability zones used by the domain.
security_group_ids This property is required. Sequence[str]
Security groups used by the domain.
subnet_ids This property is required. Sequence[str]
Subnets used by the domain.
vpc_id This property is required. str
VPC used by the domain.
availabilityZones This property is required. List<String>
Availability zones used by the domain.
securityGroupIds This property is required. List<String>
Security groups used by the domain.
subnetIds This property is required. List<String>
Subnets used by the domain.
vpcId This property is required. String
VPC used by the domain.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi