@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-22T19:35:47.191Z")
@Deprecated
public interface AdvancedSecurityOptions
Example:
Domain domain = Domain.Builder.create(this, "Domain") .version(ElasticsearchVersion.V7_1) .enforceHttps(true) .nodeToNodeEncryption(true) .encryptionAtRest(EncryptionAtRestOptions.builder() .enabled(true) .build()) .fineGrainedAccessControl(AdvancedSecurityOptions.builder() .masterUserName("master-user") .build()) .build(); SecretValue masterUserPassword = domain.getMasterUserPassword();
Modifier and Type | Interface and Description |
---|---|
static class |
AdvancedSecurityOptions.Builder
Deprecated.
|
static class |
AdvancedSecurityOptions.Jsii$Proxy
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static AdvancedSecurityOptions.Builder |
builder()
Deprecated.
|
default java.lang.String |
getMasterUserArn()
Deprecated.
use opensearchservice module instead
|
default java.lang.String |
getMasterUserName()
Deprecated.
use opensearchservice module instead
|
default SecretValue |
getMasterUserPassword()
Deprecated.
use opensearchservice module instead
|
@Deprecated default java.lang.String getMasterUserArn()
Only specify this or masterUserName, but not both.
Default: - fine-grained access control is disabled
@Deprecated default java.lang.String getMasterUserName()
Only specify this or masterUserArn, but not both.
Default: - fine-grained access control is disabled
@Deprecated default SecretValue getMasterUserPassword()
You can use SecretValue.unsafePlainText
to specify a password in plain text or
use secretsmanager.Secret.fromSecretAttributes
to reference a secret in
Secrets Manager.
Default: - A Secrets Manager generated password
@Deprecated static AdvancedSecurityOptions.Builder builder()
AdvancedSecurityOptions.Builder
of AdvancedSecurityOptions