aws_sdk_amplify/operation/get_webhook/
_get_webhook_output.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3/// <p>The result structure for the get webhook request.</p>
4#[non_exhaustive]
5#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
6pub struct GetWebhookOutput {
7    /// <p>Describes the structure of a webhook.</p>
8    pub webhook: ::std::option::Option<crate::types::Webhook>,
9    _request_id: Option<String>,
10}
11impl GetWebhookOutput {
12    /// <p>Describes the structure of a webhook.</p>
13    pub fn webhook(&self) -> ::std::option::Option<&crate::types::Webhook> {
14        self.webhook.as_ref()
15    }
16}
17impl ::aws_types::request_id::RequestId for GetWebhookOutput {
18    fn request_id(&self) -> Option<&str> {
19        self._request_id.as_deref()
20    }
21}
22impl GetWebhookOutput {
23    /// Creates a new builder-style object to manufacture [`GetWebhookOutput`](crate::operation::get_webhook::GetWebhookOutput).
24    pub fn builder() -> crate::operation::get_webhook::builders::GetWebhookOutputBuilder {
25        crate::operation::get_webhook::builders::GetWebhookOutputBuilder::default()
26    }
27}
28
29/// A builder for [`GetWebhookOutput`](crate::operation::get_webhook::GetWebhookOutput).
30#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
31#[non_exhaustive]
32pub struct GetWebhookOutputBuilder {
33    pub(crate) webhook: ::std::option::Option<crate::types::Webhook>,
34    _request_id: Option<String>,
35}
36impl GetWebhookOutputBuilder {
37    /// <p>Describes the structure of a webhook.</p>
38    /// This field is required.
39    pub fn webhook(mut self, input: crate::types::Webhook) -> Self {
40        self.webhook = ::std::option::Option::Some(input);
41        self
42    }
43    /// <p>Describes the structure of a webhook.</p>
44    pub fn set_webhook(mut self, input: ::std::option::Option<crate::types::Webhook>) -> Self {
45        self.webhook = input;
46        self
47    }
48    /// <p>Describes the structure of a webhook.</p>
49    pub fn get_webhook(&self) -> &::std::option::Option<crate::types::Webhook> {
50        &self.webhook
51    }
52    pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
53        self._request_id = Some(request_id.into());
54        self
55    }
56
57    pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
58        self._request_id = request_id;
59        self
60    }
61    /// Consumes the builder and constructs a [`GetWebhookOutput`](crate::operation::get_webhook::GetWebhookOutput).
62    pub fn build(self) -> crate::operation::get_webhook::GetWebhookOutput {
63        crate::operation::get_webhook::GetWebhookOutput {
64            webhook: self.webhook,
65            _request_id: self._request_id,
66        }
67    }
68}