Skip to main content

aws_sdk_resourcegroups/operation/
tag.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `Tag`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct Tag;
6impl Tag {
7    /// Creates a new `Tag`
8    pub fn new() -> Self {
9        Self
10    }
11    pub(crate) async fn orchestrate(
12        runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
13        input: crate::operation::tag::TagInput,
14    ) -> ::std::result::Result<
15        crate::operation::tag::TagOutput,
16        ::aws_smithy_runtime_api::client::result::SdkError<
17            crate::operation::tag::TagError,
18            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
19        >,
20    > {
21        let map_err = |err: ::aws_smithy_runtime_api::client::result::SdkError<
22            ::aws_smithy_runtime_api::client::interceptors::context::Error,
23            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
24        >| { err.map_service_error(|err| err.downcast::<crate::operation::tag::TagError>().expect("correct error type")) };
25        let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
26            .await
27            .map_err(map_err)?;
28        let output = context.finalize().map_err(map_err)?;
29        ::std::result::Result::Ok(output.downcast::<crate::operation::tag::TagOutput>().expect("correct output type"))
30    }
31
32    pub(crate) async fn orchestrate_with_stop_point(
33        runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
34        input: crate::operation::tag::TagInput,
35        stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
36    ) -> ::std::result::Result<
37        ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
38        ::aws_smithy_runtime_api::client::result::SdkError<
39            ::aws_smithy_runtime_api::client::interceptors::context::Error,
40            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
41        >,
42    > {
43        let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
44        use ::tracing::Instrument;
45        ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point("Resource Groups", "Tag", input, runtime_plugins, stop_point)
46            // Create a parent span for the entire operation. Includes a random, internal-only,
47            // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
48            .instrument(::tracing::debug_span!(
49                "Resource Groups.Tag",
50                "rpc.service" = "Resource Groups",
51                "rpc.method" = "Tag",
52                "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
53                "rpc.system" = "aws-api",
54            ))
55            .await
56    }
57
58    pub(crate) fn operation_runtime_plugins(
59        client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
60        client_config: &crate::config::Config,
61        config_override: ::std::option::Option<crate::config::Builder>,
62    ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
63        let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
64
65        if let ::std::option::Option::Some(config_override) = config_override {
66            for plugin in config_override.runtime_plugins.iter().cloned() {
67                runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
68            }
69            runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
70                config_override,
71                client_config.config.clone(),
72                &client_config.runtime_components,
73            ));
74        }
75        runtime_plugins
76    }
77}
78impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for Tag {
79    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
80        let mut cfg = ::aws_smithy_types::config_bag::Layer::new("Tag");
81
82        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
83            TagRequestSerializer,
84        ));
85        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
86            TagResponseDeserializer,
87        ));
88
89        cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
90            crate::config::auth::Params::builder()
91                .operation_name("Tag")
92                .build()
93                .expect("required fields set"),
94        ));
95
96        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new("Tag", "Resource Groups"));
97        let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
98        signing_options.double_uri_encode = true;
99        signing_options.content_sha256_header = false;
100        signing_options.normalize_uri_path = true;
101        signing_options.payload_override = None;
102
103        cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
104            signing_options,
105            ..::std::default::Default::default()
106        });
107
108        ::std::option::Option::Some(cfg.freeze())
109    }
110
111    fn runtime_components(
112        &self,
113        _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
114    ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
115        #[allow(unused_mut)]
116        let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("Tag")
117            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
118                TagTelemetryInputCaptureInterceptor,
119            ))
120            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
121                ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
122            ))
123            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
124                TagEndpointParamsInterceptor,
125            ))
126            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
127                crate::operation::tag::TagError,
128            >::new())
129            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
130                crate::operation::tag::TagError,
131            >::new())
132            .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
133                crate::operation::tag::TagError,
134            >::new());
135
136        ::std::borrow::Cow::Owned(rcb)
137    }
138}
139
140#[derive(Debug)]
141struct TagTelemetryInputCaptureInterceptor;
142
143#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
144impl ::aws_smithy_runtime_api::client::interceptors::Intercept for TagTelemetryInputCaptureInterceptor {
145    fn name(&self) -> &'static str {
146        "TagTelemetryInputCaptureInterceptor"
147    }
148
149    fn read_before_execution(
150        &self,
151        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
152            '_,
153            ::aws_smithy_runtime_api::client::interceptors::context::Input,
154            ::aws_smithy_runtime_api::client::interceptors::context::Output,
155            ::aws_smithy_runtime_api::client::interceptors::context::Error,
156        >,
157        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
158    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
159        // Nothing to do unless the customer opted in by naming members to record.
160        let ::std::option::Option::Some(requested) = cfg
161            .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
162            .filter(|r| !r.is_empty())
163        else {
164            return ::std::result::Result::Ok(());
165        };
166
167        let ::std::option::Option::Some(input) = context.input().downcast_ref::<TagInput>() else {
168            // A mismatched input is not this interceptor's concern; skip quietly.
169            return ::std::result::Result::Ok(());
170        };
171
172        let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
173        if requested.should_capture("Arn") {
174            if let ::std::option::Option::Some(value) = input.arn.as_deref() {
175                captured.insert("Arn", value);
176            }
177        }
178
179        cfg.interceptor_state().store_put(captured);
180        ::std::result::Result::Ok(())
181    }
182}
183#[derive(Debug)]
184struct TagResponseDeserializer;
185impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for TagResponseDeserializer {
186    fn deserialize_nonstreaming_with_config(
187        &self,
188        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
189        _cfg: &::aws_smithy_types::config_bag::ConfigBag,
190    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
191        let (success, status) = (response.status().is_success(), response.status().as_u16());
192        let headers = response.headers();
193        let body = response.body().bytes().expect("body loaded");
194        #[allow(unused_mut)]
195        let mut force_error = false;
196        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
197        let parse_result = if !success && status != 200 || force_error {
198            crate::protocol_serde::shape_tag::de_tag_http_error(status, headers, body)
199        } else {
200            crate::protocol_serde::shape_tag::de_tag_http_response(status, headers, body)
201        };
202        crate::protocol_serde::type_erase_result(parse_result)
203    }
204}
205#[derive(Debug)]
206struct TagRequestSerializer;
207impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for TagRequestSerializer {
208    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
209    fn serialize_input(
210        &self,
211        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
212        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
213    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
214        let input = input.downcast::<crate::operation::tag::TagInput>().expect("correct type");
215        let _header_serialization_settings = _cfg
216            .load::<crate::serialization_settings::HeaderSerializationSettings>()
217            .cloned()
218            .unwrap_or_default();
219        let mut request_builder = {
220            #[allow(clippy::uninlined_format_args)]
221            fn uri_base(
222                _input: &crate::operation::tag::TagInput,
223                output: &mut ::std::string::String,
224            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
225                use ::std::fmt::Write as _;
226                let input_1 = &_input.arn;
227                let input_1 = input_1
228                    .as_ref()
229                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("arn", "cannot be empty or unset"))?;
230                let arn = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
231                if arn.is_empty() {
232                    return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
233                        "arn",
234                        "cannot be empty or unset",
235                    ));
236                }
237                ::std::write!(output, "/resources/{Arn}/tags", Arn = arn).expect("formatting should succeed");
238                ::std::result::Result::Ok(())
239            }
240            #[allow(clippy::unnecessary_wraps)]
241            fn update_http_builder(
242                input: &crate::operation::tag::TagInput,
243                builder: ::http_1x::request::Builder,
244            ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
245                let mut uri = ::std::string::String::new();
246                uri_base(input, &mut uri)?;
247                ::std::result::Result::Ok(builder.method("PUT").uri(uri))
248            }
249            let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
250            builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/json");
251            builder
252        };
253        let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_tag::ser_tag_input(&input)?);
254        if let Some(content_length) = body.content_length() {
255            let content_length = content_length.to_string();
256            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
257        }
258        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
259    }
260}
261#[derive(Debug)]
262struct TagEndpointParamsInterceptor;
263
264#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
265impl ::aws_smithy_runtime_api::client::interceptors::Intercept for TagEndpointParamsInterceptor {
266    fn name(&self) -> &'static str {
267        "TagEndpointParamsInterceptor"
268    }
269
270    fn read_before_execution(
271        &self,
272        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
273            '_,
274            ::aws_smithy_runtime_api::client::interceptors::context::Input,
275            ::aws_smithy_runtime_api::client::interceptors::context::Output,
276            ::aws_smithy_runtime_api::client::interceptors::context::Error,
277        >,
278        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
279    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
280        let _input = context.input().downcast_ref::<TagInput>().ok_or("failed to downcast to TagInput")?;
281
282        let params = crate::config::endpoint::Params::builder()
283            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
284            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
285            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
286            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
287            .build()
288            .map_err(|err| {
289                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
290            })?;
291        cfg.interceptor_state()
292            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
293        ::std::result::Result::Ok(())
294    }
295}
296
297// The get_* functions below are generated from JMESPath expressions in the
298// operationContextParams trait. They target the operation's input shape.
299
300/// Error type for the `TagError` operation.
301#[non_exhaustive]
302#[derive(::std::fmt::Debug)]
303pub enum TagError {
304    /// <p>The request includes one or more parameters that violate validation rules.</p>
305    BadRequestException(crate::types::error::BadRequestException),
306    /// <p>The caller isn't authorized to make the request. Check permissions.</p>
307    ForbiddenException(crate::types::error::ForbiddenException),
308    /// <p>An internal error occurred while processing the request. Try again later.</p>
309    InternalServerErrorException(crate::types::error::InternalServerErrorException),
310    /// <p>The request uses an HTTP method that isn't allowed for the specified resource.</p>
311    MethodNotAllowedException(crate::types::error::MethodNotAllowedException),
312    /// <p>One or more of the specified resources don't exist.</p>
313    NotFoundException(crate::types::error::NotFoundException),
314    /// <p>You've exceeded throttling limits by making too many requests in a period of time.</p>
315    TooManyRequestsException(crate::types::error::TooManyRequestsException),
316    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
317    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
318    variable wildcard pattern and check `.code()`:
319     \
320    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
321     \
322    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-TagError) for what information is available for the error.")]
323    Unhandled(crate::error::sealed_unhandled::Unhandled),
324}
325impl TagError {
326    /// Creates the `TagError::Unhandled` variant from any error type.
327    pub fn unhandled(
328        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
329    ) -> Self {
330        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
331            source: err.into(),
332            meta: ::std::default::Default::default(),
333        })
334    }
335
336    /// Creates the `TagError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
337    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
338        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
339            source: err.clone().into(),
340            meta: err,
341        })
342    }
343    ///
344    /// Returns error metadata, which includes the error code, message,
345    /// request ID, and potentially additional information.
346    ///
347    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
348        match self {
349            Self::BadRequestException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
350            Self::ForbiddenException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
351            Self::InternalServerErrorException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
352            Self::MethodNotAllowedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
353            Self::NotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
354            Self::TooManyRequestsException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
355            Self::Unhandled(e) => &e.meta,
356        }
357    }
358    /// Returns `true` if the error kind is `TagError::BadRequestException`.
359    pub fn is_bad_request_exception(&self) -> bool {
360        matches!(self, Self::BadRequestException(_))
361    }
362    /// Returns `true` if the error kind is `TagError::ForbiddenException`.
363    pub fn is_forbidden_exception(&self) -> bool {
364        matches!(self, Self::ForbiddenException(_))
365    }
366    /// Returns `true` if the error kind is `TagError::InternalServerErrorException`.
367    pub fn is_internal_server_error_exception(&self) -> bool {
368        matches!(self, Self::InternalServerErrorException(_))
369    }
370    /// Returns `true` if the error kind is `TagError::MethodNotAllowedException`.
371    pub fn is_method_not_allowed_exception(&self) -> bool {
372        matches!(self, Self::MethodNotAllowedException(_))
373    }
374    /// Returns `true` if the error kind is `TagError::NotFoundException`.
375    pub fn is_not_found_exception(&self) -> bool {
376        matches!(self, Self::NotFoundException(_))
377    }
378    /// Returns `true` if the error kind is `TagError::TooManyRequestsException`.
379    pub fn is_too_many_requests_exception(&self) -> bool {
380        matches!(self, Self::TooManyRequestsException(_))
381    }
382}
383impl ::std::error::Error for TagError {
384    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
385        match self {
386            Self::BadRequestException(_inner) => ::std::option::Option::Some(_inner),
387            Self::ForbiddenException(_inner) => ::std::option::Option::Some(_inner),
388            Self::InternalServerErrorException(_inner) => ::std::option::Option::Some(_inner),
389            Self::MethodNotAllowedException(_inner) => ::std::option::Option::Some(_inner),
390            Self::NotFoundException(_inner) => ::std::option::Option::Some(_inner),
391            Self::TooManyRequestsException(_inner) => ::std::option::Option::Some(_inner),
392            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
393        }
394    }
395}
396impl ::std::fmt::Display for TagError {
397    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
398        match self {
399            Self::BadRequestException(_inner) => _inner.fmt(f),
400            Self::ForbiddenException(_inner) => _inner.fmt(f),
401            Self::InternalServerErrorException(_inner) => _inner.fmt(f),
402            Self::MethodNotAllowedException(_inner) => _inner.fmt(f),
403            Self::NotFoundException(_inner) => _inner.fmt(f),
404            Self::TooManyRequestsException(_inner) => _inner.fmt(f),
405            Self::Unhandled(_inner) => {
406                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
407                    write!(f, "unhandled error ({code})")
408                } else {
409                    f.write_str("unhandled error")
410                }
411            }
412        }
413    }
414}
415impl ::aws_smithy_types::retry::ProvideErrorKind for TagError {
416    fn code(&self) -> ::std::option::Option<&str> {
417        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
418    }
419    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
420        ::std::option::Option::None
421    }
422}
423impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for TagError {
424    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
425        match self {
426            Self::BadRequestException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
427            Self::ForbiddenException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
428            Self::InternalServerErrorException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
429            Self::MethodNotAllowedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
430            Self::NotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
431            Self::TooManyRequestsException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
432            Self::Unhandled(_inner) => &_inner.meta,
433        }
434    }
435}
436impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for TagError {
437    fn create_unhandled_error(
438        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
439        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
440    ) -> Self {
441        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
442            source,
443            meta: meta.unwrap_or_default(),
444        })
445    }
446}
447impl ::aws_types::request_id::RequestId for crate::operation::tag::TagError {
448    fn request_id(&self) -> Option<&str> {
449        self.meta().request_id()
450    }
451}
452
453pub use crate::operation::tag::_tag_input::TagInput;
454
455pub use crate::operation::tag::_tag_output::TagOutput;
456
457mod _tag_input;
458
459mod _tag_output;
460
461/// Builders
462pub mod builders;