1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct CreateSubscriptionTarget;
6impl CreateSubscriptionTarget {
7 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::create_subscription_target::CreateSubscriptionTargetInput,
14 ) -> ::std::result::Result<
15 crate::operation::create_subscription_target::CreateSubscriptionTargetOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::create_subscription_target::CreateSubscriptionTargetError,
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 >| {
25 err.map_service_error(|err| {
26 err.downcast::<crate::operation::create_subscription_target::CreateSubscriptionTargetError>()
27 .expect("correct error type")
28 })
29 };
30 let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
31 .await
32 .map_err(map_err)?;
33 let output = context.finalize().map_err(map_err)?;
34 ::std::result::Result::Ok(
35 output
36 .downcast::<crate::operation::create_subscription_target::CreateSubscriptionTargetOutput>()
37 .expect("correct output type"),
38 )
39 }
40
41 pub(crate) async fn orchestrate_with_stop_point(
42 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
43 input: crate::operation::create_subscription_target::CreateSubscriptionTargetInput,
44 stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
45 ) -> ::std::result::Result<
46 ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
47 ::aws_smithy_runtime_api::client::result::SdkError<
48 ::aws_smithy_runtime_api::client::interceptors::context::Error,
49 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
50 >,
51 > {
52 let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
53 use ::tracing::Instrument;
54 ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point("DataZone", "CreateSubscriptionTarget", input, runtime_plugins, stop_point)
55 .instrument(::tracing::debug_span!(
58 "DataZone.CreateSubscriptionTarget",
59 "rpc.service" = "DataZone",
60 "rpc.method" = "CreateSubscriptionTarget",
61 "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
62 "rpc.system" = "aws-api",
63 ))
64 .await
65 }
66
67 pub(crate) fn operation_runtime_plugins(
68 client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
69 client_config: &crate::config::Config,
70 config_override: ::std::option::Option<crate::config::Builder>,
71 ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
72 let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
73 runtime_plugins = runtime_plugins.with_operation_plugin(crate::client_idempotency_token::IdempotencyTokenRuntimePlugin::new(
74 |token_provider, input| {
75 let input: &mut crate::operation::create_subscription_target::CreateSubscriptionTargetInput =
76 input.downcast_mut().expect("correct type");
77 if input.client_token.is_none() {
78 input.client_token = ::std::option::Option::Some(token_provider.make_idempotency_token());
79 }
80 },
81 ));
82 if let ::std::option::Option::Some(config_override) = config_override {
83 for plugin in config_override.runtime_plugins.iter().cloned() {
84 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
85 }
86 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
87 config_override,
88 client_config.config.clone(),
89 &client_config.runtime_components,
90 ));
91 }
92 runtime_plugins
93 }
94}
95impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for CreateSubscriptionTarget {
96 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
97 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("CreateSubscriptionTarget");
98
99 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
100 CreateSubscriptionTargetRequestSerializer,
101 ));
102 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
103 CreateSubscriptionTargetResponseDeserializer,
104 ));
105
106 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
107 crate::config::auth::Params::builder()
108 .operation_name("CreateSubscriptionTarget")
109 .build()
110 .expect("required fields set"),
111 ));
112
113 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
114 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
115 "CreateSubscriptionTarget",
116 "DataZone",
117 ));
118 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
119 signing_options.double_uri_encode = true;
120 signing_options.content_sha256_header = false;
121 signing_options.normalize_uri_path = true;
122 signing_options.payload_override = None;
123
124 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
125 signing_options,
126 ..::std::default::Default::default()
127 });
128
129 ::std::option::Option::Some(cfg.freeze())
130 }
131
132 fn runtime_components(
133 &self,
134 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
135 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
136 #[allow(unused_mut)]
137 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("CreateSubscriptionTarget")
138 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
139 ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
140 ))
141 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
142 CreateSubscriptionTargetEndpointParamsInterceptor,
143 ))
144 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
145 crate::operation::create_subscription_target::CreateSubscriptionTargetError,
146 >::new())
147 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
148 crate::operation::create_subscription_target::CreateSubscriptionTargetError,
149 >::new())
150 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
151 crate::operation::create_subscription_target::CreateSubscriptionTargetError,
152 >::new());
153
154 ::std::borrow::Cow::Owned(rcb)
155 }
156}
157
158#[derive(Debug)]
159struct CreateSubscriptionTargetResponseDeserializer;
160impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for CreateSubscriptionTargetResponseDeserializer {
161 fn deserialize_nonstreaming_with_config(
162 &self,
163 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
164 _cfg: &::aws_smithy_types::config_bag::ConfigBag,
165 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
166 let (success, status) = (response.status().is_success(), response.status().as_u16());
167 let headers = response.headers();
168 let body = response.body().bytes().expect("body loaded");
169 #[allow(unused_mut)]
170 let mut force_error = false;
171 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
172 let parse_result = if !success && status != 200 || force_error {
173 crate::protocol_serde::shape_create_subscription_target::de_create_subscription_target_http_error(status, headers, body)
174 } else {
175 crate::protocol_serde::shape_create_subscription_target::de_create_subscription_target_http_response(status, headers, body)
176 };
177 crate::protocol_serde::type_erase_result(parse_result)
178 }
179}
180#[derive(Debug)]
181struct CreateSubscriptionTargetRequestSerializer;
182impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for CreateSubscriptionTargetRequestSerializer {
183 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
184 fn serialize_input(
185 &self,
186 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
187 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
188 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
189 let input = input
190 .downcast::<crate::operation::create_subscription_target::CreateSubscriptionTargetInput>()
191 .expect("correct type");
192 let _header_serialization_settings = _cfg
193 .load::<crate::serialization_settings::HeaderSerializationSettings>()
194 .cloned()
195 .unwrap_or_default();
196 let mut request_builder = {
197 #[allow(clippy::uninlined_format_args)]
198 fn uri_base(
199 _input: &crate::operation::create_subscription_target::CreateSubscriptionTargetInput,
200 output: &mut ::std::string::String,
201 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
202 use ::std::fmt::Write as _;
203 let input_1 = &_input.domain_identifier;
204 let input_1 = input_1.as_ref().ok_or_else(|| {
205 ::aws_smithy_types::error::operation::BuildError::missing_field("domain_identifier", "cannot be empty or unset")
206 })?;
207 let domain_identifier = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
208 if domain_identifier.is_empty() {
209 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
210 "domain_identifier",
211 "cannot be empty or unset",
212 ));
213 }
214 let input_2 = &_input.environment_identifier;
215 let input_2 = input_2.as_ref().ok_or_else(|| {
216 ::aws_smithy_types::error::operation::BuildError::missing_field("environment_identifier", "cannot be empty or unset")
217 })?;
218 let environment_identifier = ::aws_smithy_http::label::fmt_string(input_2, ::aws_smithy_http::label::EncodingStrategy::Default);
219 if environment_identifier.is_empty() {
220 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
221 "environment_identifier",
222 "cannot be empty or unset",
223 ));
224 }
225 ::std::write!(
226 output,
227 "/v2/domains/{domainIdentifier}/environments/{environmentIdentifier}/subscription-targets",
228 domainIdentifier = domain_identifier,
229 environmentIdentifier = environment_identifier
230 )
231 .expect("formatting should succeed");
232 ::std::result::Result::Ok(())
233 }
234 #[allow(clippy::unnecessary_wraps)]
235 fn update_http_builder(
236 input: &crate::operation::create_subscription_target::CreateSubscriptionTargetInput,
237 builder: ::http_1x::request::Builder,
238 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
239 let mut uri = ::std::string::String::new();
240 uri_base(input, &mut uri)?;
241 ::std::result::Result::Ok(builder.method("POST").uri(uri))
242 }
243 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
244 builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/json");
245 builder
246 };
247 let body = ::aws_smithy_types::body::SdkBody::from(
248 crate::protocol_serde::shape_create_subscription_target::ser_create_subscription_target_input(&input)?,
249 );
250 if let Some(content_length) = body.content_length() {
251 let content_length = content_length.to_string();
252 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
253 }
254 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
255 }
256}
257#[derive(Debug)]
258struct CreateSubscriptionTargetEndpointParamsInterceptor;
259
260#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
261impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateSubscriptionTargetEndpointParamsInterceptor {
262 fn name(&self) -> &'static str {
263 "CreateSubscriptionTargetEndpointParamsInterceptor"
264 }
265
266 fn read_before_execution(
267 &self,
268 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
269 '_,
270 ::aws_smithy_runtime_api::client::interceptors::context::Input,
271 ::aws_smithy_runtime_api::client::interceptors::context::Output,
272 ::aws_smithy_runtime_api::client::interceptors::context::Error,
273 >,
274 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
275 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
276 let _input = context
277 .input()
278 .downcast_ref::<CreateSubscriptionTargetInput>()
279 .ok_or("failed to downcast to CreateSubscriptionTargetInput")?;
280
281 let params = crate::config::endpoint::Params::builder()
282 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
283 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
284 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
285 .build()
286 .map_err(|err| {
287 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
288 })?;
289 cfg.interceptor_state()
290 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
291 ::std::result::Result::Ok(())
292 }
293}
294
295#[non_exhaustive]
300#[derive(::std::fmt::Debug)]
301pub enum CreateSubscriptionTargetError {
302 AccessDeniedException(crate::types::error::AccessDeniedException),
304 ConflictException(crate::types::error::ConflictException),
306 InternalServerException(crate::types::error::InternalServerException),
308 ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
310 ThrottlingException(crate::types::error::ThrottlingException),
312 ValidationException(crate::types::error::ValidationException),
314 UnauthorizedException(crate::types::error::UnauthorizedException),
316 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
318 variable wildcard pattern and check `.code()`:
319 \
320 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
321 \
322 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-CreateSubscriptionTargetError) for what information is available for the error.")]
323 Unhandled(crate::error::sealed_unhandled::Unhandled),
324}
325impl CreateSubscriptionTargetError {
326 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 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 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
348 match self {
349 Self::AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
350 Self::ConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
351 Self::InternalServerException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
352 Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
353 Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
354 Self::ValidationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
355 Self::UnauthorizedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
356 Self::Unhandled(e) => &e.meta,
357 }
358 }
359 pub fn is_access_denied_exception(&self) -> bool {
361 matches!(self, Self::AccessDeniedException(_))
362 }
363 pub fn is_conflict_exception(&self) -> bool {
365 matches!(self, Self::ConflictException(_))
366 }
367 pub fn is_internal_server_exception(&self) -> bool {
369 matches!(self, Self::InternalServerException(_))
370 }
371 pub fn is_resource_not_found_exception(&self) -> bool {
373 matches!(self, Self::ResourceNotFoundException(_))
374 }
375 pub fn is_throttling_exception(&self) -> bool {
377 matches!(self, Self::ThrottlingException(_))
378 }
379 pub fn is_validation_exception(&self) -> bool {
381 matches!(self, Self::ValidationException(_))
382 }
383 pub fn is_unauthorized_exception(&self) -> bool {
385 matches!(self, Self::UnauthorizedException(_))
386 }
387}
388impl ::std::error::Error for CreateSubscriptionTargetError {
389 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
390 match self {
391 Self::AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
392 Self::ConflictException(_inner) => ::std::option::Option::Some(_inner),
393 Self::InternalServerException(_inner) => ::std::option::Option::Some(_inner),
394 Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
395 Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
396 Self::ValidationException(_inner) => ::std::option::Option::Some(_inner),
397 Self::UnauthorizedException(_inner) => ::std::option::Option::Some(_inner),
398 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
399 }
400 }
401}
402impl ::std::fmt::Display for CreateSubscriptionTargetError {
403 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
404 match self {
405 Self::AccessDeniedException(_inner) => _inner.fmt(f),
406 Self::ConflictException(_inner) => _inner.fmt(f),
407 Self::InternalServerException(_inner) => _inner.fmt(f),
408 Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
409 Self::ThrottlingException(_inner) => _inner.fmt(f),
410 Self::ValidationException(_inner) => _inner.fmt(f),
411 Self::UnauthorizedException(_inner) => _inner.fmt(f),
412 Self::Unhandled(_inner) => {
413 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
414 write!(f, "unhandled error ({code})")
415 } else {
416 f.write_str("unhandled error")
417 }
418 }
419 }
420 }
421}
422impl ::aws_smithy_types::retry::ProvideErrorKind for CreateSubscriptionTargetError {
423 fn code(&self) -> ::std::option::Option<&str> {
424 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
425 }
426 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
427 match self {
428 Self::InternalServerException(inner) => ::std::option::Option::Some(inner.retryable_error_kind()),
429 Self::ThrottlingException(inner) => ::std::option::Option::Some(inner.retryable_error_kind()),
430 _ => ::std::option::Option::None,
431 }
432 }
433}
434impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for CreateSubscriptionTargetError {
435 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
436 match self {
437 Self::AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
438 Self::ConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
439 Self::InternalServerException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
440 Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
441 Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
442 Self::ValidationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
443 Self::UnauthorizedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
444 Self::Unhandled(_inner) => &_inner.meta,
445 }
446 }
447}
448impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateSubscriptionTargetError {
449 fn create_unhandled_error(
450 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
451 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
452 ) -> Self {
453 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
454 source,
455 meta: meta.unwrap_or_default(),
456 })
457 }
458}
459impl ::aws_types::request_id::RequestId for crate::operation::create_subscription_target::CreateSubscriptionTargetError {
460 fn request_id(&self) -> Option<&str> {
461 self.meta().request_id()
462 }
463}
464
465pub use crate::operation::create_subscription_target::_create_subscription_target_input::CreateSubscriptionTargetInput;
466
467pub use crate::operation::create_subscription_target::_create_subscription_target_output::CreateSubscriptionTargetOutput;
468
469mod _create_subscription_target_input;
470
471mod _create_subscription_target_output;
472
473pub mod builders;