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
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub use crate::operation::create_domain::_create_domain_output::CreateDomainOutputBuilder;
pub use crate::operation::create_domain::_create_domain_input::CreateDomainInputBuilder;
impl crate::operation::create_domain::builders::CreateDomainInputBuilder {
/// Sends a request with this input using the given client.
pub async fn send_with(
self,
client: &crate::Client,
) -> ::std::result::Result<
crate::operation::create_domain::CreateDomainOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::create_domain::CreateDomainError,
::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
>,
> {
let mut fluent_builder = client.create_domain();
fluent_builder.inner = self;
fluent_builder.send().await
}
}
/// Fluent builder constructing a request to `CreateDomain`.
///
/// <p>Creates an Amazon OpenSearch Service domain. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html">Creating and managing Amazon OpenSearch Service domains</a>.</p>
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
pub struct CreateDomainFluentBuilder {
handle: ::std::sync::Arc<crate::client::Handle>,
inner: crate::operation::create_domain::builders::CreateDomainInputBuilder,
config_override: ::std::option::Option<crate::config::Builder>,
}
impl
crate::client::customize::internal::CustomizableSend<
crate::operation::create_domain::CreateDomainOutput,
crate::operation::create_domain::CreateDomainError,
> for CreateDomainFluentBuilder
{
fn send(
self,
config_override: crate::config::Builder,
) -> crate::client::customize::internal::BoxFuture<
crate::client::customize::internal::SendResult<
crate::operation::create_domain::CreateDomainOutput,
crate::operation::create_domain::CreateDomainError,
>,
> {
::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
}
}
impl CreateDomainFluentBuilder {
/// Creates a new `CreateDomainFluentBuilder`.
pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
Self {
handle,
inner: ::std::default::Default::default(),
config_override: ::std::option::Option::None,
}
}
/// Access the CreateDomain as a reference.
pub fn as_input(&self) -> &crate::operation::create_domain::builders::CreateDomainInputBuilder {
&self.inner
}
/// Sends the request and returns the response.
///
/// If an error occurs, an `SdkError` will be returned with additional details that
/// can be matched against.
///
/// By default, any retryable failures will be retried twice. Retry behavior
/// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> ::std::result::Result<
crate::operation::create_domain::CreateDomainOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::create_domain::CreateDomainError,
::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
>,
> {
let input = self
.inner
.build()
.map_err(::aws_smithy_runtime_api::client::result::SdkError::construction_failure)?;
let runtime_plugins = crate::operation::create_domain::CreateDomain::operation_runtime_plugins(
self.handle.runtime_plugins.clone(),
&self.handle.conf,
self.config_override,
);
crate::operation::create_domain::CreateDomain::orchestrate(&runtime_plugins, input).await
}
/// Consumes this builder, creating a customizable operation that can be modified before being sent.
pub fn customize(
self,
) -> crate::client::customize::CustomizableOperation<
crate::operation::create_domain::CreateDomainOutput,
crate::operation::create_domain::CreateDomainError,
Self,
> {
crate::client::customize::CustomizableOperation::new(self)
}
pub(crate) fn config_override(mut self, config_override: impl ::std::convert::Into<crate::config::Builder>) -> Self {
self.set_config_override(::std::option::Option::Some(config_override.into()));
self
}
pub(crate) fn set_config_override(&mut self, config_override: ::std::option::Option<crate::config::Builder>) -> &mut Self {
self.config_override = config_override;
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 domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.domain_name(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.inner = self.inner.set_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.inner.get_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.inner = self.inner.engine_version(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.inner = self.inner.set_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.inner.get_engine_version()
}
/// <p>Container for the cluster configuration of a domain.</p>
pub fn cluster_config(mut self, input: crate::types::ClusterConfig) -> Self {
self.inner = self.inner.cluster_config(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.inner = self.inner.set_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.inner.get_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.inner = self.inner.ebs_options(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.inner = self.inner.set_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.inner.get_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.inner = self.inner.access_policies(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.inner = self.inner.set_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.inner.get_access_policies()
}
/// <p>Specify either dual stack or IPv4 as your IP address type. Dual stack allows you to share domain resources across IPv4 and IPv6 address types, and is the recommended option. If you set your IP address type to dual stack, you can't change your address type later.</p>
pub fn ip_address_type(mut self, input: crate::types::IpAddressType) -> Self {
self.inner = self.inner.ip_address_type(input);
self
}
/// <p>Specify either dual stack or IPv4 as your IP address type. Dual stack allows you to share domain resources across IPv4 and IPv6 address types, and is the recommended option. If you set your IP address type to dual stack, you can't change your address type later.</p>
pub fn set_ip_address_type(mut self, input: ::std::option::Option<crate::types::IpAddressType>) -> Self {
self.inner = self.inner.set_ip_address_type(input);
self
}
/// <p>Specify either dual stack or IPv4 as your IP address type. Dual stack allows you to share domain resources across IPv4 and IPv6 address types, and is the recommended option. If you set your IP address type to dual stack, you can't change your address type later.</p>
pub fn get_ip_address_type(&self) -> &::std::option::Option<crate::types::IpAddressType> {
self.inner.get_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.inner = self.inner.snapshot_options(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.inner = self.inner.set_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.inner.get_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.inner = self.inner.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 set_vpc_options(mut self, input: ::std::option::Option<crate::types::VpcOptions>) -> Self {
self.inner = self.inner.set_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.inner.get_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.inner = self.inner.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 set_cognito_options(mut self, input: ::std::option::Option<crate::types::CognitoOptions>) -> Self {
self.inner = self.inner.set_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.inner.get_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.inner = self.inner.encryption_at_rest_options(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.inner = self.inner.set_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.inner.get_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.inner = self.inner.node_to_node_encryption_options(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.inner = self.inner.set_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.inner.get_node_to_node_encryption_options()
}
///
/// Adds a key-value pair to `AdvancedOptions`.
///
/// 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 {
self.inner = self.inner.advanced_options(k.into(), v.into());
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.inner = self.inner.set_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.inner.get_advanced_options()
}
///
/// Adds a key-value pair to `LogPublishingOptions`.
///
/// 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 {
self.inner = self.inner.log_publishing_options(k, v);
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.inner = self.inner.set_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.inner.get_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.inner = self.inner.domain_endpoint_options(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.inner = self.inner.set_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.inner.get_domain_endpoint_options()
}
/// <p>Options for fine-grained access control.</p>
pub fn advanced_security_options(mut self, input: crate::types::AdvancedSecurityOptionsInput) -> Self {
self.inner = self.inner.advanced_security_options(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.inner = self.inner.set_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.inner.get_advanced_security_options()
}
///
/// Appends an item to `TagList`.
///
/// 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 {
self.inner = self.inner.tag_list(input);
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.inner = self.inner.set_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.inner.get_tag_list()
}
/// <p>Options for Auto-Tune.</p>
pub fn auto_tune_options(mut self, input: crate::types::AutoTuneOptionsInput) -> Self {
self.inner = self.inner.auto_tune_options(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.inner = self.inner.set_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.inner.get_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.inner = self.inner.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 set_off_peak_window_options(mut self, input: ::std::option::Option<crate::types::OffPeakWindowOptions>) -> Self {
self.inner = self.inner.set_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.inner.get_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.inner = self.inner.software_update_options(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.inner = self.inner.set_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.inner.get_software_update_options()
}
}