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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>A structure that contains the secret value and other details for a secret.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq)]
pub struct SecretValueEntry {
    /// <p>The Amazon Resource Name (ARN) of the secret.</p>
    pub arn: ::std::option::Option<::std::string::String>,
    /// <p>The friendly name of the secret.</p>
    pub name: ::std::option::Option<::std::string::String>,
    /// <p>The unique version identifier of this version of the secret.</p>
    pub version_id: ::std::option::Option<::std::string::String>,
    /// <p>The decrypted secret value, if the secret value was originally provided as binary data in the form of a byte array. The parameter represents the binary data as a <a href="https://tools.ietf.org/html/rfc4648#section-4">base64-encoded</a> string.</p>
    pub secret_binary: ::std::option::Option<::aws_smithy_types::Blob>,
    /// <p>The decrypted secret value, if the secret value was originally provided as a string or through the Secrets Manager console.</p>
    pub secret_string: ::std::option::Option<::std::string::String>,
    /// <p>A list of all of the staging labels currently attached to this version of the secret.</p>
    pub version_stages: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
    /// <p>The date the secret was created.</p>
    pub created_date: ::std::option::Option<::aws_smithy_types::DateTime>,
}
impl SecretValueEntry {
    /// <p>The Amazon Resource Name (ARN) of the secret.</p>
    pub fn arn(&self) -> ::std::option::Option<&str> {
        self.arn.as_deref()
    }
    /// <p>The friendly name of the secret.</p>
    pub fn name(&self) -> ::std::option::Option<&str> {
        self.name.as_deref()
    }
    /// <p>The unique version identifier of this version of the secret.</p>
    pub fn version_id(&self) -> ::std::option::Option<&str> {
        self.version_id.as_deref()
    }
    /// <p>The decrypted secret value, if the secret value was originally provided as binary data in the form of a byte array. The parameter represents the binary data as a <a href="https://tools.ietf.org/html/rfc4648#section-4">base64-encoded</a> string.</p>
    pub fn secret_binary(&self) -> ::std::option::Option<&::aws_smithy_types::Blob> {
        self.secret_binary.as_ref()
    }
    /// <p>The decrypted secret value, if the secret value was originally provided as a string or through the Secrets Manager console.</p>
    pub fn secret_string(&self) -> ::std::option::Option<&str> {
        self.secret_string.as_deref()
    }
    /// <p>A list of all of the staging labels currently attached to this version of the secret.</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 `.version_stages.is_none()`.
    pub fn version_stages(&self) -> &[::std::string::String] {
        self.version_stages.as_deref().unwrap_or_default()
    }
    /// <p>The date the secret was created.</p>
    pub fn created_date(&self) -> ::std::option::Option<&::aws_smithy_types::DateTime> {
        self.created_date.as_ref()
    }
}
impl ::std::fmt::Debug for SecretValueEntry {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        let mut formatter = f.debug_struct("SecretValueEntry");
        formatter.field("arn", &self.arn);
        formatter.field("name", &self.name);
        formatter.field("version_id", &self.version_id);
        formatter.field("secret_binary", &"*** Sensitive Data Redacted ***");
        formatter.field("secret_string", &"*** Sensitive Data Redacted ***");
        formatter.field("version_stages", &self.version_stages);
        formatter.field("created_date", &self.created_date);
        formatter.finish()
    }
}
impl SecretValueEntry {
    /// Creates a new builder-style object to manufacture [`SecretValueEntry`](crate::types::SecretValueEntry).
    pub fn builder() -> crate::types::builders::SecretValueEntryBuilder {
        crate::types::builders::SecretValueEntryBuilder::default()
    }
}

