Class CfnDomain
- All Implemented Interfaces:
IInspectable,IEnvironmentAware,IDomainRef,ITaggable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.opensearchservice.*;
Object accessPolicies;
CfnDomain cfnDomain = CfnDomain.Builder.create(this, "MyCfnDomain")
.accessPolicies(accessPolicies)
.advancedOptions(Map.of(
"advancedOptionsKey", "advancedOptions"))
.advancedSecurityOptions(AdvancedSecurityOptionsInputProperty.builder()
.anonymousAuthDisableDate("anonymousAuthDisableDate")
.anonymousAuthEnabled(false)
.enabled(false)
.iamFederationOptions(Map.of(
"enabled", false,
"rolesKey", "rolesKey",
"subjectKey", "subjectKey"))
.internalUserDatabaseEnabled(false)
.jwtOptions(JWTOptionsProperty.builder()
.enabled(false)
.publicKey("publicKey")
.rolesKey("rolesKey")
.subjectKey("subjectKey")
.build())
.masterUserOptions(MasterUserOptionsProperty.builder()
.masterUserArn("masterUserArn")
.masterUserName("masterUserName")
.masterUserPassword("masterUserPassword")
.build())
.samlOptions(SAMLOptionsProperty.builder()
.enabled(false)
.idp(IdpProperty.builder()
.entityId("entityId")
.metadataContent("metadataContent")
.build())
.masterBackendRole("masterBackendRole")
.masterUserName("masterUserName")
.rolesKey("rolesKey")
.sessionTimeoutMinutes(123)
.subjectKey("subjectKey")
.build())
.build())
.aimlOptions(AIMLOptionsProperty.builder()
.s3VectorsEngine(S3VectorsEngineProperty.builder()
.enabled(false)
.build())
.build())
.clusterConfig(ClusterConfigProperty.builder()
.coldStorageOptions(ColdStorageOptionsProperty.builder()
.enabled(false)
.build())
.dedicatedMasterCount(123)
.dedicatedMasterEnabled(false)
.dedicatedMasterType("dedicatedMasterType")
.instanceCount(123)
.instanceType("instanceType")
.multiAzWithStandbyEnabled(false)
.nodeOptions(List.of(NodeOptionProperty.builder()
.nodeConfig(NodeConfigProperty.builder()
.count(123)
.enabled(false)
.type("type")
.build())
.nodeType("nodeType")
.build()))
.warmCount(123)
.warmEnabled(false)
.warmType("warmType")
.zoneAwarenessConfig(ZoneAwarenessConfigProperty.builder()
.availabilityZoneCount(123)
.build())
.zoneAwarenessEnabled(false)
.build())
.cognitoOptions(CognitoOptionsProperty.builder()
.enabled(false)
.identityPoolId("identityPoolId")
.roleArn("roleArn")
.userPoolId("userPoolId")
.build())
.domainArn("domainArn")
.domainEndpointOptions(DomainEndpointOptionsProperty.builder()
.customEndpoint("customEndpoint")
.customEndpointCertificateArn("customEndpointCertificateArn")
.customEndpointEnabled(false)
.enforceHttps(false)
.tlsSecurityPolicy("tlsSecurityPolicy")
.build())
.domainName("domainName")
.ebsOptions(EBSOptionsProperty.builder()
.ebsEnabled(false)
.iops(123)
.throughput(123)
.volumeSize(123)
.volumeType("volumeType")
.build())
.encryptionAtRestOptions(EncryptionAtRestOptionsProperty.builder()
.enabled(false)
.kmsKeyId("kmsKeyId")
.build())
.engineVersion("engineVersion")
.identityCenterOptions(IdentityCenterOptionsProperty.builder()
.enabledApiAccess(false)
.identityCenterApplicationArn("identityCenterApplicationArn")
.identityCenterInstanceArn("identityCenterInstanceArn")
.identityStoreId("identityStoreId")
.rolesKey("rolesKey")
.subjectKey("subjectKey")
.build())
.ipAddressType("ipAddressType")
.logPublishingOptions(Map.of(
"logPublishingOptionsKey", LogPublishingOptionProperty.builder()
.cloudWatchLogsLogGroupArn("cloudWatchLogsLogGroupArn")
.enabled(false)
.build()))
.nodeToNodeEncryptionOptions(NodeToNodeEncryptionOptionsProperty.builder()
.enabled(false)
.build())
.offPeakWindowOptions(OffPeakWindowOptionsProperty.builder()
.enabled(false)
.offPeakWindow(OffPeakWindowProperty.builder()
.windowStartTime(WindowStartTimeProperty.builder()
.hours(123)
.minutes(123)
.build())
.build())
.build())
.skipShardMigrationWait(false)
.snapshotOptions(SnapshotOptionsProperty.builder()
.automatedSnapshotStartHour(123)
.build())
.softwareUpdateOptions(SoftwareUpdateOptionsProperty.builder()
.autoSoftwareUpdateEnabled(false)
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.vpcOptions(VPCOptionsProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceSpecifies options for fine-grained access control.static interfaceExample:static final classA fluent builder forCfnDomain.static interfaceThe cluster configuration for the OpenSearch Service domain.static interfaceConfigures OpenSearch Service to use Amazon Cognito authentication for OpenSearch Dashboards.static interfaceContainer for the parameters required to enable cold storage for an OpenSearch Service domain.static interfaceSpecifies additional options for the domain endpoint, such as whether to require HTTPS for all traffic or whether to use a custom endpoint rather than the default endpoint.static interfaceThe configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the OpenSearch Service domain.static interfaceWhether the domain should encrypt data at rest, and if so, the AWS Key Management Service key to use.static interfaceExample:static interfaceSettings container for integrating IAM Identity Center with OpenSearch UI applications, which enables enabling secure user authentication and access control across multiple data sources.static interfaceThe SAML Identity Provider's information.static interfaceExample:static interfaceSpecifies whether the OpenSearch Service domain publishes application, search slow logs, or index slow logs to Amazon CloudWatch.static interfaceSpecifies information about the master user.static interfaceConfiguration options for defining the setup of any node type within the cluster.static interfaceConfiguration settings for defining the node type within a cluster.static interfaceSpecifies options for node-to-node encryption.static interfaceOff-peak window settings for the domain.static interfaceA custom 10-hour, low-traffic window during which OpenSearch Service can perform mandatory configuration changes on the domain.static interfaceExample:static interfaceContainer for information about the SAML configuration for OpenSearch Dashboards.static interfaceThe current status of the service software for an Amazon OpenSearch Service domain.static interfaceDEPRECATED .static interfaceOptions for configuring service software updates for a domain.static interfaceThe virtual private cloud (VPC) configuration for the OpenSearch Service domain.static interfaceA custom start time for the off-peak window, in Coordinated Universal Time (UTC).static interfaceSpecifies zone awareness configuration options.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.interfaces.opensearchservice.IDomainRef
IDomainRef.Jsii$Default, IDomainRef.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnDomain(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnDomain(software.amazon.jsii.JsiiObjectRef objRef) Create a newAWS::OpenSearchService::Domain.CfnDomain(software.constructs.Construct scope, String id, CfnDomainProps props) Create a newAWS::OpenSearchService::Domain. -
Method Summary
Modifier and TypeMethodDescriptionstatic StringarnForDomain(IDomainRef resource) static IDomainReffromDomainArn(software.constructs.Construct scope, String id, String arn) Creates a new IDomainRef from an ARN.static IDomainReffromDomainName(software.constructs.Construct scope, String id, String domainName) Creates a new IDomainRef from a domainName.An AWS Identity and Access Management ( IAM ) policy document that specifies who can access the OpenSearch Service domain and their permissions.Additional options to specify for the OpenSearch Service domain.Specifies options for fine-grained access control and SAML authentication.Returns union: eitherIResolvableorCfnDomain.AIMLOptionsPropertyDate and time when the migration period will be disabled.The Amazon Resource Name (ARN) of the CloudFormation stack.The domain-specific endpoint used for requests to the OpenSearch APIs, such assearch-mystack-1ab2cdefghij-ab1c2deckoyb3hofw7wpqa3cm---us-west-1---es.amazonaws.com.rproxy.govskope.ca.IfIPAddressTypeto set todualstack, a version 2 domain endpoint is provisioned.The resource ID.The ARN of the IAM Identity Center application that integrates with Amazon OpenSearch Service.The identifier of the IAM Identity Store.Container for the cluster configuration of a domain.Configures OpenSearch Service to use Amazon Cognito authentication for OpenSearch Dashboards.Specifies additional options for the domain endpoint, such as whether to require HTTPS for all traffic or whether to use a custom endpoint rather than the default endpoint.A name for the OpenSearch Service domain.A reference to a Domain resource.The configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the OpenSearch Service domain.Whether the domain should encrypt data at rest, and if so, the AWS key to use.The version of OpenSearch to use.Configuration options for controlling IAM Identity Center integration within a domain.Choose either dual stack or IPv4 as your IP address type.An object with one or more of the following keys:SEARCH_SLOW_LOGS,ES_APPLICATION_LOGS,INDEX_SLOW_LOGS,AUDIT_LOGS, depending on the types of logs you want to publish.Specifies whether node-to-node encryption is enabled.Options for a domain's off-peak window, during which OpenSearch Service can perform mandatory configuration changes on the domain.Returns union: eitherBooleanorIResolvableDEPRECATED .Service software update options for the domain.getTags()Tag Manager which manages the tags for this resource.An arbitrary set of tags (key–value pairs) to associate with the OpenSearch Service domain.The virtual private cloud (VPC) configuration for the OpenSearch Service domain.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidsetAccessPolicies(Object value) An AWS Identity and Access Management ( IAM ) policy document that specifies who can access the OpenSearch Service domain and their permissions.voidsetAdvancedOptions(Map<String, String> value) Additional options to specify for the OpenSearch Service domain.voidsetAdvancedOptions(IResolvable value) Additional options to specify for the OpenSearch Service domain.voidSpecifies options for fine-grained access control and SAML authentication.voidSpecifies options for fine-grained access control and SAML authentication.voidsetAimlOptions(IResolvable value) voidvoidsetClusterConfig(IResolvable value) Container for the cluster configuration of a domain.voidContainer for the cluster configuration of a domain.voidsetCognitoOptions(IResolvable value) Configures OpenSearch Service to use Amazon Cognito authentication for OpenSearch Dashboards.voidConfigures OpenSearch Service to use Amazon Cognito authentication for OpenSearch Dashboards.voidsetDomainArn(String value) voidSpecifies additional options for the domain endpoint, such as whether to require HTTPS for all traffic or whether to use a custom endpoint rather than the default endpoint.voidSpecifies additional options for the domain endpoint, such as whether to require HTTPS for all traffic or whether to use a custom endpoint rather than the default endpoint.voidsetDomainName(String value) A name for the OpenSearch Service domain.voidsetEbsOptions(IResolvable value) The configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the OpenSearch Service domain.voidThe configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the OpenSearch Service domain.voidWhether the domain should encrypt data at rest, and if so, the AWS key to use.voidWhether the domain should encrypt data at rest, and if so, the AWS key to use.voidsetEngineVersion(String value) The version of OpenSearch to use.voidConfiguration options for controlling IAM Identity Center integration within a domain.voidConfiguration options for controlling IAM Identity Center integration within a domain.voidsetIpAddressType(String value) Choose either dual stack or IPv4 as your IP address type.voidsetLogPublishingOptions(Map<String, Object> value) An object with one or more of the following keys:SEARCH_SLOW_LOGS,ES_APPLICATION_LOGS,INDEX_SLOW_LOGS,AUDIT_LOGS, depending on the types of logs you want to publish.voidAn object with one or more of the following keys:SEARCH_SLOW_LOGS,ES_APPLICATION_LOGS,INDEX_SLOW_LOGS,AUDIT_LOGS, depending on the types of logs you want to publish.voidSpecifies whether node-to-node encryption is enabled.voidSpecifies whether node-to-node encryption is enabled.voidOptions for a domain's off-peak window, during which OpenSearch Service can perform mandatory configuration changes on the domain.voidOptions for a domain's off-peak window, during which OpenSearch Service can perform mandatory configuration changes on the domain.voidsetSkipShardMigrationWait(Boolean value) voidvoidsetSnapshotOptions(IResolvable value) DEPRECATED .voidDEPRECATED .voidService software update options for the domain.voidService software update options for the domain.voidsetTagsRaw(List<CfnTag> value) An arbitrary set of tags (key–value pairs) to associate with the OpenSearch Service domain.voidsetVpcOptions(IResolvable value) The virtual private cloud (VPC) configuration for the OpenSearch Service domain.voidThe virtual private cloud (VPC) configuration for the OpenSearch Service domain.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnDomain
protected CfnDomain(software.amazon.jsii.JsiiObjectRef objRef) -
CfnDomain
protected CfnDomain(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnDomain
@Stability(Stable) public CfnDomain(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable CfnDomainProps props) Create a newAWS::OpenSearchService::Domain.- Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties.
-
CfnDomain
@Stability(Stable) public CfnDomain(@NotNull software.constructs.Construct scope, @NotNull String id) Create a newAWS::OpenSearchService::Domain.- Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.
-
-
Method Details
-
arnForDomain
- Parameters:
resource- This parameter is required.
-
fromDomainArn
@Stability(Stable) @NotNull public static IDomainRef fromDomainArn(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String arn) Creates a new IDomainRef from an ARN.- Parameters:
scope- This parameter is required.id- This parameter is required.arn- This parameter is required.
-
fromDomainName
@Stability(Stable) @NotNull public static IDomainRef fromDomainName(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String domainName) Creates a new IDomainRef from a domainName.- Parameters:
scope- This parameter is required.id- This parameter is required.domainName- This parameter is required.
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrAdvancedSecurityOptionsAnonymousAuthDisableDate
Date and time when the migration period will be disabled.Only necessary when enabling fine-grained access control on an existing domain .
-
getAttrArn
The Amazon Resource Name (ARN) of the CloudFormation stack. -
getAttrDomainEndpoint
The domain-specific endpoint used for requests to the OpenSearch APIs, such assearch-mystack-1ab2cdefghij-ab1c2deckoyb3hofw7wpqa3cm.us-west-1.es.amazonaws.com. -
getAttrDomainEndpoints
-
getAttrDomainEndpointV2
IfIPAddressTypeto set todualstack, 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.
-
getAttrId
The resource ID.For example,
123456789012/my-domain. -
getAttrIdentityCenterOptionsIdentityCenterApplicationArn
@Stability(Stable) @NotNull public String getAttrIdentityCenterOptionsIdentityCenterApplicationArn()The ARN of the IAM Identity Center application that integrates with Amazon OpenSearch Service. -
getAttrIdentityCenterOptionsIdentityStoreId
The identifier of the IAM Identity Store. -
getAttrServiceSoftwareOptions
-
getAttrServiceSoftwareOptionsAutomatedUpdateDate
-
getAttrServiceSoftwareOptionsCancellable
-
getAttrServiceSoftwareOptionsCurrentVersion
-
getAttrServiceSoftwareOptionsDescription
-
getAttrServiceSoftwareOptionsNewVersion
-
getAttrServiceSoftwareOptionsOptionalDeployment
-
getAttrServiceSoftwareOptionsUpdateAvailable
-
getAttrServiceSoftwareOptionsUpdateStatus
-
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getDomainRef
A reference to a Domain resource.- Specified by:
getDomainRefin interfaceIDomainRef
-
getTags
Tag Manager which manages the tags for this resource. -
getAccessPolicies
An AWS Identity and Access Management ( IAM ) policy document that specifies who can access the OpenSearch Service domain and their permissions. -
setAccessPolicies
An AWS Identity and Access Management ( IAM ) policy document that specifies who can access the OpenSearch Service domain and their permissions. -
getAdvancedOptions
Additional options to specify for the OpenSearch Service domain.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable -
setAdvancedOptions
Additional options to specify for the OpenSearch Service domain. -
setAdvancedOptions
Additional options to specify for the OpenSearch Service domain. -
getAdvancedSecurityOptions
Specifies options for fine-grained access control and SAML authentication.Returns union: either
IResolvableorCfnDomain.AdvancedSecurityOptionsInputProperty -
setAdvancedSecurityOptions
Specifies options for fine-grained access control and SAML authentication. -
setAdvancedSecurityOptions
@Stability(Stable) public void setAdvancedSecurityOptions(@Nullable CfnDomain.AdvancedSecurityOptionsInputProperty value) Specifies options for fine-grained access control and SAML authentication. -
getAimlOptions
Returns union: eitherIResolvableorCfnDomain.AIMLOptionsProperty -
setAimlOptions
-
setAimlOptions
-
getClusterConfig
Container for the cluster configuration of a domain.Returns union: either
IResolvableorCfnDomain.ClusterConfigProperty -
setClusterConfig
Container for the cluster configuration of a domain. -
setClusterConfig
Container for the cluster configuration of a domain. -
getCognitoOptions
Configures OpenSearch Service to use Amazon Cognito authentication for OpenSearch Dashboards.Returns union: either
IResolvableorCfnDomain.CognitoOptionsProperty -
setCognitoOptions
Configures OpenSearch Service to use Amazon Cognito authentication for OpenSearch Dashboards. -
setCognitoOptions
Configures OpenSearch Service to use Amazon Cognito authentication for OpenSearch Dashboards. -
getDomainArn
-
setDomainArn
-
getDomainEndpointOptions
Specifies additional options for the domain endpoint, such as whether to require HTTPS for all traffic or whether to use a custom endpoint rather than the default endpoint.Returns union: either
IResolvableorCfnDomain.DomainEndpointOptionsProperty -
setDomainEndpointOptions
Specifies additional options for the domain endpoint, such as whether to require HTTPS for all traffic or whether to use a custom endpoint rather than the default endpoint. -
setDomainEndpointOptions
@Stability(Stable) public void setDomainEndpointOptions(@Nullable CfnDomain.DomainEndpointOptionsProperty value) Specifies additional options for the domain endpoint, such as whether to require HTTPS for all traffic or whether to use a custom endpoint rather than the default endpoint. -
getDomainName
A name for the OpenSearch Service domain. -
setDomainName
A name for the OpenSearch Service domain. -
getEbsOptions
The configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the OpenSearch Service domain.Returns union: either
IResolvableorCfnDomain.EBSOptionsProperty -
setEbsOptions
The configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the OpenSearch Service domain. -
setEbsOptions
The configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the OpenSearch Service domain. -
getEncryptionAtRestOptions
Whether the domain should encrypt data at rest, and if so, the AWS key to use.Returns union: either
IResolvableorCfnDomain.EncryptionAtRestOptionsProperty -
setEncryptionAtRestOptions
Whether the domain should encrypt data at rest, and if so, the AWS key to use. -
setEncryptionAtRestOptions
@Stability(Stable) public void setEncryptionAtRestOptions(@Nullable CfnDomain.EncryptionAtRestOptionsProperty value) Whether the domain should encrypt data at rest, and if so, the AWS key to use. -
getEngineVersion
The version of OpenSearch to use. -
setEngineVersion
The version of OpenSearch to use. -
getIdentityCenterOptions
Configuration options for controlling IAM Identity Center integration within a domain.Returns union: either
IResolvableorCfnDomain.IdentityCenterOptionsProperty -
setIdentityCenterOptions
Configuration options for controlling IAM Identity Center integration within a domain. -
setIdentityCenterOptions
@Stability(Stable) public void setIdentityCenterOptions(@Nullable CfnDomain.IdentityCenterOptionsProperty value) Configuration options for controlling IAM Identity Center integration within a domain. -
getIpAddressType
Choose either dual stack or IPv4 as your IP address type. -
setIpAddressType
Choose either dual stack or IPv4 as your IP address type. -
getLogPublishingOptions
An object with one or more of the following keys:SEARCH_SLOW_LOGS,ES_APPLICATION_LOGS,INDEX_SLOW_LOGS,AUDIT_LOGS, depending on the types of logs you want to publish.Returns union: either
IResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnDomain.LogPublishingOptionProperty> -
setLogPublishingOptions
An object with one or more of the following keys:SEARCH_SLOW_LOGS,ES_APPLICATION_LOGS,INDEX_SLOW_LOGS,AUDIT_LOGS, depending on the types of logs you want to publish. -
setLogPublishingOptions
An object with one or more of the following keys:SEARCH_SLOW_LOGS,ES_APPLICATION_LOGS,INDEX_SLOW_LOGS,AUDIT_LOGS, depending on the types of logs you want to publish. -
getNodeToNodeEncryptionOptions
Specifies whether node-to-node encryption is enabled.Returns union: either
IResolvableorCfnDomain.NodeToNodeEncryptionOptionsProperty -
setNodeToNodeEncryptionOptions
Specifies whether node-to-node encryption is enabled. -
setNodeToNodeEncryptionOptions
@Stability(Stable) public void setNodeToNodeEncryptionOptions(@Nullable CfnDomain.NodeToNodeEncryptionOptionsProperty value) Specifies whether node-to-node encryption is enabled. -
getOffPeakWindowOptions
Options for a domain's off-peak window, during which OpenSearch Service can perform mandatory configuration changes on the domain.Returns union: either
IResolvableorCfnDomain.OffPeakWindowOptionsProperty -
setOffPeakWindowOptions
Options for a domain's off-peak window, during which OpenSearch Service can perform mandatory configuration changes on the domain. -
setOffPeakWindowOptions
@Stability(Stable) public void setOffPeakWindowOptions(@Nullable CfnDomain.OffPeakWindowOptionsProperty value) Options for a domain's off-peak window, during which OpenSearch Service can perform mandatory configuration changes on the domain. -
getSkipShardMigrationWait
Returns union: eitherBooleanorIResolvable -
setSkipShardMigrationWait
-
setSkipShardMigrationWait
-
getSnapshotOptions
DEPRECATED .Returns union: either
IResolvableorCfnDomain.SnapshotOptionsProperty -
setSnapshotOptions
DEPRECATED . -
setSnapshotOptions
@Stability(Stable) public void setSnapshotOptions(@Nullable CfnDomain.SnapshotOptionsProperty value) DEPRECATED . -
getSoftwareUpdateOptions
Service software update options for the domain.Returns union: either
IResolvableorCfnDomain.SoftwareUpdateOptionsProperty -
setSoftwareUpdateOptions
Service software update options for the domain. -
setSoftwareUpdateOptions
@Stability(Stable) public void setSoftwareUpdateOptions(@Nullable CfnDomain.SoftwareUpdateOptionsProperty value) Service software update options for the domain. -
getTagsRaw
An arbitrary set of tags (key–value pairs) to associate with the OpenSearch Service domain. -
setTagsRaw
An arbitrary set of tags (key–value pairs) to associate with the OpenSearch Service domain. -
getVpcOptions
The virtual private cloud (VPC) configuration for the OpenSearch Service domain.Returns union: either
IResolvableorCfnDomain.VPCOptionsProperty -
setVpcOptions
The virtual private cloud (VPC) configuration for the OpenSearch Service domain. -
setVpcOptions
The virtual private cloud (VPC) configuration for the OpenSearch Service domain.
-