Documentation ¶
Index ¶
- func CfnDomain_CFN_RESOURCE_TYPE_NAME() *string
- func CfnDomain_IsCfnElement(x interface{}) *bool
- func CfnDomain_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnDomain_IsConstruct(x interface{}) *bool
- func Domain_IsConstruct(x interface{}) *bool
- func Domain_IsResource(construct constructs.IConstruct) *bool
- func NewCfnDomain_Override(c CfnDomain, scope constructs.Construct, id *string, props *CfnDomainProps)
- func NewDomain_Override(d Domain, scope constructs.Construct, id *string, props *DomainProps)
- type AdvancedSecurityOptions
- type CapacityConfig
- type CfnDomain
- type CfnDomainProps
- type CfnDomain_AdvancedSecurityOptionsInputProperty
- type CfnDomain_ClusterConfigProperty
- type CfnDomain_CognitoOptionsProperty
- type CfnDomain_DomainEndpointOptionsProperty
- type CfnDomain_EBSOptionsProperty
- type CfnDomain_EncryptionAtRestOptionsProperty
- type CfnDomain_LogPublishingOptionProperty
- type CfnDomain_MasterUserOptionsProperty
- type CfnDomain_NodeToNodeEncryptionOptionsProperty
- type CfnDomain_SnapshotOptionsProperty
- type CfnDomain_VPCOptionsProperty
- type CfnDomain_ZoneAwarenessConfigProperty
- type CognitoOptions
- type CustomEndpointOptions
- type Domain
- type DomainAttributes
- type DomainProps
- type EbsOptions
- type EncryptionAtRestOptions
- type EngineVersion
- func EngineVersion_ELASTICSEARCH_1_5() EngineVersion
- func EngineVersion_ELASTICSEARCH_2_3() EngineVersion
- func EngineVersion_ELASTICSEARCH_5_1() EngineVersion
- func EngineVersion_ELASTICSEARCH_5_3() EngineVersion
- func EngineVersion_ELASTICSEARCH_5_5() EngineVersion
- func EngineVersion_ELASTICSEARCH_5_6() EngineVersion
- func EngineVersion_ELASTICSEARCH_6_0() EngineVersion
- func EngineVersion_ELASTICSEARCH_6_2() EngineVersion
- func EngineVersion_ELASTICSEARCH_6_3() EngineVersion
- func EngineVersion_ELASTICSEARCH_6_4() EngineVersion
- func EngineVersion_ELASTICSEARCH_6_5() EngineVersion
- func EngineVersion_ELASTICSEARCH_6_7() EngineVersion
- func EngineVersion_ELASTICSEARCH_6_8() EngineVersion
- func EngineVersion_ELASTICSEARCH_7_1() EngineVersion
- func EngineVersion_ELASTICSEARCH_7_10() EngineVersion
- func EngineVersion_ELASTICSEARCH_7_4() EngineVersion
- func EngineVersion_ELASTICSEARCH_7_7() EngineVersion
- func EngineVersion_ELASTICSEARCH_7_8() EngineVersion
- func EngineVersion_ELASTICSEARCH_7_9() EngineVersion
- func EngineVersion_Elasticsearch(version *string) EngineVersion
- func EngineVersion_OPENSEARCH_1_0() EngineVersion
- func EngineVersion_OPENSEARCH_1_1() EngineVersion
- func EngineVersion_OpenSearch(version *string) EngineVersion
- type IDomain
- type LoggingOptions
- type TLSSecurityPolicy
- type ZoneAwarenessConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnDomain_CFN_RESOURCE_TYPE_NAME ¶
func CfnDomain_CFN_RESOURCE_TYPE_NAME() *string
func CfnDomain_IsCfnElement ¶
func CfnDomain_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element.
func CfnDomain_IsCfnResource ¶
func CfnDomain_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnDomain_IsConstruct ¶
func CfnDomain_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func Domain_IsConstruct ¶
func Domain_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func Domain_IsResource ¶
func Domain_IsResource(construct constructs.IConstruct) *bool
Check whether the given construct is a Resource.
func NewCfnDomain_Override ¶
func NewCfnDomain_Override(c CfnDomain, scope constructs.Construct, id *string, props *CfnDomainProps)
Create a new `AWS::OpenSearchService::Domain`.
func NewDomain_Override ¶
func NewDomain_Override(d Domain, scope constructs.Construct, id *string, props *DomainProps)
Types ¶
type AdvancedSecurityOptions ¶
type AdvancedSecurityOptions struct { // ARN for the master user. // // Only specify this or masterUserName, but not both. MasterUserArn *string `json:"masterUserArn" yaml:"masterUserArn"` // Username for the master user. // // Only specify this or masterUserArn, but not both. MasterUserName *string `json:"masterUserName" yaml:"masterUserName"` // Password for the master user. // // You can use `SecretValue.plainText` to specify a password in plain text or // use `secretsmanager.Secret.fromSecretAttributes` to reference a secret in // Secrets Manager. MasterUserPassword awscdk.SecretValue `json:"masterUserPassword" yaml:"masterUserPassword"` }
Specifies options for fine-grained access control.
TODO: EXAMPLE
type CapacityConfig ¶
type CapacityConfig struct { // The instance type for your data nodes, such as `m3.medium.search`. For valid values, see [Supported Instance Types](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/supported-instance-types.html) in the Amazon OpenSearch Service Developer Guide. DataNodeInstanceType *string `json:"dataNodeInstanceType" yaml:"dataNodeInstanceType"` // The number of data nodes (instances) to use in the Amazon OpenSearch Service domain. DataNodes *float64 `json:"dataNodes" yaml:"dataNodes"` // The hardware configuration of the computer that hosts the dedicated master node, such as `m3.medium.search`. For valid values, see [Supported Instance Types] (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/supported-instance-types.html) in the Amazon OpenSearch Service Developer Guide. MasterNodeInstanceType *string `json:"masterNodeInstanceType" yaml:"masterNodeInstanceType"` // The number of instances to use for the master node. MasterNodes *float64 `json:"masterNodes" yaml:"masterNodes"` // The instance type for your UltraWarm node, such as `ultrawarm1.medium.search`. For valid values, see [UltraWarm Storage Limits] (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/limits.html#limits-ultrawarm) in the Amazon OpenSearch Service Developer Guide. WarmInstanceType *string `json:"warmInstanceType" yaml:"warmInstanceType"` // The number of UltraWarm nodes (instances) to use in the Amazon OpenSearch Service domain. WarmNodes *float64 `json:"warmNodes" yaml:"warmNodes"` }
Configures the capacity of the cluster such as the instance type and the number of instances.
TODO: EXAMPLE
type CfnDomain ¶
type CfnDomain interface { awscdk.CfnResource awscdk.IInspectable AccessPolicies() interface{} SetAccessPolicies(val interface{}) AdvancedOptions() interface{} SetAdvancedOptions(val interface{}) AdvancedSecurityOptions() interface{} SetAdvancedSecurityOptions(val interface{}) AttrArn() *string AttrDomainEndpoint() *string AttrId() *string CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} CfnResourceType() *string ClusterConfig() interface{} SetClusterConfig(val interface{}) CognitoOptions() interface{} SetCognitoOptions(val interface{}) CreationStack() *[]*string DomainEndpointOptions() interface{} SetDomainEndpointOptions(val interface{}) DomainName() *string SetDomainName(val *string) EbsOptions() interface{} SetEbsOptions(val interface{}) EncryptionAtRestOptions() interface{} SetEncryptionAtRestOptions(val interface{}) EngineVersion() *string SetEngineVersion(val *string) LogicalId() *string LogPublishingOptions() interface{} SetLogPublishingOptions(val interface{}) Node() constructs.Node NodeToNodeEncryptionOptions() interface{} SetNodeToNodeEncryptionOptions(val interface{}) Ref() *string SnapshotOptions() interface{} SetSnapshotOptions(val interface{}) Stack() awscdk.Stack Tags() awscdk.TagManager UpdatedProperites() *map[string]interface{} VpcOptions() interface{} SetVpcOptions(val interface{}) AddDeletionOverride(path *string) AddDependsOn(target awscdk.CfnResource) AddMetadata(key *string, value interface{}) AddOverride(path *string, value interface{}) AddPropertyDeletionOverride(propertyPath *string) AddPropertyOverride(propertyPath *string, value interface{}) ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions) GetAtt(attributeName *string) awscdk.Reference GetMetadata(key *string) interface{} Inspect(inspector awscdk.TreeInspector) OverrideLogicalId(newLogicalId *string) RenderProperties(props *map[string]interface{}) *map[string]interface{} ShouldSynthesize() *bool ToString() *string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::OpenSearchService::Domain`.
The AWS::OpenSearchService::Domain resource creates an Amazon OpenSearch Service (successor to Amazon Elasticsearch Service) domain.
> The `AWS::OpenSearchService::Domain` resource replaces the legacy [AWS::Elasticsearch::Domain](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html) resource. While the Elasticsearch resource and options are still supported, we recommend modifying your existing Cloudformation templates to use the new OpenSearch Service resource, which supports both OpenSearch and legacy Elasticsearch engines. For instructions to upgrade domains defined within CloudFormation from Elasticsearch to OpenSearch, see [Remarks](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-domain.html#aws-resource-opensearchservice-domain--remarks) .
TODO: EXAMPLE
func NewCfnDomain ¶
func NewCfnDomain(scope constructs.Construct, id *string, props *CfnDomainProps) CfnDomain
Create a new `AWS::OpenSearchService::Domain`.
type CfnDomainProps ¶
type CfnDomainProps struct { // An AWS Identity and Access Management ( IAM ) policy document that specifies who can access the OpenSearch Service domain and their permissions. // // For more information, see [Configuring access policies](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/ac.html#ac-creating) in the *Amazon OpenSearch Service Developer Guide* . AccessPolicies interface{} `json:"accessPolicies" yaml:"accessPolicies"` // Additional options to specify for the OpenSearch Service domain. // // For more information, see [Advanced cluster parameters](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options) in the *Amazon OpenSearch Service Developer Guide* . AdvancedOptions interface{} `json:"advancedOptions" yaml:"advancedOptions"` // Specifies options for fine-grained access control. AdvancedSecurityOptions interface{} `json:"advancedSecurityOptions" yaml:"advancedSecurityOptions"` // `ClusterConfig` is a property of the AWS::OpenSearchService::Domain resource that configures an Amazon OpenSearch Service cluster. ClusterConfig interface{} `json:"clusterConfig" yaml:"clusterConfig"` // Configures OpenSearch Service to use Amazon Cognito authentication for OpenSearch Dashboards. CognitoOptions interface{} `json:"cognitoOptions" yaml:"cognitoOptions"` // 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. DomainEndpointOptions interface{} `json:"domainEndpointOptions" yaml:"domainEndpointOptions"` // A name for the OpenSearch Service domain. // // For valid values, see the [DomainName](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/configuration-api.html#configuration-api-datatypes-domainname) data type in the *Amazon OpenSearch Service Developer Guide* . If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the domain name. For more information, see [Name Type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html) . // // > If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name. DomainName *string `json:"domainName" yaml:"domainName"` // The configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the OpenSearch Service domain. // // For more information, see [EBS volume size limits](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/limits.html#ebsresource) in the *Amazon OpenSearch Service Developer Guide* . EbsOptions interface{} `json:"ebsOptions" yaml:"ebsOptions"` // Whether the domain should encrypt data at rest, and if so, the AWS KMS key to use. // // See [Encryption of data at rest for Amazon OpenSearch Service](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/encryption-at-rest.html) . EncryptionAtRestOptions interface{} `json:"encryptionAtRestOptions" yaml:"encryptionAtRestOptions"` // The version of OpenSearch to use. // // The value must be in the format `OpenSearch_X.Y` or `Elasticsearch_X.Y` . If not specified, the latest version of OpenSearch is used. For information about the versions that OpenSearch Service supports, see [Supported versions of OpenSearch and Elasticsearch](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/what-is.html#choosing-version) in the *Amazon OpenSearch Service Developer Guide* . // // If you set the [EnableVersionUpgrade](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-updatepolicy.html#cfn-attributes-updatepolicy-upgradeopensearchdomain) update policy to `true` , you can update `EngineVersion` without interruption. When `EnableVersionUpgrade` is set to `false` , or is not specified, updating `EngineVersion` results in [replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement) . EngineVersion *string `json:"engineVersion" yaml:"engineVersion"` // 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. // // Each key needs a valid `LogPublishingOption` value. For the full syntax, see the [examples](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-domain.html#aws-resource-opensearchservice-domain--examples) . LogPublishingOptions interface{} `json:"logPublishingOptions" yaml:"logPublishingOptions"` // Specifies whether node-to-node encryption is enabled. // // See [Node-to-node encryption for Amazon OpenSearch Service](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/ntn.html) . NodeToNodeEncryptionOptions interface{} `json:"nodeToNodeEncryptionOptions" yaml:"nodeToNodeEncryptionOptions"` // *DEPRECATED* . // // The automated snapshot configuration for the OpenSearch Service domain indices. SnapshotOptions interface{} `json:"snapshotOptions" yaml:"snapshotOptions"` // An arbitrary set of tags (key–value pairs) to associate with the OpenSearch Service domain. Tags *[]*awscdk.CfnTag `json:"tags" yaml:"tags"` // The virtual private cloud (VPC) configuration for the OpenSearch Service domain. // // For more information, see [Launching your Amazon OpenSearch Service domains within a VPC](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/vpc.html) in the *Amazon OpenSearch Service Developer Guide* . VpcOptions interface{} `json:"vpcOptions" yaml:"vpcOptions"` }
Properties for defining a `CfnDomain`.
TODO: EXAMPLE
type CfnDomain_AdvancedSecurityOptionsInputProperty ¶
type CfnDomain_AdvancedSecurityOptionsInputProperty struct { // True to enable fine-grained access control. // // You must also enable encryption of data at rest and node-to-node encryption. See [Fine-grained access control in Amazon OpenSearch Service](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html) . Enabled interface{} `json:"enabled" yaml:"enabled"` // True to enable the internal user database. InternalUserDatabaseEnabled interface{} `json:"internalUserDatabaseEnabled" yaml:"internalUserDatabaseEnabled"` // Specifies information about the master user. MasterUserOptions interface{} `json:"masterUserOptions" yaml:"masterUserOptions"` }
Specifies options for fine-grained access control.
TODO: EXAMPLE
type CfnDomain_ClusterConfigProperty ¶
type CfnDomain_ClusterConfigProperty struct { // The number of instances to use for the master node. // // If you specify this property, you must specify `true` for the `DedicatedMasterEnabled` property. DedicatedMasterCount *float64 `json:"dedicatedMasterCount" yaml:"dedicatedMasterCount"` // Indicates whether to use a dedicated master node for the OpenSearch Service domain. // // A dedicated master node is a cluster node that performs cluster management tasks, but doesn't hold data or respond to data upload requests. Dedicated master nodes offload cluster management tasks to increase the stability of your search clusters. See [Dedicated master nodes in Amazon OpenSearch Service](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/managedomains-dedicatedmasternodes.html) . DedicatedMasterEnabled interface{} `json:"dedicatedMasterEnabled" yaml:"dedicatedMasterEnabled"` // The hardware configuration of the computer that hosts the dedicated master node, such as `m3.medium.search` . If you specify this property, you must specify `true` for the `DedicatedMasterEnabled` property. For valid values, see [Supported instance types in Amazon OpenSearch Service](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/supported-instance-types.html) . DedicatedMasterType *string `json:"dedicatedMasterType" yaml:"dedicatedMasterType"` // The number of data nodes (instances) to use in the OpenSearch Service domain. InstanceCount *float64 `json:"instanceCount" yaml:"instanceCount"` // The instance type for your data nodes, such as `m3.medium.search` . For valid values, see [Supported instance types in Amazon OpenSearch Service](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/supported-instance-types.html) . InstanceType *string `json:"instanceType" yaml:"instanceType"` // The number of warm nodes in the cluster. WarmCount *float64 `json:"warmCount" yaml:"warmCount"` // Whether to enable UltraWarm storage for the cluster. // // See [UltraWarm storage for Amazon OpenSearch Service](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/ultrawarm.html) . WarmEnabled interface{} `json:"warmEnabled" yaml:"warmEnabled"` // The instance type for the cluster's warm nodes. WarmType *string `json:"warmType" yaml:"warmType"` // Specifies zone awareness configuration options. // // Only use if `ZoneAwarenessEnabled` is `true` . ZoneAwarenessConfig interface{} `json:"zoneAwarenessConfig" yaml:"zoneAwarenessConfig"` // Indicates whether to enable zone awareness for the OpenSearch Service domain. // // When you enable zone awareness, OpenSearch Service allocates the nodes and replica index shards that belong to a cluster across two Availability Zones (AZs) in the same region to prevent data loss and minimize downtime in the event of node or data center failure. Don't enable zone awareness if your cluster has no replica index shards or is a single-node cluster. For more information, see [Configuring a multi-AZ domain in Amazon OpenSearch Service](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/managedomains-multiaz.html) . ZoneAwarenessEnabled interface{} `json:"zoneAwarenessEnabled" yaml:"zoneAwarenessEnabled"` }
The cluster configuration for the OpenSearch Service domain.
You can specify options such as the instance type and the number of instances. For more information, see [Creating and managing Amazon OpenSearch Service domains](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html) in the *Amazon OpenSearch Service Developer Guide* .
TODO: EXAMPLE
type CfnDomain_CognitoOptionsProperty ¶
type CfnDomain_CognitoOptionsProperty struct { // Whether to enable or disable Amazon Cognito authentication for OpenSearch Dashboards. // // See [Amazon Cognito authentication for OpenSearch Dashboards](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/cognito-auth.html) . Enabled interface{} `json:"enabled" yaml:"enabled"` // The Amazon Cognito identity pool ID that you want OpenSearch Service to use for OpenSearch Dashboards authentication. IdentityPoolId *string `json:"identityPoolId" yaml:"identityPoolId"` // The `AmazonESCognitoAccess` role that allows OpenSearch Service to configure your user pool and identity pool. RoleArn *string `json:"roleArn" yaml:"roleArn"` // The Amazon Cognito user pool ID that you want OpenSearch Service to use for OpenSearch Dashboards authentication. UserPoolId *string `json:"userPoolId" yaml:"userPoolId"` }
Configures OpenSearch Service to use Amazon Cognito authentication for OpenSearch Dashboards.
TODO: EXAMPLE
type CfnDomain_DomainEndpointOptionsProperty ¶
type CfnDomain_DomainEndpointOptionsProperty struct { // The fully qualified URL for your custom endpoint. CustomEndpoint *string `json:"customEndpoint" yaml:"customEndpoint"` // The AWS Certificate Manager ARN for your domain's SSL/TLS certificate. CustomEndpointCertificateArn *string `json:"customEndpointCertificateArn" yaml:"customEndpointCertificateArn"` // True to enable a custom endpoint for the domain. // // If enabled, you must also provide values for `CustomEndpoint` and `CustomEndpointCertificateArn` . CustomEndpointEnabled interface{} `json:"customEndpointEnabled" yaml:"customEndpointEnabled"` // True to require that all traffic to the domain arrive over HTTPS. EnforceHttps interface{} `json:"enforceHttps" yaml:"enforceHttps"` // The minimum TLS version required for traffic to the domain. Valid values are TLS 1.0 (default) or 1.2:. // // - `Policy-Min-TLS-1-0-2019-07` // - `Policy-Min-TLS-1-2-2019-07` TlsSecurityPolicy *string `json:"tlsSecurityPolicy" yaml:"tlsSecurityPolicy"` }
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.
TODO: EXAMPLE
type CfnDomain_EBSOptionsProperty ¶
type CfnDomain_EBSOptionsProperty struct { // Specifies whether Amazon EBS volumes are attached to data nodes in the OpenSearch Service domain. EbsEnabled interface{} `json:"ebsEnabled" yaml:"ebsEnabled"` // The number of I/O operations per second (IOPS) that the volume supports. // // This property applies only to the Provisioned IOPS (SSD) EBS volume type. Iops *float64 `json:"iops" yaml:"iops"` // The size (in GiB) of the EBS volume for each data node. // // The minimum and maximum size of an EBS volume depends on the EBS volume type and the instance type to which it is attached. For more information, see [EBS volume size limits](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/limits.html#ebsresource) in the *Amazon OpenSearch Service Developer Guide* . VolumeSize *float64 `json:"volumeSize" yaml:"volumeSize"` // The EBS volume type to use with the OpenSearch Service domain, such as standard, gp2, or io1. // // For more information about each type, see [Amazon EBS volume types](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html) in the *Amazon EC2 User Guide for Linux Instances* . VolumeType *string `json:"volumeType" yaml:"volumeType"` }
The configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the OpenSearch Service domain.
For more information, see [EBS volume size limits](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/limits.html#ebsresource) in the *Amazon OpenSearch Service Developer Guide* .
TODO: EXAMPLE
type CfnDomain_EncryptionAtRestOptionsProperty ¶
type CfnDomain_EncryptionAtRestOptionsProperty struct { // Specify `true` to enable encryption at rest. Enabled interface{} `json:"enabled" yaml:"enabled"` // The KMS key ID. // // Takes the form `1a2a3a4-1a2a-3a4a-5a6a-1a2a3a4a5a6a` . KmsKeyId *string `json:"kmsKeyId" yaml:"kmsKeyId"` }
Whether the domain should encrypt data at rest, and if so, the AWS Key Management Service key to use.
TODO: EXAMPLE
type CfnDomain_LogPublishingOptionProperty ¶
type CfnDomain_LogPublishingOptionProperty struct { // Specifies the CloudWatch log group to publish to. CloudWatchLogsLogGroupArn *string `json:"cloudWatchLogsLogGroupArn" yaml:"cloudWatchLogsLogGroupArn"` // If `true` , enables the publishing of logs to CloudWatch. // // Default: `false` . Enabled interface{} `json:"enabled" yaml:"enabled"` }
Specifies whether the OpenSearch Service domain publishes the OpenSearch application, search slow logs, or index slow logs to Amazon CloudWatch.
Each option must be an object of name `SEARCH_SLOW_LOGS` , `ES_APPLICATION_LOGS` , `INDEX_SLOW_LOGS` , or `AUDIT_LOGS` depending on the type of logs you want to publish. For the full syntax, see the [examples](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-domain.html#aws-resource-opensearchservice-domain--examples) .
If you enable a slow log, you still have to enable the *collection* of slow logs using the OpenSearch REST API. To learn more, see [Enabling log publishing ( AWS CLI)](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createdomain-configure-slow-logs.html#createdomain-configure-slow-logs-cli) .
TODO: EXAMPLE
type CfnDomain_MasterUserOptionsProperty ¶
type CfnDomain_MasterUserOptionsProperty struct { // ARN for the master user. // // Only specify if `InternalUserDatabaseEnabled` is false in `AdvancedSecurityOptions` . MasterUserArn *string `json:"masterUserArn" yaml:"masterUserArn"` // Username for the master user. // // Only specify if `InternalUserDatabaseEnabled` is true in `AdvancedSecurityOptions` . MasterUserName *string `json:"masterUserName" yaml:"masterUserName"` // Password for the master user. // // Only specify if `InternalUserDatabaseEnabled` is true in `AdvancedSecurityOptions` . MasterUserPassword *string `json:"masterUserPassword" yaml:"masterUserPassword"` }
Specifies information about the master user.
TODO: EXAMPLE
type CfnDomain_NodeToNodeEncryptionOptionsProperty ¶
type CfnDomain_NodeToNodeEncryptionOptionsProperty struct {
// Specifies to enable or disable node-to-node encryption on the domain.
Enabled interface{} `json:"enabled" yaml:"enabled"`
}
Specifies options for node-to-node encryption.
TODO: EXAMPLE
type CfnDomain_SnapshotOptionsProperty ¶
type CfnDomain_SnapshotOptionsProperty struct { // The hour in UTC during which the service takes an automated daily snapshot of the indices in the OpenSearch Service domain. // // For example, if you specify 0, OpenSearch Service takes an automated snapshot everyday between midnight and 1 am. You can specify a value between 0 and 23. AutomatedSnapshotStartHour *float64 `json:"automatedSnapshotStartHour" yaml:"automatedSnapshotStartHour"` }
*DEPRECATED* .
This setting is only relevant to domains running legacy Elasticsearch OSS versions earlier than 5.3. It does not apply to OpenSearch domains.
The automated snapshot configuration for the OpenSearch Service domain indices.
TODO: EXAMPLE
type CfnDomain_VPCOptionsProperty ¶
type CfnDomain_VPCOptionsProperty struct { // The list of security group IDs that are associated with the VPC endpoints for the domain. // // If you don't provide a security group ID, OpenSearch Service uses the default security group for the VPC. To learn more, see [Security groups for your VPC](https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html) in the *Amazon VPC User Guide* . SecurityGroupIds *[]*string `json:"securityGroupIds" yaml:"securityGroupIds"` // Provide one subnet ID for each Availability Zone that your domain uses. // // For example, you must specify three subnet IDs for a three Availability Zone domain. To learn more, see [VPCs and subnets](https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html) in the *Amazon VPC User Guide* . SubnetIds *[]*string `json:"subnetIds" yaml:"subnetIds"` }
The virtual private cloud (VPC) configuration for the OpenSearch Service domain.
For more information, see [Launching your Amazon OpenSearch Service domains using a VPC](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/vpc.html) in the *Amazon OpenSearch Service Developer Guide* .
TODO: EXAMPLE
type CfnDomain_ZoneAwarenessConfigProperty ¶
type CfnDomain_ZoneAwarenessConfigProperty struct { // If you enabled multiple Availability Zones (AZs), the number of AZs that you want the domain to use. // // Valid values are `2` and `3` . Default is 2. AvailabilityZoneCount *float64 `json:"availabilityZoneCount" yaml:"availabilityZoneCount"` }
Specifies zone awareness configuration options.
Only use if `ZoneAwarenessEnabled` is `true` .
TODO: EXAMPLE
type CognitoOptions ¶
type CognitoOptions struct { // The Amazon Cognito identity pool ID that you want Amazon OpenSearch Service to use for OpenSearch Dashboards authentication. IdentityPoolId *string `json:"identityPoolId" yaml:"identityPoolId"` // A role that allows Amazon OpenSearch Service to configure your user pool and identity pool. // // It must have the `AmazonESCognitoAccess` policy attached to it. // See: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/cognito-auth.html#cognito-auth-prereq // Role awsiam.IRole `json:"role" yaml:"role"` // The Amazon Cognito user pool ID that you want Amazon OpenSearch Service to use for OpenSearch Dashboards authentication. UserPoolId *string `json:"userPoolId" yaml:"userPoolId"` }
Configures Amazon OpenSearch Service to use Amazon Cognito authentication for OpenSearch Dashboards.
TODO: EXAMPLE
See: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/cognito-auth.html
type CustomEndpointOptions ¶
type CustomEndpointOptions struct { // The custom domain name to assign. DomainName *string `json:"domainName" yaml:"domainName"` // The certificate to use. Certificate awscertificatemanager.ICertificate `json:"certificate" yaml:"certificate"` // The hosted zone in Route53 to create the CNAME record in. HostedZone awsroute53.IHostedZone `json:"hostedZone" yaml:"hostedZone"` }
Configures a custom domain endpoint for the Amazon OpenSearch Service domain.
TODO: EXAMPLE
type Domain ¶
type Domain interface { awscdk.Resource awsec2.IConnectable IDomain AppLogGroup() awslogs.ILogGroup AuditLogGroup() awslogs.ILogGroup Connections() awsec2.Connections DomainArn() *string DomainEndpoint() *string DomainId() *string DomainName() *string Env() *awscdk.ResourceEnvironment MasterUserPassword() awscdk.SecretValue Node() constructs.Node PhysicalName() *string SlowIndexLogGroup() awslogs.ILogGroup SlowSearchLogGroup() awslogs.ILogGroup Stack() awscdk.Stack ApplyRemovalPolicy(policy awscdk.RemovalPolicy) GeneratePhysicalName() *string GetResourceArnAttribute(arnAttr *string, arnComponents *awscdk.ArnComponents) *string GetResourceNameAttribute(nameAttr *string) *string GrantIndexRead(index *string, identity awsiam.IGrantable) awsiam.Grant GrantIndexReadWrite(index *string, identity awsiam.IGrantable) awsiam.Grant GrantIndexWrite(index *string, identity awsiam.IGrantable) awsiam.Grant GrantPathRead(path *string, identity awsiam.IGrantable) awsiam.Grant GrantPathReadWrite(path *string, identity awsiam.IGrantable) awsiam.Grant GrantPathWrite(path *string, identity awsiam.IGrantable) awsiam.Grant GrantRead(identity awsiam.IGrantable) awsiam.Grant GrantReadWrite(identity awsiam.IGrantable) awsiam.Grant GrantWrite(identity awsiam.IGrantable) awsiam.Grant Metric(metricName *string, props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricAutomatedSnapshotFailure(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricClusterIndexWritesBlocked(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricClusterStatusRed(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricClusterStatusYellow(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricCPUUtilization(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricFreeStorageSpace(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricIndexingLatency(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricJVMMemoryPressure(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricKMSKeyError(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricKMSKeyInaccessible(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricMasterCPUUtilization(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricMasterJVMMemoryPressure(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricNodes(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricSearchableDocuments(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricSearchLatency(props *awscloudwatch.MetricOptions) awscloudwatch.Metric ToString() *string }
Provides an Amazon OpenSearch Service domain.
TODO: EXAMPLE
func NewDomain ¶
func NewDomain(scope constructs.Construct, id *string, props *DomainProps) Domain
type DomainAttributes ¶
type DomainAttributes struct { // The ARN of the Amazon OpenSearch Service domain. DomainArn *string `json:"domainArn" yaml:"domainArn"` // The domain endpoint of the Amazon OpenSearch Service domain. DomainEndpoint *string `json:"domainEndpoint" yaml:"domainEndpoint"` }
Reference to an Amazon OpenSearch Service domain.
TODO: EXAMPLE
type DomainProps ¶
type DomainProps struct { // The Elasticsearch/OpenSearch version that your domain will leverage. Version EngineVersion `json:"version" yaml:"version"` // Domain access policies. AccessPolicies *[]awsiam.PolicyStatement `json:"accessPolicies" yaml:"accessPolicies"` // Additional options to specify for the Amazon OpenSearch Service domain. // See: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options // AdvancedOptions *map[string]*string `json:"advancedOptions" yaml:"advancedOptions"` // The hour in UTC during which the service takes an automated daily snapshot of the indices in the Amazon OpenSearch Service domain. // // Only applies for Elasticsearch versions // below 5.3. AutomatedSnapshotStartHour *float64 `json:"automatedSnapshotStartHour" yaml:"automatedSnapshotStartHour"` // The cluster capacity configuration for the Amazon OpenSearch Service domain. Capacity *CapacityConfig `json:"capacity" yaml:"capacity"` // Configures Amazon OpenSearch Service to use Amazon Cognito authentication for OpenSearch Dashboards. CognitoDashboardsAuth *CognitoOptions `json:"cognitoDashboardsAuth" yaml:"cognitoDashboardsAuth"` // To configure a custom domain configure these options. // // If you specify a Route53 hosted zone it will create a CNAME record and use DNS validation for the certificate CustomEndpoint *CustomEndpointOptions `json:"customEndpoint" yaml:"customEndpoint"` // Enforces a particular physical domain name. DomainName *string `json:"domainName" yaml:"domainName"` // The configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the Amazon OpenSearch Service domain. Ebs *EbsOptions `json:"ebs" yaml:"ebs"` // To upgrade an Amazon OpenSearch Service domain to a new version, rather than replacing the entire domain resource, use the EnableVersionUpgrade update policy. // See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-updatepolicy.html#cfn-attributes-updatepolicy-upgradeopensearchdomain // EnableVersionUpgrade *bool `json:"enableVersionUpgrade" yaml:"enableVersionUpgrade"` // Encryption at rest options for the cluster. EncryptionAtRest *EncryptionAtRestOptions `json:"encryptionAtRest" yaml:"encryptionAtRest"` // True to require that all traffic to the domain arrive over HTTPS. EnforceHttps *bool `json:"enforceHttps" yaml:"enforceHttps"` // Specifies options for fine-grained access control. // // Requires Elasticsearch version 6.7 or later or OpenSearch version 1.0 or later. Enabling fine-grained access control // also requires encryption of data at rest and node-to-node encryption, along with // enforced HTTPS. FineGrainedAccessControl *AdvancedSecurityOptions `json:"fineGrainedAccessControl" yaml:"fineGrainedAccessControl"` // Configuration log publishing configuration options. Logging *LoggingOptions `json:"logging" yaml:"logging"` // Specify true to enable node to node encryption. // // Requires Elasticsearch version 6.0 or later or OpenSearch version 1.0 or later. NodeToNodeEncryption *bool `json:"nodeToNodeEncryption" yaml:"nodeToNodeEncryption"` // Policy to apply when the domain is removed from the stack. RemovalPolicy awscdk.RemovalPolicy `json:"removalPolicy" yaml:"removalPolicy"` // The list of security groups that are associated with the VPC endpoints for the domain. // // Only used if `vpc` is specified. // See: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html // SecurityGroups *[]awsec2.ISecurityGroup `json:"securityGroups" yaml:"securityGroups"` // The minimum TLS version required for traffic to the domain. TlsSecurityPolicy TLSSecurityPolicy `json:"tlsSecurityPolicy" yaml:"tlsSecurityPolicy"` // Configures the domain so that unsigned basic auth is enabled. // // If no master user is provided a default master user // with username `admin` and a dynamically generated password stored in KMS is created. The password can be retrieved // by getting `masterUserPassword` from the domain instance. // // Setting this to true will also add an access policy that allows unsigned // access, enable node to node encryption, encryption at rest. If conflicting // settings are encountered (like disabling encryption at rest) enabling this // setting will cause a failure. UseUnsignedBasicAuth *bool `json:"useUnsignedBasicAuth" yaml:"useUnsignedBasicAuth"` // Place the domain inside this VPC. // See: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/vpc.html // Vpc awsec2.IVpc `json:"vpc" yaml:"vpc"` // The specific vpc subnets the domain will be placed in. // // You must provide one subnet for each Availability Zone // that your domain uses. For example, you must specify three subnet IDs for a three Availability Zone // domain. // // Only used if `vpc` is specified. // See: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html // VpcSubnets *[]*awsec2.SubnetSelection `json:"vpcSubnets" yaml:"vpcSubnets"` // The cluster zone awareness configuration for the Amazon OpenSearch Service domain. ZoneAwareness *ZoneAwarenessConfig `json:"zoneAwareness" yaml:"zoneAwareness"` }
Properties for an Amazon OpenSearch Service domain.
TODO: EXAMPLE
type EbsOptions ¶
type EbsOptions struct { // Specifies whether Amazon EBS volumes are attached to data nodes in the Amazon OpenSearch Service domain. Enabled *bool `json:"enabled" yaml:"enabled"` // The number of I/O operations per second (IOPS) that the volume supports. // // This property applies only to the Provisioned IOPS (SSD) EBS // volume type. Iops *float64 `json:"iops" yaml:"iops"` // The size (in GiB) of the EBS volume for each data node. // // The minimum and // maximum size of an EBS volume depends on the EBS volume type and the // instance type to which it is attached. For valid values, see // [EBS volume size limits] // (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/limits.html#ebsresource) // in the Amazon OpenSearch Service Developer Guide. VolumeSize *float64 `json:"volumeSize" yaml:"volumeSize"` // The EBS volume type to use with the Amazon OpenSearch Service domain, such as standard, gp2, io1. VolumeType awsec2.EbsDeviceVolumeType `json:"volumeType" yaml:"volumeType"` }
The configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the Amazon OpenSearch Service domain.
For more information, see [Amazon EBS] (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AmazonEBS.html) in the Amazon Elastic Compute Cloud Developer Guide.
TODO: EXAMPLE
type EncryptionAtRestOptions ¶
type EncryptionAtRestOptions struct { // Specify true to enable encryption at rest. Enabled *bool `json:"enabled" yaml:"enabled"` // Supply if using KMS key for encryption at rest. KmsKey awskms.IKey `json:"kmsKey" yaml:"kmsKey"` }
Whether the domain should encrypt data at rest, and if so, the AWS Key Management Service (KMS) key to use.
Can only be used to create a new domain, not update an existing one. Requires Elasticsearch version 5.1 or later or OpenSearch version 1.0 or later.
TODO: EXAMPLE
type EngineVersion ¶
type EngineVersion interface {
Version() *string
}
OpenSearch version.
TODO: EXAMPLE
func EngineVersion_ELASTICSEARCH_1_5 ¶
func EngineVersion_ELASTICSEARCH_1_5() EngineVersion
func EngineVersion_ELASTICSEARCH_2_3 ¶
func EngineVersion_ELASTICSEARCH_2_3() EngineVersion
func EngineVersion_ELASTICSEARCH_5_1 ¶
func EngineVersion_ELASTICSEARCH_5_1() EngineVersion
func EngineVersion_ELASTICSEARCH_5_3 ¶
func EngineVersion_ELASTICSEARCH_5_3() EngineVersion
func EngineVersion_ELASTICSEARCH_5_5 ¶
func EngineVersion_ELASTICSEARCH_5_5() EngineVersion
func EngineVersion_ELASTICSEARCH_5_6 ¶
func EngineVersion_ELASTICSEARCH_5_6() EngineVersion
func EngineVersion_ELASTICSEARCH_6_0 ¶
func EngineVersion_ELASTICSEARCH_6_0() EngineVersion
func EngineVersion_ELASTICSEARCH_6_2 ¶
func EngineVersion_ELASTICSEARCH_6_2() EngineVersion
func EngineVersion_ELASTICSEARCH_6_3 ¶
func EngineVersion_ELASTICSEARCH_6_3() EngineVersion
func EngineVersion_ELASTICSEARCH_6_4 ¶
func EngineVersion_ELASTICSEARCH_6_4() EngineVersion
func EngineVersion_ELASTICSEARCH_6_5 ¶
func EngineVersion_ELASTICSEARCH_6_5() EngineVersion
func EngineVersion_ELASTICSEARCH_6_7 ¶
func EngineVersion_ELASTICSEARCH_6_7() EngineVersion
func EngineVersion_ELASTICSEARCH_6_8 ¶
func EngineVersion_ELASTICSEARCH_6_8() EngineVersion
func EngineVersion_ELASTICSEARCH_7_1 ¶
func EngineVersion_ELASTICSEARCH_7_1() EngineVersion
func EngineVersion_ELASTICSEARCH_7_10 ¶
func EngineVersion_ELASTICSEARCH_7_10() EngineVersion
func EngineVersion_ELASTICSEARCH_7_4 ¶
func EngineVersion_ELASTICSEARCH_7_4() EngineVersion
func EngineVersion_ELASTICSEARCH_7_7 ¶
func EngineVersion_ELASTICSEARCH_7_7() EngineVersion
func EngineVersion_ELASTICSEARCH_7_8 ¶
func EngineVersion_ELASTICSEARCH_7_8() EngineVersion
func EngineVersion_ELASTICSEARCH_7_9 ¶
func EngineVersion_ELASTICSEARCH_7_9() EngineVersion
func EngineVersion_Elasticsearch ¶
func EngineVersion_Elasticsearch(version *string) EngineVersion
Custom ElasticSearch version.
func EngineVersion_OPENSEARCH_1_0 ¶
func EngineVersion_OPENSEARCH_1_0() EngineVersion
func EngineVersion_OPENSEARCH_1_1 ¶ added in v2.9.0
func EngineVersion_OPENSEARCH_1_1() EngineVersion
func EngineVersion_OpenSearch ¶
func EngineVersion_OpenSearch(version *string) EngineVersion
Custom OpenSearch version.
type IDomain ¶
type IDomain interface { awscdk.IResource // Grant read permissions for an index in this domain to an IAM principal (Role/Group/User). GrantIndexRead(index *string, identity awsiam.IGrantable) awsiam.Grant // Grant read/write permissions for an index in this domain to an IAM principal (Role/Group/User). GrantIndexReadWrite(index *string, identity awsiam.IGrantable) awsiam.Grant // Grant write permissions for an index in this domain to an IAM principal (Role/Group/User). GrantIndexWrite(index *string, identity awsiam.IGrantable) awsiam.Grant // Grant read permissions for a specific path in this domain to an IAM principal (Role/Group/User). GrantPathRead(path *string, identity awsiam.IGrantable) awsiam.Grant // Grant read/write permissions for a specific path in this domain to an IAM principal (Role/Group/User). GrantPathReadWrite(path *string, identity awsiam.IGrantable) awsiam.Grant // Grant write permissions for a specific path in this domain to an IAM principal (Role/Group/User). GrantPathWrite(path *string, identity awsiam.IGrantable) awsiam.Grant // Grant read permissions for this domain and its contents to an IAM principal (Role/Group/User). GrantRead(identity awsiam.IGrantable) awsiam.Grant // Grant read/write permissions for this domain and its contents to an IAM principal (Role/Group/User). GrantReadWrite(identity awsiam.IGrantable) awsiam.Grant // Grant write permissions for this domain and its contents to an IAM principal (Role/Group/User). GrantWrite(identity awsiam.IGrantable) awsiam.Grant // Return the given named metric for this domain. Metric(metricName *string, props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for automated snapshot failures. MetricAutomatedSnapshotFailure(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for the cluster blocking index writes. MetricClusterIndexWritesBlocked(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for the time the cluster status is red. MetricClusterStatusRed(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for the time the cluster status is yellow. MetricClusterStatusYellow(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for CPU utilization. MetricCPUUtilization(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for the storage space of nodes in the cluster. MetricFreeStorageSpace(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for indexing latency. MetricIndexingLatency(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for JVM memory pressure. MetricJVMMemoryPressure(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for KMS key errors. MetricKMSKeyError(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for KMS key being inaccessible. MetricKMSKeyInaccessible(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for master CPU utilization. MetricMasterCPUUtilization(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for master JVM memory pressure. MetricMasterJVMMemoryPressure(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for the number of nodes. MetricNodes(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for number of searchable documents. MetricSearchableDocuments(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for search latency. MetricSearchLatency(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Arn of the Amazon OpenSearch Service domain. DomainArn() *string // Endpoint of the Amazon OpenSearch Service domain. DomainEndpoint() *string // Identifier of the Amazon OpenSearch Service domain. DomainId() *string // Domain name of the Amazon OpenSearch Service domain. DomainName() *string }
An interface that represents an Amazon OpenSearch Service domain - either created with the CDK, or an existing one.
func Domain_FromDomainAttributes ¶
func Domain_FromDomainAttributes(scope constructs.Construct, id *string, attrs *DomainAttributes) IDomain
Creates a domain construct that represents an external domain.
func Domain_FromDomainEndpoint ¶
func Domain_FromDomainEndpoint(scope constructs.Construct, id *string, domainEndpoint *string) IDomain
Creates a domain construct that represents an external domain via domain endpoint.
type LoggingOptions ¶
type LoggingOptions struct { // Specify if Amazon OpenSearch Service application logging should be set up. // // Requires Elasticsearch version 5.1 or later or OpenSearch version 1.0 or later. AppLogEnabled *bool `json:"appLogEnabled" yaml:"appLogEnabled"` // Log Amazon OpenSearch Service application logs to this log group. AppLogGroup awslogs.ILogGroup `json:"appLogGroup" yaml:"appLogGroup"` // Specify if Amazon OpenSearch Service audit logging should be set up. // // Requires Elasticsearch version 6.7 or later or OpenSearch version 1.0 or later and fine grained access control to be enabled. AuditLogEnabled *bool `json:"auditLogEnabled" yaml:"auditLogEnabled"` // Log Amazon OpenSearch Service audit logs to this log group. AuditLogGroup awslogs.ILogGroup `json:"auditLogGroup" yaml:"auditLogGroup"` // Specify if slow index logging should be set up. // // Requires Elasticsearch version 5.1 or later or OpenSearch version 1.0 or later. SlowIndexLogEnabled *bool `json:"slowIndexLogEnabled" yaml:"slowIndexLogEnabled"` // Log slow indices to this log group. SlowIndexLogGroup awslogs.ILogGroup `json:"slowIndexLogGroup" yaml:"slowIndexLogGroup"` // Specify if slow search logging should be set up. // // Requires Elasticsearch version 5.1 or later or OpenSearch version 1.0 or later. SlowSearchLogEnabled *bool `json:"slowSearchLogEnabled" yaml:"slowSearchLogEnabled"` // Log slow searches to this log group. SlowSearchLogGroup awslogs.ILogGroup `json:"slowSearchLogGroup" yaml:"slowSearchLogGroup"` }
Configures log settings for the domain.
TODO: EXAMPLE
type TLSSecurityPolicy ¶
type TLSSecurityPolicy string
The minimum TLS version required for traffic to the domain.
const ( TLSSecurityPolicy_TLS_1_0 TLSSecurityPolicy = "TLS_1_0" TLSSecurityPolicy_TLS_1_2 TLSSecurityPolicy = "TLS_1_2" )
type ZoneAwarenessConfig ¶
type ZoneAwarenessConfig struct { // If you enabled multiple Availability Zones (AZs), the number of AZs that you want the domain to use. // // Valid values are 2 and 3. AvailabilityZoneCount *float64 `json:"availabilityZoneCount" yaml:"availabilityZoneCount"` // Indicates whether to enable zone awareness for the Amazon OpenSearch Service domain. // // When you enable zone awareness, Amazon OpenSearch Service allocates the nodes and replica // index shards that belong to a cluster across two Availability Zones (AZs) // in the same region to prevent data loss and minimize downtime in the event // of node or data center failure. Don't enable zone awareness if your cluster // has no replica index shards or is a single-node cluster. For more information, // see [Configuring a Multi-AZ Domain] // (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/managedomains-multiaz.html) // in the Amazon OpenSearch Service Developer Guide. Enabled *bool `json:"enabled" yaml:"enabled"` }
Specifies zone awareness configuration options.
TODO: EXAMPLE