/// A builder for [`SecretValueEntry`](crate::types::SecretValueEntry).
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default)]
pub struct SecretValueEntryBuilder {
    pub(crate) arn: ::std::option::Option<::std::string::String>,
    pub(crate) name: ::std::option::Option<::std::string::String>,
    pub(crate) version_id: ::std::option::Option<::std::string::String>,
    pub(crate) secret_binary: ::std::option::Option<::aws_smithy_types::Blob>,
    pub(crate) secret_string: ::std::option::Option<::std::string::String>,
    pub(crate) version_stages: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
    pub(crate) created_date: ::std::option::Option<::aws_smithy_types::DateTime>,
}
impl SecretValueEntryBuilder {
    /// <p>The Amazon Resource Name (ARN) of the secret.</p>
    pub fn arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.arn = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The Amazon Resource Name (ARN) of the secret.</p>
    pub fn set_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.arn = input;
        self
    }
    /// <p>The Amazon Resource Name (ARN) of the secret.</p>
    pub fn get_arn(&self) -> &::std::option::Option<::std::string::String> {
        &self.arn
    }
    /// <p>The friendly name of the secret.</p>
    pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.name = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The friendly name of the secret.</p>
    pub fn set_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.name = input;
        self
    }
    /// <p>The friendly name of the secret.</p>
    pub fn get_name(&self) -> &::std::option::Option<::std::string::String> {
        &self.name
    }
    /// <p>The unique version identifier of this version of the secret.</p>
    pub fn version_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.version_id = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The unique version identifier of this version of the secret.</p>
    pub fn set_version_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.version_id = input;
        self
    }
    /// <p>The unique version identifier of this version of the secret.</p>
    pub fn get_version_id(&self) -> &::std::option::Option<::std::string::String> {
        &self.version_id
    }
    /// <p>The decrypted secret value, if the secret value was originally provided as binary data in the form of a byte array. The parameter represents the binary data as a <a href="https://tools.ietf.org/html/rfc4648#section-4">base64-encoded</a> string.</p>
    pub fn secret_binary(mut self, input: ::aws_smithy_types::Blob) -> Self {
        self.secret_binary = ::std::option::Option::Some(input);
        self
    }
    /// <p>The decrypted secret value, if the secret value was originally provided as binary data in the form of a byte array. The parameter represents the binary data as a <a href="https://tools.ietf.org/html/rfc4648#section-4">base64-encoded</a> string.</p>
    pub fn set_secret_binary(mut self, input: ::std::option::Option<::aws_smithy_types::Blob>) -> Self {
        self.secret_binary = input;
        self
    }
    /// <p>The decrypted secret value, if the secret value was originally provided as binary data in the form of a byte array. The parameter represents the binary data as a <a href="https://tools.ietf.org/html/rfc4648#section-4">base64-encoded</a> string.</p>
    pub fn get_secret_binary(&self) -> &::std::option::Option<::aws_smithy_types::Blob> {
        &self.secret_binary
    }
    /// <p>The decrypted secret value, if the secret value was originally provided as a string or through the Secrets Manager console.</p>
    pub fn secret_string(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.secret_string = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The decrypted secret value, if the secret value was originally provided as a string or through the Secrets Manager console.</p>
    pub fn set_secret_string(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.secret_string = input;
        self
    }
    /// <p>The decrypted secret value, if the secret value was originally provided as a string or through the Secrets Manager console.</p>
    pub fn get_secret_string(&self) -> &::std::option::Option<::std::string::String> {
        &self.secret_string
    }
    /// Appends an item to `version_stages`.
    ///
    /// To override the contents of this collection use [`set_version_stages`](Self::set_version_stages).
    ///
    /// <p>A list of all of the staging labels currently attached to this version of the secret.</p>
    pub fn version_stages(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        let mut v = self.version_stages.unwrap_or_default();
        v.push(input.into());
        self.version_stages = ::std::option::Option::Some(v);
        self
    }
    /// <p>A list of all of the staging labels currently attached to this version of the secret.</p>
    pub fn set_version_stages(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
        self.version_stages = input;
        self
    }
    /// <p>A list of all of the staging labels currently attached to this version of the secret.</p>
    pub fn get_version_stages(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
        &self.version_stages
    }
    /// <p>The date the secret was created.</p>
    pub fn created_date(mut self, input: ::aws_smithy_types::DateTime) -> Self {
        self.created_date = ::std::option::Option::Some(input);
        self
    }
    /// <p>The date the secret was created.</p>
    pub fn set_created_date(mut self, input: ::std::option::Option<::aws_smithy_types::DateTime>) -> Self {
        self.created_date = input;
        self
    }
    /// <p>The date the secret was created.</p>
    pub fn get_created_date(&self) -> &::std::option::Option<::aws_smithy_types::DateTime> {
        &self.created_date
    }
    /// Consumes the builder and constructs a [`SecretValueEntry`](crate::types::SecretValueEntry).
    pub fn build(self) -> crate::types::SecretValueEntry {
        crate::types::SecretValueEntry {
            arn: self.arn,
            name: self.name,
            version_id: self.version_id,
            secret_binary: self.secret_binary,
            secret_string: self.secret_string,
            version_stages: self.version_stages,
            created_date: self.created_date,
        }
    }
}
impl ::std::fmt::Debug for SecretValueEntryBuilder {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        let mut formatter = f.debug_struct("SecretValueEntryBuilder");
        formatter.field("arn", &self.arn);
        formatter.field("name", &self.name);
        formatter.field("version_id", &self.version_id);
        formatter.field("secret_binary", &"*** Sensitive Data Redacted ***");
        formatter.field("secret_string", &"*** Sensitive Data Redacted ***");
        formatter.field("version_stages", &self.version_stages);
        formatter.field("created_date", &self.created_date);
        formatter.finish()
    }
}