// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub use crate::operation::create_usage_limit::_create_usage_limit_input::CreateUsageLimitInputBuilder;
pub use crate::operation::create_usage_limit::_create_usage_limit_output::CreateUsageLimitOutputBuilder;
impl crate::operation::create_usage_limit::builders::CreateUsageLimitInputBuilder {
/// 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_usage_limit::CreateUsageLimitOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::create_usage_limit::CreateUsageLimitError,
::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
>,
> {
let mut fluent_builder = client.create_usage_limit();
fluent_builder.inner = self;
fluent_builder.send().await
}
}
/// Fluent builder constructing a request to `CreateUsageLimit`.
///
/// <p>Creates a usage limit for a specified Amazon Redshift feature on a cluster. The usage limit is identified by the returned usage limit identifier.</p>
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
pub struct CreateUsageLimitFluentBuilder {
handle: ::std::sync::Arc<crate::client::Handle>,
inner: crate::operation::create_usage_limit::builders::CreateUsageLimitInputBuilder,
config_override: ::std::option::Option<crate::config::Builder>,
}
impl
crate::client::customize::internal::CustomizableSend<
crate::operation::create_usage_limit::CreateUsageLimitOutput,
crate::operation::create_usage_limit::CreateUsageLimitError,
> for CreateUsageLimitFluentBuilder
{
fn send(
self,
config_override: crate::config::Builder,
) -> crate::client::customize::internal::BoxFuture<
crate::client::customize::internal::SendResult<
crate::operation::create_usage_limit::CreateUsageLimitOutput,
crate::operation::create_usage_limit::CreateUsageLimitError,
>,
> {
::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
}
}
impl CreateUsageLimitFluentBuilder {
/// Creates a new `CreateUsageLimitFluentBuilder`.
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 CreateUsageLimit as a reference.
pub fn as_input(&self) -> &crate::operation::create_usage_limit::builders::CreateUsageLimitInputBuilder {
&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_usage_limit::CreateUsageLimitOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::create_usage_limit::CreateUsageLimitError,
::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_usage_limit::CreateUsageLimit::operation_runtime_plugins(
self.handle.runtime_plugins.clone(),
&self.handle.conf,
self.config_override,
);
crate::operation::create_usage_limit::CreateUsageLimit::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_usage_limit::CreateUsageLimitOutput,
crate::operation::create_usage_limit::CreateUsageLimitError,
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>The identifier of the cluster that you want to limit usage.</p>
pub fn cluster_identifier(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.cluster_identifier(input.into());
self
}
/// <p>The identifier of the cluster that you want to limit usage.</p>
pub fn set_cluster_identifier(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_cluster_identifier(input);
self
}
/// <p>The identifier of the cluster that you want to limit usage.</p>
pub fn get_cluster_identifier(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_cluster_identifier()
}
/// <p>The Amazon Redshift feature that you want to limit.</p>
pub fn feature_type(mut self, input: crate::types::UsageLimitFeatureType) -> Self {
self.inner = self.inner.feature_type(input);
self
}
/// <p>The Amazon Redshift feature that you want to limit.</p>
pub fn set_feature_type(mut self, input: ::std::option::Option<crate::types::UsageLimitFeatureType>) -> Self {
self.inner = self.inner.set_feature_type(input);
self
}
/// <p>The Amazon Redshift feature that you want to limit.</p>
pub fn get_feature_type(&self) -> &::std::option::Option<crate::types::UsageLimitFeatureType> {
self.inner.get_feature_type()
}
/// <p>The type of limit. Depending on the feature type, this can be based on a time duration or data size. If <code>FeatureType</code> is <code>spectrum</code>, then <code>LimitType</code> must be <code>data-scanned</code>. If <code>FeatureType</code> is <code>concurrency-scaling</code>, then <code>LimitType</code> must be <code>time</code>. If <code>FeatureType</code> is <code>cross-region-datasharing</code>, then <code>LimitType</code> must be <code>data-scanned</code>. If <code>FeatureType</code> is <code>extra-compute-for-automatic-optimization</code>, then <code>LimitType</code> must be <code>time</code>.</p>
pub fn limit_type(mut self, input: crate::types::UsageLimitLimitType) -> Self {
self.inner = self.inner.limit_type(input);
self
}
/// <p>The type of limit. Depending on the feature type, this can be based on a time duration or data size. If <code>FeatureType</code> is <code>spectrum</code>, then <code>LimitType</code> must be <code>data-scanned</code>. If <code>FeatureType</code> is <code>concurrency-scaling</code>, then <code>LimitType</code> must be <code>time</code>. If <code>FeatureType</code> is <code>cross-region-datasharing</code>, then <code>LimitType</code> must be <code>data-scanned</code>. If <code>FeatureType</code> is <code>extra-compute-for-automatic-optimization</code>, then <code>LimitType</code> must be <code>time</code>.</p>
pub fn set_limit_type(mut self, input: ::std::option::Option<crate::types::UsageLimitLimitType>) -> Self {
self.inner = self.inner.set_limit_type(input);
self
}
/// <p>The type of limit. Depending on the feature type, this can be based on a time duration or data size. If <code>FeatureType</code> is <code>spectrum</code>, then <code>LimitType</code> must be <code>data-scanned</code>. If <code>FeatureType</code> is <code>concurrency-scaling</code>, then <code>LimitType</code> must be <code>time</code>. If <code>FeatureType</code> is <code>cross-region-datasharing</code>, then <code>LimitType</code> must be <code>data-scanned</code>. If <code>FeatureType</code> is <code>extra-compute-for-automatic-optimization</code>, then <code>LimitType</code> must be <code>time</code>.</p>
pub fn get_limit_type(&self) -> &::std::option::Option<crate::types::UsageLimitLimitType> {
self.inner.get_limit_type()
}
/// <p>The limit amount. If time-based, this amount is in minutes. If data-based, this amount is in terabytes (TB). The value must be a positive number.</p>
pub fn amount(mut self, input: i64) -> Self {
self.inner = self.inner.amount(input);
self
}
/// <p>The limit amount. If time-based, this amount is in minutes. If data-based, this amount is in terabytes (TB). The value must be a positive number.</p>
pub fn set_amount(mut self, input: ::std::option::Option<i64>) -> Self {
self.inner = self.inner.set_amount(input);
self
}
/// <p>The limit amount. If time-based, this amount is in minutes. If data-based, this amount is in terabytes (TB). The value must be a positive number.</p>
pub fn get_amount(&self) -> &::std::option::Option<i64> {
self.inner.get_amount()
}
/// <p>The time period that the amount applies to. A <code>weekly</code> period begins on Sunday. The default is <code>monthly</code>.</p>
pub fn period(mut self, input: crate::types::UsageLimitPeriod) -> Self {
self.inner = self.inner.period(input);
self
}
/// <p>The time period that the amount applies to. A <code>weekly</code> period begins on Sunday. The default is <code>monthly</code>.</p>
pub fn set_period(mut self, input: ::std::option::Option<crate::types::UsageLimitPeriod>) -> Self {
self.inner = self.inner.set_period(input);
self
}
/// <p>The time period that the amount applies to. A <code>weekly</code> period begins on Sunday. The default is <code>monthly</code>.</p>
pub fn get_period(&self) -> &::std::option::Option<crate::types::UsageLimitPeriod> {
self.inner.get_period()
}
/// <p>The action that Amazon Redshift takes when the limit is reached. The default is log. For more information about this parameter, see <code>UsageLimit</code>.</p>
pub fn breach_action(mut self, input: crate::types::UsageLimitBreachAction) -> Self {
self.inner = self.inner.breach_action(input);
self
}
/// <p>The action that Amazon Redshift takes when the limit is reached. The default is log. For more information about this parameter, see <code>UsageLimit</code>.</p>
pub fn set_breach_action(mut self, input: ::std::option::Option<crate::types::UsageLimitBreachAction>) -> Self {
self.inner = self.inner.set_breach_action(input);
self
}
/// <p>The action that Amazon Redshift takes when the limit is reached. The default is log. For more information about this parameter, see <code>UsageLimit</code>.</p>
pub fn get_breach_action(&self) -> &::std::option::Option<crate::types::UsageLimitBreachAction> {
self.inner.get_breach_action()
}
///
/// Appends an item to `Tags`.
///
/// To override the contents of this collection use [`set_tags`](Self::set_tags).
///
/// <p>A list of tag instances.</p>
pub fn tags(mut self, input: crate::types::Tag) -> Self {
self.inner = self.inner.tags(input);
self
}
/// <p>A list of tag instances.</p>
pub fn set_tags(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>) -> Self {
self.inner = self.inner.set_tags(input);
self
}
/// <p>A list of tag instances.</p>
pub fn get_tags(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::Tag>> {
self.inner.get_tags()
}
}