CreateElasticsearchDomainRequest
public struct CreateElasticsearchDomainRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
IAM access policy as a JSON-formatted string.
Declaration
Swift
public let accessPolicies: String?
-
Option to allow references to indices in an HTTP request body. Must be false when configuring access to individual sub-resources. By default, the value is true. See Configuration Advanced Options for more information.
Declaration
Swift
public let advancedOptions: [String : String]?
-
Specifies advanced security options.
Declaration
Swift
public let advancedSecurityOptions: AdvancedSecurityOptionsInput?
-
Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see Amazon Cognito Authentication for Kibana.
Declaration
Swift
public let cognitoOptions: CognitoOptions?
-
Options to specify configuration that will be applied to the domain endpoint.
Declaration
Swift
public let domainEndpointOptions: DomainEndpointOptions?
-
The name of the Elasticsearch domain that you are creating. Domain names are unique across the domains owned by an account within an AWS region. Domain names must start with a lowercase letter and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).
Declaration
Swift
public let domainName: String
-
Options to enable, disable and specify the type and size of EBS storage volumes.
Declaration
Swift
public let eBSOptions: EBSOptions?
-
Configuration options for an Elasticsearch domain. Specifies the instance type and number of instances in the domain cluster.
Declaration
Swift
public let elasticsearchClusterConfig: ElasticsearchClusterConfig?
-
String of format X.Y to specify version for the Elasticsearch domain eg. “1.5” or “2.3”. For more information, see Creating Elasticsearch Domains in the Amazon Elasticsearch Service Developer Guide.
Declaration
Swift
public let elasticsearchVersion: String?
-
Specifies the Encryption At Rest Options.
Declaration
Swift
public let encryptionAtRestOptions: EncryptionAtRestOptions?
-
Map of LogType and LogPublishingOption, each containing options to publish a given type of Elasticsearch log.
Declaration
Swift
public let logPublishingOptions: [LogType : LogPublishingOption]?
-
Specifies the NodeToNodeEncryptionOptions.
Declaration
Swift
public let nodeToNodeEncryptionOptions: NodeToNodeEncryptionOptions?
-
Option to set time, in UTC format, of the daily automated snapshot. Default value is 0 hours.
Declaration
Swift
public let snapshotOptions: SnapshotOptions?
-
Options to specify the subnets and security groups for VPC endpoint. For more information, see Creating a VPC in VPC Endpoints for Amazon Elasticsearch Service Domains
Declaration
Swift
public let vPCOptions: VPCOptions?
-
init(accessPolicies:advancedOptions:advancedSecurityOptions:cognitoOptions:domainEndpointOptions:domainName:eBSOptions:elasticsearchClusterConfig:elasticsearchVersion:encryptionAtRestOptions:logPublishingOptions:nodeToNodeEncryptionOptions:snapshotOptions:vPCOptions:)
Undocumented
Declaration
Swift
public init(accessPolicies: String? = nil, advancedOptions: [String : String]? = nil, advancedSecurityOptions: AdvancedSecurityOptionsInput? = nil, cognitoOptions: CognitoOptions? = nil, domainEndpointOptions: DomainEndpointOptions? = nil, domainName: String, eBSOptions: EBSOptions? = nil, elasticsearchClusterConfig: ElasticsearchClusterConfig? = nil, elasticsearchVersion: String? = nil, encryptionAtRestOptions: EncryptionAtRestOptions? = nil, logPublishingOptions: [LogType : LogPublishingOption]? = nil, nodeToNodeEncryptionOptions: NodeToNodeEncryptionOptions? = nil, snapshotOptions: SnapshotOptions? = nil, vPCOptions: VPCOptions? = nil)
-
Declaration
Swift
public func validate(name: String) throws