1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct CreateDomainInput {
/// <p>Name of the OpenSearch Service domain to create. Domain names are unique across the domains owned by an account within an Amazon Web Services Region.</p>
pub domain_name: ::std::option::Option<::std::string::String>,
/// <p>String of format Elasticsearch_X.Y or OpenSearch_X.Y to specify the engine version for the OpenSearch Service domain. For example, <code>OpenSearch_1.0</code> or <code>Elasticsearch_7.9</code>. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomains">Creating and managing Amazon OpenSearch Service domains</a>.</p>
pub engine_version: ::std::option::Option<::std::string::String>,
/// <p>Container for the cluster configuration of a domain.</p>
pub cluster_config: ::std::option::Option<crate::types::ClusterConfig>,
/// <p>Container for the parameters required to enable EBS-based storage for an OpenSearch Service domain.</p>
pub ebs_options: ::std::option::Option<crate::types::EbsOptions>,
/// <p>Identity and Access Management (IAM) policy document specifying the access policies for the new domain.</p>
pub access_policies: ::std::option::Option<::std::string::String>,
/// <p>The type of IP addresses supported by the endpoint for the domain.</p>
pub ip_address_type: ::std::option::Option<crate::types::IpAddressType>,
/// <p>DEPRECATED. Container for the parameters required to configure automated snapshots of domain indexes.</p>
pub snapshot_options: ::std::option::Option<crate::types::SnapshotOptions>,
/// <p>Container for the values required to configure VPC access domains. If you don't specify these values, OpenSearch Service creates the domain with a public endpoint. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/vpc.html">Launching your Amazon OpenSearch Service domains using a VPC</a>.</p>
pub vpc_options: ::std::option::Option<crate::types::VpcOptions>,
/// <p>Key-value pairs to configure Amazon Cognito authentication. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/cognito-auth.html">Configuring Amazon Cognito authentication for OpenSearch Dashboards</a>.</p>
pub cognito_options: ::std::option::Option<crate::types::CognitoOptions>,
/// <p>Key-value pairs to enable encryption at rest.</p>
pub encryption_at_rest_options: ::std::option::Option<crate::types::EncryptionAtRestOptions>,
/// <p>Enables node-to-node encryption.</p>
pub node_to_node_encryption_options: ::std::option::Option<crate::types::NodeToNodeEncryptionOptions>,
/// <p>Key-value pairs to specify advanced configuration options. The following key-value pairs are supported:</p>
/// <ul>
/// <li>
/// <p><code>"rest.action.multi.allow_explicit_index": "true" | "false"</code> - Note the use of a string rather than a boolean. Specifies whether explicit references to indexes are allowed inside the body of HTTP requests. If you want to configure access policies for domain sub-resources, such as specific indexes and domain APIs, you must disable this property. Default is true.</p></li>
/// <li>
/// <p><code>"indices.fielddata.cache.size": "80" </code> - Note the use of a string rather than a boolean. Specifies the percentage of heap space allocated to field data. Default is unbounded.</p></li>
/// <li>
/// <p><code>"indices.query.bool.max_clause_count": "1024"</code> - Note the use of a string rather than a boolean. Specifies the maximum number of clauses allowed in a Lucene boolean query. Default is 1,024. Queries with more than the permitted number of clauses result in a <code>TooManyClauses</code> error.</p></li>
/// <li>
/// <p><code>"override_main_response_version": "true" | "false"</code> - Note the use of a string rather than a boolean. Specifies whether the domain reports its version as 7.10 to allow Elasticsearch OSS clients and plugins to continue working with it. Default is false when creating a domain and true when upgrading a domain.</p></li>
/// </ul>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options">Advanced cluster parameters</a>.</p>
pub advanced_options: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
/// <p>Key-value pairs to configure log publishing.</p>
pub log_publishing_options: ::std::option::Option<::std::collections::HashMap<crate::types::LogType, crate::types::LogPublishingOption>>,
/// <p>Additional options for the domain endpoint, such as whether to require HTTPS for all traffic.</p>
pub domain_endpoint_options: ::std::option::Option<crate::types::DomainEndpointOptions>,
/// <p>Options for fine-grained access control.</p>
pub advanced_security_options: ::std::option::Option<crate::types::AdvancedSecurityOptionsInput>,
/// <p>List of tags to add to the domain upon creation.</p>
pub tag_list: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>,
/// <p>Options for Auto-Tune.</p>
pub auto_tune_options: ::std::option::Option<crate::types::AutoTuneOptionsInput>,
/// <p>Specifies a daily 10-hour time block during which OpenSearch Service can perform configuration changes on the domain, including service software updates and Auto-Tune enhancements that require a blue/green deployment. If no options are specified, the default start time of 10:00 P.M. local time (for the Region that the domain is created in) is used.</p>
pub off_peak_window_options: ::std::option::Option<crate::types::OffPeakWindowOptions>,
/// <p>Software update options for the domain.</p>
pub software_update_options: ::std::option::Option<crate::types::SoftwareUpdateOptions>,
}
impl CreateDomainInput {
/// <p>Name of the OpenSearch Service domain to create. Domain names are unique across the domains owned by an account within an Amazon Web Services Region.</p>
pub fn domain_name(&self) -> ::std::option::Option<&str> {
self.domain_name.as_deref()
}
/// <p>String of format Elasticsearch_X.Y or OpenSearch_X.Y to specify the engine version for the OpenSearch Service domain. For example, <code>OpenSearch_1.0</code> or <code>Elasticsearch_7.9</code>. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomains">Creating and managing Amazon OpenSearch Service domains</a>.</p>
pub fn engine_version(&self) -> ::std::option::Option<&str> {
self.engine_version.as_deref()
}
/// <p>Container for the cluster configuration of a domain.</p>
pub fn cluster_config(&self) -> ::std::option::Option<&crate::types::ClusterConfig> {
self.cluster_config.as_ref()
}
/// <p>Container for the parameters required to enable EBS-based storage for an OpenSearch Service domain.</p>
pub fn ebs_options(&self) -> ::std::option::Option<&crate::types::EbsOptions> {
self.ebs_options.as_ref()
}
/// <p>Identity and Access Management (IAM) policy document specifying the access policies for the new domain.</p>
pub fn access_policies(&self) -> ::std::option::Option<&str> {
self.access_policies.as_deref()
}
/// <p>The type of IP addresses supported by the endpoint for the domain.</p>
pub fn ip_address_type(&self) -> ::std::option::Option<&crate::types::IpAddressType> {
self.ip_address_type.as_ref()
}
/// <p>DEPRECATED. Container for the parameters required to configure automated snapshots of domain indexes.</p>
pub fn snapshot_options(&self) -> ::std::option::Option<&crate::types::SnapshotOptions> {
self.snapshot_options.as_ref()
}
/// <p>Container for the values required to configure VPC access domains. If you don't specify these values, OpenSearch Service creates the domain with a public endpoint. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/vpc.html">Launching your Amazon OpenSearch Service domains using a VPC</a>.</p>
pub fn vpc_options(&self) -> ::std::option::Option<&crate::types::VpcOptions> {
self.vpc_options.as_ref()
}
/// <p>Key-value pairs to configure Amazon Cognito authentication. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/cognito-auth.html">Configuring Amazon Cognito authentication for OpenSearch Dashboards</a>.</p>
pub fn cognito_options(&self) -> ::std::option::Option<&crate::types::CognitoOptions> {
self.cognito_options.as_ref()
}
/// <p>Key-value pairs to enable encryption at rest.</p>
pub fn encryption_at_rest_options(&self) -> ::std::option::Option<&crate::types::EncryptionAtRestOptions> {
self.encryption_at_rest_options.as_ref()
}
/// <p>Enables node-to-node encryption.</p>
pub fn node_to_node_encryption_options(&self) -> ::std::option::Option<&crate::types::NodeToNodeEncryptionOptions> {
self.node_to_node_encryption_options.as_ref()
}
/// <p>Key-value pairs to specify advanced configuration options. The following key-value pairs are supported:</p>
/// <ul>
/// <li>
/// <p><code>"rest.action.multi.allow_explicit_index": "true" | "false"</code> - Note the use of a string rather than a boolean. Specifies whether explicit references to indexes are allowed inside the body of HTTP requests. If you want to configure access policies for domain sub-resources, such as specific indexes and domain APIs, you must disable this property. Default is true.</p></li>
/// <li>
/// <p><code>"indices.fielddata.cache.size": "80" </code> - Note the use of a string rather than a boolean. Specifies the percentage of heap space allocated to field data. Default is unbounded.</p></li>
/// <li>
/// <p><code>"indices.query.bool.max_clause_count": "1024"</code> - Note the use of a string rather than a boolean. Specifies the maximum number of clauses allowed in a Lucene boolean query. Default is 1,024. Queries with more than the permitted number of clauses result in a <code>TooManyClauses</code> error.</p></li>
/// <li>
/// <p><code>"override_main_response_version": "true" | "false"</code> - Note the use of a string rather than a boolean. Specifies whether the domain reports its version as 7.10 to allow Elasticsearch OSS clients and plugins to continue working with it. Default is false when creating a domain and true when upgrading a domain.</p></li>
/// </ul>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options">Advanced cluster parameters</a>.</p>
pub fn advanced_options(&self) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, ::std::string::String>> {
self.advanced_options.as_ref()
}
/// <p>Key-value pairs to configure log publishing.</p>
pub fn log_publishing_options(
&self,
) -> ::std::option::Option<&::std::collections::HashMap<crate::types::LogType, crate::types::LogPublishingOption>> {
self.log_publishing_options.as_ref()
}
/// <p>Additional options for the domain endpoint, such as whether to require HTTPS for all traffic.</p>
pub fn domain_endpoint_options(&self) -> ::std::option::Option<&crate::types::DomainEndpointOptions> {
self.domain_endpoint_options.as_ref()
}
/// <p>Options for fine-grained access control.</p>
pub fn advanced_security_options(&self) -> ::std::option::Option<&crate::types::AdvancedSecurityOptionsInput> {
self.advanced_security_options.as_ref()
}
/// <p>List of tags to add to the domain upon creation.</p>
///
/// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.tag_list.is_none()`.
pub fn tag_list(&self) -> &[crate::types::Tag] {
self.tag_list.as_deref().unwrap_or_default()
}
/// <p>Options for Auto-Tune.</p>
pub fn auto_tune_options(&self) -> ::std::option::Option<&crate::types::AutoTuneOptionsInput> {
self.auto_tune_options.as_ref()
}
/// <p>Specifies a daily 10-hour time block during which OpenSearch Service can perform configuration changes on the domain, including service software updates and Auto-Tune enhancements that require a blue/green deployment. If no options are specified, the default start time of 10:00 P.M. local time (for the Region that the domain is created in) is used.</p>
pub fn off_peak_window_options(&self) -> ::std::option::Option<&crate::types::OffPeakWindowOptions> {
self.off_peak_window_options.as_ref()
}
/// <p>Software update options for the domain.</p>
pub fn software_update_options(&self) -> ::std::option::Option<&crate::types::SoftwareUpdateOptions> {
self.software_update_options.as_ref()
}
}
impl CreateDomainInput {
/// Creates a new builder-style object to manufacture [`CreateDomainInput`](crate::operation::create_domain::CreateDomainInput).
pub fn builder() -> crate::operation::create_domain::builders::CreateDomainInputBuilder {
crate::operation::create_domain::builders::CreateDomainInputBuilder::default()
}
}
/// A builder for [`CreateDomainInput`](crate::operation::create_domain::CreateDomainInput).
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct CreateDomainInputBuilder {
pub(crate) domain_name: ::std::option::Option<::std::string::String>,
pub(crate) engine_version: ::std::option::Option<::std::string::String>,
pub(crate) cluster_config: ::std::option::Option<crate::types::ClusterConfig>,
pub(crate) ebs_options: ::std::option::Option<crate::types::EbsOptions>,
pub(crate) access_policies: ::std::option::Option<::std::string::String>,
pub(crate) ip_address_type: ::std::option::Option<crate::types::IpAddressType>,
pub(crate) snapshot_options: ::std::option::Option<crate::types::SnapshotOptions>,
pub(crate) vpc_options: ::std::option::Option<crate::types::VpcOptions>,
pub(crate) cognito_options: ::std::option::Option<crate::types::CognitoOptions>,
pub(crate) encryption_at_rest_options: ::std::option::Option<crate::types::EncryptionAtRestOptions>,
pub(crate) node_to_node_encryption_options: ::std::option::Option<crate::types::NodeToNodeEncryptionOptions>,
pub(crate) advanced_options: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
pub(crate) log_publishing_options: ::std::option::Option<::std::collections::HashMap<crate::types::LogType, crate::types::LogPublishingOption>>,
pub(crate) domain_endpoint_options: ::std::option::Option<crate::types::DomainEndpointOptions>,
pub(crate) advanced_security_options: ::std::option::Option<crate::types::AdvancedSecurityOptionsInput>,
pub(crate) tag_list: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>,
pub(crate) auto_tune_options: ::std::option::Option<crate::types::AutoTuneOptionsInput>,
pub(crate) off_peak_window_options: ::std::option::Option<crate::types::OffPeakWindowOptions>,
pub(crate) software_update_options: ::std::option::Option<crate::types::SoftwareUpdateOptions>,
}
impl CreateDomainInputBuilder {
/// <p>Name of the OpenSearch Service domain to create. Domain names are unique across the domains owned by an account within an Amazon Web Services Region.</p>
/// This field is required.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.domain_name = ::std::option::Option::Some(input.into());
self
}
/// <p>Name of the OpenSearch Service domain to create. Domain names are unique across the domains owned by an account within an Amazon Web Services Region.</p>
pub fn set_domain_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.domain_name = input;
self
}
/// <p>Name of the OpenSearch Service domain to create. Domain names are unique across the domains owned by an account within an Amazon Web Services Region.</p>
pub fn get_domain_name(&self) -> &::std::option::Option<::std::string::String> {
&self.domain_name
}
/// <p>String of format Elasticsearch_X.Y or OpenSearch_X.Y to specify the engine version for the OpenSearch Service domain. For example, <code>OpenSearch_1.0</code> or <code>Elasticsearch_7.9</code>. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomains">Creating and managing Amazon OpenSearch Service domains</a>.</p>
pub fn engine_version(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.engine_version = ::std::option::Option::Some(input.into());
self
}
/// <p>String of format Elasticsearch_X.Y or OpenSearch_X.Y to specify the engine version for the OpenSearch Service domain. For example, <code>OpenSearch_1.0</code> or <code>Elasticsearch_7.9</code>. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomains">Creating and managing Amazon OpenSearch Service domains</a>.</p>
pub fn set_engine_version(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.engine_version = input;
self
}
/// <p>String of format Elasticsearch_X.Y or OpenSearch_X.Y to specify the engine version for the OpenSearch Service domain. For example, <code>OpenSearch_1.0</code> or <code>Elasticsearch_7.9</code>. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomains">Creating and managing Amazon OpenSearch Service domains</a>.</p>
pub fn get_engine_version(&self) -> &::std::option::Option<::std::string::String> {
&self.engine_version
}
/// <p>Container for the cluster configuration of a domain.</p>
pub fn cluster_config(mut self, input: crate::types::ClusterConfig) -> Self {
self.cluster_config = ::std::option::Option::Some(input);
self
}
/// <p>Container for the cluster configuration of a domain.</p>
pub fn set_cluster_config(mut self, input: ::std::option::Option<crate::types::ClusterConfig>) -> Self {
self.cluster_config = input;
self
}
/// <p>Container for the cluster configuration of a domain.</p>
pub fn get_cluster_config(&self) -> &::std::option::Option<crate::types::ClusterConfig> {
&self.cluster_config
}
/// <p>Container for the parameters required to enable EBS-based storage for an OpenSearch Service domain.</p>
pub fn ebs_options(mut self, input: crate::types::EbsOptions) -> Self {
self.ebs_options = ::std::option::Option::Some(input);
self
}
/// <p>Container for the parameters required to enable EBS-based storage for an OpenSearch Service domain.</p>
pub fn set_ebs_options(mut self, input: ::std::option::Option<crate::types::EbsOptions>) -> Self {
self.ebs_options = input;
self
}
/// <p>Container for the parameters required to enable EBS-based storage for an OpenSearch Service domain.</p>
pub fn get_ebs_options(&self) -> &::std::option::Option<crate::types::EbsOptions> {
&self.ebs_options
}
/// <p>Identity and Access Management (IAM) policy document specifying the access policies for the new domain.</p>
pub fn access_policies(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.access_policies = ::std::option::Option::Some(input.into());
self
}
/// <p>Identity and Access Management (IAM) policy document specifying the access policies for the new domain.</p>
pub fn set_access_policies(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.access_policies = input;
self
}
/// <p>Identity and Access Management (IAM) policy document specifying the access policies for the new domain.</p>
pub fn get_access_policies(&self) -> &::std::option::Option<::std::string::String> {
&self.access_policies
}
/// <p>The type of IP addresses supported by the endpoint for the domain.</p>
pub fn ip_address_type(mut self, input: crate::types::IpAddressType) -> Self {
self.ip_address_type = ::std::option::Option::Some(input);
self
}
/// <p>The type of IP addresses supported by the endpoint for the domain.</p>
pub fn set_ip_address_type(mut self, input: ::std::option::Option<crate::types::IpAddressType>) -> Self {
self.ip_address_type = input;
self
}
/// <p>The type of IP addresses supported by the endpoint for the domain.</p>
pub fn get_ip_address_type(&self) -> &::std::option::Option<crate::types::IpAddressType> {
&self.ip_address_type
}
/// <p>DEPRECATED. Container for the parameters required to configure automated snapshots of domain indexes.</p>
pub fn snapshot_options(mut self, input: crate::types::SnapshotOptions) -> Self {
self.snapshot_options = ::std::option::Option::Some(input);
self
}
/// <p>DEPRECATED. Container for the parameters required to configure automated snapshots of domain indexes.</p>
pub fn set_snapshot_options(mut self, input: ::std::option::Option<crate::types::SnapshotOptions>) -> Self {
self.snapshot_options = input;
self
}
/// <p>DEPRECATED. Container for the parameters required to configure automated snapshots of domain indexes.</p>
pub fn get_snapshot_options(&self) -> &::std::option::Option<crate::types::SnapshotOptions> {
&self.snapshot_options
}
/// <p>Container for the values required to configure VPC access domains. If you don't specify these values, OpenSearch Service creates the domain with a public endpoint. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/vpc.html">Launching your Amazon OpenSearch Service domains using a VPC</a>.</p>
pub fn vpc_options(mut self, input: crate::types::VpcOptions) -> Self {
self.vpc_options = ::std::option::Option::Some(input);
self
}
/// <p>Container for the values required to configure VPC access domains. If you don't specify these values, OpenSearch Service creates the domain with a public endpoint. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/vpc.html">Launching your Amazon OpenSearch Service domains using a VPC</a>.</p>
pub fn set_vpc_options(mut self, input: ::std::option::Option<crate::types::VpcOptions>) -> Self {
self.vpc_options = input;
self
}
/// <p>Container for the values required to configure VPC access domains. If you don't specify these values, OpenSearch Service creates the domain with a public endpoint. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/vpc.html">Launching your Amazon OpenSearch Service domains using a VPC</a>.</p>
pub fn get_vpc_options(&self) -> &::std::option::Option<crate::types::VpcOptions> {
&self.vpc_options
}
/// <p>Key-value pairs to configure Amazon Cognito authentication. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/cognito-auth.html">Configuring Amazon Cognito authentication for OpenSearch Dashboards</a>.</p>
pub fn cognito_options(mut self, input: crate::types::CognitoOptions) -> Self {
self.cognito_options = ::std::option::Option::Some(input);
self
}
/// <p>Key-value pairs to configure Amazon Cognito authentication. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/cognito-auth.html">Configuring Amazon Cognito authentication for OpenSearch Dashboards</a>.</p>
pub fn set_cognito_options(mut self, input: ::std::option::Option<crate::types::CognitoOptions>) -> Self {
self.cognito_options = input;
self
}
/// <p>Key-value pairs to configure Amazon Cognito authentication. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/cognito-auth.html">Configuring Amazon Cognito authentication for OpenSearch Dashboards</a>.</p>
pub fn get_cognito_options(&self) -> &::std::option::Option<crate::types::CognitoOptions> {
&self.cognito_options
}
/// <p>Key-value pairs to enable encryption at rest.</p>
pub fn encryption_at_rest_options(mut self, input: crate::types::EncryptionAtRestOptions) -> Self {
self.encryption_at_rest_options = ::std::option::Option::Some(input);
self
}
/// <p>Key-value pairs to enable encryption at rest.</p>
pub fn set_encryption_at_rest_options(mut self, input: ::std::option::Option<crate::types::EncryptionAtRestOptions>) -> Self {
self.encryption_at_rest_options = input;
self
}
/// <p>Key-value pairs to enable encryption at rest.</p>
pub fn get_encryption_at_rest_options(&self) -> &::std::option::Option<crate::types::EncryptionAtRestOptions> {
&self.encryption_at_rest_options
}
/// <p>Enables node-to-node encryption.</p>
pub fn node_to_node_encryption_options(mut self, input: crate::types::NodeToNodeEncryptionOptions) -> Self {
self.node_to_node_encryption_options = ::std::option::Option::Some(input);
self
}
/// <p>Enables node-to-node encryption.</p>
pub fn set_node_to_node_encryption_options(mut self, input: ::std::option::Option<crate::types::NodeToNodeEncryptionOptions>) -> Self {
self.node_to_node_encryption_options = input;
self
}
/// <p>Enables node-to-node encryption.</p>
pub fn get_node_to_node_encryption_options(&self) -> &::std::option::Option<crate::types::NodeToNodeEncryptionOptions> {
&self.node_to_node_encryption_options
}
/// Adds a key-value pair to `advanced_options`.
///
/// To override the contents of this collection use [`set_advanced_options`](Self::set_advanced_options).
///
/// <p>Key-value pairs to specify advanced configuration options. The following key-value pairs are supported:</p>
/// <ul>
/// <li>
/// <p><code>"rest.action.multi.allow_explicit_index": "true" | "false"</code> - Note the use of a string rather than a boolean. Specifies whether explicit references to indexes are allowed inside the body of HTTP requests. If you want to configure access policies for domain sub-resources, such as specific indexes and domain APIs, you must disable this property. Default is true.</p></li>
/// <li>
/// <p><code>"indices.fielddata.cache.size": "80" </code> - Note the use of a string rather than a boolean. Specifies the percentage of heap space allocated to field data. Default is unbounded.</p></li>
/// <li>
/// <p><code>"indices.query.bool.max_clause_count": "1024"</code> - Note the use of a string rather than a boolean. Specifies the maximum number of clauses allowed in a Lucene boolean query. Default is 1,024. Queries with more than the permitted number of clauses result in a <code>TooManyClauses</code> error.</p></li>
/// <li>
/// <p><code>"override_main_response_version": "true" | "false"</code> - Note the use of a string rather than a boolean. Specifies whether the domain reports its version as 7.10 to allow Elasticsearch OSS clients and plugins to continue working with it. Default is false when creating a domain and true when upgrading a domain.</p></li>
/// </ul>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options">Advanced cluster parameters</a>.</p>
pub fn advanced_options(
mut self,
k: impl ::std::convert::Into<::std::string::String>,
v: impl ::std::convert::Into<::std::string::String>,
) -> Self {
let mut hash_map = self.advanced_options.unwrap_or_default();
hash_map.insert(k.into(), v.into());
self.advanced_options = ::std::option::Option::Some(hash_map);
self
}
/// <p>Key-value pairs to specify advanced configuration options. The following key-value pairs are supported:</p>
/// <ul>
/// <li>
/// <p><code>"rest.action.multi.allow_explicit_index": "true" | "false"</code> - Note the use of a string rather than a boolean. Specifies whether explicit references to indexes are allowed inside the body of HTTP requests. If you want to configure access policies for domain sub-resources, such as specific indexes and domain APIs, you must disable this property. Default is true.</p></li>
/// <li>
/// <p><code>"indices.fielddata.cache.size": "80" </code> - Note the use of a string rather than a boolean. Specifies the percentage of heap space allocated to field data. Default is unbounded.</p></li>
/// <li>
/// <p><code>"indices.query.bool.max_clause_count": "1024"</code> - Note the use of a string rather than a boolean. Specifies the maximum number of clauses allowed in a Lucene boolean query. Default is 1,024. Queries with more than the permitted number of clauses result in a <code>TooManyClauses</code> error.</p></li>
/// <li>
/// <p><code>"override_main_response_version": "true" | "false"</code> - Note the use of a string rather than a boolean. Specifies whether the domain reports its version as 7.10 to allow Elasticsearch OSS clients and plugins to continue working with it. Default is false when creating a domain and true when upgrading a domain.</p></li>
/// </ul>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options">Advanced cluster parameters</a>.</p>
pub fn set_advanced_options(
mut self,
input: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
) -> Self {
self.advanced_options = input;
self
}
/// <p>Key-value pairs to specify advanced configuration options. The following key-value pairs are supported:</p>
/// <ul>
/// <li>
/// <p><code>"rest.action.multi.allow_explicit_index": "true" | "false"</code> - Note the use of a string rather than a boolean. Specifies whether explicit references to indexes are allowed inside the body of HTTP requests. If you want to configure access policies for domain sub-resources, such as specific indexes and domain APIs, you must disable this property. Default is true.</p></li>
/// <li>
/// <p><code>"indices.fielddata.cache.size": "80" </code> - Note the use of a string rather than a boolean. Specifies the percentage of heap space allocated to field data. Default is unbounded.</p></li>
/// <li>
/// <p><code>"indices.query.bool.max_clause_count": "1024"</code> - Note the use of a string rather than a boolean. Specifies the maximum number of clauses allowed in a Lucene boolean query. Default is 1,024. Queries with more than the permitted number of clauses result in a <code>TooManyClauses</code> error.</p></li>
/// <li>
/// <p><code>"override_main_response_version": "true" | "false"</code> - Note the use of a string rather than a boolean. Specifies whether the domain reports its version as 7.10 to allow Elasticsearch OSS clients and plugins to continue working with it. Default is false when creating a domain and true when upgrading a domain.</p></li>
/// </ul>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options">Advanced cluster parameters</a>.</p>
pub fn get_advanced_options(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>> {
&self.advanced_options
}
/// Adds a key-value pair to `log_publishing_options`.
///
/// To override the contents of this collection use [`set_log_publishing_options`](Self::set_log_publishing_options).
///
/// <p>Key-value pairs to configure log publishing.</p>
pub fn log_publishing_options(mut self, k: crate::types::LogType, v: crate::types::LogPublishingOption) -> Self {
let mut hash_map = self.log_publishing_options.unwrap_or_default();
hash_map.insert(k, v);
self.log_publishing_options = ::std::option::Option::Some(hash_map);
self
}
/// <p>Key-value pairs to configure log publishing.</p>
pub fn set_log_publishing_options(
mut self,
input: ::std::option::Option<::std::collections::HashMap<crate::types::LogType, crate::types::LogPublishingOption>>,
) -> Self {
self.log_publishing_options = input;
self
}
/// <p>Key-value pairs to configure log publishing.</p>
pub fn get_log_publishing_options(
&self,
) -> &::std::option::Option<::std::collections::HashMap<crate::types::LogType, crate::types::LogPublishingOption>> {
&self.log_publishing_options
}
/// <p>Additional options for the domain endpoint, such as whether to require HTTPS for all traffic.</p>
pub fn domain_endpoint_options(mut self, input: crate::types::DomainEndpointOptions) -> Self {
self.domain_endpoint_options = ::std::option::Option::Some(input);
self
}
/// <p>Additional options for the domain endpoint, such as whether to require HTTPS for all traffic.</p>
pub fn set_domain_endpoint_options(mut self, input: ::std::option::Option<crate::types::DomainEndpointOptions>) -> Self {
self.domain_endpoint_options = input;
self
}
/// <p>Additional options for the domain endpoint, such as whether to require HTTPS for all traffic.</p>
pub fn get_domain_endpoint_options(&self) -> &::std::option::Option<crate::types::DomainEndpointOptions> {
&self.domain_endpoint_options
}
/// <p>Options for fine-grained access control.</p>
pub fn advanced_security_options(mut self, input: crate::types::AdvancedSecurityOptionsInput) -> Self {
self.advanced_security_options = ::std::option::Option::Some(input);
self
}
/// <p>Options for fine-grained access control.</p>
pub fn set_advanced_security_options(mut self, input: ::std::option::Option<crate::types::AdvancedSecurityOptionsInput>) -> Self {
self.advanced_security_options = input;
self
}
/// <p>Options for fine-grained access control.</p>
pub fn get_advanced_security_options(&self) -> &::std::option::Option<crate::types::AdvancedSecurityOptionsInput> {
&self.advanced_security_options
}
/// Appends an item to `tag_list`.
///
/// To override the contents of this collection use [`set_tag_list`](Self::set_tag_list).
///
/// <p>List of tags to add to the domain upon creation.</p>
pub fn tag_list(mut self, input: crate::types::Tag) -> Self {
let mut v = self.tag_list.unwrap_or_default();
v.push(input);
self.tag_list = ::std::option::Option::Some(v);
self
}
/// <p>List of tags to add to the domain upon creation.</p>
pub fn set_tag_list(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>) -> Self {
self.tag_list = input;
self
}
/// <p>List of tags to add to the domain upon creation.</p>
pub fn get_tag_list(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::Tag>> {
&self.tag_list
}
/// <p>Options for Auto-Tune.</p>
pub fn auto_tune_options(mut self, input: crate::types::AutoTuneOptionsInput) -> Self {
self.auto_tune_options = ::std::option::Option::Some(input);
self
}
/// <p>Options for Auto-Tune.</p>
pub fn set_auto_tune_options(mut self, input: ::std::option::Option<crate::types::AutoTuneOptionsInput>) -> Self {
self.auto_tune_options = input;
self
}
/// <p>Options for Auto-Tune.</p>
pub fn get_auto_tune_options(&self) -> &::std::option::Option<crate::types::AutoTuneOptionsInput> {
&self.auto_tune_options
}
/// <p>Specifies a daily 10-hour time block during which OpenSearch Service can perform configuration changes on the domain, including service software updates and Auto-Tune enhancements that require a blue/green deployment. If no options are specified, the default start time of 10:00 P.M. local time (for the Region that the domain is created in) is used.</p>
pub fn off_peak_window_options(mut self, input: crate::types::OffPeakWindowOptions) -> Self {
self.off_peak_window_options = ::std::option::Option::Some(input);
self
}
/// <p>Specifies a daily 10-hour time block during which OpenSearch Service can perform configuration changes on the domain, including service software updates and Auto-Tune enhancements that require a blue/green deployment. If no options are specified, the default start time of 10:00 P.M. local time (for the Region that the domain is created in) is used.</p>
pub fn set_off_peak_window_options(mut self, input: ::std::option::Option<crate::types::OffPeakWindowOptions>) -> Self {
self.off_peak_window_options = input;
self
}
/// <p>Specifies a daily 10-hour time block during which OpenSearch Service can perform configuration changes on the domain, including service software updates and Auto-Tune enhancements that require a blue/green deployment. If no options are specified, the default start time of 10:00 P.M. local time (for the Region that the domain is created in) is used.</p>
pub fn get_off_peak_window_options(&self) -> &::std::option::Option<crate::types::OffPeakWindowOptions> {
&self.off_peak_window_options
}
/// <p>Software update options for the domain.</p>
pub fn software_update_options(mut self, input: crate::types::SoftwareUpdateOptions) -> Self {
self.software_update_options = ::std::option::Option::Some(input);
self
}
/// <p>Software update options for the domain.</p>
pub fn set_software_update_options(mut self, input: ::std::option::Option<crate::types::SoftwareUpdateOptions>) -> Self {
self.software_update_options = input;
self
}
/// <p>Software update options for the domain.</p>
pub fn get_software_update_options(&self) -> &::std::option::Option<crate::types::SoftwareUpdateOptions> {
&self.software_update_options
}
/// Consumes the builder and constructs a [`CreateDomainInput`](crate::operation::create_domain::CreateDomainInput).
pub fn build(
self,
) -> ::std::result::Result<crate::operation::create_domain::CreateDomainInput, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::operation::create_domain::CreateDomainInput {
domain_name: self.domain_name,
engine_version: self.engine_version,
cluster_config: self.cluster_config,
ebs_options: self.ebs_options,
access_policies: self.access_policies,
ip_address_type: self.ip_address_type,
snapshot_options: self.snapshot_options,
vpc_options: self.vpc_options,
cognito_options: self.cognito_options,
encryption_at_rest_options: self.encryption_at_rest_options,
node_to_node_encryption_options: self.node_to_node_encryption_options,
advanced_options: self.advanced_options,
log_publishing_options: self.log_publishing_options,
domain_endpoint_options: self.domain_endpoint_options,
advanced_security_options: self.advanced_security_options,
tag_list: self.tag_list,
auto_tune_options: self.auto_tune_options,
off_peak_window_options: self.off_peak_window_options,
software_update_options: self.software_update_options,
})
}
}