diff --git a/sdk/accessanalyzer/src/operation/apply_archive_rule/builders.rs b/sdk/accessanalyzer/src/operation/apply_archive_rule/builders.rs index 3d6ec053e63e..8fb4619d7694 100644 --- a/sdk/accessanalyzer/src/operation/apply_archive_rule/builders.rs +++ b/sdk/accessanalyzer/src/operation/apply_archive_rule/builders.rs @@ -19,9 +19,9 @@ impl ApplyArchiveRuleFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ApplyArchiveRuleFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::apply_archive_rule::ApplyArchiveRule, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::apply_archive_rule::ApplyArchiveRuleError, + >, + > { + self.customize_middleware().await + } ///
The Amazon resource name (ARN) of the analyzer.
pub fn analyzer_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.analyzer_arn(input.into()); diff --git a/sdk/accessanalyzer/src/operation/cancel_policy_generation/builders.rs b/sdk/accessanalyzer/src/operation/cancel_policy_generation/builders.rs index f2a9c0651594..0e6e4257253b 100644 --- a/sdk/accessanalyzer/src/operation/cancel_policy_generation/builders.rs +++ b/sdk/accessanalyzer/src/operation/cancel_policy_generation/builders.rs @@ -19,9 +19,9 @@ impl CancelPolicyGenerationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CancelPolicyGenerationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::cancel_policy_generation::CancelPolicyGeneration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::cancel_policy_generation::CancelPolicyGenerationError, + >, + > { + self.customize_middleware().await + } ///The JobId
that is returned by the StartPolicyGeneration
operation. The JobId
can be used with GetGeneratedPolicy
to retrieve the generated policies or used with CancelPolicyGeneration
to cancel the policy generation request.
The ARN of the account analyzer used to generate the access preview. You can only create an access preview for analyzers with an Account
type and Active
status.
The name of the analyzer to create.
pub fn analyzer_name( mut self, diff --git a/sdk/accessanalyzer/src/operation/create_archive_rule/builders.rs b/sdk/accessanalyzer/src/operation/create_archive_rule/builders.rs index 27565ffd8109..5aa664a88c0b 100644 --- a/sdk/accessanalyzer/src/operation/create_archive_rule/builders.rs +++ b/sdk/accessanalyzer/src/operation/create_archive_rule/builders.rs @@ -20,9 +20,9 @@ impl CreateArchiveRuleFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl CreateArchiveRuleFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_archive_rule::CreateArchiveRule, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_archive_rule::CreateArchiveRuleError, + >, + > { + self.customize_middleware().await + } ///The name of the created analyzer.
pub fn analyzer_name( mut self, diff --git a/sdk/accessanalyzer/src/operation/delete_analyzer/builders.rs b/sdk/accessanalyzer/src/operation/delete_analyzer/builders.rs index 74d4d78dc6bc..05d3fc05ea8d 100644 --- a/sdk/accessanalyzer/src/operation/delete_analyzer/builders.rs +++ b/sdk/accessanalyzer/src/operation/delete_analyzer/builders.rs @@ -19,9 +19,9 @@ impl DeleteAnalyzerFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteAnalyzerFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_analyzer::DeleteAnalyzer, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe name of the analyzer to delete.
pub fn analyzer_name( mut self, diff --git a/sdk/accessanalyzer/src/operation/delete_archive_rule/builders.rs b/sdk/accessanalyzer/src/operation/delete_archive_rule/builders.rs index 5baea7ff62b6..76c732b9b48f 100644 --- a/sdk/accessanalyzer/src/operation/delete_archive_rule/builders.rs +++ b/sdk/accessanalyzer/src/operation/delete_archive_rule/builders.rs @@ -19,9 +19,9 @@ impl DeleteArchiveRuleFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteArchiveRuleFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_archive_rule::DeleteArchiveRule, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_archive_rule::DeleteArchiveRuleError, + >, + > { + self.customize_middleware().await + } ///The name of the analyzer that associated with the archive rule to delete.
pub fn analyzer_name( mut self, diff --git a/sdk/accessanalyzer/src/operation/get_access_preview/builders.rs b/sdk/accessanalyzer/src/operation/get_access_preview/builders.rs index d07ae0b6ae2c..f962320ecb26 100644 --- a/sdk/accessanalyzer/src/operation/get_access_preview/builders.rs +++ b/sdk/accessanalyzer/src/operation/get_access_preview/builders.rs @@ -19,9 +19,9 @@ impl GetAccessPreviewFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetAccessPreviewFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_access_preview::GetAccessPreview, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_access_preview::GetAccessPreviewError, + >, + > { + self.customize_middleware().await + } ///The unique ID for the access preview.
pub fn access_preview_id( mut self, diff --git a/sdk/accessanalyzer/src/operation/get_analyzed_resource/builders.rs b/sdk/accessanalyzer/src/operation/get_analyzed_resource/builders.rs index e1712ef6add9..c290cabf3738 100644 --- a/sdk/accessanalyzer/src/operation/get_analyzed_resource/builders.rs +++ b/sdk/accessanalyzer/src/operation/get_analyzed_resource/builders.rs @@ -19,9 +19,9 @@ impl GetAnalyzedResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetAnalyzedResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_analyzed_resource::GetAnalyzedResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_analyzed_resource::GetAnalyzedResourceError, + >, + > { + self.customize_middleware().await + } ///The ARN of the analyzer to retrieve information from.
pub fn analyzer_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.analyzer_arn(input.into()); diff --git a/sdk/accessanalyzer/src/operation/get_analyzer/builders.rs b/sdk/accessanalyzer/src/operation/get_analyzer/builders.rs index 91024c55a594..68fb65b154fa 100644 --- a/sdk/accessanalyzer/src/operation/get_analyzer/builders.rs +++ b/sdk/accessanalyzer/src/operation/get_analyzer/builders.rs @@ -19,9 +19,9 @@ impl GetAnalyzerFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetAnalyzerFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_analyzer::GetAnalyzer, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe name of the analyzer retrieved.
pub fn analyzer_name( mut self, diff --git a/sdk/accessanalyzer/src/operation/get_archive_rule/builders.rs b/sdk/accessanalyzer/src/operation/get_archive_rule/builders.rs index 7acc12a921aa..9fe93b751ff1 100644 --- a/sdk/accessanalyzer/src/operation/get_archive_rule/builders.rs +++ b/sdk/accessanalyzer/src/operation/get_archive_rule/builders.rs @@ -20,9 +20,9 @@ impl GetArchiveRuleFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl GetArchiveRuleFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_archive_rule::GetArchiveRule, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_archive_rule::GetArchiveRuleError, + >, + > { + self.customize_middleware().await + } ///The name of the analyzer to retrieve rules from.
pub fn analyzer_name( mut self, diff --git a/sdk/accessanalyzer/src/operation/get_finding/builders.rs b/sdk/accessanalyzer/src/operation/get_finding/builders.rs index 2f774f56f253..371c92128766 100644 --- a/sdk/accessanalyzer/src/operation/get_finding/builders.rs +++ b/sdk/accessanalyzer/src/operation/get_finding/builders.rs @@ -19,9 +19,9 @@ impl GetFindingFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetFindingFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_finding::GetFinding, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the analyzer that generated the finding.
pub fn analyzer_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.analyzer_arn(input.into()); diff --git a/sdk/accessanalyzer/src/operation/get_generated_policy/builders.rs b/sdk/accessanalyzer/src/operation/get_generated_policy/builders.rs index 16fc2c7fa6e0..82da276b45a5 100644 --- a/sdk/accessanalyzer/src/operation/get_generated_policy/builders.rs +++ b/sdk/accessanalyzer/src/operation/get_generated_policy/builders.rs @@ -19,9 +19,9 @@ impl GetGeneratedPolicyFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetGeneratedPolicyFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_generated_policy::GetGeneratedPolicy, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_generated_policy::GetGeneratedPolicyError, + >, + > { + self.customize_middleware().await + } ///The JobId
that is returned by the StartPolicyGeneration
operation. The JobId
can be used with GetGeneratedPolicy
to retrieve the generated policies or used with CancelPolicyGeneration
to cancel the policy generation request.
The ARN of the resource to retrieve tags from.
pub fn resource_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.resource_arn(input.into()); diff --git a/sdk/accessanalyzer/src/operation/start_policy_generation/builders.rs b/sdk/accessanalyzer/src/operation/start_policy_generation/builders.rs index 8c4db1785efa..51cf62fe718d 100644 --- a/sdk/accessanalyzer/src/operation/start_policy_generation/builders.rs +++ b/sdk/accessanalyzer/src/operation/start_policy_generation/builders.rs @@ -19,9 +19,9 @@ impl StartPolicyGenerationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl StartPolicyGenerationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::start_policy_generation::StartPolicyGeneration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::start_policy_generation::StartPolicyGenerationError, + >, + > { + self.customize_middleware().await + } ///Contains the ARN of the IAM entity (user or role) for which you are generating a policy.
pub fn policy_generation_details( mut self, diff --git a/sdk/accessanalyzer/src/operation/start_resource_scan/builders.rs b/sdk/accessanalyzer/src/operation/start_resource_scan/builders.rs index 476e5158c285..f7a70d481b0b 100644 --- a/sdk/accessanalyzer/src/operation/start_resource_scan/builders.rs +++ b/sdk/accessanalyzer/src/operation/start_resource_scan/builders.rs @@ -19,9 +19,9 @@ impl StartResourceScanFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl StartResourceScanFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::start_resource_scan::StartResourceScan, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::start_resource_scan::StartResourceScanError, + >, + > { + self.customize_middleware().await + } ///The ARN of the analyzer to use to scan the policies applied to the specified resource.
pub fn analyzer_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.analyzer_arn(input.into()); diff --git a/sdk/accessanalyzer/src/operation/tag_resource/builders.rs b/sdk/accessanalyzer/src/operation/tag_resource/builders.rs index 1c5f3fa3e807..3f23bdc65a2e 100644 --- a/sdk/accessanalyzer/src/operation/tag_resource/builders.rs +++ b/sdk/accessanalyzer/src/operation/tag_resource/builders.rs @@ -19,9 +19,9 @@ impl TagResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl TagResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::tag_resource::TagResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the resource to add the tag to.
pub fn resource_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.resource_arn(input.into()); diff --git a/sdk/accessanalyzer/src/operation/untag_resource/builders.rs b/sdk/accessanalyzer/src/operation/untag_resource/builders.rs index 761802cfba7e..97e406de660d 100644 --- a/sdk/accessanalyzer/src/operation/untag_resource/builders.rs +++ b/sdk/accessanalyzer/src/operation/untag_resource/builders.rs @@ -19,9 +19,9 @@ impl UntagResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UntagResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::untag_resource::UntagResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the resource to remove the tag from.
pub fn resource_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.resource_arn(input.into()); diff --git a/sdk/accessanalyzer/src/operation/update_archive_rule/builders.rs b/sdk/accessanalyzer/src/operation/update_archive_rule/builders.rs index 28a12670e84d..4d8c599604da 100644 --- a/sdk/accessanalyzer/src/operation/update_archive_rule/builders.rs +++ b/sdk/accessanalyzer/src/operation/update_archive_rule/builders.rs @@ -19,9 +19,9 @@ impl UpdateArchiveRuleFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateArchiveRuleFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_archive_rule::UpdateArchiveRule, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_archive_rule::UpdateArchiveRuleError, + >, + > { + self.customize_middleware().await + } ///The name of the analyzer to update the archive rules for.
pub fn analyzer_name( mut self, diff --git a/sdk/accessanalyzer/src/operation/update_findings/builders.rs b/sdk/accessanalyzer/src/operation/update_findings/builders.rs index b37cf11b67ee..53ec132862f4 100644 --- a/sdk/accessanalyzer/src/operation/update_findings/builders.rs +++ b/sdk/accessanalyzer/src/operation/update_findings/builders.rs @@ -19,9 +19,9 @@ impl UpdateFindingsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateFindingsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_findings::UpdateFindings, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the analyzer that generated the findings to update.
pub fn analyzer_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.analyzer_arn(input.into()); diff --git a/sdk/accessanalyzer/src/operation/validate_policy/builders.rs b/sdk/accessanalyzer/src/operation/validate_policy/builders.rs index 9cb5d0d4a207..2d210a66329d 100644 --- a/sdk/accessanalyzer/src/operation/validate_policy/builders.rs +++ b/sdk/accessanalyzer/src/operation/validate_policy/builders.rs @@ -19,9 +19,9 @@ impl ValidatePolicyFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl ValidatePolicyFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::validate_policy::ValidatePolicy, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorSpecifies which of the alternate contacts to delete.
pub fn alternate_contact_type(mut self, input: crate::types::AlternateContactType) -> Self { self.inner = self.inner.alternate_contact_type(input); diff --git a/sdk/account/src/operation/disable_region/builders.rs b/sdk/account/src/operation/disable_region/builders.rs index 904057a24c7e..392b794abf02 100644 --- a/sdk/account/src/operation/disable_region/builders.rs +++ b/sdk/account/src/operation/disable_region/builders.rs @@ -19,9 +19,9 @@ impl DisableRegionFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DisableRegionFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::disable_region::DisableRegion, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorSpecifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
Specifies which alternate contact you want to retrieve.
pub fn alternate_contact_type(mut self, input: crate::types::AlternateContactType) -> Self { self.inner = self.inner.alternate_contact_type(input); diff --git a/sdk/account/src/operation/get_contact_information/builders.rs b/sdk/account/src/operation/get_contact_information/builders.rs index 5abe2c89c439..9126c5030c1d 100644 --- a/sdk/account/src/operation/get_contact_information/builders.rs +++ b/sdk/account/src/operation/get_contact_information/builders.rs @@ -20,9 +20,9 @@ impl GetContactInformationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl GetContactInformationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_contact_information::GetContactInformation, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_contact_information::GetContactInformationError, + >, + > { + self.customize_middleware().await + } ///Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
Specifies a name for the alternate contact.
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.name(input.into()); diff --git a/sdk/account/src/operation/put_contact_information/builders.rs b/sdk/account/src/operation/put_contact_information/builders.rs index 2b84bf451f45..811321aab914 100644 --- a/sdk/account/src/operation/put_contact_information/builders.rs +++ b/sdk/account/src/operation/put_contact_information/builders.rs @@ -20,9 +20,9 @@ impl PutContactInformationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl PutContactInformationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::put_contact_information::PutContactInformation, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::put_contact_information::PutContactInformationError, + >, + > { + self.customize_middleware().await + } ///Contains the details of the primary contact information associated with an Amazon Web Services account.
pub fn contact_information(mut self, input: crate::types::ContactInformation) -> Self { self.inner = self.inner.contact_information(input); diff --git a/sdk/acm/src/operation/add_tags_to_certificate/builders.rs b/sdk/acm/src/operation/add_tags_to_certificate/builders.rs index 9ed404952195..d81ce1a60d1b 100644 --- a/sdk/acm/src/operation/add_tags_to_certificate/builders.rs +++ b/sdk/acm/src/operation/add_tags_to_certificate/builders.rs @@ -21,9 +21,9 @@ impl AddTagsToCertificateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -85,6 +85,22 @@ impl AddTagsToCertificateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::add_tags_to_certificate::AddTagsToCertificate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::add_tags_to_certificate::AddTagsToCertificateError, + >, + > { + self.customize_middleware().await + } ///String that contains the ARN of the ACM certificate to which the tag is to be applied. This must be of the form:
/// arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012
For more information about ARNs, see Amazon Resource Names (ARNs).
diff --git a/sdk/acm/src/operation/delete_certificate/builders.rs b/sdk/acm/src/operation/delete_certificate/builders.rs index 3e72d296b99e..b3f0e146391b 100644 --- a/sdk/acm/src/operation/delete_certificate/builders.rs +++ b/sdk/acm/src/operation/delete_certificate/builders.rs @@ -21,9 +21,9 @@ impl DeleteCertificateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -85,6 +85,22 @@ impl DeleteCertificateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_certificate::DeleteCertificate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_certificate::DeleteCertificateError, + >, + > { + self.customize_middleware().await + } ///String that contains the ARN of the ACM certificate to be deleted. This must be of the form:
/// arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012
For more information about ARNs, see Amazon Resource Names (ARNs).
diff --git a/sdk/acm/src/operation/describe_certificate/builders.rs b/sdk/acm/src/operation/describe_certificate/builders.rs index 0f74dc989647..7e4184b525a7 100644 --- a/sdk/acm/src/operation/describe_certificate/builders.rs +++ b/sdk/acm/src/operation/describe_certificate/builders.rs @@ -20,9 +20,9 @@ impl DescribeCertificateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl DescribeCertificateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::describe_certificate::DescribeCertificate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::describe_certificate::DescribeCertificateError, + >, + > { + self.customize_middleware().await + } ///The Amazon Resource Name (ARN) of the ACM certificate. The ARN must have the following form:
/// arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012
For more information about ARNs, see Amazon Resource Names (ARNs).
diff --git a/sdk/acm/src/operation/export_certificate/builders.rs b/sdk/acm/src/operation/export_certificate/builders.rs index 960cedf1da9e..101b38d020d5 100644 --- a/sdk/acm/src/operation/export_certificate/builders.rs +++ b/sdk/acm/src/operation/export_certificate/builders.rs @@ -20,9 +20,9 @@ impl ExportCertificateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl ExportCertificateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::export_certificate::ExportCertificate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::export_certificate::ExportCertificateError, + >, + > { + self.customize_middleware().await + } ///An Amazon Resource Name (ARN) of the issued certificate. This must be of the form:
/// arn:aws:acm:region:account:certificate/12345678-1234-1234-1234-123456789012
String that contains a certificate ARN in the following format:
/// arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012
For more information about ARNs, see Amazon Resource Names (ARNs).
diff --git a/sdk/acm/src/operation/import_certificate/builders.rs b/sdk/acm/src/operation/import_certificate/builders.rs index 59429a9a9ca1..928a2feea7c4 100644 --- a/sdk/acm/src/operation/import_certificate/builders.rs +++ b/sdk/acm/src/operation/import_certificate/builders.rs @@ -38,9 +38,9 @@ impl ImportCertificateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -102,6 +102,22 @@ impl ImportCertificateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::import_certificate::ImportCertificate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::import_certificate::ImportCertificateError, + >, + > { + self.customize_middleware().await + } ///The Amazon Resource Name (ARN) of an imported certificate to replace. To import a new certificate, omit this field.
pub fn certificate_arn( mut self, diff --git a/sdk/acm/src/operation/list_certificates/builders.rs b/sdk/acm/src/operation/list_certificates/builders.rs index b7059c1fbf47..d5eb6ba5ccd2 100644 --- a/sdk/acm/src/operation/list_certificates/builders.rs +++ b/sdk/acm/src/operation/list_certificates/builders.rs @@ -19,9 +19,9 @@ impl ListCertificatesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ListCertificatesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_certificates::ListCertificates, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::list_certificates::ListCertificatesError, + >, + > { + self.customize_middleware().await + } /// Create a paginator for this request /// /// Paginators are used by calling [`send().await`](crate::operation::list_certificates::paginator::ListCertificatesPaginator::send) which returns a `Stream`. diff --git a/sdk/acm/src/operation/list_tags_for_certificate/builders.rs b/sdk/acm/src/operation/list_tags_for_certificate/builders.rs index 7e1e6d6e44a8..bf5dd34a6de5 100644 --- a/sdk/acm/src/operation/list_tags_for_certificate/builders.rs +++ b/sdk/acm/src/operation/list_tags_for_certificate/builders.rs @@ -20,9 +20,9 @@ impl ListTagsForCertificateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl ListTagsForCertificateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_tags_for_certificate::ListTagsForCertificate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::list_tags_for_certificate::ListTagsForCertificateError, + >, + > { + self.customize_middleware().await + } ///String that contains the ARN of the ACM certificate for which you want to list the tags. This must have the following form:
/// arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012
For more information about ARNs, see Amazon Resource Names (ARNs).
diff --git a/sdk/acm/src/operation/put_account_configuration/builders.rs b/sdk/acm/src/operation/put_account_configuration/builders.rs index 7fe12ed087c4..5060ad8bfc1f 100644 --- a/sdk/acm/src/operation/put_account_configuration/builders.rs +++ b/sdk/acm/src/operation/put_account_configuration/builders.rs @@ -21,9 +21,9 @@ impl PutAccountConfigurationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -85,6 +85,22 @@ impl PutAccountConfigurationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::put_account_configuration::PutAccountConfiguration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::put_account_configuration::PutAccountConfigurationError, + >, + > { + self.customize_middleware().await + } ///Specifies expiration events associated with an account.
pub fn expiry_events(mut self, input: crate::types::ExpiryEventsConfiguration) -> Self { self.inner = self.inner.expiry_events(input); diff --git a/sdk/acm/src/operation/remove_tags_from_certificate/builders.rs b/sdk/acm/src/operation/remove_tags_from_certificate/builders.rs index afd3a0c0b84c..1510fafd3715 100644 --- a/sdk/acm/src/operation/remove_tags_from_certificate/builders.rs +++ b/sdk/acm/src/operation/remove_tags_from_certificate/builders.rs @@ -20,9 +20,9 @@ impl RemoveTagsFromCertificateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl RemoveTagsFromCertificateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::remove_tags_from_certificate::RemoveTagsFromCertificate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::remove_tags_from_certificate::RemoveTagsFromCertificateError, + >, + > { + self.customize_middleware().await + } ///String that contains the ARN of the ACM Certificate with one or more tags that you want to remove. This must be of the form:
/// arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012
For more information about ARNs, see Amazon Resource Names (ARNs).
diff --git a/sdk/acm/src/operation/renew_certificate/builders.rs b/sdk/acm/src/operation/renew_certificate/builders.rs index 5b43c12251f6..4bb4abf8039a 100644 --- a/sdk/acm/src/operation/renew_certificate/builders.rs +++ b/sdk/acm/src/operation/renew_certificate/builders.rs @@ -19,9 +19,9 @@ impl RenewCertificateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl RenewCertificateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::renew_certificate::RenewCertificate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::renew_certificate::RenewCertificateError, + >, + > { + self.customize_middleware().await + } ///String that contains the ARN of the ACM certificate to be renewed. This must be of the form:
/// arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012
For more information about ARNs, see Amazon Resource Names (ARNs).
diff --git a/sdk/acm/src/operation/request_certificate/builders.rs b/sdk/acm/src/operation/request_certificate/builders.rs index 6619df00daa2..55eb1d80b13d 100644 --- a/sdk/acm/src/operation/request_certificate/builders.rs +++ b/sdk/acm/src/operation/request_certificate/builders.rs @@ -23,9 +23,9 @@ impl RequestCertificateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -87,6 +87,22 @@ impl RequestCertificateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::request_certificate::RequestCertificate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::request_certificate::RequestCertificateError, + >, + > { + self.customize_middleware().await + } ///Fully qualified domain name (FQDN), such as www.example.com, that you want to secure with an ACM certificate. Use an asterisk (*) to create a wildcard certificate that protects several sites in the same domain. For example, *.example.com protects www.example.com, site.example.com, and images.example.com.
///In compliance with RFC 5280, the length of the domain name (technically, the Common Name) that you provide cannot exceed 64 octets (characters), including periods. To add a longer domain name, specify it in the Subject Alternative Name field, which supports names up to 253 octets in length.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { diff --git a/sdk/acm/src/operation/resend_validation_email/builders.rs b/sdk/acm/src/operation/resend_validation_email/builders.rs index a8ca36210204..7a15596c4b08 100644 --- a/sdk/acm/src/operation/resend_validation_email/builders.rs +++ b/sdk/acm/src/operation/resend_validation_email/builders.rs @@ -19,9 +19,9 @@ impl ResendValidationEmailFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ResendValidationEmailFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::resend_validation_email::ResendValidationEmail, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::resend_validation_email::ResendValidationEmailError, + >, + > { + self.customize_middleware().await + } ///String that contains the ARN of the requested certificate. The certificate ARN is generated and returned by the RequestCertificate
action as soon as the request is made. By default, using this parameter causes email to be sent to all top-level domains you specified in the certificate request. The ARN must be of the form:
arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012
ARN of the requested certificate to update. This must be of the form:
/// arn:aws:acm:us-east-1:account:certificate/12345678-1234-1234-1234-123456789012
Name and bit size of the private key algorithm, the name of the signing algorithm, and X.500 certificate subject information.
pub fn certificate_authority_configuration( mut self, diff --git a/sdk/acmpca/src/operation/create_certificate_authority_audit_report/builders.rs b/sdk/acmpca/src/operation/create_certificate_authority_audit_report/builders.rs index c635949e55fe..e2c63d0e34f8 100644 --- a/sdk/acmpca/src/operation/create_certificate_authority_audit_report/builders.rs +++ b/sdk/acmpca/src/operation/create_certificate_authority_audit_report/builders.rs @@ -24,9 +24,9 @@ impl CreateCertificateAuthorityAuditReportFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize(self) -> ::std::result::Result< + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware(self) -> ::std::result::Result< crate::client::customize::CustomizableOperationThe Amazon Resource Name (ARN) of the CA to be audited. This is of the form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
.
The Amazon Resource Name (ARN) of the CA that grants the permissions. You can find the ARN by calling the ListCertificateAuthorities action. This must have the following form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
.
The Amazon Resource Name (ARN) that was returned when you called CreateCertificateAuthority. This must have the following form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
.
The Amazon Resource Number (ARN) of the private CA that issued the permissions. You can find the CA's ARN by calling the ListCertificateAuthorities action. This must have the following form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
.
The Amazon Resource Number (ARN) of the private CA that will have its policy deleted. You can find the CA's ARN by calling the ListCertificateAuthorities action. The ARN value must have the form arn:aws:acm-pca:region:account:certificate-authority/01234567-89ab-cdef-0123-0123456789ab
.
The Amazon Resource Name (ARN) that was returned when you called CreateCertificateAuthority. This must be of the form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
.
The Amazon Resource Name (ARN) of the private CA. This must be of the form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
.
The Amazon Resource Name (ARN) that was returned when you called CreateCertificateAuthority. This must be of the form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
.
The Amazon Resource Name (ARN) of your private CA. This is of the form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
.
The Amazon Resource Name (ARN) that was returned when you called the CreateCertificateAuthority action. This must be of the form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
The Amazon Resource Number (ARN) of the private CA that will have its policy retrieved. You can find the CA's ARN by calling the ListCertificateAuthorities action.
pub fn resource_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.resource_arn(input.into()); diff --git a/sdk/acmpca/src/operation/import_certificate_authority_certificate/builders.rs b/sdk/acmpca/src/operation/import_certificate_authority_certificate/builders.rs index 0e4212d4fe00..7ea8756b2e67 100644 --- a/sdk/acmpca/src/operation/import_certificate_authority_certificate/builders.rs +++ b/sdk/acmpca/src/operation/import_certificate_authority_certificate/builders.rs @@ -66,9 +66,9 @@ impl ImportCertificateAuthorityCertificateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize(self) -> ::std::result::Result< + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware(self) -> ::std::result::Result< crate::client::customize::CustomizableOperationThe Amazon Resource Name (ARN) that was returned when you called CreateCertificateAuthority. This must be of the form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
Specifies X.509 certificate information to be included in the issued certificate. An APIPassthrough
or APICSRPassthrough
template variant must be selected, or else this parameter is ignored. For more information about using these templates, see Understanding Certificate Templates.
If conflicting or duplicate certificate information is supplied during certificate issuance, Amazon Web Services Private CA applies order of operation rules to determine what information is used.
pub fn api_passthrough(mut self, input: crate::types::ApiPassthrough) -> Self { diff --git a/sdk/acmpca/src/operation/list_certificate_authorities/builders.rs b/sdk/acmpca/src/operation/list_certificate_authorities/builders.rs index 585808738b39..d129363778ea 100644 --- a/sdk/acmpca/src/operation/list_certificate_authorities/builders.rs +++ b/sdk/acmpca/src/operation/list_certificate_authorities/builders.rs @@ -19,9 +19,9 @@ impl ListCertificateAuthoritiesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ListCertificateAuthoritiesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_certificate_authorities::ListCertificateAuthorities, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::list_certificate_authorities::ListCertificateAuthoritiesError, + >, + > { + self.customize_middleware().await + } /// Create a paginator for this request /// /// Paginators are used by calling [`send().await`](crate::operation::list_certificate_authorities::paginator::ListCertificateAuthoritiesPaginator::send) which returns a `Stream`. diff --git a/sdk/acmpca/src/operation/list_permissions/builders.rs b/sdk/acmpca/src/operation/list_permissions/builders.rs index 43bdef886112..9b34aea430e2 100644 --- a/sdk/acmpca/src/operation/list_permissions/builders.rs +++ b/sdk/acmpca/src/operation/list_permissions/builders.rs @@ -27,9 +27,9 @@ impl ListPermissionsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -91,6 +91,22 @@ impl ListPermissionsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_permissions::ListPermissions, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::list_permissions::ListPermissionsError, + >, + > { + self.customize_middleware().await + } /// Create a paginator for this request /// /// Paginators are used by calling [`send().await`](crate::operation::list_permissions::paginator::ListPermissionsPaginator::send) which returns a `Stream`. diff --git a/sdk/acmpca/src/operation/list_tags/builders.rs b/sdk/acmpca/src/operation/list_tags/builders.rs index 16ca9afb1a81..25e01cef1f85 100644 --- a/sdk/acmpca/src/operation/list_tags/builders.rs +++ b/sdk/acmpca/src/operation/list_tags/builders.rs @@ -19,9 +19,9 @@ impl ListTagsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl ListTagsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_tags::ListTags, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe Amazon Resource Number (ARN) of the private CA to associate with the policy. The ARN of the CA can be found by calling the ListCertificateAuthorities action.
/// pub fn resource_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { diff --git a/sdk/acmpca/src/operation/restore_certificate_authority/builders.rs b/sdk/acmpca/src/operation/restore_certificate_authority/builders.rs index e2d4cef3dab9..cf3a5def6575 100644 --- a/sdk/acmpca/src/operation/restore_certificate_authority/builders.rs +++ b/sdk/acmpca/src/operation/restore_certificate_authority/builders.rs @@ -19,9 +19,9 @@ impl RestoreCertificateAuthorityFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl RestoreCertificateAuthorityFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::restore_certificate_authority::RestoreCertificateAuthority, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::restore_certificate_authority::RestoreCertificateAuthorityError, + >, + > { + self.customize_middleware().await + } ///The Amazon Resource Name (ARN) that was returned when you called the CreateCertificateAuthority action. This must be of the form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
Amazon Resource Name (ARN) of the private CA that issued the certificate to be revoked. This must be of the form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
The Amazon Resource Name (ARN) that was returned when you called CreateCertificateAuthority. This must be of the form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
The Amazon Resource Name (ARN) that was returned when you called CreateCertificateAuthority. This must be of the form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
Amazon Resource Name (ARN) of the private CA that issued the certificate to be revoked. This must be of the form:
/// arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
The unique identifier of the skill.
pub fn skill_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.skill_id(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/associate_contact_with_address_book/builders.rs b/sdk/alexaforbusiness/src/operation/associate_contact_with_address_book/builders.rs index 1b7289453ad1..746cc60c3828 100644 --- a/sdk/alexaforbusiness/src/operation/associate_contact_with_address_book/builders.rs +++ b/sdk/alexaforbusiness/src/operation/associate_contact_with_address_book/builders.rs @@ -19,9 +19,9 @@ impl AssociateContactWithAddressBookFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize(self) -> ::std::result::Result< + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware(self) -> ::std::result::Result< crate::client::customize::CustomizableOperationThe ARN of the contact to associate with an address book.
pub fn contact_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.contact_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/associate_device_with_network_profile/builders.rs b/sdk/alexaforbusiness/src/operation/associate_device_with_network_profile/builders.rs index e466ca147a0e..e1ccdef3e505 100644 --- a/sdk/alexaforbusiness/src/operation/associate_device_with_network_profile/builders.rs +++ b/sdk/alexaforbusiness/src/operation/associate_device_with_network_profile/builders.rs @@ -19,9 +19,9 @@ impl AssociateDeviceWithNetworkProfileFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize(self) -> ::std::result::Result< + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware(self) -> ::std::result::Result< crate::client::customize::CustomizableOperationThe device ARN.
pub fn device_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.device_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/associate_device_with_room/builders.rs b/sdk/alexaforbusiness/src/operation/associate_device_with_room/builders.rs index ecdad2c5f791..f83c10feac1b 100644 --- a/sdk/alexaforbusiness/src/operation/associate_device_with_room/builders.rs +++ b/sdk/alexaforbusiness/src/operation/associate_device_with_room/builders.rs @@ -20,9 +20,9 @@ impl AssociateDeviceWithRoomFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl AssociateDeviceWithRoomFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::associate_device_with_room::AssociateDeviceWithRoom, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::associate_device_with_room::AssociateDeviceWithRoomError, + >, + > { + self.customize_middleware().await + } ///The ARN of the device to associate to a room. Required.
pub fn device_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.device_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/associate_skill_group_with_room/builders.rs b/sdk/alexaforbusiness/src/operation/associate_skill_group_with_room/builders.rs index 401c08fc97ae..bfcc8639a357 100644 --- a/sdk/alexaforbusiness/src/operation/associate_skill_group_with_room/builders.rs +++ b/sdk/alexaforbusiness/src/operation/associate_skill_group_with_room/builders.rs @@ -19,9 +19,9 @@ impl AssociateSkillGroupWithRoomFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl AssociateSkillGroupWithRoomFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::associate_skill_group_with_room::AssociateSkillGroupWithRoom, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::associate_skill_group_with_room::AssociateSkillGroupWithRoomError, + >, + > { + self.customize_middleware().await + } ///The ARN of the skill group to associate with a room. Required.
pub fn skill_group_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/associate_skill_with_skill_group/builders.rs b/sdk/alexaforbusiness/src/operation/associate_skill_with_skill_group/builders.rs index 42d855cd3377..c4cba81dc9fd 100644 --- a/sdk/alexaforbusiness/src/operation/associate_skill_with_skill_group/builders.rs +++ b/sdk/alexaforbusiness/src/operation/associate_skill_with_skill_group/builders.rs @@ -19,9 +19,9 @@ impl AssociateSkillWithSkillGroupFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl AssociateSkillWithSkillGroupFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::associate_skill_with_skill_group::AssociateSkillWithSkillGroup, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::associate_skill_with_skill_group::AssociateSkillWithSkillGroupError, + >, + > { + self.customize_middleware().await + } ///The ARN of the skill group to associate the skill to. Required.
pub fn skill_group_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/associate_skill_with_users/builders.rs b/sdk/alexaforbusiness/src/operation/associate_skill_with_users/builders.rs index 053f93baec76..2396bef694c6 100644 --- a/sdk/alexaforbusiness/src/operation/associate_skill_with_users/builders.rs +++ b/sdk/alexaforbusiness/src/operation/associate_skill_with_users/builders.rs @@ -20,9 +20,9 @@ impl AssociateSkillWithUsersFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl AssociateSkillWithUsersFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::associate_skill_with_users::AssociateSkillWithUsers, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::associate_skill_with_users::AssociateSkillWithUsersError, + >, + > { + self.customize_middleware().await + } ///The private skill ID you want to make available to enrolled users.
pub fn skill_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.skill_id(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/create_address_book/builders.rs b/sdk/alexaforbusiness/src/operation/create_address_book/builders.rs index e7409d33f18b..5bf81f4396ac 100644 --- a/sdk/alexaforbusiness/src/operation/create_address_book/builders.rs +++ b/sdk/alexaforbusiness/src/operation/create_address_book/builders.rs @@ -19,9 +19,9 @@ impl CreateAddressBookFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateAddressBookFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_address_book::CreateAddressBook, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_address_book::CreateAddressBookError, + >, + > { + self.customize_middleware().await + } ///The name of the address book.
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.name(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/create_business_report_schedule/builders.rs b/sdk/alexaforbusiness/src/operation/create_business_report_schedule/builders.rs index 175511f12ae8..b063371c2466 100644 --- a/sdk/alexaforbusiness/src/operation/create_business_report_schedule/builders.rs +++ b/sdk/alexaforbusiness/src/operation/create_business_report_schedule/builders.rs @@ -19,9 +19,9 @@ impl CreateBusinessReportScheduleFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateBusinessReportScheduleFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_business_report_schedule::CreateBusinessReportSchedule, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_business_report_schedule::CreateBusinessReportScheduleError, + >, + > { + self.customize_middleware().await + } ///The name identifier of the schedule.
pub fn schedule_name( mut self, diff --git a/sdk/alexaforbusiness/src/operation/create_conference_provider/builders.rs b/sdk/alexaforbusiness/src/operation/create_conference_provider/builders.rs index ebd09e775322..6bdb1846fe10 100644 --- a/sdk/alexaforbusiness/src/operation/create_conference_provider/builders.rs +++ b/sdk/alexaforbusiness/src/operation/create_conference_provider/builders.rs @@ -19,9 +19,9 @@ impl CreateConferenceProviderFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateConferenceProviderFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_conference_provider::CreateConferenceProvider, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_conference_provider::CreateConferenceProviderError, + >, + > { + self.customize_middleware().await + } ///The name of the conference provider.
pub fn conference_provider_name( mut self, diff --git a/sdk/alexaforbusiness/src/operation/create_contact/builders.rs b/sdk/alexaforbusiness/src/operation/create_contact/builders.rs index dd52c34dcfce..45e93dac959d 100644 --- a/sdk/alexaforbusiness/src/operation/create_contact/builders.rs +++ b/sdk/alexaforbusiness/src/operation/create_contact/builders.rs @@ -19,9 +19,9 @@ impl CreateContactFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateContactFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_contact::CreateContact, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe name of the contact to display on the console.
pub fn display_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.display_name(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/create_gateway_group/builders.rs b/sdk/alexaforbusiness/src/operation/create_gateway_group/builders.rs index 9de296f00419..4b5c1eb77d40 100644 --- a/sdk/alexaforbusiness/src/operation/create_gateway_group/builders.rs +++ b/sdk/alexaforbusiness/src/operation/create_gateway_group/builders.rs @@ -19,9 +19,9 @@ impl CreateGatewayGroupFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateGatewayGroupFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_gateway_group::CreateGatewayGroup, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_gateway_group::CreateGatewayGroupError, + >, + > { + self.customize_middleware().await + } ///The name of the gateway group.
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.name(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/create_network_profile/builders.rs b/sdk/alexaforbusiness/src/operation/create_network_profile/builders.rs index 805d37b841d2..a821d757dd7f 100644 --- a/sdk/alexaforbusiness/src/operation/create_network_profile/builders.rs +++ b/sdk/alexaforbusiness/src/operation/create_network_profile/builders.rs @@ -19,9 +19,9 @@ impl CreateNetworkProfileFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateNetworkProfileFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_network_profile::CreateNetworkProfile, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_network_profile::CreateNetworkProfileError, + >, + > { + self.customize_middleware().await + } ///The name of the network profile associated with a device.
pub fn network_profile_name( mut self, diff --git a/sdk/alexaforbusiness/src/operation/create_profile/builders.rs b/sdk/alexaforbusiness/src/operation/create_profile/builders.rs index ea165ac02adc..60ac7c99dbe9 100644 --- a/sdk/alexaforbusiness/src/operation/create_profile/builders.rs +++ b/sdk/alexaforbusiness/src/operation/create_profile/builders.rs @@ -19,9 +19,9 @@ impl CreateProfileFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateProfileFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_profile::CreateProfile, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe name of a room profile.
pub fn profile_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.profile_name(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/create_room/builders.rs b/sdk/alexaforbusiness/src/operation/create_room/builders.rs index 4fc7e6e70b36..c5523a44ab58 100644 --- a/sdk/alexaforbusiness/src/operation/create_room/builders.rs +++ b/sdk/alexaforbusiness/src/operation/create_room/builders.rs @@ -19,9 +19,9 @@ impl CreateRoomFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateRoomFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_room::CreateRoom, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe name for the room.
pub fn room_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.room_name(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/create_skill_group/builders.rs b/sdk/alexaforbusiness/src/operation/create_skill_group/builders.rs index e7f6b62bea83..ab539f9124bd 100644 --- a/sdk/alexaforbusiness/src/operation/create_skill_group/builders.rs +++ b/sdk/alexaforbusiness/src/operation/create_skill_group/builders.rs @@ -19,9 +19,9 @@ impl CreateSkillGroupFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateSkillGroupFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_skill_group::CreateSkillGroup, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_skill_group::CreateSkillGroupError, + >, + > { + self.customize_middleware().await + } ///The name for the skill group.
pub fn skill_group_name( mut self, diff --git a/sdk/alexaforbusiness/src/operation/create_user/builders.rs b/sdk/alexaforbusiness/src/operation/create_user/builders.rs index ea9a0f383fc8..679117046749 100644 --- a/sdk/alexaforbusiness/src/operation/create_user/builders.rs +++ b/sdk/alexaforbusiness/src/operation/create_user/builders.rs @@ -19,9 +19,9 @@ impl CreateUserFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateUserFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_user::CreateUser, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN for the user.
pub fn user_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.user_id(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/delete_address_book/builders.rs b/sdk/alexaforbusiness/src/operation/delete_address_book/builders.rs index 209b884cc384..31313274bfbd 100644 --- a/sdk/alexaforbusiness/src/operation/delete_address_book/builders.rs +++ b/sdk/alexaforbusiness/src/operation/delete_address_book/builders.rs @@ -19,9 +19,9 @@ impl DeleteAddressBookFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteAddressBookFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_address_book::DeleteAddressBook, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_address_book::DeleteAddressBookError, + >, + > { + self.customize_middleware().await + } ///The ARN of the address book to delete.
pub fn address_book_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/delete_business_report_schedule/builders.rs b/sdk/alexaforbusiness/src/operation/delete_business_report_schedule/builders.rs index a63a5b606b17..e4a5df406fe5 100644 --- a/sdk/alexaforbusiness/src/operation/delete_business_report_schedule/builders.rs +++ b/sdk/alexaforbusiness/src/operation/delete_business_report_schedule/builders.rs @@ -19,9 +19,9 @@ impl DeleteBusinessReportScheduleFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteBusinessReportScheduleFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_business_report_schedule::DeleteBusinessReportSchedule, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_business_report_schedule::DeleteBusinessReportScheduleError, + >, + > { + self.customize_middleware().await + } ///The ARN of the business report schedule.
pub fn schedule_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.schedule_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/delete_conference_provider/builders.rs b/sdk/alexaforbusiness/src/operation/delete_conference_provider/builders.rs index 6555e5b4a936..2a6acb41ad34 100644 --- a/sdk/alexaforbusiness/src/operation/delete_conference_provider/builders.rs +++ b/sdk/alexaforbusiness/src/operation/delete_conference_provider/builders.rs @@ -19,9 +19,9 @@ impl DeleteConferenceProviderFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteConferenceProviderFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_conference_provider::DeleteConferenceProvider, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_conference_provider::DeleteConferenceProviderError, + >, + > { + self.customize_middleware().await + } ///The ARN of the conference provider.
pub fn conference_provider_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/delete_contact/builders.rs b/sdk/alexaforbusiness/src/operation/delete_contact/builders.rs index 21c203ee0855..9ba1f2648bf5 100644 --- a/sdk/alexaforbusiness/src/operation/delete_contact/builders.rs +++ b/sdk/alexaforbusiness/src/operation/delete_contact/builders.rs @@ -19,9 +19,9 @@ impl DeleteContactFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteContactFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_contact::DeleteContact, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the contact to delete.
pub fn contact_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.contact_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/delete_device/builders.rs b/sdk/alexaforbusiness/src/operation/delete_device/builders.rs index 406b673dd2d7..c91ecb3a5f89 100644 --- a/sdk/alexaforbusiness/src/operation/delete_device/builders.rs +++ b/sdk/alexaforbusiness/src/operation/delete_device/builders.rs @@ -19,9 +19,9 @@ impl DeleteDeviceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteDeviceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_device::DeleteDevice, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the device for which to request details.
pub fn device_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.device_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/delete_device_usage_data/builders.rs b/sdk/alexaforbusiness/src/operation/delete_device_usage_data/builders.rs index a0e626365854..e2dda997bc4e 100644 --- a/sdk/alexaforbusiness/src/operation/delete_device_usage_data/builders.rs +++ b/sdk/alexaforbusiness/src/operation/delete_device_usage_data/builders.rs @@ -19,9 +19,9 @@ impl DeleteDeviceUsageDataFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteDeviceUsageDataFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_device_usage_data::DeleteDeviceUsageData, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_device_usage_data::DeleteDeviceUsageDataError, + >, + > { + self.customize_middleware().await + } ///The ARN of the device.
pub fn device_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.device_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/delete_gateway_group/builders.rs b/sdk/alexaforbusiness/src/operation/delete_gateway_group/builders.rs index aa59f1cbfeae..de0cf487215a 100644 --- a/sdk/alexaforbusiness/src/operation/delete_gateway_group/builders.rs +++ b/sdk/alexaforbusiness/src/operation/delete_gateway_group/builders.rs @@ -19,9 +19,9 @@ impl DeleteGatewayGroupFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteGatewayGroupFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_gateway_group::DeleteGatewayGroup, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_gateway_group::DeleteGatewayGroupError, + >, + > { + self.customize_middleware().await + } ///The ARN of the gateway group to delete.
pub fn gateway_group_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/delete_network_profile/builders.rs b/sdk/alexaforbusiness/src/operation/delete_network_profile/builders.rs index c1991931efe3..75ee3a98ed40 100644 --- a/sdk/alexaforbusiness/src/operation/delete_network_profile/builders.rs +++ b/sdk/alexaforbusiness/src/operation/delete_network_profile/builders.rs @@ -19,9 +19,9 @@ impl DeleteNetworkProfileFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteNetworkProfileFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_network_profile::DeleteNetworkProfile, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_network_profile::DeleteNetworkProfileError, + >, + > { + self.customize_middleware().await + } ///The ARN of the network profile associated with a device.
pub fn network_profile_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/delete_profile/builders.rs b/sdk/alexaforbusiness/src/operation/delete_profile/builders.rs index 8c0eac1be937..214c8a2bea9f 100644 --- a/sdk/alexaforbusiness/src/operation/delete_profile/builders.rs +++ b/sdk/alexaforbusiness/src/operation/delete_profile/builders.rs @@ -19,9 +19,9 @@ impl DeleteProfileFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteProfileFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_profile::DeleteProfile, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the room profile to delete. Required.
pub fn profile_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.profile_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/delete_room/builders.rs b/sdk/alexaforbusiness/src/operation/delete_room/builders.rs index adade99aefd2..177af2f82017 100644 --- a/sdk/alexaforbusiness/src/operation/delete_room/builders.rs +++ b/sdk/alexaforbusiness/src/operation/delete_room/builders.rs @@ -19,9 +19,9 @@ impl DeleteRoomFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteRoomFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_room::DeleteRoom, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the room to delete. Required.
pub fn room_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.room_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/delete_room_skill_parameter/builders.rs b/sdk/alexaforbusiness/src/operation/delete_room_skill_parameter/builders.rs index 29d5262be383..07f877e801c7 100644 --- a/sdk/alexaforbusiness/src/operation/delete_room_skill_parameter/builders.rs +++ b/sdk/alexaforbusiness/src/operation/delete_room_skill_parameter/builders.rs @@ -19,9 +19,9 @@ impl DeleteRoomSkillParameterFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteRoomSkillParameterFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_room_skill_parameter::DeleteRoomSkillParameter, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_room_skill_parameter::DeleteRoomSkillParameterError, + >, + > { + self.customize_middleware().await + } ///The ARN of the room from which to remove the room skill parameter details.
pub fn room_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.room_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/delete_skill_authorization/builders.rs b/sdk/alexaforbusiness/src/operation/delete_skill_authorization/builders.rs index 89d101c791aa..e7a808a89e9b 100644 --- a/sdk/alexaforbusiness/src/operation/delete_skill_authorization/builders.rs +++ b/sdk/alexaforbusiness/src/operation/delete_skill_authorization/builders.rs @@ -19,9 +19,9 @@ impl DeleteSkillAuthorizationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteSkillAuthorizationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_skill_authorization::DeleteSkillAuthorization, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_skill_authorization::DeleteSkillAuthorizationError, + >, + > { + self.customize_middleware().await + } ///The unique identifier of a skill.
pub fn skill_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.skill_id(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/delete_skill_group/builders.rs b/sdk/alexaforbusiness/src/operation/delete_skill_group/builders.rs index c29348da651e..3488413d774d 100644 --- a/sdk/alexaforbusiness/src/operation/delete_skill_group/builders.rs +++ b/sdk/alexaforbusiness/src/operation/delete_skill_group/builders.rs @@ -19,9 +19,9 @@ impl DeleteSkillGroupFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteSkillGroupFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_skill_group::DeleteSkillGroup, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_skill_group::DeleteSkillGroupError, + >, + > { + self.customize_middleware().await + } ///The ARN of the skill group to delete. Required.
pub fn skill_group_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/delete_user/builders.rs b/sdk/alexaforbusiness/src/operation/delete_user/builders.rs index 7aeb014917bf..93fc27ea8539 100644 --- a/sdk/alexaforbusiness/src/operation/delete_user/builders.rs +++ b/sdk/alexaforbusiness/src/operation/delete_user/builders.rs @@ -19,9 +19,9 @@ impl DeleteUserFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteUserFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_user::DeleteUser, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the user to delete in the organization. Required.
pub fn user_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.user_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/disassociate_contact_from_address_book/builders.rs b/sdk/alexaforbusiness/src/operation/disassociate_contact_from_address_book/builders.rs index d281a9e8262e..608e3a9b0bb5 100644 --- a/sdk/alexaforbusiness/src/operation/disassociate_contact_from_address_book/builders.rs +++ b/sdk/alexaforbusiness/src/operation/disassociate_contact_from_address_book/builders.rs @@ -19,9 +19,9 @@ impl DisassociateContactFromAddressBookFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize(self) -> ::std::result::Result< + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware(self) -> ::std::result::Result< crate::client::customize::CustomizableOperationThe ARN of the contact to disassociate from an address book.
pub fn contact_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.contact_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/disassociate_device_from_room/builders.rs b/sdk/alexaforbusiness/src/operation/disassociate_device_from_room/builders.rs index df8eee5e8cb2..841f70221d67 100644 --- a/sdk/alexaforbusiness/src/operation/disassociate_device_from_room/builders.rs +++ b/sdk/alexaforbusiness/src/operation/disassociate_device_from_room/builders.rs @@ -19,9 +19,9 @@ impl DisassociateDeviceFromRoomFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DisassociateDeviceFromRoomFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::disassociate_device_from_room::DisassociateDeviceFromRoom, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::disassociate_device_from_room::DisassociateDeviceFromRoomError, + >, + > { + self.customize_middleware().await + } ///The ARN of the device to disassociate from a room. Required.
pub fn device_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.device_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/disassociate_skill_from_skill_group/builders.rs b/sdk/alexaforbusiness/src/operation/disassociate_skill_from_skill_group/builders.rs index 5a778f193b65..f5b58886938c 100644 --- a/sdk/alexaforbusiness/src/operation/disassociate_skill_from_skill_group/builders.rs +++ b/sdk/alexaforbusiness/src/operation/disassociate_skill_from_skill_group/builders.rs @@ -19,9 +19,9 @@ impl DisassociateSkillFromSkillGroupFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize(self) -> ::std::result::Result< + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware(self) -> ::std::result::Result< crate::client::customize::CustomizableOperationThe unique identifier of a skill. Required.
pub fn skill_group_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/disassociate_skill_from_users/builders.rs b/sdk/alexaforbusiness/src/operation/disassociate_skill_from_users/builders.rs index cb233b00f3bf..505b50adcf5a 100644 --- a/sdk/alexaforbusiness/src/operation/disassociate_skill_from_users/builders.rs +++ b/sdk/alexaforbusiness/src/operation/disassociate_skill_from_users/builders.rs @@ -19,9 +19,9 @@ impl DisassociateSkillFromUsersFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DisassociateSkillFromUsersFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::disassociate_skill_from_users::DisassociateSkillFromUsers, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::disassociate_skill_from_users::DisassociateSkillFromUsersError, + >, + > { + self.customize_middleware().await + } ///The private skill ID you want to make unavailable for enrolled users.
pub fn skill_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.skill_id(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/disassociate_skill_group_from_room/builders.rs b/sdk/alexaforbusiness/src/operation/disassociate_skill_group_from_room/builders.rs index abf0c0cf2835..cdcde6595c20 100644 --- a/sdk/alexaforbusiness/src/operation/disassociate_skill_group_from_room/builders.rs +++ b/sdk/alexaforbusiness/src/operation/disassociate_skill_group_from_room/builders.rs @@ -19,9 +19,9 @@ impl DisassociateSkillGroupFromRoomFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize(self) -> ::std::result::Result< + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware(self) -> ::std::result::Result< crate::client::customize::CustomizableOperationThe ARN of the skill group to disassociate from a room. Required.
pub fn skill_group_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/forget_smart_home_appliances/builders.rs b/sdk/alexaforbusiness/src/operation/forget_smart_home_appliances/builders.rs index 3734ec17280c..0d707d149ed5 100644 --- a/sdk/alexaforbusiness/src/operation/forget_smart_home_appliances/builders.rs +++ b/sdk/alexaforbusiness/src/operation/forget_smart_home_appliances/builders.rs @@ -19,9 +19,9 @@ impl ForgetSmartHomeAppliancesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ForgetSmartHomeAppliancesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::forget_smart_home_appliances::ForgetSmartHomeAppliances, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::forget_smart_home_appliances::ForgetSmartHomeAppliancesError, + >, + > { + self.customize_middleware().await + } ///The room that the appliances are associated with.
pub fn room_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.room_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/get_address_book/builders.rs b/sdk/alexaforbusiness/src/operation/get_address_book/builders.rs index ba525ce5ea21..7606271eba2e 100644 --- a/sdk/alexaforbusiness/src/operation/get_address_book/builders.rs +++ b/sdk/alexaforbusiness/src/operation/get_address_book/builders.rs @@ -19,9 +19,9 @@ impl GetAddressBookFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetAddressBookFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_address_book::GetAddressBook, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_address_book::GetAddressBookError, + >, + > { + self.customize_middleware().await + } ///The ARN of the address book for which to request details.
pub fn address_book_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/get_conference_preference/builders.rs b/sdk/alexaforbusiness/src/operation/get_conference_preference/builders.rs index a23105e44373..c458886832ef 100644 --- a/sdk/alexaforbusiness/src/operation/get_conference_preference/builders.rs +++ b/sdk/alexaforbusiness/src/operation/get_conference_preference/builders.rs @@ -20,9 +20,9 @@ impl GetConferencePreferenceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,4 +84,20 @@ impl GetConferencePreferenceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_conference_preference::GetConferencePreference, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_conference_preference::GetConferencePreferenceError, + >, + > { + self.customize_middleware().await + } } diff --git a/sdk/alexaforbusiness/src/operation/get_conference_provider/builders.rs b/sdk/alexaforbusiness/src/operation/get_conference_provider/builders.rs index 8dd8b460d46e..814a1cb84153 100644 --- a/sdk/alexaforbusiness/src/operation/get_conference_provider/builders.rs +++ b/sdk/alexaforbusiness/src/operation/get_conference_provider/builders.rs @@ -19,9 +19,9 @@ impl GetConferenceProviderFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetConferenceProviderFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_conference_provider::GetConferenceProvider, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_conference_provider::GetConferenceProviderError, + >, + > { + self.customize_middleware().await + } ///The ARN of the newly created conference provider.
pub fn conference_provider_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/get_contact/builders.rs b/sdk/alexaforbusiness/src/operation/get_contact/builders.rs index 7fb8deab7274..6875ddf8dfc8 100644 --- a/sdk/alexaforbusiness/src/operation/get_contact/builders.rs +++ b/sdk/alexaforbusiness/src/operation/get_contact/builders.rs @@ -19,9 +19,9 @@ impl GetContactFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetContactFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_contact::GetContact, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the contact for which to request details.
pub fn contact_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.contact_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/get_device/builders.rs b/sdk/alexaforbusiness/src/operation/get_device/builders.rs index f43f3e9e317b..8ba3abdc2c6a 100644 --- a/sdk/alexaforbusiness/src/operation/get_device/builders.rs +++ b/sdk/alexaforbusiness/src/operation/get_device/builders.rs @@ -19,9 +19,9 @@ impl GetDeviceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetDeviceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_device::GetDevice, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the device for which to request details. Required.
pub fn device_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.device_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/get_gateway/builders.rs b/sdk/alexaforbusiness/src/operation/get_gateway/builders.rs index 7259f7585fd5..a3bdf10ff1f9 100644 --- a/sdk/alexaforbusiness/src/operation/get_gateway/builders.rs +++ b/sdk/alexaforbusiness/src/operation/get_gateway/builders.rs @@ -19,9 +19,9 @@ impl GetGatewayFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetGatewayFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_gateway::GetGateway, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the gateway to get.
pub fn gateway_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.gateway_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/get_gateway_group/builders.rs b/sdk/alexaforbusiness/src/operation/get_gateway_group/builders.rs index b9a806f577bb..1286e278de79 100644 --- a/sdk/alexaforbusiness/src/operation/get_gateway_group/builders.rs +++ b/sdk/alexaforbusiness/src/operation/get_gateway_group/builders.rs @@ -19,9 +19,9 @@ impl GetGatewayGroupFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetGatewayGroupFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_gateway_group::GetGatewayGroup, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_gateway_group::GetGatewayGroupError, + >, + > { + self.customize_middleware().await + } ///The ARN of the gateway group to get.
pub fn gateway_group_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/get_invitation_configuration/builders.rs b/sdk/alexaforbusiness/src/operation/get_invitation_configuration/builders.rs index 3061abb09ab8..0e10594d4672 100644 --- a/sdk/alexaforbusiness/src/operation/get_invitation_configuration/builders.rs +++ b/sdk/alexaforbusiness/src/operation/get_invitation_configuration/builders.rs @@ -19,9 +19,9 @@ impl GetInvitationConfigurationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,4 +83,20 @@ impl GetInvitationConfigurationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_invitation_configuration::GetInvitationConfiguration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_invitation_configuration::GetInvitationConfigurationError, + >, + > { + self.customize_middleware().await + } } diff --git a/sdk/alexaforbusiness/src/operation/get_network_profile/builders.rs b/sdk/alexaforbusiness/src/operation/get_network_profile/builders.rs index 4c869553dc49..3f515ee934f9 100644 --- a/sdk/alexaforbusiness/src/operation/get_network_profile/builders.rs +++ b/sdk/alexaforbusiness/src/operation/get_network_profile/builders.rs @@ -19,9 +19,9 @@ impl GetNetworkProfileFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetNetworkProfileFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_network_profile::GetNetworkProfile, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_network_profile::GetNetworkProfileError, + >, + > { + self.customize_middleware().await + } ///The ARN of the network profile associated with a device.
pub fn network_profile_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/get_profile/builders.rs b/sdk/alexaforbusiness/src/operation/get_profile/builders.rs index 84ca3120297d..9d12dc1c01bb 100644 --- a/sdk/alexaforbusiness/src/operation/get_profile/builders.rs +++ b/sdk/alexaforbusiness/src/operation/get_profile/builders.rs @@ -19,9 +19,9 @@ impl GetProfileFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetProfileFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_profile::GetProfile, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the room profile for which to request details. Required.
pub fn profile_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.profile_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/get_room/builders.rs b/sdk/alexaforbusiness/src/operation/get_room/builders.rs index 2cdb506f10e9..7ddd691c2337 100644 --- a/sdk/alexaforbusiness/src/operation/get_room/builders.rs +++ b/sdk/alexaforbusiness/src/operation/get_room/builders.rs @@ -19,9 +19,9 @@ impl GetRoomFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetRoomFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_room::GetRoom, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the room for which to request details. Required.
pub fn room_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.room_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/get_room_skill_parameter/builders.rs b/sdk/alexaforbusiness/src/operation/get_room_skill_parameter/builders.rs index 20d03b052395..0123590bbf66 100644 --- a/sdk/alexaforbusiness/src/operation/get_room_skill_parameter/builders.rs +++ b/sdk/alexaforbusiness/src/operation/get_room_skill_parameter/builders.rs @@ -19,9 +19,9 @@ impl GetRoomSkillParameterFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetRoomSkillParameterFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_room_skill_parameter::GetRoomSkillParameter, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_room_skill_parameter::GetRoomSkillParameterError, + >, + > { + self.customize_middleware().await + } ///The ARN of the room from which to get the room skill parameter details.
pub fn room_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.room_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/get_skill_group/builders.rs b/sdk/alexaforbusiness/src/operation/get_skill_group/builders.rs index 5213cbfe3e5a..402b4543832b 100644 --- a/sdk/alexaforbusiness/src/operation/get_skill_group/builders.rs +++ b/sdk/alexaforbusiness/src/operation/get_skill_group/builders.rs @@ -19,9 +19,9 @@ impl GetSkillGroupFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetSkillGroupFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_skill_group::GetSkillGroup, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the skill group for which to get details. Required.
pub fn skill_group_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/list_business_report_schedules/builders.rs b/sdk/alexaforbusiness/src/operation/list_business_report_schedules/builders.rs index 064d76748229..893453689f3f 100644 --- a/sdk/alexaforbusiness/src/operation/list_business_report_schedules/builders.rs +++ b/sdk/alexaforbusiness/src/operation/list_business_report_schedules/builders.rs @@ -19,9 +19,9 @@ impl ListBusinessReportSchedulesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ListBusinessReportSchedulesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_business_report_schedules::ListBusinessReportSchedules, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::list_business_report_schedules::ListBusinessReportSchedulesError, + >, + > { + self.customize_middleware().await + } /// Create a paginator for this request /// /// Paginators are used by calling [`send().await`](crate::operation::list_business_report_schedules::paginator::ListBusinessReportSchedulesPaginator::send) which returns a `Stream`. diff --git a/sdk/alexaforbusiness/src/operation/list_conference_providers/builders.rs b/sdk/alexaforbusiness/src/operation/list_conference_providers/builders.rs index 8f39464e327a..89e055a8b286 100644 --- a/sdk/alexaforbusiness/src/operation/list_conference_providers/builders.rs +++ b/sdk/alexaforbusiness/src/operation/list_conference_providers/builders.rs @@ -20,9 +20,9 @@ impl ListConferenceProvidersFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl ListConferenceProvidersFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_conference_providers::ListConferenceProviders, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::list_conference_providers::ListConferenceProvidersError, + >, + > { + self.customize_middleware().await + } /// Create a paginator for this request /// /// Paginators are used by calling [`send().await`](crate::operation::list_conference_providers::paginator::ListConferenceProvidersPaginator::send) which returns a `Stream`. diff --git a/sdk/alexaforbusiness/src/operation/list_device_events/builders.rs b/sdk/alexaforbusiness/src/operation/list_device_events/builders.rs index d802673c6ad0..d1b587b6e2dd 100644 --- a/sdk/alexaforbusiness/src/operation/list_device_events/builders.rs +++ b/sdk/alexaforbusiness/src/operation/list_device_events/builders.rs @@ -19,9 +19,9 @@ impl ListDeviceEventsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ListDeviceEventsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_device_events::ListDeviceEvents, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::list_device_events::ListDeviceEventsError, + >, + > { + self.customize_middleware().await + } /// Create a paginator for this request /// /// Paginators are used by calling [`send().await`](crate::operation::list_device_events::paginator::ListDeviceEventsPaginator::send) which returns a `Stream`. diff --git a/sdk/alexaforbusiness/src/operation/list_gateway_groups/builders.rs b/sdk/alexaforbusiness/src/operation/list_gateway_groups/builders.rs index b33ad93219a7..f088cc100b64 100644 --- a/sdk/alexaforbusiness/src/operation/list_gateway_groups/builders.rs +++ b/sdk/alexaforbusiness/src/operation/list_gateway_groups/builders.rs @@ -19,9 +19,9 @@ impl ListGatewayGroupsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ListGatewayGroupsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_gateway_groups::ListGatewayGroups, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::list_gateway_groups::ListGatewayGroupsError, + >, + > { + self.customize_middleware().await + } /// Create a paginator for this request /// /// Paginators are used by calling [`send().await`](crate::operation::list_gateway_groups::paginator::ListGatewayGroupsPaginator::send) which returns a `Stream`. diff --git a/sdk/alexaforbusiness/src/operation/list_gateways/builders.rs b/sdk/alexaforbusiness/src/operation/list_gateways/builders.rs index f8fc95461f9f..ede2c37f4bc1 100644 --- a/sdk/alexaforbusiness/src/operation/list_gateways/builders.rs +++ b/sdk/alexaforbusiness/src/operation/list_gateways/builders.rs @@ -19,9 +19,9 @@ impl ListGatewaysFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl ListGatewaysFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_gateways::ListGateways, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe conference preference of a specific conference provider.
pub fn conference_preference(mut self, input: crate::types::ConferencePreference) -> Self { self.inner = self.inner.conference_preference(input); diff --git a/sdk/alexaforbusiness/src/operation/put_invitation_configuration/builders.rs b/sdk/alexaforbusiness/src/operation/put_invitation_configuration/builders.rs index afeb90ca5d4a..888663fb8e20 100644 --- a/sdk/alexaforbusiness/src/operation/put_invitation_configuration/builders.rs +++ b/sdk/alexaforbusiness/src/operation/put_invitation_configuration/builders.rs @@ -19,9 +19,9 @@ impl PutInvitationConfigurationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl PutInvitationConfigurationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::put_invitation_configuration::PutInvitationConfiguration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::put_invitation_configuration::PutInvitationConfigurationError, + >, + > { + self.customize_middleware().await + } ///The name of the organization sending the enrollment invite to a user.
pub fn organization_name( mut self, diff --git a/sdk/alexaforbusiness/src/operation/put_room_skill_parameter/builders.rs b/sdk/alexaforbusiness/src/operation/put_room_skill_parameter/builders.rs index 6626ac6c4cd4..e53bfd70c6a7 100644 --- a/sdk/alexaforbusiness/src/operation/put_room_skill_parameter/builders.rs +++ b/sdk/alexaforbusiness/src/operation/put_room_skill_parameter/builders.rs @@ -19,9 +19,9 @@ impl PutRoomSkillParameterFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl PutRoomSkillParameterFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::put_room_skill_parameter::PutRoomSkillParameter, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::put_room_skill_parameter::PutRoomSkillParameterError, + >, + > { + self.customize_middleware().await + } ///The ARN of the room associated with the room skill parameter. Required.
pub fn room_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.room_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/put_skill_authorization/builders.rs b/sdk/alexaforbusiness/src/operation/put_skill_authorization/builders.rs index 311caecba1ea..ed3044276b99 100644 --- a/sdk/alexaforbusiness/src/operation/put_skill_authorization/builders.rs +++ b/sdk/alexaforbusiness/src/operation/put_skill_authorization/builders.rs @@ -19,9 +19,9 @@ impl PutSkillAuthorizationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl PutSkillAuthorizationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::put_skill_authorization::PutSkillAuthorization, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::put_skill_authorization::PutSkillAuthorizationError, + >, + > { + self.customize_middleware().await + } /// Adds a key-value pair to `AuthorizationResult`. /// /// To override the contents of this collection use [`set_authorization_result`](Self::set_authorization_result). diff --git a/sdk/alexaforbusiness/src/operation/register_avs_device/builders.rs b/sdk/alexaforbusiness/src/operation/register_avs_device/builders.rs index cdc739c0f33a..86a85e373769 100644 --- a/sdk/alexaforbusiness/src/operation/register_avs_device/builders.rs +++ b/sdk/alexaforbusiness/src/operation/register_avs_device/builders.rs @@ -19,9 +19,9 @@ impl RegisterAVSDeviceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl RegisterAVSDeviceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::register_avs_device::RegisterAVSDevice, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::register_avs_device::RegisterAVSDeviceError, + >, + > { + self.customize_middleware().await + } ///The client ID of the OEM used for code-based linking authorization on an AVS device.
pub fn client_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.client_id(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/reject_skill/builders.rs b/sdk/alexaforbusiness/src/operation/reject_skill/builders.rs index 5326b1eadd54..efb8cc7e7d7d 100644 --- a/sdk/alexaforbusiness/src/operation/reject_skill/builders.rs +++ b/sdk/alexaforbusiness/src/operation/reject_skill/builders.rs @@ -19,9 +19,9 @@ impl RejectSkillFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl RejectSkillFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::reject_skill::RejectSkill, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique identifier of the skill.
pub fn skill_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.skill_id(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/resolve_room/builders.rs b/sdk/alexaforbusiness/src/operation/resolve_room/builders.rs index 59e1c206e60e..5e1606287bf8 100644 --- a/sdk/alexaforbusiness/src/operation/resolve_room/builders.rs +++ b/sdk/alexaforbusiness/src/operation/resolve_room/builders.rs @@ -20,9 +20,9 @@ impl ResolveRoomFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -78,6 +78,20 @@ impl ResolveRoomFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::resolve_room::ResolveRoom, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the user. Required.
pub fn user_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.user_id(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/revoke_invitation/builders.rs b/sdk/alexaforbusiness/src/operation/revoke_invitation/builders.rs index 7e1a405d8526..f119585e2351 100644 --- a/sdk/alexaforbusiness/src/operation/revoke_invitation/builders.rs +++ b/sdk/alexaforbusiness/src/operation/revoke_invitation/builders.rs @@ -19,9 +19,9 @@ impl RevokeInvitationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl RevokeInvitationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::revoke_invitation::RevokeInvitation, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::revoke_invitation::RevokeInvitationError, + >, + > { + self.customize_middleware().await + } ///The ARN of the user for whom to revoke an enrollment invitation. Required.
pub fn user_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.user_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/search_address_books/builders.rs b/sdk/alexaforbusiness/src/operation/search_address_books/builders.rs index 6147e70d1d28..777cbcfaba3d 100644 --- a/sdk/alexaforbusiness/src/operation/search_address_books/builders.rs +++ b/sdk/alexaforbusiness/src/operation/search_address_books/builders.rs @@ -19,9 +19,9 @@ impl SearchAddressBooksFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl SearchAddressBooksFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::search_address_books::SearchAddressBooks, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::search_address_books::SearchAddressBooksError, + >, + > { + self.customize_middleware().await + } /// Create a paginator for this request /// /// Paginators are used by calling [`send().await`](crate::operation::search_address_books::paginator::SearchAddressBooksPaginator::send) which returns a `Stream`. diff --git a/sdk/alexaforbusiness/src/operation/search_contacts/builders.rs b/sdk/alexaforbusiness/src/operation/search_contacts/builders.rs index f0a2834d473a..f7892d310712 100644 --- a/sdk/alexaforbusiness/src/operation/search_contacts/builders.rs +++ b/sdk/alexaforbusiness/src/operation/search_contacts/builders.rs @@ -19,9 +19,9 @@ impl SearchContactsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl SearchContactsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::search_contacts::SearchContacts, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the user to whom to send an invitation. Required.
pub fn user_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.user_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/start_device_sync/builders.rs b/sdk/alexaforbusiness/src/operation/start_device_sync/builders.rs index 1ae5ad6a6427..ae805ee02341 100644 --- a/sdk/alexaforbusiness/src/operation/start_device_sync/builders.rs +++ b/sdk/alexaforbusiness/src/operation/start_device_sync/builders.rs @@ -26,9 +26,9 @@ impl StartDeviceSyncFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -90,6 +90,22 @@ impl StartDeviceSyncFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::start_device_sync::StartDeviceSync, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::start_device_sync::StartDeviceSyncError, + >, + > { + self.customize_middleware().await + } ///The ARN of the room with which the device to sync is associated. Required.
pub fn room_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.room_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/start_smart_home_appliance_discovery/builders.rs b/sdk/alexaforbusiness/src/operation/start_smart_home_appliance_discovery/builders.rs index f9a202b074bc..decbf70e4005 100644 --- a/sdk/alexaforbusiness/src/operation/start_smart_home_appliance_discovery/builders.rs +++ b/sdk/alexaforbusiness/src/operation/start_smart_home_appliance_discovery/builders.rs @@ -19,9 +19,9 @@ impl StartSmartHomeApplianceDiscoveryFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize(self) -> ::std::result::Result< + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware(self) -> ::std::result::Result< crate::client::customize::CustomizableOperationThe room where smart home appliance discovery was initiated.
pub fn room_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.room_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/tag_resource/builders.rs b/sdk/alexaforbusiness/src/operation/tag_resource/builders.rs index 2ad69022fc87..a7b9c081a329 100644 --- a/sdk/alexaforbusiness/src/operation/tag_resource/builders.rs +++ b/sdk/alexaforbusiness/src/operation/tag_resource/builders.rs @@ -19,9 +19,9 @@ impl TagResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl TagResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::tag_resource::TagResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the resource to which to add metadata tags. Required.
pub fn arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/untag_resource/builders.rs b/sdk/alexaforbusiness/src/operation/untag_resource/builders.rs index c617c3a65c04..fa49cc87cb48 100644 --- a/sdk/alexaforbusiness/src/operation/untag_resource/builders.rs +++ b/sdk/alexaforbusiness/src/operation/untag_resource/builders.rs @@ -19,9 +19,9 @@ impl UntagResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UntagResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::untag_resource::UntagResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the resource from which to remove metadata tags. Required.
pub fn arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/update_address_book/builders.rs b/sdk/alexaforbusiness/src/operation/update_address_book/builders.rs index 36bab3d7c5b3..925965be585f 100644 --- a/sdk/alexaforbusiness/src/operation/update_address_book/builders.rs +++ b/sdk/alexaforbusiness/src/operation/update_address_book/builders.rs @@ -19,9 +19,9 @@ impl UpdateAddressBookFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateAddressBookFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_address_book::UpdateAddressBook, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_address_book::UpdateAddressBookError, + >, + > { + self.customize_middleware().await + } ///The ARN of the room to update.
pub fn address_book_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/update_business_report_schedule/builders.rs b/sdk/alexaforbusiness/src/operation/update_business_report_schedule/builders.rs index d112cb068829..51f817f25b54 100644 --- a/sdk/alexaforbusiness/src/operation/update_business_report_schedule/builders.rs +++ b/sdk/alexaforbusiness/src/operation/update_business_report_schedule/builders.rs @@ -19,9 +19,9 @@ impl UpdateBusinessReportScheduleFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateBusinessReportScheduleFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_business_report_schedule::UpdateBusinessReportSchedule, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_business_report_schedule::UpdateBusinessReportScheduleError, + >, + > { + self.customize_middleware().await + } ///The ARN of the business report schedule.
pub fn schedule_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.schedule_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/update_conference_provider/builders.rs b/sdk/alexaforbusiness/src/operation/update_conference_provider/builders.rs index d3291a24a69f..c912bebecaf3 100644 --- a/sdk/alexaforbusiness/src/operation/update_conference_provider/builders.rs +++ b/sdk/alexaforbusiness/src/operation/update_conference_provider/builders.rs @@ -19,9 +19,9 @@ impl UpdateConferenceProviderFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateConferenceProviderFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_conference_provider::UpdateConferenceProvider, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_conference_provider::UpdateConferenceProviderError, + >, + > { + self.customize_middleware().await + } ///The ARN of the conference provider.
pub fn conference_provider_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/update_contact/builders.rs b/sdk/alexaforbusiness/src/operation/update_contact/builders.rs index e25819c1926b..3cbe29d16b21 100644 --- a/sdk/alexaforbusiness/src/operation/update_contact/builders.rs +++ b/sdk/alexaforbusiness/src/operation/update_contact/builders.rs @@ -19,9 +19,9 @@ impl UpdateContactFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateContactFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_contact::UpdateContact, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the contact to update.
pub fn contact_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.contact_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/update_device/builders.rs b/sdk/alexaforbusiness/src/operation/update_device/builders.rs index 2c86d0004f4e..b90a82f330df 100644 --- a/sdk/alexaforbusiness/src/operation/update_device/builders.rs +++ b/sdk/alexaforbusiness/src/operation/update_device/builders.rs @@ -19,9 +19,9 @@ impl UpdateDeviceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateDeviceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_device::UpdateDevice, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the device to update. Required.
pub fn device_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.device_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/update_gateway/builders.rs b/sdk/alexaforbusiness/src/operation/update_gateway/builders.rs index 87c7af715012..c9a5efd17fd9 100644 --- a/sdk/alexaforbusiness/src/operation/update_gateway/builders.rs +++ b/sdk/alexaforbusiness/src/operation/update_gateway/builders.rs @@ -19,9 +19,9 @@ impl UpdateGatewayFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateGatewayFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_gateway::UpdateGateway, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the gateway to update.
pub fn gateway_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.gateway_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/update_gateway_group/builders.rs b/sdk/alexaforbusiness/src/operation/update_gateway_group/builders.rs index 9fd8fa405551..f45381f388cc 100644 --- a/sdk/alexaforbusiness/src/operation/update_gateway_group/builders.rs +++ b/sdk/alexaforbusiness/src/operation/update_gateway_group/builders.rs @@ -19,9 +19,9 @@ impl UpdateGatewayGroupFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateGatewayGroupFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_gateway_group::UpdateGatewayGroup, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_gateway_group::UpdateGatewayGroupError, + >, + > { + self.customize_middleware().await + } ///The ARN of the gateway group to update.
pub fn gateway_group_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/update_network_profile/builders.rs b/sdk/alexaforbusiness/src/operation/update_network_profile/builders.rs index 915dde040793..c1598ce6b792 100644 --- a/sdk/alexaforbusiness/src/operation/update_network_profile/builders.rs +++ b/sdk/alexaforbusiness/src/operation/update_network_profile/builders.rs @@ -19,9 +19,9 @@ impl UpdateNetworkProfileFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateNetworkProfileFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_network_profile::UpdateNetworkProfile, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_network_profile::UpdateNetworkProfileError, + >, + > { + self.customize_middleware().await + } ///The ARN of the network profile associated with a device.
pub fn network_profile_arn( mut self, diff --git a/sdk/alexaforbusiness/src/operation/update_profile/builders.rs b/sdk/alexaforbusiness/src/operation/update_profile/builders.rs index 0831be380933..f9feff0e47d1 100644 --- a/sdk/alexaforbusiness/src/operation/update_profile/builders.rs +++ b/sdk/alexaforbusiness/src/operation/update_profile/builders.rs @@ -19,9 +19,9 @@ impl UpdateProfileFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateProfileFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_profile::UpdateProfile, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the room profile to update. Required.
pub fn profile_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.profile_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/update_room/builders.rs b/sdk/alexaforbusiness/src/operation/update_room/builders.rs index fb7241b5a173..0795bdf9b116 100644 --- a/sdk/alexaforbusiness/src/operation/update_room/builders.rs +++ b/sdk/alexaforbusiness/src/operation/update_room/builders.rs @@ -19,9 +19,9 @@ impl UpdateRoomFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateRoomFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_room::UpdateRoom, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of the room to update.
pub fn room_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.room_arn(input.into()); diff --git a/sdk/alexaforbusiness/src/operation/update_skill_group/builders.rs b/sdk/alexaforbusiness/src/operation/update_skill_group/builders.rs index f9d54b9e8310..b915b2192ebf 100644 --- a/sdk/alexaforbusiness/src/operation/update_skill_group/builders.rs +++ b/sdk/alexaforbusiness/src/operation/update_skill_group/builders.rs @@ -19,9 +19,9 @@ impl UpdateSkillGroupFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateSkillGroupFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_skill_group::UpdateSkillGroup, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_skill_group::UpdateSkillGroupError, + >, + > { + self.customize_middleware().await + } ///The ARN of the skill group to update.
pub fn skill_group_arn( mut self, diff --git a/sdk/amp/src/operation/create_alert_manager_definition/builders.rs b/sdk/amp/src/operation/create_alert_manager_definition/builders.rs index 8dd229bddef8..87dd6a7bd9d3 100644 --- a/sdk/amp/src/operation/create_alert_manager_definition/builders.rs +++ b/sdk/amp/src/operation/create_alert_manager_definition/builders.rs @@ -19,9 +19,9 @@ impl CreateAlertManagerDefinitionFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateAlertManagerDefinitionFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_alert_manager_definition::CreateAlertManagerDefinition, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_alert_manager_definition::CreateAlertManagerDefinitionError, + >, + > { + self.customize_middleware().await + } /// The ID of the workspace in which to create the alert manager definition. pub fn workspace_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.workspace_id(input.into()); diff --git a/sdk/amp/src/operation/create_logging_configuration/builders.rs b/sdk/amp/src/operation/create_logging_configuration/builders.rs index 645c5d17ed42..ea91ca62d36b 100644 --- a/sdk/amp/src/operation/create_logging_configuration/builders.rs +++ b/sdk/amp/src/operation/create_logging_configuration/builders.rs @@ -19,9 +19,9 @@ impl CreateLoggingConfigurationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateLoggingConfigurationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_logging_configuration::CreateLoggingConfiguration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_logging_configuration::CreateLoggingConfigurationError, + >, + > { + self.customize_middleware().await + } /// The ID of the workspace to vend logs to. pub fn workspace_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.workspace_id(input.into()); diff --git a/sdk/amp/src/operation/create_rule_groups_namespace/builders.rs b/sdk/amp/src/operation/create_rule_groups_namespace/builders.rs index f3bfff87b897..6beb8270b4bf 100644 --- a/sdk/amp/src/operation/create_rule_groups_namespace/builders.rs +++ b/sdk/amp/src/operation/create_rule_groups_namespace/builders.rs @@ -19,9 +19,9 @@ impl CreateRuleGroupsNamespaceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateRuleGroupsNamespaceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_rule_groups_namespace::CreateRuleGroupsNamespace, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_rule_groups_namespace::CreateRuleGroupsNamespaceError, + >, + > { + self.customize_middleware().await + } /// The ID of the workspace in which to create the rule group namespace. pub fn workspace_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.workspace_id(input.into()); diff --git a/sdk/amp/src/operation/create_workspace/builders.rs b/sdk/amp/src/operation/create_workspace/builders.rs index ea07505fb3ed..6a5b4a3e5979 100644 --- a/sdk/amp/src/operation/create_workspace/builders.rs +++ b/sdk/amp/src/operation/create_workspace/builders.rs @@ -19,9 +19,9 @@ impl CreateWorkspaceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateWorkspaceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_workspace::CreateWorkspace, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_workspace::CreateWorkspaceError, + >, + > { + self.customize_middleware().await + } /// An optional user-assigned alias for this workspace. This alias is for user reference and does not need to be unique. pub fn alias(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.alias(input.into()); diff --git a/sdk/amp/src/operation/delete_alert_manager_definition/builders.rs b/sdk/amp/src/operation/delete_alert_manager_definition/builders.rs index 7f8e338d2cb7..0bfc3916ccc5 100644 --- a/sdk/amp/src/operation/delete_alert_manager_definition/builders.rs +++ b/sdk/amp/src/operation/delete_alert_manager_definition/builders.rs @@ -19,9 +19,9 @@ impl DeleteAlertManagerDefinitionFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteAlertManagerDefinitionFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_alert_manager_definition::DeleteAlertManagerDefinition, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_alert_manager_definition::DeleteAlertManagerDefinitionError, + >, + > { + self.customize_middleware().await + } /// The ID of the workspace in which to delete the alert manager definition. pub fn workspace_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.workspace_id(input.into()); diff --git a/sdk/amp/src/operation/delete_logging_configuration/builders.rs b/sdk/amp/src/operation/delete_logging_configuration/builders.rs index 2b2d91ce73cd..29c6376820ee 100644 --- a/sdk/amp/src/operation/delete_logging_configuration/builders.rs +++ b/sdk/amp/src/operation/delete_logging_configuration/builders.rs @@ -19,9 +19,9 @@ impl DeleteLoggingConfigurationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteLoggingConfigurationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_logging_configuration::DeleteLoggingConfiguration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_logging_configuration::DeleteLoggingConfigurationError, + >, + > { + self.customize_middleware().await + } /// The ID of the workspace to vend logs to. pub fn workspace_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.workspace_id(input.into()); diff --git a/sdk/amp/src/operation/delete_rule_groups_namespace/builders.rs b/sdk/amp/src/operation/delete_rule_groups_namespace/builders.rs index 9688f3c48457..8af66ec9bab3 100644 --- a/sdk/amp/src/operation/delete_rule_groups_namespace/builders.rs +++ b/sdk/amp/src/operation/delete_rule_groups_namespace/builders.rs @@ -19,9 +19,9 @@ impl DeleteRuleGroupsNamespaceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteRuleGroupsNamespaceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_rule_groups_namespace::DeleteRuleGroupsNamespace, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_rule_groups_namespace::DeleteRuleGroupsNamespaceError, + >, + > { + self.customize_middleware().await + } /// The ID of the workspace to delete rule group definition. pub fn workspace_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.workspace_id(input.into()); diff --git a/sdk/amp/src/operation/delete_workspace/builders.rs b/sdk/amp/src/operation/delete_workspace/builders.rs index 989d2ec6a938..b384d5430a5a 100644 --- a/sdk/amp/src/operation/delete_workspace/builders.rs +++ b/sdk/amp/src/operation/delete_workspace/builders.rs @@ -19,9 +19,9 @@ impl DeleteWorkspaceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteWorkspaceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_workspace::DeleteWorkspace, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_workspace::DeleteWorkspaceError, + >, + > { + self.customize_middleware().await + } /// The ID of the workspace to delete. pub fn workspace_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.workspace_id(input.into()); diff --git a/sdk/amp/src/operation/describe_alert_manager_definition/builders.rs b/sdk/amp/src/operation/describe_alert_manager_definition/builders.rs index 830bb5da9842..593aee6b4657 100644 --- a/sdk/amp/src/operation/describe_alert_manager_definition/builders.rs +++ b/sdk/amp/src/operation/describe_alert_manager_definition/builders.rs @@ -19,9 +19,9 @@ impl DescribeAlertManagerDefinitionFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize(self) -> ::std::result::Result< + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware(self) -> ::std::result::Result< crate::client::customize::CustomizableOperationThe name for an Amplify app.
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.name(input.into()); diff --git a/sdk/amplify/src/operation/create_backend_environment/builders.rs b/sdk/amplify/src/operation/create_backend_environment/builders.rs index a41cb206a939..fc26f30ce90b 100644 --- a/sdk/amplify/src/operation/create_backend_environment/builders.rs +++ b/sdk/amplify/src/operation/create_backend_environment/builders.rs @@ -19,9 +19,9 @@ impl CreateBackendEnvironmentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateBackendEnvironmentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_backend_environment::CreateBackendEnvironment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_backend_environment::CreateBackendEnvironmentError, + >, + > { + self.customize_middleware().await + } ///The unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/create_branch/builders.rs b/sdk/amplify/src/operation/create_branch/builders.rs index 440198c4d36f..a376533af22e 100644 --- a/sdk/amplify/src/operation/create_branch/builders.rs +++ b/sdk/amplify/src/operation/create_branch/builders.rs @@ -19,9 +19,9 @@ impl CreateBranchFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateBranchFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_branch::CreateBranch, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/create_deployment/builders.rs b/sdk/amplify/src/operation/create_deployment/builders.rs index 1d76aa0a54d8..f38d1b849481 100644 --- a/sdk/amplify/src/operation/create_deployment/builders.rs +++ b/sdk/amplify/src/operation/create_deployment/builders.rs @@ -19,9 +19,9 @@ impl CreateDeploymentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateDeploymentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_deployment::CreateDeployment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_deployment::CreateDeploymentError, + >, + > { + self.customize_middleware().await + } ///The unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/create_domain_association/builders.rs b/sdk/amplify/src/operation/create_domain_association/builders.rs index c98cc9021ec5..8184ebfbf219 100644 --- a/sdk/amplify/src/operation/create_domain_association/builders.rs +++ b/sdk/amplify/src/operation/create_domain_association/builders.rs @@ -20,9 +20,9 @@ impl CreateDomainAssociationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl CreateDomainAssociationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_domain_association::CreateDomainAssociation, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_domain_association::CreateDomainAssociationError, + >, + > { + self.customize_middleware().await + } ///The unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/create_webhook/builders.rs b/sdk/amplify/src/operation/create_webhook/builders.rs index 4bdf7c60d97a..6c2aa86bebf9 100644 --- a/sdk/amplify/src/operation/create_webhook/builders.rs +++ b/sdk/amplify/src/operation/create_webhook/builders.rs @@ -19,9 +19,9 @@ impl CreateWebhookFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateWebhookFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_webhook::CreateWebhook, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/delete_app/builders.rs b/sdk/amplify/src/operation/delete_app/builders.rs index 8be5e40d0b48..95b6202a4372 100644 --- a/sdk/amplify/src/operation/delete_app/builders.rs +++ b/sdk/amplify/src/operation/delete_app/builders.rs @@ -19,9 +19,9 @@ impl DeleteAppFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteAppFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_app::DeleteApp, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/delete_backend_environment/builders.rs b/sdk/amplify/src/operation/delete_backend_environment/builders.rs index 179d8ae1b32c..5a5530b04859 100644 --- a/sdk/amplify/src/operation/delete_backend_environment/builders.rs +++ b/sdk/amplify/src/operation/delete_backend_environment/builders.rs @@ -19,9 +19,9 @@ impl DeleteBackendEnvironmentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteBackendEnvironmentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_backend_environment::DeleteBackendEnvironment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_backend_environment::DeleteBackendEnvironmentError, + >, + > { + self.customize_middleware().await + } ///The unique ID of an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/delete_branch/builders.rs b/sdk/amplify/src/operation/delete_branch/builders.rs index 9e4208e42394..d90db9e5a248 100644 --- a/sdk/amplify/src/operation/delete_branch/builders.rs +++ b/sdk/amplify/src/operation/delete_branch/builders.rs @@ -19,9 +19,9 @@ impl DeleteBranchFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteBranchFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_branch::DeleteBranch, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/delete_domain_association/builders.rs b/sdk/amplify/src/operation/delete_domain_association/builders.rs index 688ac64ec954..a09428b44e2f 100644 --- a/sdk/amplify/src/operation/delete_domain_association/builders.rs +++ b/sdk/amplify/src/operation/delete_domain_association/builders.rs @@ -20,9 +20,9 @@ impl DeleteDomainAssociationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl DeleteDomainAssociationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_domain_association::DeleteDomainAssociation, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_domain_association::DeleteDomainAssociationError, + >, + > { + self.customize_middleware().await + } ///The unique id for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/delete_job/builders.rs b/sdk/amplify/src/operation/delete_job/builders.rs index 8304ef34b15b..c3a686c54bcd 100644 --- a/sdk/amplify/src/operation/delete_job/builders.rs +++ b/sdk/amplify/src/operation/delete_job/builders.rs @@ -19,9 +19,9 @@ impl DeleteJobFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteJobFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_job::DeleteJob, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/delete_webhook/builders.rs b/sdk/amplify/src/operation/delete_webhook/builders.rs index df7553facad3..15f01bbffb40 100644 --- a/sdk/amplify/src/operation/delete_webhook/builders.rs +++ b/sdk/amplify/src/operation/delete_webhook/builders.rs @@ -19,9 +19,9 @@ impl DeleteWebhookFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteWebhookFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_webhook::DeleteWebhook, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for a webhook.
pub fn webhook_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.webhook_id(input.into()); diff --git a/sdk/amplify/src/operation/generate_access_logs/builders.rs b/sdk/amplify/src/operation/generate_access_logs/builders.rs index 25264d33140b..3d48e00ec2eb 100644 --- a/sdk/amplify/src/operation/generate_access_logs/builders.rs +++ b/sdk/amplify/src/operation/generate_access_logs/builders.rs @@ -19,9 +19,9 @@ impl GenerateAccessLogsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GenerateAccessLogsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::generate_access_logs::GenerateAccessLogs, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::generate_access_logs::GenerateAccessLogsError, + >, + > { + self.customize_middleware().await + } ///The time at which the logs should start. The time range specified is inclusive of the start time.
pub fn start_time(mut self, input: ::aws_smithy_types::DateTime) -> Self { self.inner = self.inner.start_time(input); diff --git a/sdk/amplify/src/operation/get_app/builders.rs b/sdk/amplify/src/operation/get_app/builders.rs index 102d2e6f46fb..d279736866e3 100644 --- a/sdk/amplify/src/operation/get_app/builders.rs +++ b/sdk/amplify/src/operation/get_app/builders.rs @@ -19,9 +19,9 @@ impl GetAppFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetAppFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_app::GetApp, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/get_artifact_url/builders.rs b/sdk/amplify/src/operation/get_artifact_url/builders.rs index 079ead7ddd79..98750f58ef3f 100644 --- a/sdk/amplify/src/operation/get_artifact_url/builders.rs +++ b/sdk/amplify/src/operation/get_artifact_url/builders.rs @@ -19,9 +19,9 @@ impl GetArtifactUrlFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetArtifactUrlFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_artifact_url::GetArtifactUrl, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_artifact_url::GetArtifactUrlError, + >, + > { + self.customize_middleware().await + } ///The unique ID for an artifact.
pub fn artifact_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.artifact_id(input.into()); diff --git a/sdk/amplify/src/operation/get_backend_environment/builders.rs b/sdk/amplify/src/operation/get_backend_environment/builders.rs index de744bcf7187..993fd8b6deed 100644 --- a/sdk/amplify/src/operation/get_backend_environment/builders.rs +++ b/sdk/amplify/src/operation/get_backend_environment/builders.rs @@ -19,9 +19,9 @@ impl GetBackendEnvironmentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetBackendEnvironmentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_backend_environment::GetBackendEnvironment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_backend_environment::GetBackendEnvironmentError, + >, + > { + self.customize_middleware().await + } ///The unique id for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/get_branch/builders.rs b/sdk/amplify/src/operation/get_branch/builders.rs index bd44a80b17cb..1a81d8b69601 100644 --- a/sdk/amplify/src/operation/get_branch/builders.rs +++ b/sdk/amplify/src/operation/get_branch/builders.rs @@ -19,9 +19,9 @@ impl GetBranchFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetBranchFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_branch::GetBranch, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/get_domain_association/builders.rs b/sdk/amplify/src/operation/get_domain_association/builders.rs index ec26c96db507..2af98aaa5eaa 100644 --- a/sdk/amplify/src/operation/get_domain_association/builders.rs +++ b/sdk/amplify/src/operation/get_domain_association/builders.rs @@ -19,9 +19,9 @@ impl GetDomainAssociationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetDomainAssociationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_domain_association::GetDomainAssociation, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_domain_association::GetDomainAssociationError, + >, + > { + self.customize_middleware().await + } ///The unique id for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/get_job/builders.rs b/sdk/amplify/src/operation/get_job/builders.rs index d5dab4d7cb79..6456e635da66 100644 --- a/sdk/amplify/src/operation/get_job/builders.rs +++ b/sdk/amplify/src/operation/get_job/builders.rs @@ -19,9 +19,9 @@ impl GetJobFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetJobFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_job::GetJob, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/get_webhook/builders.rs b/sdk/amplify/src/operation/get_webhook/builders.rs index 8bb54b5e1299..6f772fbcf243 100644 --- a/sdk/amplify/src/operation/get_webhook/builders.rs +++ b/sdk/amplify/src/operation/get_webhook/builders.rs @@ -19,9 +19,9 @@ impl GetWebhookFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetWebhookFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_webhook::GetWebhook, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for a webhook.
pub fn webhook_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.webhook_id(input.into()); diff --git a/sdk/amplify/src/operation/list_apps/builders.rs b/sdk/amplify/src/operation/list_apps/builders.rs index de0bbe5a839b..2b2fbc49f0cd 100644 --- a/sdk/amplify/src/operation/list_apps/builders.rs +++ b/sdk/amplify/src/operation/list_apps/builders.rs @@ -19,9 +19,9 @@ impl ListAppsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl ListAppsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_apps::ListApps, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorA pagination token. If non-null, the pagination token is returned in a result. Pass its value in another request to retrieve more entries.
pub fn next_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.next_token(input.into()); diff --git a/sdk/amplify/src/operation/list_artifacts/builders.rs b/sdk/amplify/src/operation/list_artifacts/builders.rs index 4cb5ec96fcb4..ff5444b83681 100644 --- a/sdk/amplify/src/operation/list_artifacts/builders.rs +++ b/sdk/amplify/src/operation/list_artifacts/builders.rs @@ -19,9 +19,9 @@ impl ListArtifactsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl ListArtifactsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_artifacts::ListArtifacts, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/list_backend_environments/builders.rs b/sdk/amplify/src/operation/list_backend_environments/builders.rs index c7302c44774a..351ebdd6db3b 100644 --- a/sdk/amplify/src/operation/list_backend_environments/builders.rs +++ b/sdk/amplify/src/operation/list_backend_environments/builders.rs @@ -20,9 +20,9 @@ impl ListBackendEnvironmentsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl ListBackendEnvironmentsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_backend_environments::ListBackendEnvironments, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::list_backend_environments::ListBackendEnvironmentsError, + >, + > { + self.customize_middleware().await + } ///The unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/list_branches/builders.rs b/sdk/amplify/src/operation/list_branches/builders.rs index ab70ca85cba9..fa948bf10b4f 100644 --- a/sdk/amplify/src/operation/list_branches/builders.rs +++ b/sdk/amplify/src/operation/list_branches/builders.rs @@ -19,9 +19,9 @@ impl ListBranchesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl ListBranchesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_branches::ListBranches, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/list_domain_associations/builders.rs b/sdk/amplify/src/operation/list_domain_associations/builders.rs index f362633e9932..e7d4d59b724e 100644 --- a/sdk/amplify/src/operation/list_domain_associations/builders.rs +++ b/sdk/amplify/src/operation/list_domain_associations/builders.rs @@ -19,9 +19,9 @@ impl ListDomainAssociationsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ListDomainAssociationsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_domain_associations::ListDomainAssociations, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::list_domain_associations::ListDomainAssociationsError, + >, + > { + self.customize_middleware().await + } ///The unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/list_jobs/builders.rs b/sdk/amplify/src/operation/list_jobs/builders.rs index 3dc1219ac953..1cbddcd36104 100644 --- a/sdk/amplify/src/operation/list_jobs/builders.rs +++ b/sdk/amplify/src/operation/list_jobs/builders.rs @@ -19,9 +19,9 @@ impl ListJobsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl ListJobsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_jobs::ListJobs, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/list_tags_for_resource/builders.rs b/sdk/amplify/src/operation/list_tags_for_resource/builders.rs index 44ca8fdb9f7b..7fb1522364be 100644 --- a/sdk/amplify/src/operation/list_tags_for_resource/builders.rs +++ b/sdk/amplify/src/operation/list_tags_for_resource/builders.rs @@ -19,9 +19,9 @@ impl ListTagsForResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ListTagsForResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_tags_for_resource::ListTagsForResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::list_tags_for_resource::ListTagsForResourceError, + >, + > { + self.customize_middleware().await + } ///The Amazon Resource Name (ARN) to use to list tags.
pub fn resource_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.resource_arn(input.into()); diff --git a/sdk/amplify/src/operation/list_webhooks/builders.rs b/sdk/amplify/src/operation/list_webhooks/builders.rs index 65fddbda32e1..fe395b3b9c4f 100644 --- a/sdk/amplify/src/operation/list_webhooks/builders.rs +++ b/sdk/amplify/src/operation/list_webhooks/builders.rs @@ -19,9 +19,9 @@ impl ListWebhooksFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl ListWebhooksFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_webhooks::ListWebhooks, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/start_deployment/builders.rs b/sdk/amplify/src/operation/start_deployment/builders.rs index 35932ddfa510..5e6ee18a3932 100644 --- a/sdk/amplify/src/operation/start_deployment/builders.rs +++ b/sdk/amplify/src/operation/start_deployment/builders.rs @@ -19,9 +19,9 @@ impl StartDeploymentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl StartDeploymentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::start_deployment::StartDeployment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::start_deployment::StartDeploymentError, + >, + > { + self.customize_middleware().await + } ///The unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/start_job/builders.rs b/sdk/amplify/src/operation/start_job/builders.rs index 065bc65f1561..88504ae17f55 100644 --- a/sdk/amplify/src/operation/start_job/builders.rs +++ b/sdk/amplify/src/operation/start_job/builders.rs @@ -19,9 +19,9 @@ impl StartJobFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl StartJobFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::start_job::StartJob, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/stop_job/builders.rs b/sdk/amplify/src/operation/stop_job/builders.rs index 2b8eaa6bb897..882b43aa5dc8 100644 --- a/sdk/amplify/src/operation/stop_job/builders.rs +++ b/sdk/amplify/src/operation/stop_job/builders.rs @@ -19,9 +19,9 @@ impl StopJobFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl StopJobFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::stop_job::StopJob, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/tag_resource/builders.rs b/sdk/amplify/src/operation/tag_resource/builders.rs index 1ab598c315fb..987c0ba9c3cc 100644 --- a/sdk/amplify/src/operation/tag_resource/builders.rs +++ b/sdk/amplify/src/operation/tag_resource/builders.rs @@ -19,9 +19,9 @@ impl TagResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl TagResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::tag_resource::TagResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe Amazon Resource Name (ARN) to use to tag a resource.
pub fn resource_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.resource_arn(input.into()); diff --git a/sdk/amplify/src/operation/untag_resource/builders.rs b/sdk/amplify/src/operation/untag_resource/builders.rs index a5ed49abf3d9..761c1822c5f9 100644 --- a/sdk/amplify/src/operation/untag_resource/builders.rs +++ b/sdk/amplify/src/operation/untag_resource/builders.rs @@ -19,9 +19,9 @@ impl UntagResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UntagResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::untag_resource::UntagResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe Amazon Resource Name (ARN) to use to untag a resource.
pub fn resource_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.resource_arn(input.into()); diff --git a/sdk/amplify/src/operation/update_app/builders.rs b/sdk/amplify/src/operation/update_app/builders.rs index 5569b559c792..ca1698ec1a4a 100644 --- a/sdk/amplify/src/operation/update_app/builders.rs +++ b/sdk/amplify/src/operation/update_app/builders.rs @@ -19,9 +19,9 @@ impl UpdateAppFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateAppFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_app::UpdateApp, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/update_branch/builders.rs b/sdk/amplify/src/operation/update_branch/builders.rs index f71198493587..b8d53e167a91 100644 --- a/sdk/amplify/src/operation/update_branch/builders.rs +++ b/sdk/amplify/src/operation/update_branch/builders.rs @@ -19,9 +19,9 @@ impl UpdateBranchFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateBranchFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_branch::UpdateBranch, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/update_domain_association/builders.rs b/sdk/amplify/src/operation/update_domain_association/builders.rs index 8ca5b30c8bd5..ae46a77c5549 100644 --- a/sdk/amplify/src/operation/update_domain_association/builders.rs +++ b/sdk/amplify/src/operation/update_domain_association/builders.rs @@ -20,9 +20,9 @@ impl UpdateDomainAssociationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl UpdateDomainAssociationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_domain_association::UpdateDomainAssociation, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_domain_association::UpdateDomainAssociationError, + >, + > { + self.customize_middleware().await + } ///The unique ID for an Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplify/src/operation/update_webhook/builders.rs b/sdk/amplify/src/operation/update_webhook/builders.rs index e1a76b0d2e38..61aed19a2a72 100644 --- a/sdk/amplify/src/operation/update_webhook/builders.rs +++ b/sdk/amplify/src/operation/update_webhook/builders.rs @@ -19,9 +19,9 @@ impl UpdateWebhookFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateWebhookFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_webhook::UpdateWebhook, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for a webhook.
pub fn webhook_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.webhook_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/clone_backend/builders.rs b/sdk/amplifybackend/src/operation/clone_backend/builders.rs index 03b1aa227d2c..cd7b93cb450a 100644 --- a/sdk/amplifybackend/src/operation/clone_backend/builders.rs +++ b/sdk/amplifybackend/src/operation/clone_backend/builders.rs @@ -19,9 +19,9 @@ impl CloneBackendFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CloneBackendFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::clone_backend::CloneBackend, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/create_backend/builders.rs b/sdk/amplifybackend/src/operation/create_backend/builders.rs index f0420c2dc3b7..3fbfa21436f6 100644 --- a/sdk/amplifybackend/src/operation/create_backend/builders.rs +++ b/sdk/amplifybackend/src/operation/create_backend/builders.rs @@ -19,9 +19,9 @@ impl CreateBackendFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateBackendFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_backend::CreateBackend, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/create_backend_api/builders.rs b/sdk/amplifybackend/src/operation/create_backend_api/builders.rs index 569b5c565d3c..8392ff1dc2cb 100644 --- a/sdk/amplifybackend/src/operation/create_backend_api/builders.rs +++ b/sdk/amplifybackend/src/operation/create_backend_api/builders.rs @@ -19,9 +19,9 @@ impl CreateBackendAPIFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateBackendAPIFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_backend_api::CreateBackendAPI, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_backend_api::CreateBackendAPIError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/create_backend_auth/builders.rs b/sdk/amplifybackend/src/operation/create_backend_auth/builders.rs index 722ced6dea2a..88df70ca72d9 100644 --- a/sdk/amplifybackend/src/operation/create_backend_auth/builders.rs +++ b/sdk/amplifybackend/src/operation/create_backend_auth/builders.rs @@ -19,9 +19,9 @@ impl CreateBackendAuthFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateBackendAuthFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_backend_auth::CreateBackendAuth, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_backend_auth::CreateBackendAuthError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/create_backend_config/builders.rs b/sdk/amplifybackend/src/operation/create_backend_config/builders.rs index bc8db3255c6a..0ec934126b58 100644 --- a/sdk/amplifybackend/src/operation/create_backend_config/builders.rs +++ b/sdk/amplifybackend/src/operation/create_backend_config/builders.rs @@ -19,9 +19,9 @@ impl CreateBackendConfigFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateBackendConfigFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_backend_config::CreateBackendConfig, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_backend_config::CreateBackendConfigError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/create_backend_storage/builders.rs b/sdk/amplifybackend/src/operation/create_backend_storage/builders.rs index c44afb577526..b9873f854bc8 100644 --- a/sdk/amplifybackend/src/operation/create_backend_storage/builders.rs +++ b/sdk/amplifybackend/src/operation/create_backend_storage/builders.rs @@ -19,9 +19,9 @@ impl CreateBackendStorageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateBackendStorageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_backend_storage::CreateBackendStorage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_backend_storage::CreateBackendStorageError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/create_token/builders.rs b/sdk/amplifybackend/src/operation/create_token/builders.rs index c1b555fb1838..bdfbd543f02b 100644 --- a/sdk/amplifybackend/src/operation/create_token/builders.rs +++ b/sdk/amplifybackend/src/operation/create_token/builders.rs @@ -19,9 +19,9 @@ impl CreateTokenFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateTokenFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_token::CreateToken, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/delete_backend/builders.rs b/sdk/amplifybackend/src/operation/delete_backend/builders.rs index af57bb3c6340..1be9626cff43 100644 --- a/sdk/amplifybackend/src/operation/delete_backend/builders.rs +++ b/sdk/amplifybackend/src/operation/delete_backend/builders.rs @@ -19,9 +19,9 @@ impl DeleteBackendFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteBackendFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_backend::DeleteBackend, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/delete_backend_api/builders.rs b/sdk/amplifybackend/src/operation/delete_backend_api/builders.rs index 0d04b3fc7204..3a87fd2dff96 100644 --- a/sdk/amplifybackend/src/operation/delete_backend_api/builders.rs +++ b/sdk/amplifybackend/src/operation/delete_backend_api/builders.rs @@ -19,9 +19,9 @@ impl DeleteBackendAPIFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteBackendAPIFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_backend_api::DeleteBackendAPI, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_backend_api::DeleteBackendAPIError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/delete_backend_auth/builders.rs b/sdk/amplifybackend/src/operation/delete_backend_auth/builders.rs index 62dd6dd2f149..66029ef44ab2 100644 --- a/sdk/amplifybackend/src/operation/delete_backend_auth/builders.rs +++ b/sdk/amplifybackend/src/operation/delete_backend_auth/builders.rs @@ -19,9 +19,9 @@ impl DeleteBackendAuthFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteBackendAuthFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_backend_auth::DeleteBackendAuth, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_backend_auth::DeleteBackendAuthError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/delete_backend_storage/builders.rs b/sdk/amplifybackend/src/operation/delete_backend_storage/builders.rs index 7e30e259172e..2b25cbd32375 100644 --- a/sdk/amplifybackend/src/operation/delete_backend_storage/builders.rs +++ b/sdk/amplifybackend/src/operation/delete_backend_storage/builders.rs @@ -19,9 +19,9 @@ impl DeleteBackendStorageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteBackendStorageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_backend_storage::DeleteBackendStorage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_backend_storage::DeleteBackendStorageError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/delete_token/builders.rs b/sdk/amplifybackend/src/operation/delete_token/builders.rs index ca9fc0f448fa..f8845ef3963b 100644 --- a/sdk/amplifybackend/src/operation/delete_token/builders.rs +++ b/sdk/amplifybackend/src/operation/delete_token/builders.rs @@ -19,9 +19,9 @@ impl DeleteTokenFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteTokenFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_token::DeleteToken, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/generate_backend_api_models/builders.rs b/sdk/amplifybackend/src/operation/generate_backend_api_models/builders.rs index 8e870e8bdd88..60384ce66696 100644 --- a/sdk/amplifybackend/src/operation/generate_backend_api_models/builders.rs +++ b/sdk/amplifybackend/src/operation/generate_backend_api_models/builders.rs @@ -19,9 +19,9 @@ impl GenerateBackendAPIModelsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GenerateBackendAPIModelsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::generate_backend_api_models::GenerateBackendAPIModels, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::generate_backend_api_models::GenerateBackendAPIModelsError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/get_backend/builders.rs b/sdk/amplifybackend/src/operation/get_backend/builders.rs index e02fb07ebf28..6982f64847b9 100644 --- a/sdk/amplifybackend/src/operation/get_backend/builders.rs +++ b/sdk/amplifybackend/src/operation/get_backend/builders.rs @@ -19,9 +19,9 @@ impl GetBackendFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetBackendFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_backend::GetBackend, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/get_backend_api/builders.rs b/sdk/amplifybackend/src/operation/get_backend_api/builders.rs index ce06274e4e46..054080c03b24 100644 --- a/sdk/amplifybackend/src/operation/get_backend_api/builders.rs +++ b/sdk/amplifybackend/src/operation/get_backend_api/builders.rs @@ -19,9 +19,9 @@ impl GetBackendAPIFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetBackendAPIFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_backend_api::GetBackendAPI, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/get_backend_api_models/builders.rs b/sdk/amplifybackend/src/operation/get_backend_api_models/builders.rs index abdf6dc229bf..83087e830b54 100644 --- a/sdk/amplifybackend/src/operation/get_backend_api_models/builders.rs +++ b/sdk/amplifybackend/src/operation/get_backend_api_models/builders.rs @@ -19,9 +19,9 @@ impl GetBackendAPIModelsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetBackendAPIModelsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_backend_api_models::GetBackendAPIModels, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_backend_api_models::GetBackendAPIModelsError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/get_backend_auth/builders.rs b/sdk/amplifybackend/src/operation/get_backend_auth/builders.rs index 4896cc70ba06..0aa6247e0e49 100644 --- a/sdk/amplifybackend/src/operation/get_backend_auth/builders.rs +++ b/sdk/amplifybackend/src/operation/get_backend_auth/builders.rs @@ -19,9 +19,9 @@ impl GetBackendAuthFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetBackendAuthFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_backend_auth::GetBackendAuth, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_backend_auth::GetBackendAuthError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/get_backend_job/builders.rs b/sdk/amplifybackend/src/operation/get_backend_job/builders.rs index c27e20f03ee9..4c4b914fb842 100644 --- a/sdk/amplifybackend/src/operation/get_backend_job/builders.rs +++ b/sdk/amplifybackend/src/operation/get_backend_job/builders.rs @@ -19,9 +19,9 @@ impl GetBackendJobFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetBackendJobFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_backend_job::GetBackendJob, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/get_backend_storage/builders.rs b/sdk/amplifybackend/src/operation/get_backend_storage/builders.rs index beade97a59d5..13176b248ded 100644 --- a/sdk/amplifybackend/src/operation/get_backend_storage/builders.rs +++ b/sdk/amplifybackend/src/operation/get_backend_storage/builders.rs @@ -19,9 +19,9 @@ impl GetBackendStorageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetBackendStorageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_backend_storage::GetBackendStorage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_backend_storage::GetBackendStorageError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/get_token/builders.rs b/sdk/amplifybackend/src/operation/get_token/builders.rs index 49ef22068ebe..4cfa1219660e 100644 --- a/sdk/amplifybackend/src/operation/get_token/builders.rs +++ b/sdk/amplifybackend/src/operation/get_token/builders.rs @@ -19,9 +19,9 @@ impl GetTokenFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetTokenFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_token::GetToken, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/import_backend_auth/builders.rs b/sdk/amplifybackend/src/operation/import_backend_auth/builders.rs index a939b2174dc7..a65c0f59731e 100644 --- a/sdk/amplifybackend/src/operation/import_backend_auth/builders.rs +++ b/sdk/amplifybackend/src/operation/import_backend_auth/builders.rs @@ -19,9 +19,9 @@ impl ImportBackendAuthFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ImportBackendAuthFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::import_backend_auth::ImportBackendAuth, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::import_backend_auth::ImportBackendAuthError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/import_backend_storage/builders.rs b/sdk/amplifybackend/src/operation/import_backend_storage/builders.rs index f398445181df..c561f2232910 100644 --- a/sdk/amplifybackend/src/operation/import_backend_storage/builders.rs +++ b/sdk/amplifybackend/src/operation/import_backend_storage/builders.rs @@ -19,9 +19,9 @@ impl ImportBackendStorageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ImportBackendStorageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::import_backend_storage::ImportBackendStorage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::import_backend_storage::ImportBackendStorageError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/list_backend_jobs/builders.rs b/sdk/amplifybackend/src/operation/list_backend_jobs/builders.rs index 37b5b89c5b7e..5904fff791f0 100644 --- a/sdk/amplifybackend/src/operation/list_backend_jobs/builders.rs +++ b/sdk/amplifybackend/src/operation/list_backend_jobs/builders.rs @@ -19,9 +19,9 @@ impl ListBackendJobsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ListBackendJobsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_backend_jobs::ListBackendJobs, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::list_backend_jobs::ListBackendJobsError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/list_s3_buckets/builders.rs b/sdk/amplifybackend/src/operation/list_s3_buckets/builders.rs index a5cefa861249..4a69ba290762 100644 --- a/sdk/amplifybackend/src/operation/list_s3_buckets/builders.rs +++ b/sdk/amplifybackend/src/operation/list_s3_buckets/builders.rs @@ -19,9 +19,9 @@ impl ListS3BucketsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl ListS3BucketsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_s3_buckets::ListS3Buckets, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorReserved for future use.
pub fn next_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.next_token(input.into()); diff --git a/sdk/amplifybackend/src/operation/remove_all_backends/builders.rs b/sdk/amplifybackend/src/operation/remove_all_backends/builders.rs index 99180129e0c5..33ece9d060dd 100644 --- a/sdk/amplifybackend/src/operation/remove_all_backends/builders.rs +++ b/sdk/amplifybackend/src/operation/remove_all_backends/builders.rs @@ -19,9 +19,9 @@ impl RemoveAllBackendsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl RemoveAllBackendsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::remove_all_backends::RemoveAllBackends, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::remove_all_backends::RemoveAllBackendsError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/remove_backend_config/builders.rs b/sdk/amplifybackend/src/operation/remove_backend_config/builders.rs index fa0f0b3882ef..8a8205d7b24a 100644 --- a/sdk/amplifybackend/src/operation/remove_backend_config/builders.rs +++ b/sdk/amplifybackend/src/operation/remove_backend_config/builders.rs @@ -19,9 +19,9 @@ impl RemoveBackendConfigFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl RemoveBackendConfigFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::remove_backend_config::RemoveBackendConfig, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::remove_backend_config::RemoveBackendConfigError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/update_backend_api/builders.rs b/sdk/amplifybackend/src/operation/update_backend_api/builders.rs index 10c32184b350..a721eb25beed 100644 --- a/sdk/amplifybackend/src/operation/update_backend_api/builders.rs +++ b/sdk/amplifybackend/src/operation/update_backend_api/builders.rs @@ -19,9 +19,9 @@ impl UpdateBackendAPIFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateBackendAPIFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_backend_api::UpdateBackendAPI, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_backend_api::UpdateBackendAPIError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/update_backend_auth/builders.rs b/sdk/amplifybackend/src/operation/update_backend_auth/builders.rs index f76cb5adddff..2142e377650f 100644 --- a/sdk/amplifybackend/src/operation/update_backend_auth/builders.rs +++ b/sdk/amplifybackend/src/operation/update_backend_auth/builders.rs @@ -19,9 +19,9 @@ impl UpdateBackendAuthFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateBackendAuthFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_backend_auth::UpdateBackendAuth, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_backend_auth::UpdateBackendAuthError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/update_backend_config/builders.rs b/sdk/amplifybackend/src/operation/update_backend_config/builders.rs index 0acfd64f46ff..373864a051e9 100644 --- a/sdk/amplifybackend/src/operation/update_backend_config/builders.rs +++ b/sdk/amplifybackend/src/operation/update_backend_config/builders.rs @@ -19,9 +19,9 @@ impl UpdateBackendConfigFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateBackendConfigFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_backend_config::UpdateBackendConfig, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_backend_config::UpdateBackendConfigError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/update_backend_job/builders.rs b/sdk/amplifybackend/src/operation/update_backend_job/builders.rs index 9964a574d815..e6930a5fc8be 100644 --- a/sdk/amplifybackend/src/operation/update_backend_job/builders.rs +++ b/sdk/amplifybackend/src/operation/update_backend_job/builders.rs @@ -19,9 +19,9 @@ impl UpdateBackendJobFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateBackendJobFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_backend_job::UpdateBackendJob, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_backend_job::UpdateBackendJobError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifybackend/src/operation/update_backend_storage/builders.rs b/sdk/amplifybackend/src/operation/update_backend_storage/builders.rs index 2879f895b439..34c7ecabe917 100644 --- a/sdk/amplifybackend/src/operation/update_backend_storage/builders.rs +++ b/sdk/amplifybackend/src/operation/update_backend_storage/builders.rs @@ -19,9 +19,9 @@ impl UpdateBackendStorageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateBackendStorageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_backend_storage::UpdateBackendStorage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_backend_storage::UpdateBackendStorageError, + >, + > { + self.customize_middleware().await + } ///The app ID.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifyuibuilder/src/operation/create_component/builders.rs b/sdk/amplifyuibuilder/src/operation/create_component/builders.rs index f4e0a8809d94..3d45a6a9aaee 100644 --- a/sdk/amplifyuibuilder/src/operation/create_component/builders.rs +++ b/sdk/amplifyuibuilder/src/operation/create_component/builders.rs @@ -19,9 +19,9 @@ impl CreateComponentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateComponentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_component::CreateComponent, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_component::CreateComponentError, + >, + > { + self.customize_middleware().await + } ///The unique ID of the Amplify app to associate with the component.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifyuibuilder/src/operation/create_form/builders.rs b/sdk/amplifyuibuilder/src/operation/create_form/builders.rs index ac86ade08e93..f8519f037dd3 100644 --- a/sdk/amplifyuibuilder/src/operation/create_form/builders.rs +++ b/sdk/amplifyuibuilder/src/operation/create_form/builders.rs @@ -19,9 +19,9 @@ impl CreateFormFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateFormFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_form::CreateForm, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID of the Amplify app to associate with the form.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifyuibuilder/src/operation/create_theme/builders.rs b/sdk/amplifyuibuilder/src/operation/create_theme/builders.rs index 76c40adbbe68..8708ca29ce16 100644 --- a/sdk/amplifyuibuilder/src/operation/create_theme/builders.rs +++ b/sdk/amplifyuibuilder/src/operation/create_theme/builders.rs @@ -19,9 +19,9 @@ impl CreateThemeFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateThemeFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_theme::CreateTheme, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID of the Amplify app associated with the theme.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifyuibuilder/src/operation/delete_component/builders.rs b/sdk/amplifyuibuilder/src/operation/delete_component/builders.rs index 235f972a8094..359631e49af1 100644 --- a/sdk/amplifyuibuilder/src/operation/delete_component/builders.rs +++ b/sdk/amplifyuibuilder/src/operation/delete_component/builders.rs @@ -19,9 +19,9 @@ impl DeleteComponentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteComponentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_component::DeleteComponent, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_component::DeleteComponentError, + >, + > { + self.customize_middleware().await + } ///The unique ID of the Amplify app associated with the component to delete.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifyuibuilder/src/operation/delete_form/builders.rs b/sdk/amplifyuibuilder/src/operation/delete_form/builders.rs index cb836a0ce008..c8233d4fe9f8 100644 --- a/sdk/amplifyuibuilder/src/operation/delete_form/builders.rs +++ b/sdk/amplifyuibuilder/src/operation/delete_form/builders.rs @@ -19,9 +19,9 @@ impl DeleteFormFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteFormFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_form::DeleteForm, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID of the Amplify app associated with the form to delete.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifyuibuilder/src/operation/delete_theme/builders.rs b/sdk/amplifyuibuilder/src/operation/delete_theme/builders.rs index 1c8a05ff543f..ebdb68a31122 100644 --- a/sdk/amplifyuibuilder/src/operation/delete_theme/builders.rs +++ b/sdk/amplifyuibuilder/src/operation/delete_theme/builders.rs @@ -19,9 +19,9 @@ impl DeleteThemeFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteThemeFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_theme::DeleteTheme, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID of the Amplify app associated with the theme to delete.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifyuibuilder/src/operation/exchange_code_for_token/builders.rs b/sdk/amplifyuibuilder/src/operation/exchange_code_for_token/builders.rs index f581d1183719..0342bd97bbf2 100644 --- a/sdk/amplifyuibuilder/src/operation/exchange_code_for_token/builders.rs +++ b/sdk/amplifyuibuilder/src/operation/exchange_code_for_token/builders.rs @@ -19,9 +19,9 @@ impl ExchangeCodeForTokenFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ExchangeCodeForTokenFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::exchange_code_for_token::ExchangeCodeForToken, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::exchange_code_for_token::ExchangeCodeForTokenError, + >, + > { + self.customize_middleware().await + } ///The third-party provider for the token. The only valid value is figma
.
The unique ID of the Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifyuibuilder/src/operation/get_form/builders.rs b/sdk/amplifyuibuilder/src/operation/get_form/builders.rs index 994ec72f5dcb..e6398f3b7ef3 100644 --- a/sdk/amplifyuibuilder/src/operation/get_form/builders.rs +++ b/sdk/amplifyuibuilder/src/operation/get_form/builders.rs @@ -19,9 +19,9 @@ impl GetFormFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetFormFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_form::GetForm, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID of the Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifyuibuilder/src/operation/get_metadata/builders.rs b/sdk/amplifyuibuilder/src/operation/get_metadata/builders.rs index c9382b55d1b4..138f3cc6a390 100644 --- a/sdk/amplifyuibuilder/src/operation/get_metadata/builders.rs +++ b/sdk/amplifyuibuilder/src/operation/get_metadata/builders.rs @@ -19,9 +19,9 @@ impl GetMetadataFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetMetadataFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_metadata::GetMetadata, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID of the Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifyuibuilder/src/operation/get_theme/builders.rs b/sdk/amplifyuibuilder/src/operation/get_theme/builders.rs index cc02cc2d1d13..4ab9511bc544 100644 --- a/sdk/amplifyuibuilder/src/operation/get_theme/builders.rs +++ b/sdk/amplifyuibuilder/src/operation/get_theme/builders.rs @@ -19,9 +19,9 @@ impl GetThemeFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetThemeFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_theme::GetTheme, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID of the Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifyuibuilder/src/operation/list_components/builders.rs b/sdk/amplifyuibuilder/src/operation/list_components/builders.rs index cc7bcc0de555..94739925877c 100644 --- a/sdk/amplifyuibuilder/src/operation/list_components/builders.rs +++ b/sdk/amplifyuibuilder/src/operation/list_components/builders.rs @@ -19,9 +19,9 @@ impl ListComponentsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl ListComponentsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::list_components::ListComponents, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for the Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifyuibuilder/src/operation/refresh_token/builders.rs b/sdk/amplifyuibuilder/src/operation/refresh_token/builders.rs index 623546b1059c..f08c274d8264 100644 --- a/sdk/amplifyuibuilder/src/operation/refresh_token/builders.rs +++ b/sdk/amplifyuibuilder/src/operation/refresh_token/builders.rs @@ -19,9 +19,9 @@ impl RefreshTokenFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl RefreshTokenFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::refresh_token::RefreshToken, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe third-party provider for the token. The only valid value is figma
.
The unique ID for the Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifyuibuilder/src/operation/update_form/builders.rs b/sdk/amplifyuibuilder/src/operation/update_form/builders.rs index 22a127ed749e..592365ece350 100644 --- a/sdk/amplifyuibuilder/src/operation/update_form/builders.rs +++ b/sdk/amplifyuibuilder/src/operation/update_form/builders.rs @@ -19,9 +19,9 @@ impl UpdateFormFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateFormFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_form::UpdateForm, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for the Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/amplifyuibuilder/src/operation/update_theme/builders.rs b/sdk/amplifyuibuilder/src/operation/update_theme/builders.rs index bc24e2906db8..5fbff55df10f 100644 --- a/sdk/amplifyuibuilder/src/operation/update_theme/builders.rs +++ b/sdk/amplifyuibuilder/src/operation/update_theme/builders.rs @@ -19,9 +19,9 @@ impl UpdateThemeFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateThemeFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_theme::UpdateTheme, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe unique ID for the Amplify app.
pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.app_id(input.into()); diff --git a/sdk/apigateway/src/operation/create_api_key/builders.rs b/sdk/apigateway/src/operation/create_api_key/builders.rs index f56906e5a83a..bbadb6e43f1c 100644 --- a/sdk/apigateway/src/operation/create_api_key/builders.rs +++ b/sdk/apigateway/src/operation/create_api_key/builders.rs @@ -19,9 +19,9 @@ impl CreateApiKeyFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateApiKeyFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_api_key::CreateApiKey, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe name of the ApiKey.
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.name(input.into()); diff --git a/sdk/apigateway/src/operation/create_authorizer/builders.rs b/sdk/apigateway/src/operation/create_authorizer/builders.rs index 593baf4a70e0..fea31e5f6a42 100644 --- a/sdk/apigateway/src/operation/create_authorizer/builders.rs +++ b/sdk/apigateway/src/operation/create_authorizer/builders.rs @@ -19,9 +19,9 @@ impl CreateAuthorizerFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateAuthorizerFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_authorizer::CreateAuthorizer, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_authorizer::CreateAuthorizerError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/create_base_path_mapping/builders.rs b/sdk/apigateway/src/operation/create_base_path_mapping/builders.rs index 8ad925e1749f..3007532b69c6 100644 --- a/sdk/apigateway/src/operation/create_base_path_mapping/builders.rs +++ b/sdk/apigateway/src/operation/create_base_path_mapping/builders.rs @@ -19,9 +19,9 @@ impl CreateBasePathMappingFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateBasePathMappingFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_base_path_mapping::CreateBasePathMapping, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_base_path_mapping::CreateBasePathMappingError, + >, + > { + self.customize_middleware().await + } ///The domain name of the BasePathMapping resource to create.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.domain_name(input.into()); diff --git a/sdk/apigateway/src/operation/create_deployment/builders.rs b/sdk/apigateway/src/operation/create_deployment/builders.rs index c09e85efa92a..45c29bf6f789 100644 --- a/sdk/apigateway/src/operation/create_deployment/builders.rs +++ b/sdk/apigateway/src/operation/create_deployment/builders.rs @@ -19,9 +19,9 @@ impl CreateDeploymentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateDeploymentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_deployment::CreateDeployment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_deployment::CreateDeploymentError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/create_documentation_part/builders.rs b/sdk/apigateway/src/operation/create_documentation_part/builders.rs index e68b00893069..98ea2456a766 100644 --- a/sdk/apigateway/src/operation/create_documentation_part/builders.rs +++ b/sdk/apigateway/src/operation/create_documentation_part/builders.rs @@ -20,9 +20,9 @@ impl CreateDocumentationPartFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl CreateDocumentationPartFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_documentation_part::CreateDocumentationPart, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_documentation_part::CreateDocumentationPartError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/create_documentation_version/builders.rs b/sdk/apigateway/src/operation/create_documentation_version/builders.rs index 27ce8d4beded..cec0a5ec7d1b 100644 --- a/sdk/apigateway/src/operation/create_documentation_version/builders.rs +++ b/sdk/apigateway/src/operation/create_documentation_version/builders.rs @@ -19,9 +19,9 @@ impl CreateDocumentationVersionFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateDocumentationVersionFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_documentation_version::CreateDocumentationVersion, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_documentation_version::CreateDocumentationVersionError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/create_domain_name/builders.rs b/sdk/apigateway/src/operation/create_domain_name/builders.rs index 512e0a1f0fe2..507746929a42 100644 --- a/sdk/apigateway/src/operation/create_domain_name/builders.rs +++ b/sdk/apigateway/src/operation/create_domain_name/builders.rs @@ -19,9 +19,9 @@ impl CreateDomainNameFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateDomainNameFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_domain_name::CreateDomainName, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_domain_name::CreateDomainNameError, + >, + > { + self.customize_middleware().await + } ///The name of the DomainName resource.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.domain_name(input.into()); diff --git a/sdk/apigateway/src/operation/create_model/builders.rs b/sdk/apigateway/src/operation/create_model/builders.rs index ba303c2ffea9..5880525db0c3 100644 --- a/sdk/apigateway/src/operation/create_model/builders.rs +++ b/sdk/apigateway/src/operation/create_model/builders.rs @@ -19,9 +19,9 @@ impl CreateModelFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateModelFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_model::CreateModel, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe RestApi identifier under which the Model will be created.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/create_request_validator/builders.rs b/sdk/apigateway/src/operation/create_request_validator/builders.rs index 491f1520aa14..554e9de1f79b 100644 --- a/sdk/apigateway/src/operation/create_request_validator/builders.rs +++ b/sdk/apigateway/src/operation/create_request_validator/builders.rs @@ -19,9 +19,9 @@ impl CreateRequestValidatorFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateRequestValidatorFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_request_validator::CreateRequestValidator, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_request_validator::CreateRequestValidatorError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/create_resource/builders.rs b/sdk/apigateway/src/operation/create_resource/builders.rs index 876c44777a0c..42c2521baa2e 100644 --- a/sdk/apigateway/src/operation/create_resource/builders.rs +++ b/sdk/apigateway/src/operation/create_resource/builders.rs @@ -19,9 +19,9 @@ impl CreateResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_resource::CreateResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/create_rest_api/builders.rs b/sdk/apigateway/src/operation/create_rest_api/builders.rs index c9c2ab35bbce..902b22cdd3dc 100644 --- a/sdk/apigateway/src/operation/create_rest_api/builders.rs +++ b/sdk/apigateway/src/operation/create_rest_api/builders.rs @@ -19,9 +19,9 @@ impl CreateRestApiFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateRestApiFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_rest_api::CreateRestApi, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe name of the RestApi.
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.name(input.into()); diff --git a/sdk/apigateway/src/operation/create_stage/builders.rs b/sdk/apigateway/src/operation/create_stage/builders.rs index 01b24d13dfc0..af80eb5c5fd4 100644 --- a/sdk/apigateway/src/operation/create_stage/builders.rs +++ b/sdk/apigateway/src/operation/create_stage/builders.rs @@ -19,9 +19,9 @@ impl CreateStageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateStageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_stage::CreateStage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/create_usage_plan/builders.rs b/sdk/apigateway/src/operation/create_usage_plan/builders.rs index 65814dad99bc..2d823117282f 100644 --- a/sdk/apigateway/src/operation/create_usage_plan/builders.rs +++ b/sdk/apigateway/src/operation/create_usage_plan/builders.rs @@ -19,9 +19,9 @@ impl CreateUsagePlanFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateUsagePlanFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_usage_plan::CreateUsagePlan, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_usage_plan::CreateUsagePlanError, + >, + > { + self.customize_middleware().await + } ///The name of the usage plan.
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.name(input.into()); diff --git a/sdk/apigateway/src/operation/create_usage_plan_key/builders.rs b/sdk/apigateway/src/operation/create_usage_plan_key/builders.rs index 2d33ff109c2e..cd6aa70c506d 100644 --- a/sdk/apigateway/src/operation/create_usage_plan_key/builders.rs +++ b/sdk/apigateway/src/operation/create_usage_plan_key/builders.rs @@ -19,9 +19,9 @@ impl CreateUsagePlanKeyFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateUsagePlanKeyFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_usage_plan_key::CreateUsagePlanKey, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_usage_plan_key::CreateUsagePlanKeyError, + >, + > { + self.customize_middleware().await + } ///The Id of the UsagePlan resource representing the usage plan containing the to-be-created UsagePlanKey resource representing a plan customer.
pub fn usage_plan_id( mut self, diff --git a/sdk/apigateway/src/operation/create_vpc_link/builders.rs b/sdk/apigateway/src/operation/create_vpc_link/builders.rs index 144cbbbf671e..d8b0480ee923 100644 --- a/sdk/apigateway/src/operation/create_vpc_link/builders.rs +++ b/sdk/apigateway/src/operation/create_vpc_link/builders.rs @@ -19,9 +19,9 @@ impl CreateVpcLinkFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateVpcLinkFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_vpc_link::CreateVpcLink, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe name used to label and identify the VPC link.
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.name(input.into()); diff --git a/sdk/apigateway/src/operation/delete_api_key/builders.rs b/sdk/apigateway/src/operation/delete_api_key/builders.rs index 0918d742962a..ffd567405820 100644 --- a/sdk/apigateway/src/operation/delete_api_key/builders.rs +++ b/sdk/apigateway/src/operation/delete_api_key/builders.rs @@ -19,9 +19,9 @@ impl DeleteApiKeyFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteApiKeyFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_api_key::DeleteApiKey, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe identifier of the ApiKey resource to be deleted.
pub fn api_key(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_key(input.into()); diff --git a/sdk/apigateway/src/operation/delete_authorizer/builders.rs b/sdk/apigateway/src/operation/delete_authorizer/builders.rs index ffae3d9ec552..83078393f98b 100644 --- a/sdk/apigateway/src/operation/delete_authorizer/builders.rs +++ b/sdk/apigateway/src/operation/delete_authorizer/builders.rs @@ -19,9 +19,9 @@ impl DeleteAuthorizerFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteAuthorizerFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_authorizer::DeleteAuthorizer, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_authorizer::DeleteAuthorizerError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/delete_base_path_mapping/builders.rs b/sdk/apigateway/src/operation/delete_base_path_mapping/builders.rs index 5a3c94db3db2..6de7f2e7f425 100644 --- a/sdk/apigateway/src/operation/delete_base_path_mapping/builders.rs +++ b/sdk/apigateway/src/operation/delete_base_path_mapping/builders.rs @@ -19,9 +19,9 @@ impl DeleteBasePathMappingFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteBasePathMappingFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_base_path_mapping::DeleteBasePathMapping, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_base_path_mapping::DeleteBasePathMappingError, + >, + > { + self.customize_middleware().await + } ///The domain name of the BasePathMapping resource to delete.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.domain_name(input.into()); diff --git a/sdk/apigateway/src/operation/delete_client_certificate/builders.rs b/sdk/apigateway/src/operation/delete_client_certificate/builders.rs index e261892b308c..a1a2b2de1e60 100644 --- a/sdk/apigateway/src/operation/delete_client_certificate/builders.rs +++ b/sdk/apigateway/src/operation/delete_client_certificate/builders.rs @@ -20,9 +20,9 @@ impl DeleteClientCertificateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl DeleteClientCertificateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_client_certificate::DeleteClientCertificate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_client_certificate::DeleteClientCertificateError, + >, + > { + self.customize_middleware().await + } ///The identifier of the ClientCertificate resource to be deleted.
pub fn client_certificate_id( mut self, diff --git a/sdk/apigateway/src/operation/delete_deployment/builders.rs b/sdk/apigateway/src/operation/delete_deployment/builders.rs index e239fc8915ea..42c57937f245 100644 --- a/sdk/apigateway/src/operation/delete_deployment/builders.rs +++ b/sdk/apigateway/src/operation/delete_deployment/builders.rs @@ -19,9 +19,9 @@ impl DeleteDeploymentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteDeploymentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_deployment::DeleteDeployment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_deployment::DeleteDeploymentError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/delete_documentation_part/builders.rs b/sdk/apigateway/src/operation/delete_documentation_part/builders.rs index 360491f8ad33..a1434076b185 100644 --- a/sdk/apigateway/src/operation/delete_documentation_part/builders.rs +++ b/sdk/apigateway/src/operation/delete_documentation_part/builders.rs @@ -20,9 +20,9 @@ impl DeleteDocumentationPartFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl DeleteDocumentationPartFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_documentation_part::DeleteDocumentationPart, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_documentation_part::DeleteDocumentationPartError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/delete_documentation_version/builders.rs b/sdk/apigateway/src/operation/delete_documentation_version/builders.rs index 4777f7590a21..7f14edcd9f79 100644 --- a/sdk/apigateway/src/operation/delete_documentation_version/builders.rs +++ b/sdk/apigateway/src/operation/delete_documentation_version/builders.rs @@ -19,9 +19,9 @@ impl DeleteDocumentationVersionFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteDocumentationVersionFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_documentation_version::DeleteDocumentationVersion, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_documentation_version::DeleteDocumentationVersionError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/delete_domain_name/builders.rs b/sdk/apigateway/src/operation/delete_domain_name/builders.rs index b098b3e0a30a..38bcee8ee988 100644 --- a/sdk/apigateway/src/operation/delete_domain_name/builders.rs +++ b/sdk/apigateway/src/operation/delete_domain_name/builders.rs @@ -19,9 +19,9 @@ impl DeleteDomainNameFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteDomainNameFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_domain_name::DeleteDomainName, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_domain_name::DeleteDomainNameError, + >, + > { + self.customize_middleware().await + } ///The name of the DomainName resource to be deleted.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.domain_name(input.into()); diff --git a/sdk/apigateway/src/operation/delete_gateway_response/builders.rs b/sdk/apigateway/src/operation/delete_gateway_response/builders.rs index c0d65cd532ac..33501030a247 100644 --- a/sdk/apigateway/src/operation/delete_gateway_response/builders.rs +++ b/sdk/apigateway/src/operation/delete_gateway_response/builders.rs @@ -19,9 +19,9 @@ impl DeleteGatewayResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteGatewayResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_gateway_response::DeleteGatewayResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_gateway_response::DeleteGatewayResponseError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/delete_integration/builders.rs b/sdk/apigateway/src/operation/delete_integration/builders.rs index 7620863c1804..6fd6f78fa595 100644 --- a/sdk/apigateway/src/operation/delete_integration/builders.rs +++ b/sdk/apigateway/src/operation/delete_integration/builders.rs @@ -19,9 +19,9 @@ impl DeleteIntegrationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteIntegrationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_integration::DeleteIntegration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_integration::DeleteIntegrationError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/delete_integration_response/builders.rs b/sdk/apigateway/src/operation/delete_integration_response/builders.rs index 1beabb29e488..9b122a1670c1 100644 --- a/sdk/apigateway/src/operation/delete_integration_response/builders.rs +++ b/sdk/apigateway/src/operation/delete_integration_response/builders.rs @@ -19,9 +19,9 @@ impl DeleteIntegrationResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteIntegrationResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_integration_response::DeleteIntegrationResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_integration_response::DeleteIntegrationResponseError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/delete_method/builders.rs b/sdk/apigateway/src/operation/delete_method/builders.rs index c512718d3cc3..f615386eb8b9 100644 --- a/sdk/apigateway/src/operation/delete_method/builders.rs +++ b/sdk/apigateway/src/operation/delete_method/builders.rs @@ -19,9 +19,9 @@ impl DeleteMethodFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteMethodFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_method::DeleteMethod, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/delete_method_response/builders.rs b/sdk/apigateway/src/operation/delete_method_response/builders.rs index 6c5fb3d0db2d..8b9b259d2afe 100644 --- a/sdk/apigateway/src/operation/delete_method_response/builders.rs +++ b/sdk/apigateway/src/operation/delete_method_response/builders.rs @@ -19,9 +19,9 @@ impl DeleteMethodResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteMethodResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_method_response::DeleteMethodResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_method_response::DeleteMethodResponseError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/delete_model/builders.rs b/sdk/apigateway/src/operation/delete_model/builders.rs index 8938d1a9b857..1bc17c4b7401 100644 --- a/sdk/apigateway/src/operation/delete_model/builders.rs +++ b/sdk/apigateway/src/operation/delete_model/builders.rs @@ -19,9 +19,9 @@ impl DeleteModelFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteModelFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_model::DeleteModel, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/delete_request_validator/builders.rs b/sdk/apigateway/src/operation/delete_request_validator/builders.rs index 6c7a12bf68e9..28809de0eeee 100644 --- a/sdk/apigateway/src/operation/delete_request_validator/builders.rs +++ b/sdk/apigateway/src/operation/delete_request_validator/builders.rs @@ -19,9 +19,9 @@ impl DeleteRequestValidatorFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteRequestValidatorFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_request_validator::DeleteRequestValidator, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_request_validator::DeleteRequestValidatorError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/delete_resource/builders.rs b/sdk/apigateway/src/operation/delete_resource/builders.rs index e2665b3bbef4..601dc9579565 100644 --- a/sdk/apigateway/src/operation/delete_resource/builders.rs +++ b/sdk/apigateway/src/operation/delete_resource/builders.rs @@ -19,9 +19,9 @@ impl DeleteResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_resource::DeleteResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/delete_rest_api/builders.rs b/sdk/apigateway/src/operation/delete_rest_api/builders.rs index a2d1c7f98aa0..3fe66ce93fca 100644 --- a/sdk/apigateway/src/operation/delete_rest_api/builders.rs +++ b/sdk/apigateway/src/operation/delete_rest_api/builders.rs @@ -19,9 +19,9 @@ impl DeleteRestApiFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteRestApiFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_rest_api::DeleteRestApi, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/delete_stage/builders.rs b/sdk/apigateway/src/operation/delete_stage/builders.rs index 83812660706e..a1b488567547 100644 --- a/sdk/apigateway/src/operation/delete_stage/builders.rs +++ b/sdk/apigateway/src/operation/delete_stage/builders.rs @@ -19,9 +19,9 @@ impl DeleteStageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteStageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_stage::DeleteStage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/delete_usage_plan/builders.rs b/sdk/apigateway/src/operation/delete_usage_plan/builders.rs index 9aa408f757dd..ab6f1b9e5f8a 100644 --- a/sdk/apigateway/src/operation/delete_usage_plan/builders.rs +++ b/sdk/apigateway/src/operation/delete_usage_plan/builders.rs @@ -19,9 +19,9 @@ impl DeleteUsagePlanFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteUsagePlanFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_usage_plan::DeleteUsagePlan, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_usage_plan::DeleteUsagePlanError, + >, + > { + self.customize_middleware().await + } ///The Id of the to-be-deleted usage plan.
pub fn usage_plan_id( mut self, diff --git a/sdk/apigateway/src/operation/delete_usage_plan_key/builders.rs b/sdk/apigateway/src/operation/delete_usage_plan_key/builders.rs index a28909e093cc..c8f06b486530 100644 --- a/sdk/apigateway/src/operation/delete_usage_plan_key/builders.rs +++ b/sdk/apigateway/src/operation/delete_usage_plan_key/builders.rs @@ -19,9 +19,9 @@ impl DeleteUsagePlanKeyFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteUsagePlanKeyFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_usage_plan_key::DeleteUsagePlanKey, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_usage_plan_key::DeleteUsagePlanKeyError, + >, + > { + self.customize_middleware().await + } ///The Id of the UsagePlan resource representing the usage plan containing the to-be-deleted UsagePlanKey resource representing a plan customer.
pub fn usage_plan_id( mut self, diff --git a/sdk/apigateway/src/operation/delete_vpc_link/builders.rs b/sdk/apigateway/src/operation/delete_vpc_link/builders.rs index 7c03eb4e5bb8..eb02e1a2ddde 100644 --- a/sdk/apigateway/src/operation/delete_vpc_link/builders.rs +++ b/sdk/apigateway/src/operation/delete_vpc_link/builders.rs @@ -19,9 +19,9 @@ impl DeleteVpcLinkFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteVpcLinkFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_vpc_link::DeleteVpcLink, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe identifier of the VpcLink. It is used in an Integration to reference this VpcLink.
pub fn vpc_link_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.vpc_link_id(input.into()); diff --git a/sdk/apigateway/src/operation/flush_stage_authorizers_cache/builders.rs b/sdk/apigateway/src/operation/flush_stage_authorizers_cache/builders.rs index 2330a2d10fd1..860929262ec2 100644 --- a/sdk/apigateway/src/operation/flush_stage_authorizers_cache/builders.rs +++ b/sdk/apigateway/src/operation/flush_stage_authorizers_cache/builders.rs @@ -19,9 +19,9 @@ impl FlushStageAuthorizersCacheFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl FlushStageAuthorizersCacheFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::flush_stage_authorizers_cache::FlushStageAuthorizersCache, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::flush_stage_authorizers_cache::FlushStageAuthorizersCacheError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/flush_stage_cache/builders.rs b/sdk/apigateway/src/operation/flush_stage_cache/builders.rs index 4d2d7e14faff..6c001079068f 100644 --- a/sdk/apigateway/src/operation/flush_stage_cache/builders.rs +++ b/sdk/apigateway/src/operation/flush_stage_cache/builders.rs @@ -19,9 +19,9 @@ impl FlushStageCacheFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl FlushStageCacheFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::flush_stage_cache::FlushStageCache, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::flush_stage_cache::FlushStageCacheError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/generate_client_certificate/builders.rs b/sdk/apigateway/src/operation/generate_client_certificate/builders.rs index 97b4573024da..c0f539edbbc4 100644 --- a/sdk/apigateway/src/operation/generate_client_certificate/builders.rs +++ b/sdk/apigateway/src/operation/generate_client_certificate/builders.rs @@ -19,9 +19,9 @@ impl GenerateClientCertificateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GenerateClientCertificateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::generate_client_certificate::GenerateClientCertificate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::generate_client_certificate::GenerateClientCertificateError, + >, + > { + self.customize_middleware().await + } ///The description of the ClientCertificate.
pub fn description(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.description(input.into()); diff --git a/sdk/apigateway/src/operation/get_account/builders.rs b/sdk/apigateway/src/operation/get_account/builders.rs index 75562527b198..e29ec14e8cb1 100644 --- a/sdk/apigateway/src/operation/get_account/builders.rs +++ b/sdk/apigateway/src/operation/get_account/builders.rs @@ -19,9 +19,9 @@ impl GetAccountFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,4 +77,18 @@ impl GetAccountFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_account::GetAccount, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe identifier of the ApiKey resource.
pub fn api_key(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_key(input.into()); diff --git a/sdk/apigateway/src/operation/get_api_keys/builders.rs b/sdk/apigateway/src/operation/get_api_keys/builders.rs index f0baefcb541d..07e98920d8b7 100644 --- a/sdk/apigateway/src/operation/get_api_keys/builders.rs +++ b/sdk/apigateway/src/operation/get_api_keys/builders.rs @@ -19,9 +19,9 @@ impl GetApiKeysFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetApiKeysFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_api_keys::GetApiKeys, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_authorizers/builders.rs b/sdk/apigateway/src/operation/get_authorizers/builders.rs index a42598dedcbd..4554a2b79d9b 100644 --- a/sdk/apigateway/src/operation/get_authorizers/builders.rs +++ b/sdk/apigateway/src/operation/get_authorizers/builders.rs @@ -19,9 +19,9 @@ impl GetAuthorizersFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetAuthorizersFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_authorizers::GetAuthorizers, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_base_path_mapping/builders.rs b/sdk/apigateway/src/operation/get_base_path_mapping/builders.rs index 5086bb4b4e76..73a3fb8127b9 100644 --- a/sdk/apigateway/src/operation/get_base_path_mapping/builders.rs +++ b/sdk/apigateway/src/operation/get_base_path_mapping/builders.rs @@ -19,9 +19,9 @@ impl GetBasePathMappingFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetBasePathMappingFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_base_path_mapping::GetBasePathMapping, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_base_path_mapping::GetBasePathMappingError, + >, + > { + self.customize_middleware().await + } ///The domain name of the BasePathMapping resource to be described.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.domain_name(input.into()); diff --git a/sdk/apigateway/src/operation/get_base_path_mappings/builders.rs b/sdk/apigateway/src/operation/get_base_path_mappings/builders.rs index 1ac5ca323f71..3ed329afe00d 100644 --- a/sdk/apigateway/src/operation/get_base_path_mappings/builders.rs +++ b/sdk/apigateway/src/operation/get_base_path_mappings/builders.rs @@ -19,9 +19,9 @@ impl GetBasePathMappingsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetBasePathMappingsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_base_path_mappings::GetBasePathMappings, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_base_path_mappings::GetBasePathMappingsError, + >, + > { + self.customize_middleware().await + } /// Create a paginator for this request /// /// Paginators are used by calling [`send().await`](crate::operation::get_base_path_mappings::paginator::GetBasePathMappingsPaginator::send) which returns a `Stream`. diff --git a/sdk/apigateway/src/operation/get_client_certificate/builders.rs b/sdk/apigateway/src/operation/get_client_certificate/builders.rs index 36b3bf2e2670..c6d5d9127b82 100644 --- a/sdk/apigateway/src/operation/get_client_certificate/builders.rs +++ b/sdk/apigateway/src/operation/get_client_certificate/builders.rs @@ -19,9 +19,9 @@ impl GetClientCertificateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetClientCertificateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_client_certificate::GetClientCertificate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_client_certificate::GetClientCertificateError, + >, + > { + self.customize_middleware().await + } ///The identifier of the ClientCertificate resource to be described.
pub fn client_certificate_id( mut self, diff --git a/sdk/apigateway/src/operation/get_client_certificates/builders.rs b/sdk/apigateway/src/operation/get_client_certificates/builders.rs index 77bc24fbdddb..71365b5c388c 100644 --- a/sdk/apigateway/src/operation/get_client_certificates/builders.rs +++ b/sdk/apigateway/src/operation/get_client_certificates/builders.rs @@ -19,9 +19,9 @@ impl GetClientCertificatesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetClientCertificatesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_client_certificates::GetClientCertificates, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_client_certificates::GetClientCertificatesError, + >, + > { + self.customize_middleware().await + } /// Create a paginator for this request /// /// Paginators are used by calling [`send().await`](crate::operation::get_client_certificates::paginator::GetClientCertificatesPaginator::send) which returns a `Stream`. diff --git a/sdk/apigateway/src/operation/get_deployment/builders.rs b/sdk/apigateway/src/operation/get_deployment/builders.rs index 4191bf505471..50999764c574 100644 --- a/sdk/apigateway/src/operation/get_deployment/builders.rs +++ b/sdk/apigateway/src/operation/get_deployment/builders.rs @@ -19,9 +19,9 @@ impl GetDeploymentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetDeploymentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_deployment::GetDeployment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_deployments/builders.rs b/sdk/apigateway/src/operation/get_deployments/builders.rs index f32dfb9c0c7c..6a73b554bd2a 100644 --- a/sdk/apigateway/src/operation/get_deployments/builders.rs +++ b/sdk/apigateway/src/operation/get_deployments/builders.rs @@ -19,9 +19,9 @@ impl GetDeploymentsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetDeploymentsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_deployments::GetDeployments, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_documentation_parts/builders.rs b/sdk/apigateway/src/operation/get_documentation_parts/builders.rs index 3df1100412d7..b4be38614663 100644 --- a/sdk/apigateway/src/operation/get_documentation_parts/builders.rs +++ b/sdk/apigateway/src/operation/get_documentation_parts/builders.rs @@ -19,9 +19,9 @@ impl GetDocumentationPartsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetDocumentationPartsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_documentation_parts::GetDocumentationParts, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_documentation_parts::GetDocumentationPartsError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_documentation_version/builders.rs b/sdk/apigateway/src/operation/get_documentation_version/builders.rs index cba8617a5ca2..ec38b7cecbf8 100644 --- a/sdk/apigateway/src/operation/get_documentation_version/builders.rs +++ b/sdk/apigateway/src/operation/get_documentation_version/builders.rs @@ -20,9 +20,9 @@ impl GetDocumentationVersionFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl GetDocumentationVersionFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_documentation_version::GetDocumentationVersion, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_documentation_version::GetDocumentationVersionError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_documentation_versions/builders.rs b/sdk/apigateway/src/operation/get_documentation_versions/builders.rs index 3711dafaa8ae..5205cc77d535 100644 --- a/sdk/apigateway/src/operation/get_documentation_versions/builders.rs +++ b/sdk/apigateway/src/operation/get_documentation_versions/builders.rs @@ -19,9 +19,9 @@ impl GetDocumentationVersionsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetDocumentationVersionsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_documentation_versions::GetDocumentationVersions, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_documentation_versions::GetDocumentationVersionsError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_domain_name/builders.rs b/sdk/apigateway/src/operation/get_domain_name/builders.rs index 5cfacc189e9e..2d92b4a8eb49 100644 --- a/sdk/apigateway/src/operation/get_domain_name/builders.rs +++ b/sdk/apigateway/src/operation/get_domain_name/builders.rs @@ -19,9 +19,9 @@ impl GetDomainNameFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetDomainNameFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_domain_name::GetDomainName, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe name of the DomainName resource.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.domain_name(input.into()); diff --git a/sdk/apigateway/src/operation/get_domain_names/builders.rs b/sdk/apigateway/src/operation/get_domain_names/builders.rs index 1df1cf9e0168..7883b063cce1 100644 --- a/sdk/apigateway/src/operation/get_domain_names/builders.rs +++ b/sdk/apigateway/src/operation/get_domain_names/builders.rs @@ -19,9 +19,9 @@ impl GetDomainNamesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetDomainNamesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_domain_names::GetDomainNames, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_domain_names::GetDomainNamesError, + >, + > { + self.customize_middleware().await + } /// Create a paginator for this request /// /// Paginators are used by calling [`send().await`](crate::operation::get_domain_names::paginator::GetDomainNamesPaginator::send) which returns a `Stream`. diff --git a/sdk/apigateway/src/operation/get_export/builders.rs b/sdk/apigateway/src/operation/get_export/builders.rs index c5bb8e838fd3..00b53a7e9831 100644 --- a/sdk/apigateway/src/operation/get_export/builders.rs +++ b/sdk/apigateway/src/operation/get_export/builders.rs @@ -19,9 +19,9 @@ impl GetExportFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetExportFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_export::GetExport, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_gateway_response/builders.rs b/sdk/apigateway/src/operation/get_gateway_response/builders.rs index cec5f4bd0ef5..527d266dee44 100644 --- a/sdk/apigateway/src/operation/get_gateway_response/builders.rs +++ b/sdk/apigateway/src/operation/get_gateway_response/builders.rs @@ -19,9 +19,9 @@ impl GetGatewayResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetGatewayResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_gateway_response::GetGatewayResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_gateway_response::GetGatewayResponseError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_gateway_responses/builders.rs b/sdk/apigateway/src/operation/get_gateway_responses/builders.rs index 968a52db09c1..2b3bd524ec97 100644 --- a/sdk/apigateway/src/operation/get_gateway_responses/builders.rs +++ b/sdk/apigateway/src/operation/get_gateway_responses/builders.rs @@ -19,9 +19,9 @@ impl GetGatewayResponsesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetGatewayResponsesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_gateway_responses::GetGatewayResponses, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_gateway_responses::GetGatewayResponsesError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_integration/builders.rs b/sdk/apigateway/src/operation/get_integration/builders.rs index a950e999258b..734b430b9a87 100644 --- a/sdk/apigateway/src/operation/get_integration/builders.rs +++ b/sdk/apigateway/src/operation/get_integration/builders.rs @@ -19,9 +19,9 @@ impl GetIntegrationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetIntegrationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_integration::GetIntegration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_integration_response/builders.rs b/sdk/apigateway/src/operation/get_integration_response/builders.rs index da463d694432..185949faee15 100644 --- a/sdk/apigateway/src/operation/get_integration_response/builders.rs +++ b/sdk/apigateway/src/operation/get_integration_response/builders.rs @@ -19,9 +19,9 @@ impl GetIntegrationResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetIntegrationResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_integration_response::GetIntegrationResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_integration_response::GetIntegrationResponseError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_method/builders.rs b/sdk/apigateway/src/operation/get_method/builders.rs index 4e99b9649e3a..042a5a387373 100644 --- a/sdk/apigateway/src/operation/get_method/builders.rs +++ b/sdk/apigateway/src/operation/get_method/builders.rs @@ -19,9 +19,9 @@ impl GetMethodFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetMethodFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_method::GetMethod, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_method_response/builders.rs b/sdk/apigateway/src/operation/get_method_response/builders.rs index 99c177d9a5e3..fee452c1ad3a 100644 --- a/sdk/apigateway/src/operation/get_method_response/builders.rs +++ b/sdk/apigateway/src/operation/get_method_response/builders.rs @@ -19,9 +19,9 @@ impl GetMethodResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetMethodResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_method_response::GetMethodResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_method_response::GetMethodResponseError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_model/builders.rs b/sdk/apigateway/src/operation/get_model/builders.rs index 6a9530e65db7..9cc052288709 100644 --- a/sdk/apigateway/src/operation/get_model/builders.rs +++ b/sdk/apigateway/src/operation/get_model/builders.rs @@ -19,9 +19,9 @@ impl GetModelFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetModelFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_model::GetModel, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe RestApi identifier under which the Model exists.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_model_template/builders.rs b/sdk/apigateway/src/operation/get_model_template/builders.rs index c2ec17af99e4..e9e6e0985caa 100644 --- a/sdk/apigateway/src/operation/get_model_template/builders.rs +++ b/sdk/apigateway/src/operation/get_model_template/builders.rs @@ -19,9 +19,9 @@ impl GetModelTemplateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetModelTemplateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_model_template::GetModelTemplate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_model_template::GetModelTemplateError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_models/builders.rs b/sdk/apigateway/src/operation/get_models/builders.rs index 83ec04003264..bede1cfb153d 100644 --- a/sdk/apigateway/src/operation/get_models/builders.rs +++ b/sdk/apigateway/src/operation/get_models/builders.rs @@ -19,9 +19,9 @@ impl GetModelsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetModelsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_models::GetModels, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_request_validators/builders.rs b/sdk/apigateway/src/operation/get_request_validators/builders.rs index f92d92ce36d1..69a4336ba572 100644 --- a/sdk/apigateway/src/operation/get_request_validators/builders.rs +++ b/sdk/apigateway/src/operation/get_request_validators/builders.rs @@ -19,9 +19,9 @@ impl GetRequestValidatorsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetRequestValidatorsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_request_validators::GetRequestValidators, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_request_validators::GetRequestValidatorsError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_resource/builders.rs b/sdk/apigateway/src/operation/get_resource/builders.rs index 95db87522d99..0b103f7d3c75 100644 --- a/sdk/apigateway/src/operation/get_resource/builders.rs +++ b/sdk/apigateway/src/operation/get_resource/builders.rs @@ -19,9 +19,9 @@ impl GetResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_resource::GetResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_resources/builders.rs b/sdk/apigateway/src/operation/get_resources/builders.rs index f40563e3b527..3fbe066824c0 100644 --- a/sdk/apigateway/src/operation/get_resources/builders.rs +++ b/sdk/apigateway/src/operation/get_resources/builders.rs @@ -19,9 +19,9 @@ impl GetResourcesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetResourcesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_resources::GetResources, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_rest_apis/builders.rs b/sdk/apigateway/src/operation/get_rest_apis/builders.rs index 3d6f594a121f..16434fbf4379 100644 --- a/sdk/apigateway/src/operation/get_rest_apis/builders.rs +++ b/sdk/apigateway/src/operation/get_rest_apis/builders.rs @@ -19,9 +19,9 @@ impl GetRestApisFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetRestApisFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_rest_apis::GetRestApis, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_sdk_type/builders.rs b/sdk/apigateway/src/operation/get_sdk_type/builders.rs index 1ef47c9ec9dd..72b9b565320c 100644 --- a/sdk/apigateway/src/operation/get_sdk_type/builders.rs +++ b/sdk/apigateway/src/operation/get_sdk_type/builders.rs @@ -19,9 +19,9 @@ impl GetSdkTypeFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetSdkTypeFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_sdk_type::GetSdkType, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe identifier of the queried SdkType instance.
pub fn id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.id(input.into()); diff --git a/sdk/apigateway/src/operation/get_sdk_types/builders.rs b/sdk/apigateway/src/operation/get_sdk_types/builders.rs index efad78060db6..e231fd209e5c 100644 --- a/sdk/apigateway/src/operation/get_sdk_types/builders.rs +++ b/sdk/apigateway/src/operation/get_sdk_types/builders.rs @@ -19,9 +19,9 @@ impl GetSdkTypesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetSdkTypesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_sdk_types::GetSdkTypes, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe current pagination position in the paged result set.
pub fn position(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.position(input.into()); diff --git a/sdk/apigateway/src/operation/get_stage/builders.rs b/sdk/apigateway/src/operation/get_stage/builders.rs index 106c5459c55e..04eb324e109d 100644 --- a/sdk/apigateway/src/operation/get_stage/builders.rs +++ b/sdk/apigateway/src/operation/get_stage/builders.rs @@ -19,9 +19,9 @@ impl GetStageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetStageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_stage::GetStage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_stages/builders.rs b/sdk/apigateway/src/operation/get_stages/builders.rs index f3b853374efa..d8a995763356 100644 --- a/sdk/apigateway/src/operation/get_stages/builders.rs +++ b/sdk/apigateway/src/operation/get_stages/builders.rs @@ -19,9 +19,9 @@ impl GetStagesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetStagesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_stages::GetStages, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_tags/builders.rs b/sdk/apigateway/src/operation/get_tags/builders.rs index 48071ad75d52..8c1170bc8500 100644 --- a/sdk/apigateway/src/operation/get_tags/builders.rs +++ b/sdk/apigateway/src/operation/get_tags/builders.rs @@ -19,9 +19,9 @@ impl GetTagsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetTagsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_tags::GetTags, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of a resource that can be tagged.
pub fn resource_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.resource_arn(input.into()); diff --git a/sdk/apigateway/src/operation/get_usage/builders.rs b/sdk/apigateway/src/operation/get_usage/builders.rs index 405979f3c389..75e7e7ed85cb 100644 --- a/sdk/apigateway/src/operation/get_usage/builders.rs +++ b/sdk/apigateway/src/operation/get_usage/builders.rs @@ -19,9 +19,9 @@ impl GetUsageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetUsageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_usage::GetUsage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe identifier of the UsagePlan resource to be retrieved.
pub fn usage_plan_id( mut self, diff --git a/sdk/apigateway/src/operation/get_usage_plan_key/builders.rs b/sdk/apigateway/src/operation/get_usage_plan_key/builders.rs index 734c423bdb39..4ea7023ac236 100644 --- a/sdk/apigateway/src/operation/get_usage_plan_key/builders.rs +++ b/sdk/apigateway/src/operation/get_usage_plan_key/builders.rs @@ -19,9 +19,9 @@ impl GetUsagePlanKeyFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetUsagePlanKeyFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_usage_plan_key::GetUsagePlanKey, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_usage_plan_key::GetUsagePlanKeyError, + >, + > { + self.customize_middleware().await + } ///The Id of the UsagePlan resource representing the usage plan containing the to-be-retrieved UsagePlanKey resource representing a plan customer.
pub fn usage_plan_id( mut self, diff --git a/sdk/apigateway/src/operation/get_usage_plan_keys/builders.rs b/sdk/apigateway/src/operation/get_usage_plan_keys/builders.rs index f8918bc18f0a..d3e6cd09021d 100644 --- a/sdk/apigateway/src/operation/get_usage_plan_keys/builders.rs +++ b/sdk/apigateway/src/operation/get_usage_plan_keys/builders.rs @@ -19,9 +19,9 @@ impl GetUsagePlanKeysFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetUsagePlanKeysFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_usage_plan_keys::GetUsagePlanKeys, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_usage_plan_keys::GetUsagePlanKeysError, + >, + > { + self.customize_middleware().await + } /// Create a paginator for this request /// /// Paginators are used by calling [`send().await`](crate::operation::get_usage_plan_keys::paginator::GetUsagePlanKeysPaginator::send) which returns a `Stream`. diff --git a/sdk/apigateway/src/operation/get_usage_plans/builders.rs b/sdk/apigateway/src/operation/get_usage_plans/builders.rs index 4cd3facfc7e0..651ef61acf08 100644 --- a/sdk/apigateway/src/operation/get_usage_plans/builders.rs +++ b/sdk/apigateway/src/operation/get_usage_plans/builders.rs @@ -19,9 +19,9 @@ impl GetUsagePlansFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetUsagePlansFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_usage_plans::GetUsagePlans, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe identifier of the VpcLink. It is used in an Integration to reference this VpcLink.
pub fn vpc_link_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.vpc_link_id(input.into()); diff --git a/sdk/apigateway/src/operation/get_vpc_links/builders.rs b/sdk/apigateway/src/operation/get_vpc_links/builders.rs index d971d9f01f5f..a7f580b270b7 100644 --- a/sdk/apigateway/src/operation/get_vpc_links/builders.rs +++ b/sdk/apigateway/src/operation/get_vpc_links/builders.rs @@ -19,9 +19,9 @@ impl GetVpcLinksFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetVpcLinksFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_vpc_links::GetVpcLinks, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe payload of the POST request to import API keys. For the payload format, see API Key File Format.
pub fn body(mut self, input: ::aws_smithy_types::Blob) -> Self { self.inner = self.inner.body(input); diff --git a/sdk/apigateway/src/operation/import_documentation_parts/builders.rs b/sdk/apigateway/src/operation/import_documentation_parts/builders.rs index 732d9ad35051..ea592e4bed18 100644 --- a/sdk/apigateway/src/operation/import_documentation_parts/builders.rs +++ b/sdk/apigateway/src/operation/import_documentation_parts/builders.rs @@ -19,9 +19,9 @@ impl ImportDocumentationPartsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ImportDocumentationPartsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::import_documentation_parts::ImportDocumentationParts, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::import_documentation_parts::ImportDocumentationPartsError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/import_rest_api/builders.rs b/sdk/apigateway/src/operation/import_rest_api/builders.rs index de337eed38f0..5ad41e35a76c 100644 --- a/sdk/apigateway/src/operation/import_rest_api/builders.rs +++ b/sdk/apigateway/src/operation/import_rest_api/builders.rs @@ -19,9 +19,9 @@ impl ImportRestApiFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl ImportRestApiFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::import_rest_api::ImportRestApi, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorA query parameter to indicate whether to rollback the API creation (true
) or not (false
) when a warning is encountered. The default value is false
.
The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/put_integration/builders.rs b/sdk/apigateway/src/operation/put_integration/builders.rs index d1a1f6e56a24..b22f291a01ce 100644 --- a/sdk/apigateway/src/operation/put_integration/builders.rs +++ b/sdk/apigateway/src/operation/put_integration/builders.rs @@ -19,9 +19,9 @@ impl PutIntegrationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl PutIntegrationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::put_integration::PutIntegration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/put_integration_response/builders.rs b/sdk/apigateway/src/operation/put_integration_response/builders.rs index bc4da076fae5..099b9b1b884d 100644 --- a/sdk/apigateway/src/operation/put_integration_response/builders.rs +++ b/sdk/apigateway/src/operation/put_integration_response/builders.rs @@ -19,9 +19,9 @@ impl PutIntegrationResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl PutIntegrationResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::put_integration_response::PutIntegrationResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::put_integration_response::PutIntegrationResponseError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/put_method/builders.rs b/sdk/apigateway/src/operation/put_method/builders.rs index 85731f7f5ae2..73b547937392 100644 --- a/sdk/apigateway/src/operation/put_method/builders.rs +++ b/sdk/apigateway/src/operation/put_method/builders.rs @@ -19,9 +19,9 @@ impl PutMethodFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl PutMethodFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::put_method::PutMethod, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/put_method_response/builders.rs b/sdk/apigateway/src/operation/put_method_response/builders.rs index deb54c763859..9f09f0c62ced 100644 --- a/sdk/apigateway/src/operation/put_method_response/builders.rs +++ b/sdk/apigateway/src/operation/put_method_response/builders.rs @@ -19,9 +19,9 @@ impl PutMethodResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl PutMethodResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::put_method_response::PutMethodResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::put_method_response::PutMethodResponseError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/put_rest_api/builders.rs b/sdk/apigateway/src/operation/put_rest_api/builders.rs index 0971417c3ceb..b4ac8a48151f 100644 --- a/sdk/apigateway/src/operation/put_rest_api/builders.rs +++ b/sdk/apigateway/src/operation/put_rest_api/builders.rs @@ -19,9 +19,9 @@ impl PutRestApiFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl PutRestApiFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::put_rest_api::PutRestApi, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/tag_resource/builders.rs b/sdk/apigateway/src/operation/tag_resource/builders.rs index 041052be410f..c4e763561b64 100644 --- a/sdk/apigateway/src/operation/tag_resource/builders.rs +++ b/sdk/apigateway/src/operation/tag_resource/builders.rs @@ -19,9 +19,9 @@ impl TagResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl TagResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::tag_resource::TagResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of a resource that can be tagged.
pub fn resource_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.resource_arn(input.into()); diff --git a/sdk/apigateway/src/operation/test_invoke_authorizer/builders.rs b/sdk/apigateway/src/operation/test_invoke_authorizer/builders.rs index 890c379826e0..d4708e662c5e 100644 --- a/sdk/apigateway/src/operation/test_invoke_authorizer/builders.rs +++ b/sdk/apigateway/src/operation/test_invoke_authorizer/builders.rs @@ -19,9 +19,9 @@ impl TestInvokeAuthorizerFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl TestInvokeAuthorizerFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::test_invoke_authorizer::TestInvokeAuthorizer, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::test_invoke_authorizer::TestInvokeAuthorizerError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/test_invoke_method/builders.rs b/sdk/apigateway/src/operation/test_invoke_method/builders.rs index c8ff8914f903..a41ffe2b72b3 100644 --- a/sdk/apigateway/src/operation/test_invoke_method/builders.rs +++ b/sdk/apigateway/src/operation/test_invoke_method/builders.rs @@ -19,9 +19,9 @@ impl TestInvokeMethodFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl TestInvokeMethodFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::test_invoke_method::TestInvokeMethod, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::test_invoke_method::TestInvokeMethodError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/untag_resource/builders.rs b/sdk/apigateway/src/operation/untag_resource/builders.rs index 4d8ca60f80be..e1c3514e76e9 100644 --- a/sdk/apigateway/src/operation/untag_resource/builders.rs +++ b/sdk/apigateway/src/operation/untag_resource/builders.rs @@ -19,9 +19,9 @@ impl UntagResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UntagResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::untag_resource::UntagResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ARN of a resource that can be tagged.
pub fn resource_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.resource_arn(input.into()); diff --git a/sdk/apigateway/src/operation/update_account/builders.rs b/sdk/apigateway/src/operation/update_account/builders.rs index b36e8a3be240..9137b43d4402 100644 --- a/sdk/apigateway/src/operation/update_account/builders.rs +++ b/sdk/apigateway/src/operation/update_account/builders.rs @@ -19,9 +19,9 @@ impl UpdateAccountFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateAccountFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_account::UpdateAccount, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe identifier of the ApiKey resource to be updated.
pub fn api_key(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_key(input.into()); diff --git a/sdk/apigateway/src/operation/update_authorizer/builders.rs b/sdk/apigateway/src/operation/update_authorizer/builders.rs index 3cc771a7e8b1..56780e8aef16 100644 --- a/sdk/apigateway/src/operation/update_authorizer/builders.rs +++ b/sdk/apigateway/src/operation/update_authorizer/builders.rs @@ -19,9 +19,9 @@ impl UpdateAuthorizerFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateAuthorizerFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_authorizer::UpdateAuthorizer, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_authorizer::UpdateAuthorizerError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/update_base_path_mapping/builders.rs b/sdk/apigateway/src/operation/update_base_path_mapping/builders.rs index 5ee0dbe6573b..2f5d7a55ef10 100644 --- a/sdk/apigateway/src/operation/update_base_path_mapping/builders.rs +++ b/sdk/apigateway/src/operation/update_base_path_mapping/builders.rs @@ -19,9 +19,9 @@ impl UpdateBasePathMappingFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateBasePathMappingFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_base_path_mapping::UpdateBasePathMapping, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_base_path_mapping::UpdateBasePathMappingError, + >, + > { + self.customize_middleware().await + } ///The domain name of the BasePathMapping resource to change.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.domain_name(input.into()); diff --git a/sdk/apigateway/src/operation/update_client_certificate/builders.rs b/sdk/apigateway/src/operation/update_client_certificate/builders.rs index 9b85f6ece013..262b8480f150 100644 --- a/sdk/apigateway/src/operation/update_client_certificate/builders.rs +++ b/sdk/apigateway/src/operation/update_client_certificate/builders.rs @@ -20,9 +20,9 @@ impl UpdateClientCertificateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl UpdateClientCertificateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_client_certificate::UpdateClientCertificate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_client_certificate::UpdateClientCertificateError, + >, + > { + self.customize_middleware().await + } ///The identifier of the ClientCertificate resource to be updated.
pub fn client_certificate_id( mut self, diff --git a/sdk/apigateway/src/operation/update_deployment/builders.rs b/sdk/apigateway/src/operation/update_deployment/builders.rs index 35a18c21219f..5082f1875b83 100644 --- a/sdk/apigateway/src/operation/update_deployment/builders.rs +++ b/sdk/apigateway/src/operation/update_deployment/builders.rs @@ -19,9 +19,9 @@ impl UpdateDeploymentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateDeploymentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_deployment::UpdateDeployment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_deployment::UpdateDeploymentError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/update_documentation_part/builders.rs b/sdk/apigateway/src/operation/update_documentation_part/builders.rs index eb9304a51ae5..f341ca77b1b0 100644 --- a/sdk/apigateway/src/operation/update_documentation_part/builders.rs +++ b/sdk/apigateway/src/operation/update_documentation_part/builders.rs @@ -20,9 +20,9 @@ impl UpdateDocumentationPartFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl UpdateDocumentationPartFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_documentation_part::UpdateDocumentationPart, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_documentation_part::UpdateDocumentationPartError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/update_documentation_version/builders.rs b/sdk/apigateway/src/operation/update_documentation_version/builders.rs index efd8e980b871..3d3cf074ebf0 100644 --- a/sdk/apigateway/src/operation/update_documentation_version/builders.rs +++ b/sdk/apigateway/src/operation/update_documentation_version/builders.rs @@ -19,9 +19,9 @@ impl UpdateDocumentationVersionFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateDocumentationVersionFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_documentation_version::UpdateDocumentationVersion, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_documentation_version::UpdateDocumentationVersionError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi..
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/update_domain_name/builders.rs b/sdk/apigateway/src/operation/update_domain_name/builders.rs index f28818a0803b..bea8027979df 100644 --- a/sdk/apigateway/src/operation/update_domain_name/builders.rs +++ b/sdk/apigateway/src/operation/update_domain_name/builders.rs @@ -19,9 +19,9 @@ impl UpdateDomainNameFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateDomainNameFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_domain_name::UpdateDomainName, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_domain_name::UpdateDomainNameError, + >, + > { + self.customize_middleware().await + } ///The name of the DomainName resource to be changed.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.domain_name(input.into()); diff --git a/sdk/apigateway/src/operation/update_gateway_response/builders.rs b/sdk/apigateway/src/operation/update_gateway_response/builders.rs index eb9fdecb438a..74957e12e9d0 100644 --- a/sdk/apigateway/src/operation/update_gateway_response/builders.rs +++ b/sdk/apigateway/src/operation/update_gateway_response/builders.rs @@ -19,9 +19,9 @@ impl UpdateGatewayResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateGatewayResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_gateway_response::UpdateGatewayResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_gateway_response::UpdateGatewayResponseError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/update_integration/builders.rs b/sdk/apigateway/src/operation/update_integration/builders.rs index bdd7cb92d1fc..77024163b125 100644 --- a/sdk/apigateway/src/operation/update_integration/builders.rs +++ b/sdk/apigateway/src/operation/update_integration/builders.rs @@ -19,9 +19,9 @@ impl UpdateIntegrationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateIntegrationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_integration::UpdateIntegration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_integration::UpdateIntegrationError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/update_integration_response/builders.rs b/sdk/apigateway/src/operation/update_integration_response/builders.rs index abd945b50cb0..ca81711aae53 100644 --- a/sdk/apigateway/src/operation/update_integration_response/builders.rs +++ b/sdk/apigateway/src/operation/update_integration_response/builders.rs @@ -19,9 +19,9 @@ impl UpdateIntegrationResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateIntegrationResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_integration_response::UpdateIntegrationResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_integration_response::UpdateIntegrationResponseError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/update_method/builders.rs b/sdk/apigateway/src/operation/update_method/builders.rs index 2ec580c1bd3c..bbc022073d58 100644 --- a/sdk/apigateway/src/operation/update_method/builders.rs +++ b/sdk/apigateway/src/operation/update_method/builders.rs @@ -19,9 +19,9 @@ impl UpdateMethodFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateMethodFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_method::UpdateMethod, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/update_method_response/builders.rs b/sdk/apigateway/src/operation/update_method_response/builders.rs index d78b434a86cc..e7afaf213c5a 100644 --- a/sdk/apigateway/src/operation/update_method_response/builders.rs +++ b/sdk/apigateway/src/operation/update_method_response/builders.rs @@ -19,9 +19,9 @@ impl UpdateMethodResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateMethodResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_method_response::UpdateMethodResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_method_response::UpdateMethodResponseError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/update_model/builders.rs b/sdk/apigateway/src/operation/update_model/builders.rs index 34f4d0954c87..8daf7f6f025e 100644 --- a/sdk/apigateway/src/operation/update_model/builders.rs +++ b/sdk/apigateway/src/operation/update_model/builders.rs @@ -19,9 +19,9 @@ impl UpdateModelFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateModelFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_model::UpdateModel, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/update_request_validator/builders.rs b/sdk/apigateway/src/operation/update_request_validator/builders.rs index eae66211ebe3..0f513e99d4b4 100644 --- a/sdk/apigateway/src/operation/update_request_validator/builders.rs +++ b/sdk/apigateway/src/operation/update_request_validator/builders.rs @@ -19,9 +19,9 @@ impl UpdateRequestValidatorFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateRequestValidatorFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_request_validator::UpdateRequestValidator, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_request_validator::UpdateRequestValidatorError, + >, + > { + self.customize_middleware().await + } ///The string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/update_resource/builders.rs b/sdk/apigateway/src/operation/update_resource/builders.rs index f02852fb1b51..6f61a85f402f 100644 --- a/sdk/apigateway/src/operation/update_resource/builders.rs +++ b/sdk/apigateway/src/operation/update_resource/builders.rs @@ -19,9 +19,9 @@ impl UpdateResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_resource::UpdateResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/update_rest_api/builders.rs b/sdk/apigateway/src/operation/update_rest_api/builders.rs index 39ca604757ab..70c051ee6696 100644 --- a/sdk/apigateway/src/operation/update_rest_api/builders.rs +++ b/sdk/apigateway/src/operation/update_rest_api/builders.rs @@ -19,9 +19,9 @@ impl UpdateRestApiFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateRestApiFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_rest_api::UpdateRestApi, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/update_stage/builders.rs b/sdk/apigateway/src/operation/update_stage/builders.rs index 4a586220fcdc..30ed58ed0731 100644 --- a/sdk/apigateway/src/operation/update_stage/builders.rs +++ b/sdk/apigateway/src/operation/update_stage/builders.rs @@ -19,9 +19,9 @@ impl UpdateStageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateStageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_stage::UpdateStage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe string identifier of the associated RestApi.
pub fn rest_api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.rest_api_id(input.into()); diff --git a/sdk/apigateway/src/operation/update_usage/builders.rs b/sdk/apigateway/src/operation/update_usage/builders.rs index dd8ac9a6b8b6..a288ba5d547d 100644 --- a/sdk/apigateway/src/operation/update_usage/builders.rs +++ b/sdk/apigateway/src/operation/update_usage/builders.rs @@ -19,9 +19,9 @@ impl UpdateUsageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateUsageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_usage::UpdateUsage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe Id of the usage plan associated with the usage data.
pub fn usage_plan_id( mut self, diff --git a/sdk/apigateway/src/operation/update_usage_plan/builders.rs b/sdk/apigateway/src/operation/update_usage_plan/builders.rs index 884b501f2bb7..cd58bc5eec3a 100644 --- a/sdk/apigateway/src/operation/update_usage_plan/builders.rs +++ b/sdk/apigateway/src/operation/update_usage_plan/builders.rs @@ -19,9 +19,9 @@ impl UpdateUsagePlanFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateUsagePlanFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_usage_plan::UpdateUsagePlan, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_usage_plan::UpdateUsagePlanError, + >, + > { + self.customize_middleware().await + } ///The Id of the to-be-updated usage plan.
pub fn usage_plan_id( mut self, diff --git a/sdk/apigateway/src/operation/update_vpc_link/builders.rs b/sdk/apigateway/src/operation/update_vpc_link/builders.rs index 48dd5908067c..9401cc1f4ed0 100644 --- a/sdk/apigateway/src/operation/update_vpc_link/builders.rs +++ b/sdk/apigateway/src/operation/update_vpc_link/builders.rs @@ -19,9 +19,9 @@ impl UpdateVpcLinkFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateVpcLinkFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_vpc_link::UpdateVpcLink, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe identifier of the VpcLink. It is used in an Integration to reference this VpcLink.
pub fn vpc_link_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.vpc_link_id(input.into()); diff --git a/sdk/apigatewaymanagement/src/operation/delete_connection/builders.rs b/sdk/apigatewaymanagement/src/operation/delete_connection/builders.rs index 3a1dd622cf0c..557d8df3038d 100644 --- a/sdk/apigatewaymanagement/src/operation/delete_connection/builders.rs +++ b/sdk/apigatewaymanagement/src/operation/delete_connection/builders.rs @@ -19,9 +19,9 @@ impl DeleteConnectionFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteConnectionFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_connection::DeleteConnection, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_connection::DeleteConnectionError, + >, + > { + self.customize_middleware().await + } #[allow(missing_docs)] // documentation missing in model pub fn connection_id( mut self, diff --git a/sdk/apigatewaymanagement/src/operation/get_connection/builders.rs b/sdk/apigatewaymanagement/src/operation/get_connection/builders.rs index 4b6508642114..8f8fe8d123e2 100644 --- a/sdk/apigatewaymanagement/src/operation/get_connection/builders.rs +++ b/sdk/apigatewaymanagement/src/operation/get_connection/builders.rs @@ -19,9 +19,9 @@ impl GetConnectionFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetConnectionFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_connection::GetConnection, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe data to be sent to the client specified by its connection id.
pub fn data(mut self, input: ::aws_smithy_types::Blob) -> Self { self.inner = self.inner.data(input); diff --git a/sdk/apigatewayv2/src/operation/create_api/builders.rs b/sdk/apigatewayv2/src/operation/create_api/builders.rs index 41f91340382a..682521d84a66 100644 --- a/sdk/apigatewayv2/src/operation/create_api/builders.rs +++ b/sdk/apigatewayv2/src/operation/create_api/builders.rs @@ -19,9 +19,9 @@ impl CreateApiFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateApiFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_api::CreateApi, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorAn API key selection expression. Supported only for WebSocket APIs. See API Key Selection Expressions.
pub fn api_key_selection_expression( mut self, diff --git a/sdk/apigatewayv2/src/operation/create_api_mapping/builders.rs b/sdk/apigatewayv2/src/operation/create_api_mapping/builders.rs index 9eca3c0c2c2d..f826ad8e53a1 100644 --- a/sdk/apigatewayv2/src/operation/create_api_mapping/builders.rs +++ b/sdk/apigatewayv2/src/operation/create_api_mapping/builders.rs @@ -19,9 +19,9 @@ impl CreateApiMappingFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateApiMappingFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_api_mapping::CreateApiMapping, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_api_mapping::CreateApiMappingError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/create_authorizer/builders.rs b/sdk/apigatewayv2/src/operation/create_authorizer/builders.rs index dec298f54169..a797e5be2fbe 100644 --- a/sdk/apigatewayv2/src/operation/create_authorizer/builders.rs +++ b/sdk/apigatewayv2/src/operation/create_authorizer/builders.rs @@ -19,9 +19,9 @@ impl CreateAuthorizerFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateAuthorizerFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_authorizer::CreateAuthorizer, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_authorizer::CreateAuthorizerError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/create_deployment/builders.rs b/sdk/apigatewayv2/src/operation/create_deployment/builders.rs index 5bcd0e93c423..36317490ab4e 100644 --- a/sdk/apigatewayv2/src/operation/create_deployment/builders.rs +++ b/sdk/apigatewayv2/src/operation/create_deployment/builders.rs @@ -19,9 +19,9 @@ impl CreateDeploymentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateDeploymentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_deployment::CreateDeployment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_deployment::CreateDeploymentError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/create_domain_name/builders.rs b/sdk/apigatewayv2/src/operation/create_domain_name/builders.rs index abf5f4f56f1a..49473fec89f0 100644 --- a/sdk/apigatewayv2/src/operation/create_domain_name/builders.rs +++ b/sdk/apigatewayv2/src/operation/create_domain_name/builders.rs @@ -19,9 +19,9 @@ impl CreateDomainNameFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateDomainNameFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_domain_name::CreateDomainName, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_domain_name::CreateDomainNameError, + >, + > { + self.customize_middleware().await + } ///The domain name.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.domain_name(input.into()); diff --git a/sdk/apigatewayv2/src/operation/create_integration/builders.rs b/sdk/apigatewayv2/src/operation/create_integration/builders.rs index 5d7b6807b5b7..92c4df0587cd 100644 --- a/sdk/apigatewayv2/src/operation/create_integration/builders.rs +++ b/sdk/apigatewayv2/src/operation/create_integration/builders.rs @@ -19,9 +19,9 @@ impl CreateIntegrationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateIntegrationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_integration::CreateIntegration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_integration::CreateIntegrationError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/create_integration_response/builders.rs b/sdk/apigatewayv2/src/operation/create_integration_response/builders.rs index 302bcbf5171b..f91256c226f6 100644 --- a/sdk/apigatewayv2/src/operation/create_integration_response/builders.rs +++ b/sdk/apigatewayv2/src/operation/create_integration_response/builders.rs @@ -19,9 +19,9 @@ impl CreateIntegrationResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateIntegrationResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_integration_response::CreateIntegrationResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_integration_response::CreateIntegrationResponseError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/create_model/builders.rs b/sdk/apigatewayv2/src/operation/create_model/builders.rs index 73bcb4318a83..e6668b353e9c 100644 --- a/sdk/apigatewayv2/src/operation/create_model/builders.rs +++ b/sdk/apigatewayv2/src/operation/create_model/builders.rs @@ -19,9 +19,9 @@ impl CreateModelFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateModelFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_model::CreateModel, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/create_route/builders.rs b/sdk/apigatewayv2/src/operation/create_route/builders.rs index 1c756fc7da87..57125747c54e 100644 --- a/sdk/apigatewayv2/src/operation/create_route/builders.rs +++ b/sdk/apigatewayv2/src/operation/create_route/builders.rs @@ -19,9 +19,9 @@ impl CreateRouteFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateRouteFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_route::CreateRoute, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/create_route_response/builders.rs b/sdk/apigatewayv2/src/operation/create_route_response/builders.rs index 01679fec1555..66fa758f81d2 100644 --- a/sdk/apigatewayv2/src/operation/create_route_response/builders.rs +++ b/sdk/apigatewayv2/src/operation/create_route_response/builders.rs @@ -19,9 +19,9 @@ impl CreateRouteResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateRouteResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_route_response::CreateRouteResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_route_response::CreateRouteResponseError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/create_stage/builders.rs b/sdk/apigatewayv2/src/operation/create_stage/builders.rs index bc5d74002e38..d991d7a317a5 100644 --- a/sdk/apigatewayv2/src/operation/create_stage/builders.rs +++ b/sdk/apigatewayv2/src/operation/create_stage/builders.rs @@ -19,9 +19,9 @@ impl CreateStageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateStageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_stage::CreateStage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorSettings for logging access in this stage.
pub fn access_log_settings(mut self, input: crate::types::AccessLogSettings) -> Self { self.inner = self.inner.access_log_settings(input); diff --git a/sdk/apigatewayv2/src/operation/create_vpc_link/builders.rs b/sdk/apigatewayv2/src/operation/create_vpc_link/builders.rs index a5ea2b4a75aa..532e82905eb8 100644 --- a/sdk/apigatewayv2/src/operation/create_vpc_link/builders.rs +++ b/sdk/apigatewayv2/src/operation/create_vpc_link/builders.rs @@ -19,9 +19,9 @@ impl CreateVpcLinkFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl CreateVpcLinkFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_vpc_link::CreateVpcLink, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe name of the VPC link.
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.name(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_access_log_settings/builders.rs b/sdk/apigatewayv2/src/operation/delete_access_log_settings/builders.rs index 298aef19cffb..49a4290614a1 100644 --- a/sdk/apigatewayv2/src/operation/delete_access_log_settings/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_access_log_settings/builders.rs @@ -20,9 +20,9 @@ impl DeleteAccessLogSettingsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl DeleteAccessLogSettingsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_access_log_settings::DeleteAccessLogSettings, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_access_log_settings::DeleteAccessLogSettingsError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_api/builders.rs b/sdk/apigatewayv2/src/operation/delete_api/builders.rs index f17b80206976..c91b5b9aef36 100644 --- a/sdk/apigatewayv2/src/operation/delete_api/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_api/builders.rs @@ -19,9 +19,9 @@ impl DeleteApiFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteApiFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_api::DeleteApi, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_api_mapping/builders.rs b/sdk/apigatewayv2/src/operation/delete_api_mapping/builders.rs index 2545aa29d7c2..d35edfee1870 100644 --- a/sdk/apigatewayv2/src/operation/delete_api_mapping/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_api_mapping/builders.rs @@ -19,9 +19,9 @@ impl DeleteApiMappingFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteApiMappingFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_api_mapping::DeleteApiMapping, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_api_mapping::DeleteApiMappingError, + >, + > { + self.customize_middleware().await + } ///The API mapping identifier.
pub fn api_mapping_id( mut self, diff --git a/sdk/apigatewayv2/src/operation/delete_authorizer/builders.rs b/sdk/apigatewayv2/src/operation/delete_authorizer/builders.rs index 1729d9d82005..aac9b5170ba4 100644 --- a/sdk/apigatewayv2/src/operation/delete_authorizer/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_authorizer/builders.rs @@ -19,9 +19,9 @@ impl DeleteAuthorizerFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteAuthorizerFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_authorizer::DeleteAuthorizer, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_authorizer::DeleteAuthorizerError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_cors_configuration/builders.rs b/sdk/apigatewayv2/src/operation/delete_cors_configuration/builders.rs index 785a3c48f182..f2ec0f9880a9 100644 --- a/sdk/apigatewayv2/src/operation/delete_cors_configuration/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_cors_configuration/builders.rs @@ -20,9 +20,9 @@ impl DeleteCorsConfigurationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl DeleteCorsConfigurationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_cors_configuration::DeleteCorsConfiguration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_cors_configuration::DeleteCorsConfigurationError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_deployment/builders.rs b/sdk/apigatewayv2/src/operation/delete_deployment/builders.rs index 2910ab00eb47..764eea07ff05 100644 --- a/sdk/apigatewayv2/src/operation/delete_deployment/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_deployment/builders.rs @@ -19,9 +19,9 @@ impl DeleteDeploymentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteDeploymentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_deployment::DeleteDeployment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_deployment::DeleteDeploymentError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_domain_name/builders.rs b/sdk/apigatewayv2/src/operation/delete_domain_name/builders.rs index 6015a6ebef56..e4ce139d764e 100644 --- a/sdk/apigatewayv2/src/operation/delete_domain_name/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_domain_name/builders.rs @@ -19,9 +19,9 @@ impl DeleteDomainNameFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteDomainNameFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_domain_name::DeleteDomainName, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_domain_name::DeleteDomainNameError, + >, + > { + self.customize_middleware().await + } ///The domain name.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.domain_name(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_integration/builders.rs b/sdk/apigatewayv2/src/operation/delete_integration/builders.rs index 80294dd384cf..2c664ab63dc9 100644 --- a/sdk/apigatewayv2/src/operation/delete_integration/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_integration/builders.rs @@ -19,9 +19,9 @@ impl DeleteIntegrationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteIntegrationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_integration::DeleteIntegration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_integration::DeleteIntegrationError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_integration_response/builders.rs b/sdk/apigatewayv2/src/operation/delete_integration_response/builders.rs index e38010097b27..10807c1af069 100644 --- a/sdk/apigatewayv2/src/operation/delete_integration_response/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_integration_response/builders.rs @@ -19,9 +19,9 @@ impl DeleteIntegrationResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteIntegrationResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_integration_response::DeleteIntegrationResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_integration_response::DeleteIntegrationResponseError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_model/builders.rs b/sdk/apigatewayv2/src/operation/delete_model/builders.rs index 7ce9b543e3bb..3ac2b5b15a2f 100644 --- a/sdk/apigatewayv2/src/operation/delete_model/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_model/builders.rs @@ -19,9 +19,9 @@ impl DeleteModelFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteModelFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_model::DeleteModel, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_route/builders.rs b/sdk/apigatewayv2/src/operation/delete_route/builders.rs index 48311e813825..d964833dc402 100644 --- a/sdk/apigatewayv2/src/operation/delete_route/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_route/builders.rs @@ -19,9 +19,9 @@ impl DeleteRouteFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteRouteFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_route::DeleteRoute, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_route_request_parameter/builders.rs b/sdk/apigatewayv2/src/operation/delete_route_request_parameter/builders.rs index 78efcf12dfd2..9b092928d932 100644 --- a/sdk/apigatewayv2/src/operation/delete_route_request_parameter/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_route_request_parameter/builders.rs @@ -19,9 +19,9 @@ impl DeleteRouteRequestParameterFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteRouteRequestParameterFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_route_request_parameter::DeleteRouteRequestParameter, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_route_request_parameter::DeleteRouteRequestParameterError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_route_response/builders.rs b/sdk/apigatewayv2/src/operation/delete_route_response/builders.rs index 84d09abfb100..e93aff302812 100644 --- a/sdk/apigatewayv2/src/operation/delete_route_response/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_route_response/builders.rs @@ -19,9 +19,9 @@ impl DeleteRouteResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteRouteResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_route_response::DeleteRouteResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_route_response::DeleteRouteResponseError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_route_settings/builders.rs b/sdk/apigatewayv2/src/operation/delete_route_settings/builders.rs index e4e8bec2b7b5..a8b667be28c2 100644 --- a/sdk/apigatewayv2/src/operation/delete_route_settings/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_route_settings/builders.rs @@ -19,9 +19,9 @@ impl DeleteRouteSettingsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteRouteSettingsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_route_settings::DeleteRouteSettings, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_route_settings::DeleteRouteSettingsError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_stage/builders.rs b/sdk/apigatewayv2/src/operation/delete_stage/builders.rs index 396caded6f68..7b34fa24185e 100644 --- a/sdk/apigatewayv2/src/operation/delete_stage/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_stage/builders.rs @@ -19,9 +19,9 @@ impl DeleteStageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteStageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_stage::DeleteStage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/delete_vpc_link/builders.rs b/sdk/apigatewayv2/src/operation/delete_vpc_link/builders.rs index 3bf88f7242ca..8ed92096246a 100644 --- a/sdk/apigatewayv2/src/operation/delete_vpc_link/builders.rs +++ b/sdk/apigatewayv2/src/operation/delete_vpc_link/builders.rs @@ -19,9 +19,9 @@ impl DeleteVpcLinkFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl DeleteVpcLinkFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_vpc_link::DeleteVpcLink, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ID of the VPC link.
pub fn vpc_link_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.vpc_link_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/export_api/builders.rs b/sdk/apigatewayv2/src/operation/export_api/builders.rs index 62e644db9cc2..3f57871b942d 100644 --- a/sdk/apigatewayv2/src/operation/export_api/builders.rs +++ b/sdk/apigatewayv2/src/operation/export_api/builders.rs @@ -18,9 +18,9 @@ impl ExportApiFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -76,6 +76,20 @@ impl ExportApiFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::export_api::ExportApi, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_api/builders.rs b/sdk/apigatewayv2/src/operation/get_api/builders.rs index 20186af6e70d..74350d338e21 100644 --- a/sdk/apigatewayv2/src/operation/get_api/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_api/builders.rs @@ -19,9 +19,9 @@ impl GetApiFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetApiFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_api::GetApi, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_api_mapping/builders.rs b/sdk/apigatewayv2/src/operation/get_api_mapping/builders.rs index 4abfb8763d9c..9ed462e8b0da 100644 --- a/sdk/apigatewayv2/src/operation/get_api_mapping/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_api_mapping/builders.rs @@ -19,9 +19,9 @@ impl GetApiMappingFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetApiMappingFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_api_mapping::GetApiMapping, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API mapping identifier.
pub fn api_mapping_id( mut self, diff --git a/sdk/apigatewayv2/src/operation/get_api_mappings/builders.rs b/sdk/apigatewayv2/src/operation/get_api_mappings/builders.rs index 638179e290cb..22b305ac8ce3 100644 --- a/sdk/apigatewayv2/src/operation/get_api_mappings/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_api_mappings/builders.rs @@ -19,9 +19,9 @@ impl GetApiMappingsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetApiMappingsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_api_mappings::GetApiMappings, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_api_mappings::GetApiMappingsError, + >, + > { + self.customize_middleware().await + } ///The domain name.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.domain_name(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_apis/builders.rs b/sdk/apigatewayv2/src/operation/get_apis/builders.rs index 3e85a8e389bd..95f8a331efaf 100644 --- a/sdk/apigatewayv2/src/operation/get_apis/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_apis/builders.rs @@ -19,9 +19,9 @@ impl GetApisFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetApisFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_apis::GetApis, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe maximum number of elements to be returned for this resource.
pub fn max_results(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.max_results(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_authorizer/builders.rs b/sdk/apigatewayv2/src/operation/get_authorizer/builders.rs index 9993e42e2d2e..edc2c2f52feb 100644 --- a/sdk/apigatewayv2/src/operation/get_authorizer/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_authorizer/builders.rs @@ -19,9 +19,9 @@ impl GetAuthorizerFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetAuthorizerFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_authorizer::GetAuthorizer, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_authorizers/builders.rs b/sdk/apigatewayv2/src/operation/get_authorizers/builders.rs index 985ba0be7562..ce21fa2167fd 100644 --- a/sdk/apigatewayv2/src/operation/get_authorizers/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_authorizers/builders.rs @@ -19,9 +19,9 @@ impl GetAuthorizersFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetAuthorizersFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_authorizers::GetAuthorizers, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_deployment/builders.rs b/sdk/apigatewayv2/src/operation/get_deployment/builders.rs index 65c81dbf64ca..8bd207bef078 100644 --- a/sdk/apigatewayv2/src/operation/get_deployment/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_deployment/builders.rs @@ -19,9 +19,9 @@ impl GetDeploymentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetDeploymentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_deployment::GetDeployment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_deployments/builders.rs b/sdk/apigatewayv2/src/operation/get_deployments/builders.rs index 7d31a5fa4af9..0db8fcb12363 100644 --- a/sdk/apigatewayv2/src/operation/get_deployments/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_deployments/builders.rs @@ -19,9 +19,9 @@ impl GetDeploymentsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetDeploymentsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_deployments::GetDeployments, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_domain_name/builders.rs b/sdk/apigatewayv2/src/operation/get_domain_name/builders.rs index e19fdcc19133..d78d6aed6d69 100644 --- a/sdk/apigatewayv2/src/operation/get_domain_name/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_domain_name/builders.rs @@ -19,9 +19,9 @@ impl GetDomainNameFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetDomainNameFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_domain_name::GetDomainName, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe domain name.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.domain_name(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_domain_names/builders.rs b/sdk/apigatewayv2/src/operation/get_domain_names/builders.rs index 695553befd38..3575ff777b66 100644 --- a/sdk/apigatewayv2/src/operation/get_domain_names/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_domain_names/builders.rs @@ -19,9 +19,9 @@ impl GetDomainNamesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetDomainNamesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_domain_names::GetDomainNames, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_domain_names::GetDomainNamesError, + >, + > { + self.customize_middleware().await + } ///The maximum number of elements to be returned for this resource.
pub fn max_results(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.max_results(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_integration/builders.rs b/sdk/apigatewayv2/src/operation/get_integration/builders.rs index b313f1a71d1e..1edd2eb5fab1 100644 --- a/sdk/apigatewayv2/src/operation/get_integration/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_integration/builders.rs @@ -19,9 +19,9 @@ impl GetIntegrationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetIntegrationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_integration::GetIntegration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_integration_response/builders.rs b/sdk/apigatewayv2/src/operation/get_integration_response/builders.rs index 5855cc090042..baf12fa15b4a 100644 --- a/sdk/apigatewayv2/src/operation/get_integration_response/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_integration_response/builders.rs @@ -19,9 +19,9 @@ impl GetIntegrationResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetIntegrationResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_integration_response::GetIntegrationResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_integration_response::GetIntegrationResponseError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_integration_responses/builders.rs b/sdk/apigatewayv2/src/operation/get_integration_responses/builders.rs index 58193edc1daa..0d6b66de510b 100644 --- a/sdk/apigatewayv2/src/operation/get_integration_responses/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_integration_responses/builders.rs @@ -20,9 +20,9 @@ impl GetIntegrationResponsesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl GetIntegrationResponsesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_integration_responses::GetIntegrationResponses, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_integration_responses::GetIntegrationResponsesError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_integrations/builders.rs b/sdk/apigatewayv2/src/operation/get_integrations/builders.rs index cefbf21327b0..20e49b870868 100644 --- a/sdk/apigatewayv2/src/operation/get_integrations/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_integrations/builders.rs @@ -19,9 +19,9 @@ impl GetIntegrationsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetIntegrationsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_integrations::GetIntegrations, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_integrations::GetIntegrationsError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_model/builders.rs b/sdk/apigatewayv2/src/operation/get_model/builders.rs index 87d20a7f76a9..564d64cb4922 100644 --- a/sdk/apigatewayv2/src/operation/get_model/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_model/builders.rs @@ -19,9 +19,9 @@ impl GetModelFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetModelFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_model::GetModel, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_model_template/builders.rs b/sdk/apigatewayv2/src/operation/get_model_template/builders.rs index 9262e70bb1c9..7740e8538da6 100644 --- a/sdk/apigatewayv2/src/operation/get_model_template/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_model_template/builders.rs @@ -19,9 +19,9 @@ impl GetModelTemplateFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetModelTemplateFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_model_template::GetModelTemplate, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_model_template::GetModelTemplateError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_models/builders.rs b/sdk/apigatewayv2/src/operation/get_models/builders.rs index 82bc5710371e..13473e24ff8e 100644 --- a/sdk/apigatewayv2/src/operation/get_models/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_models/builders.rs @@ -19,9 +19,9 @@ impl GetModelsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetModelsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_models::GetModels, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_route/builders.rs b/sdk/apigatewayv2/src/operation/get_route/builders.rs index 4f7950af354b..848e19b04091 100644 --- a/sdk/apigatewayv2/src/operation/get_route/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_route/builders.rs @@ -19,9 +19,9 @@ impl GetRouteFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetRouteFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_route::GetRoute, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_route_response/builders.rs b/sdk/apigatewayv2/src/operation/get_route_response/builders.rs index 96b0c5105a88..bcd741f7abcf 100644 --- a/sdk/apigatewayv2/src/operation/get_route_response/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_route_response/builders.rs @@ -19,9 +19,9 @@ impl GetRouteResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetRouteResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_route_response::GetRouteResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_route_response::GetRouteResponseError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_route_responses/builders.rs b/sdk/apigatewayv2/src/operation/get_route_responses/builders.rs index 72f90257dcbf..5841e045c37d 100644 --- a/sdk/apigatewayv2/src/operation/get_route_responses/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_route_responses/builders.rs @@ -19,9 +19,9 @@ impl GetRouteResponsesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl GetRouteResponsesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_route_responses::GetRouteResponses, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::get_route_responses::GetRouteResponsesError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_routes/builders.rs b/sdk/apigatewayv2/src/operation/get_routes/builders.rs index 5f4d75331df6..4f96ad7d38d2 100644 --- a/sdk/apigatewayv2/src/operation/get_routes/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_routes/builders.rs @@ -19,9 +19,9 @@ impl GetRoutesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetRoutesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_routes::GetRoutes, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_stage/builders.rs b/sdk/apigatewayv2/src/operation/get_stage/builders.rs index 7c5457e06b1a..9f13a6c533fb 100644 --- a/sdk/apigatewayv2/src/operation/get_stage/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_stage/builders.rs @@ -19,9 +19,9 @@ impl GetStageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetStageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_stage::GetStage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_stages/builders.rs b/sdk/apigatewayv2/src/operation/get_stages/builders.rs index a38f0cce5d63..b522d3e02946 100644 --- a/sdk/apigatewayv2/src/operation/get_stages/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_stages/builders.rs @@ -19,9 +19,9 @@ impl GetStagesFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetStagesFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_stages::GetStages, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_tags/builders.rs b/sdk/apigatewayv2/src/operation/get_tags/builders.rs index 98c64b5c90aa..fd83aa160b3e 100644 --- a/sdk/apigatewayv2/src/operation/get_tags/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_tags/builders.rs @@ -19,9 +19,9 @@ impl GetTagsFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetTagsFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_tags::GetTags, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe resource ARN for the tag.
pub fn resource_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.resource_arn(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_vpc_link/builders.rs b/sdk/apigatewayv2/src/operation/get_vpc_link/builders.rs index 9075638cbce7..e12577891572 100644 --- a/sdk/apigatewayv2/src/operation/get_vpc_link/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_vpc_link/builders.rs @@ -19,9 +19,9 @@ impl GetVpcLinkFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetVpcLinkFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_vpc_link::GetVpcLink, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe ID of the VPC link.
pub fn vpc_link_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.vpc_link_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/get_vpc_links/builders.rs b/sdk/apigatewayv2/src/operation/get_vpc_links/builders.rs index 7437f1d9086a..04762f47e5ad 100644 --- a/sdk/apigatewayv2/src/operation/get_vpc_links/builders.rs +++ b/sdk/apigatewayv2/src/operation/get_vpc_links/builders.rs @@ -19,9 +19,9 @@ impl GetVpcLinksFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl GetVpcLinksFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::get_vpc_links::GetVpcLinks, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe maximum number of elements to be returned for this resource.
pub fn max_results(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.max_results(input.into()); diff --git a/sdk/apigatewayv2/src/operation/import_api/builders.rs b/sdk/apigatewayv2/src/operation/import_api/builders.rs index 4cd59876773a..be8aff25d918 100644 --- a/sdk/apigatewayv2/src/operation/import_api/builders.rs +++ b/sdk/apigatewayv2/src/operation/import_api/builders.rs @@ -19,9 +19,9 @@ impl ImportApiFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl ImportApiFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::import_api::ImportApi, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorSpecifies how to interpret the base path of the API during import. Valid values are ignore, prepend, and split. The default value is ignore. To learn more, see Set the OpenAPI basePath Property. Supported only for HTTP APIs.
pub fn basepath(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.basepath(input.into()); diff --git a/sdk/apigatewayv2/src/operation/reimport_api/builders.rs b/sdk/apigatewayv2/src/operation/reimport_api/builders.rs index adc1f9ca54a5..fd83af48338b 100644 --- a/sdk/apigatewayv2/src/operation/reimport_api/builders.rs +++ b/sdk/apigatewayv2/src/operation/reimport_api/builders.rs @@ -19,9 +19,9 @@ impl ReimportApiFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl ReimportApiFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::reimport_api::ReimportApi, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/reset_authorizers_cache/builders.rs b/sdk/apigatewayv2/src/operation/reset_authorizers_cache/builders.rs index cfbd2dd6821c..cc522f30dbe7 100644 --- a/sdk/apigatewayv2/src/operation/reset_authorizers_cache/builders.rs +++ b/sdk/apigatewayv2/src/operation/reset_authorizers_cache/builders.rs @@ -19,9 +19,9 @@ impl ResetAuthorizersCacheFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl ResetAuthorizersCacheFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::reset_authorizers_cache::ResetAuthorizersCache, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::reset_authorizers_cache::ResetAuthorizersCacheError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/tag_resource/builders.rs b/sdk/apigatewayv2/src/operation/tag_resource/builders.rs index 2d7e5d6deb86..80bd4e58998c 100644 --- a/sdk/apigatewayv2/src/operation/tag_resource/builders.rs +++ b/sdk/apigatewayv2/src/operation/tag_resource/builders.rs @@ -19,9 +19,9 @@ impl TagResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl TagResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::tag_resource::TagResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe resource ARN for the tag.
pub fn resource_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.resource_arn(input.into()); diff --git a/sdk/apigatewayv2/src/operation/untag_resource/builders.rs b/sdk/apigatewayv2/src/operation/untag_resource/builders.rs index 2bb29444238d..4d0dbe377b38 100644 --- a/sdk/apigatewayv2/src/operation/untag_resource/builders.rs +++ b/sdk/apigatewayv2/src/operation/untag_resource/builders.rs @@ -19,9 +19,9 @@ impl UntagResourceFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UntagResourceFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::untag_resource::UntagResource, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe resource ARN for the tag.
pub fn resource_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.resource_arn(input.into()); diff --git a/sdk/apigatewayv2/src/operation/update_api/builders.rs b/sdk/apigatewayv2/src/operation/update_api/builders.rs index d8e53f83ae5d..d6376df94031 100644 --- a/sdk/apigatewayv2/src/operation/update_api/builders.rs +++ b/sdk/apigatewayv2/src/operation/update_api/builders.rs @@ -19,9 +19,9 @@ impl UpdateApiFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateApiFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_api::UpdateApi, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/update_api_mapping/builders.rs b/sdk/apigatewayv2/src/operation/update_api_mapping/builders.rs index 4894947798c8..1e46ba4fb6f5 100644 --- a/sdk/apigatewayv2/src/operation/update_api_mapping/builders.rs +++ b/sdk/apigatewayv2/src/operation/update_api_mapping/builders.rs @@ -19,9 +19,9 @@ impl UpdateApiMappingFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateApiMappingFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_api_mapping::UpdateApiMapping, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_api_mapping::UpdateApiMappingError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/update_authorizer/builders.rs b/sdk/apigatewayv2/src/operation/update_authorizer/builders.rs index d5e20662408c..431db36aa0c0 100644 --- a/sdk/apigatewayv2/src/operation/update_authorizer/builders.rs +++ b/sdk/apigatewayv2/src/operation/update_authorizer/builders.rs @@ -19,9 +19,9 @@ impl UpdateAuthorizerFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateAuthorizerFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_authorizer::UpdateAuthorizer, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_authorizer::UpdateAuthorizerError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/update_deployment/builders.rs b/sdk/apigatewayv2/src/operation/update_deployment/builders.rs index 732715f32150..a8e66a5930b1 100644 --- a/sdk/apigatewayv2/src/operation/update_deployment/builders.rs +++ b/sdk/apigatewayv2/src/operation/update_deployment/builders.rs @@ -19,9 +19,9 @@ impl UpdateDeploymentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateDeploymentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_deployment::UpdateDeployment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_deployment::UpdateDeploymentError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/update_domain_name/builders.rs b/sdk/apigatewayv2/src/operation/update_domain_name/builders.rs index 6894374ab578..f2b2cf1a2c62 100644 --- a/sdk/apigatewayv2/src/operation/update_domain_name/builders.rs +++ b/sdk/apigatewayv2/src/operation/update_domain_name/builders.rs @@ -19,9 +19,9 @@ impl UpdateDomainNameFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateDomainNameFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_domain_name::UpdateDomainName, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_domain_name::UpdateDomainNameError, + >, + > { + self.customize_middleware().await + } ///The domain name.
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.domain_name(input.into()); diff --git a/sdk/apigatewayv2/src/operation/update_integration/builders.rs b/sdk/apigatewayv2/src/operation/update_integration/builders.rs index 1293e8353aca..81a68355f3d5 100644 --- a/sdk/apigatewayv2/src/operation/update_integration/builders.rs +++ b/sdk/apigatewayv2/src/operation/update_integration/builders.rs @@ -19,9 +19,9 @@ impl UpdateIntegrationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateIntegrationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_integration::UpdateIntegration, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_integration::UpdateIntegrationError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/update_integration_response/builders.rs b/sdk/apigatewayv2/src/operation/update_integration_response/builders.rs index 9735ef720342..028bc2617f7d 100644 --- a/sdk/apigatewayv2/src/operation/update_integration_response/builders.rs +++ b/sdk/apigatewayv2/src/operation/update_integration_response/builders.rs @@ -19,9 +19,9 @@ impl UpdateIntegrationResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateIntegrationResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_integration_response::UpdateIntegrationResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_integration_response::UpdateIntegrationResponseError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/update_model/builders.rs b/sdk/apigatewayv2/src/operation/update_model/builders.rs index 4793d202174d..36d4c9a02dc7 100644 --- a/sdk/apigatewayv2/src/operation/update_model/builders.rs +++ b/sdk/apigatewayv2/src/operation/update_model/builders.rs @@ -19,9 +19,9 @@ impl UpdateModelFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateModelFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_model::UpdateModel, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/update_route/builders.rs b/sdk/apigatewayv2/src/operation/update_route/builders.rs index da56a0ee1a0c..f11acca2fc3e 100644 --- a/sdk/apigatewayv2/src/operation/update_route/builders.rs +++ b/sdk/apigatewayv2/src/operation/update_route/builders.rs @@ -19,9 +19,9 @@ impl UpdateRouteFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateRouteFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_route::UpdateRoute, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/update_route_response/builders.rs b/sdk/apigatewayv2/src/operation/update_route_response/builders.rs index a61df6aa8ccc..cbc7ebcf2421 100644 --- a/sdk/apigatewayv2/src/operation/update_route_response/builders.rs +++ b/sdk/apigatewayv2/src/operation/update_route_response/builders.rs @@ -19,9 +19,9 @@ impl UpdateRouteResponseFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl UpdateRouteResponseFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_route_response::UpdateRouteResponse, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::update_route_response::UpdateRouteResponseError, + >, + > { + self.customize_middleware().await + } ///The API identifier.
pub fn api_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.api_id(input.into()); diff --git a/sdk/apigatewayv2/src/operation/update_stage/builders.rs b/sdk/apigatewayv2/src/operation/update_stage/builders.rs index 7f34db72e2cb..6ac24744b9ca 100644 --- a/sdk/apigatewayv2/src/operation/update_stage/builders.rs +++ b/sdk/apigatewayv2/src/operation/update_stage/builders.rs @@ -19,9 +19,9 @@ impl UpdateStageFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateStageFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_stage::UpdateStage, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorSettings for logging access in this stage.
pub fn access_log_settings(mut self, input: crate::types::AccessLogSettings) -> Self { self.inner = self.inner.access_log_settings(input); diff --git a/sdk/apigatewayv2/src/operation/update_vpc_link/builders.rs b/sdk/apigatewayv2/src/operation/update_vpc_link/builders.rs index c9e695b7ddb0..65358c34fb1f 100644 --- a/sdk/apigatewayv2/src/operation/update_vpc_link/builders.rs +++ b/sdk/apigatewayv2/src/operation/update_vpc_link/builders.rs @@ -19,9 +19,9 @@ impl UpdateVpcLinkFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -77,6 +77,20 @@ impl UpdateVpcLinkFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::update_vpc_link::UpdateVpcLink, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkErrorThe name of the VPC link.
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.name(input.into()); diff --git a/sdk/appconfig/src/operation/create_application/builders.rs b/sdk/appconfig/src/operation/create_application/builders.rs index b9027432920b..a71959f8075b 100644 --- a/sdk/appconfig/src/operation/create_application/builders.rs +++ b/sdk/appconfig/src/operation/create_application/builders.rs @@ -19,9 +19,9 @@ impl CreateApplicationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateApplicationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_application::CreateApplication, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_application::CreateApplicationError, + >, + > { + self.customize_middleware().await + } ///A name for the application.
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.name(input.into()); diff --git a/sdk/appconfig/src/operation/create_configuration_profile/builders.rs b/sdk/appconfig/src/operation/create_configuration_profile/builders.rs index 2af8d0cb2353..a435c3833055 100644 --- a/sdk/appconfig/src/operation/create_configuration_profile/builders.rs +++ b/sdk/appconfig/src/operation/create_configuration_profile/builders.rs @@ -34,9 +34,9 @@ impl CreateConfigurationProfileFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -98,6 +98,22 @@ impl CreateConfigurationProfileFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_configuration_profile::CreateConfigurationProfile, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_configuration_profile::CreateConfigurationProfileError, + >, + > { + self.customize_middleware().await + } ///The application ID.
pub fn application_id( mut self, diff --git a/sdk/appconfig/src/operation/create_deployment_strategy/builders.rs b/sdk/appconfig/src/operation/create_deployment_strategy/builders.rs index 6fae39ea82b2..3d8b32880e18 100644 --- a/sdk/appconfig/src/operation/create_deployment_strategy/builders.rs +++ b/sdk/appconfig/src/operation/create_deployment_strategy/builders.rs @@ -19,9 +19,9 @@ impl CreateDeploymentStrategyFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateDeploymentStrategyFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_deployment_strategy::CreateDeploymentStrategy, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_deployment_strategy::CreateDeploymentStrategyError, + >, + > { + self.customize_middleware().await + } ///A name for the deployment strategy.
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.name(input.into()); diff --git a/sdk/appconfig/src/operation/create_environment/builders.rs b/sdk/appconfig/src/operation/create_environment/builders.rs index 8b1adbeac337..2a123abdc110 100644 --- a/sdk/appconfig/src/operation/create_environment/builders.rs +++ b/sdk/appconfig/src/operation/create_environment/builders.rs @@ -19,9 +19,9 @@ impl CreateEnvironmentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateEnvironmentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_environment::CreateEnvironment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_environment::CreateEnvironmentError, + >, + > { + self.customize_middleware().await + } ///The application ID.
pub fn application_id( mut self, diff --git a/sdk/appconfig/src/operation/create_extension/builders.rs b/sdk/appconfig/src/operation/create_extension/builders.rs index aad58e0a156f..1b2dcfcfb56b 100644 --- a/sdk/appconfig/src/operation/create_extension/builders.rs +++ b/sdk/appconfig/src/operation/create_extension/builders.rs @@ -20,9 +20,9 @@ impl CreateExtensionFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -84,6 +84,22 @@ impl CreateExtensionFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_extension::CreateExtension, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_extension::CreateExtensionError, + >, + > { + self.customize_middleware().await + } ///A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { self.inner = self.inner.name(input.into()); diff --git a/sdk/appconfig/src/operation/create_extension_association/builders.rs b/sdk/appconfig/src/operation/create_extension_association/builders.rs index fd047a08d0ca..5b976b47c1ab 100644 --- a/sdk/appconfig/src/operation/create_extension_association/builders.rs +++ b/sdk/appconfig/src/operation/create_extension_association/builders.rs @@ -19,9 +19,9 @@ impl CreateExtensionAssociationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl CreateExtensionAssociationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::create_extension_association::CreateExtensionAssociation, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::create_extension_association::CreateExtensionAssociationError, + >, + > { + self.customize_middleware().await + } ///The name, the ID, or the Amazon Resource Name (ARN) of the extension.
pub fn extension_identifier( mut self, diff --git a/sdk/appconfig/src/operation/create_hosted_configuration_version/builders.rs b/sdk/appconfig/src/operation/create_hosted_configuration_version/builders.rs index d565c21dad06..c3a2b502e73a 100644 --- a/sdk/appconfig/src/operation/create_hosted_configuration_version/builders.rs +++ b/sdk/appconfig/src/operation/create_hosted_configuration_version/builders.rs @@ -19,9 +19,9 @@ impl CreateHostedConfigurationVersionFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize(self) -> ::std::result::Result< + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware(self) -> ::std::result::Result< crate::client::customize::CustomizableOperationThe application ID.
pub fn application_id( mut self, diff --git a/sdk/appconfig/src/operation/delete_application/builders.rs b/sdk/appconfig/src/operation/delete_application/builders.rs index 302790452466..ba595edf1b87 100644 --- a/sdk/appconfig/src/operation/delete_application/builders.rs +++ b/sdk/appconfig/src/operation/delete_application/builders.rs @@ -19,9 +19,9 @@ impl DeleteApplicationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteApplicationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_application::DeleteApplication, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_application::DeleteApplicationError, + >, + > { + self.customize_middleware().await + } ///The ID of the application to delete.
pub fn application_id( mut self, diff --git a/sdk/appconfig/src/operation/delete_configuration_profile/builders.rs b/sdk/appconfig/src/operation/delete_configuration_profile/builders.rs index 74480f4875bc..6b0b8e9e0878 100644 --- a/sdk/appconfig/src/operation/delete_configuration_profile/builders.rs +++ b/sdk/appconfig/src/operation/delete_configuration_profile/builders.rs @@ -19,9 +19,9 @@ impl DeleteConfigurationProfileFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteConfigurationProfileFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_configuration_profile::DeleteConfigurationProfile, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_configuration_profile::DeleteConfigurationProfileError, + >, + > { + self.customize_middleware().await + } ///The application ID that includes the configuration profile you want to delete.
pub fn application_id( mut self, diff --git a/sdk/appconfig/src/operation/delete_deployment_strategy/builders.rs b/sdk/appconfig/src/operation/delete_deployment_strategy/builders.rs index 34931281bb6e..303df948979f 100644 --- a/sdk/appconfig/src/operation/delete_deployment_strategy/builders.rs +++ b/sdk/appconfig/src/operation/delete_deployment_strategy/builders.rs @@ -19,9 +19,9 @@ impl DeleteDeploymentStrategyFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteDeploymentStrategyFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_deployment_strategy::DeleteDeploymentStrategy, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_deployment_strategy::DeleteDeploymentStrategyError, + >, + > { + self.customize_middleware().await + } ///The ID of the deployment strategy you want to delete.
pub fn deployment_strategy_id( mut self, diff --git a/sdk/appconfig/src/operation/delete_environment/builders.rs b/sdk/appconfig/src/operation/delete_environment/builders.rs index 0dd97cb68e54..641567d55dc5 100644 --- a/sdk/appconfig/src/operation/delete_environment/builders.rs +++ b/sdk/appconfig/src/operation/delete_environment/builders.rs @@ -19,9 +19,9 @@ impl DeleteEnvironmentFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteEnvironmentFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_environment::DeleteEnvironment, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_environment::DeleteEnvironmentError, + >, + > { + self.customize_middleware().await + } ///The application ID that includes the environment that you want to delete.
pub fn application_id( mut self, diff --git a/sdk/appconfig/src/operation/delete_extension/builders.rs b/sdk/appconfig/src/operation/delete_extension/builders.rs index 736b8261a8db..76b905b965b0 100644 --- a/sdk/appconfig/src/operation/delete_extension/builders.rs +++ b/sdk/appconfig/src/operation/delete_extension/builders.rs @@ -19,9 +19,9 @@ impl DeleteExtensionFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteExtensionFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_extension::DeleteExtension, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_extension::DeleteExtensionError, + >, + > { + self.customize_middleware().await + } ///The name, ID, or Amazon Resource Name (ARN) of the extension you want to delete.
pub fn extension_identifier( mut self, diff --git a/sdk/appconfig/src/operation/delete_extension_association/builders.rs b/sdk/appconfig/src/operation/delete_extension_association/builders.rs index 05aebe7fde58..de021ba8fe67 100644 --- a/sdk/appconfig/src/operation/delete_extension_association/builders.rs +++ b/sdk/appconfig/src/operation/delete_extension_association/builders.rs @@ -19,9 +19,9 @@ impl DeleteExtensionAssociationFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize( + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware( self, ) -> ::std::result::Result< crate::client::customize::CustomizableOperation< @@ -83,6 +83,22 @@ impl DeleteExtensionAssociationFluentBuilder { > { self.send_middleware().await } + + /// Consumes this builder, creating a customizable operation that can be modified before being + /// sent. The operation's inner [http::Request] can be modified as well. + pub async fn customize( + self, + ) -> ::std::result::Result< + crate::client::customize::CustomizableOperation< + crate::operation::delete_extension_association::DeleteExtensionAssociation, + ::aws_http::retry::AwsResponseRetryClassifier, + >, + ::aws_smithy_http::result::SdkError< + crate::operation::delete_extension_association::DeleteExtensionAssociationError, + >, + > { + self.customize_middleware().await + } ///The ID of the extension association to delete.
pub fn extension_association_id( mut self, diff --git a/sdk/appconfig/src/operation/delete_hosted_configuration_version/builders.rs b/sdk/appconfig/src/operation/delete_hosted_configuration_version/builders.rs index 9f89d6839273..f8396849a9be 100644 --- a/sdk/appconfig/src/operation/delete_hosted_configuration_version/builders.rs +++ b/sdk/appconfig/src/operation/delete_hosted_configuration_version/builders.rs @@ -19,9 +19,9 @@ impl DeleteHostedConfigurationVersionFluentBuilder { inner: ::std::default::Default::default(), } } - /// Consume this builder, creating a customizable operation that can be modified before being - /// sent. The operation's inner [http::Request] can be modified as well. - pub async fn customize(self) -> ::std::result::Result< + // This function will go away in the near future. Do not rely on it. + #[doc(hidden)] + pub async fn customize_middleware(self) -> ::std::result::Result< crate::client::customize::CustomizableOperation