1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct ReplicateKeyOutput {
    /// <p>Displays details about the new replica key, including its Amazon Resource Name (<a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-ARN">key ARN</a>) and <a href="https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html">Key states of KMS keys</a>. It also includes the ARN and Amazon Web Services Region of its primary key and other replica keys.</p>
    pub replica_key_metadata: ::std::option::Option<crate::types::KeyMetadata>,
    /// <p>The key policy of the new replica key. The value is a key policy document in JSON format.</p>
    pub replica_policy: ::std::option::Option<::std::string::String>,
    /// <p>The tags on the new replica key. The value is a list of tag key and tag value pairs.</p>
    pub replica_tags: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>,
    _request_id: Option<String>,
}
impl ReplicateKeyOutput {
    /// <p>Displays details about the new replica key, including its Amazon Resource Name (<a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-ARN">key ARN</a>) and <a href="https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html">Key states of KMS keys</a>. It also includes the ARN and Amazon Web Services Region of its primary key and other replica keys.</p>
    pub fn replica_key_metadata(&self) -> ::std::option::Option<&crate::types::KeyMetadata> {
        self.replica_key_metadata.as_ref()
    }
    /// <p>The key policy of the new replica key. The value is a key policy document in JSON format.</p>
    pub fn replica_policy(&self) -> ::std::option::Option<&str> {
        self.replica_policy.as_deref()
    }
    /// <p>The tags on the new replica key. The value is a list of tag key and tag value pairs.</p>
    ///
    /// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.replica_tags.is_none()`.
    pub fn replica_tags(&self) -> &[crate::types::Tag] {
        self.replica_tags.as_deref().unwrap_or_default()
    }
}
impl ::aws_types::request_id::RequestId for ReplicateKeyOutput {
    fn request_id(&self) -> Option<&str> {
        self._request_id.as_deref()
    }
}
impl ReplicateKeyOutput {
    /// Creates a new builder-style object to manufacture [`ReplicateKeyOutput`](crate::operation::replicate_key::ReplicateKeyOutput).
    pub fn builder() -> crate::operation::replicate_key::builders::ReplicateKeyOutputBuilder {
        crate::operation::replicate_key::builders::ReplicateKeyOutputBuilder::default()
    }
}

/// A builder for [`ReplicateKeyOutput`](crate::operation::replicate_key::ReplicateKeyOutput).
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct ReplicateKeyOutputBuilder {
    pub(crate) replica_key_metadata: ::std::option::Option<crate::types::KeyMetadata>,
    pub(crate) replica_policy: ::std::option::Option<::std::string::String>,
    pub(crate) replica_tags: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>,
    _request_id: Option<String>,
}
impl ReplicateKeyOutputBuilder {
    /// <p>Displays details about the new replica key, including its Amazon Resource Name (<a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-ARN">key ARN</a>) and <a href="https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html">Key states of KMS keys</a>. It also includes the ARN and Amazon Web Services Region of its primary key and other replica keys.</p>
    pub fn replica_key_metadata(mut self, input: crate::types::KeyMetadata) -> Self {
        self.replica_key_metadata = ::std::option::Option::Some(input);
        self
    }
    /// <p>Displays details about the new replica key, including its Amazon Resource Name (<a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-ARN">key ARN</a>) and <a href="https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html">Key states of KMS keys</a>. It also includes the ARN and Amazon Web Services Region of its primary key and other replica keys.</p>
    pub fn set_replica_key_metadata(mut self, input: ::std::option::Option<crate::types::KeyMetadata>) -> Self {
        self.replica_key_metadata = input;
        self
    }
    /// <p>Displays details about the new replica key, including its Amazon Resource Name (<a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-ARN">key ARN</a>) and <a href="https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html">Key states of KMS keys</a>. It also includes the ARN and Amazon Web Services Region of its primary key and other replica keys.</p>
    pub fn get_replica_key_metadata(&self) -> &::std::option::Option<crate::types::KeyMetadata> {
        &self.replica_key_metadata
    }
    /// <p>The key policy of the new replica key. The value is a key policy document in JSON format.</p>
    pub fn replica_policy(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.replica_policy = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The key policy of the new replica key. The value is a key policy document in JSON format.</p>
    pub fn set_replica_policy(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.replica_policy = input;
        self
    }
    /// <p>The key policy of the new replica key. The value is a key policy document in JSON format.</p>
    pub fn get_replica_policy(&self) -> &::std::option::Option<::std::string::String> {
        &self.replica_policy
    }
    /// Appends an item to `replica_tags`.
    ///
    /// To override the contents of this collection use [`set_replica_tags`](Self::set_replica_tags).
    ///
    /// <p>The tags on the new replica key. The value is a list of tag key and tag value pairs.</p>
    pub fn replica_tags(mut self, input: crate::types::Tag) -> Self {
        let mut v = self.replica_tags.unwrap_or_default();
        v.push(input);
        self.replica_tags = ::std::option::Option::Some(v);
        self
    }
    /// <p>The tags on the new replica key. The value is a list of tag key and tag value pairs.</p>
    pub fn set_replica_tags(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>) -> Self {
        self.replica_tags = input;
        self
    }
    /// <p>The tags on the new replica key. The value is a list of tag key and tag value pairs.</p>
    pub fn get_replica_tags(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::Tag>> {
        &self.replica_tags
    }
    pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
        self._request_id = Some(request_id.into());
        self
    }

    pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
        self._request_id = request_id;
        self
    }
    /// Consumes the builder and constructs a [`ReplicateKeyOutput`](crate::operation::replicate_key::ReplicateKeyOutput).
    pub fn build(self) -> crate::operation::replicate_key::ReplicateKeyOutput {
        crate::operation::replicate_key::ReplicateKeyOutput {
            replica_key_metadata: self.replica_key_metadata,
            replica_policy: self.replica_policy,
            replica_tags: self.replica_tags,
            _request_id: self._request_id,
        }
    }
}