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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
// 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 DisassociateResourceShareInput {
/// <p>Specifies <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the resource share that you want to remove resources or principals from.</p>
pub resource_share_arn: ::std::option::Option<::std::string::String>,
/// <p>Specifies a list of <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> for one or more resources that you want to remove from the resource share. After the operation runs, these resources are no longer shared with principals associated with the resource share.</p>
pub resource_arns: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
/// <p>Specifies a list of one or more principals that no longer are to have access to the resources in this resource share.</p>
/// <p>You can include the following values:</p>
/// <ul>
/// <li>
/// <p>An Amazon Web Services account ID, for example: <code>123456789012</code></p></li>
/// <li>
/// <p>An <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of an organization in Organizations, for example: <code>organizations::123456789012:organization/o-exampleorgid</code></p></li>
/// <li>
/// <p>An ARN of an organizational unit (OU) in Organizations, for example: <code>organizations::123456789012:ou/o-exampleorgid/ou-examplerootid-exampleouid123</code></p></li>
/// <li>
/// <p>An ARN of an IAM role, for example: <code>iam::123456789012:role/rolename</code></p></li>
/// <li>
/// <p>An ARN of an IAM user, for example: <code>iam::123456789012user/username</code></p></li>
/// <li>
/// <p>A service principal name, for example: <code>service-id.amazonaws.com</code></p></li>
/// </ul><note>
/// <p>Not all resource types can be shared with IAM roles and users. For more information, see <a href="https://docs.aws.amazon.com/ram/latest/userguide/permissions.html#permissions-rbp-supported-resource-types">Sharing with IAM roles and users</a> in the <i>Resource Access Manager User Guide</i>.</p>
/// </note>
pub principals: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
/// <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a <a href="https://wikipedia.org/wiki/Universally_unique_identifier">UUID type of value.</a>.</p>
/// <p>If you don't provide this value, then Amazon Web Services generates a random one for you.</p>
/// <p>If you retry the operation with the same <code>ClientToken</code>, but with different parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
pub client_token: ::std::option::Option<::std::string::String>,
/// <p>Specifies source constraints (accounts, ARNs, organization IDs, or organization paths) to remove from the resource share. This enables granular management of source constraints while maintaining service principal associations. At least one source must remain when service principals are present.</p>
pub sources: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
}
impl DisassociateResourceShareInput {
/// <p>Specifies <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the resource share that you want to remove resources or principals from.</p>
pub fn resource_share_arn(&self) -> ::std::option::Option<&str> {
self.resource_share_arn.as_deref()
}
/// <p>Specifies a list of <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> for one or more resources that you want to remove from the resource share. After the operation runs, these resources are no longer shared with principals associated with the resource share.</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 `.resource_arns.is_none()`.
pub fn resource_arns(&self) -> &[::std::string::String] {
self.resource_arns.as_deref().unwrap_or_default()
}
/// <p>Specifies a list of one or more principals that no longer are to have access to the resources in this resource share.</p>
/// <p>You can include the following values:</p>
/// <ul>
/// <li>
/// <p>An Amazon Web Services account ID, for example: <code>123456789012</code></p></li>
/// <li>
/// <p>An <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of an organization in Organizations, for example: <code>organizations::123456789012:organization/o-exampleorgid</code></p></li>
/// <li>
/// <p>An ARN of an organizational unit (OU) in Organizations, for example: <code>organizations::123456789012:ou/o-exampleorgid/ou-examplerootid-exampleouid123</code></p></li>
/// <li>
/// <p>An ARN of an IAM role, for example: <code>iam::123456789012:role/rolename</code></p></li>
/// <li>
/// <p>An ARN of an IAM user, for example: <code>iam::123456789012user/username</code></p></li>
/// <li>
/// <p>A service principal name, for example: <code>service-id.amazonaws.com</code></p></li>
/// </ul><note>
/// <p>Not all resource types can be shared with IAM roles and users. For more information, see <a href="https://docs.aws.amazon.com/ram/latest/userguide/permissions.html#permissions-rbp-supported-resource-types">Sharing with IAM roles and users</a> in the <i>Resource Access Manager User Guide</i>.</p>
/// </note>
///
/// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.principals.is_none()`.
pub fn principals(&self) -> &[::std::string::String] {
self.principals.as_deref().unwrap_or_default()
}
/// <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a <a href="https://wikipedia.org/wiki/Universally_unique_identifier">UUID type of value.</a>.</p>
/// <p>If you don't provide this value, then Amazon Web Services generates a random one for you.</p>
/// <p>If you retry the operation with the same <code>ClientToken</code>, but with different parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
pub fn client_token(&self) -> ::std::option::Option<&str> {
self.client_token.as_deref()
}
/// <p>Specifies source constraints (accounts, ARNs, organization IDs, or organization paths) to remove from the resource share. This enables granular management of source constraints while maintaining service principal associations. At least one source must remain when service principals are present.</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 `.sources.is_none()`.
pub fn sources(&self) -> &[::std::string::String] {
self.sources.as_deref().unwrap_or_default()
}
}
impl DisassociateResourceShareInput {
/// Creates a new builder-style object to manufacture [`DisassociateResourceShareInput`](crate::operation::disassociate_resource_share::DisassociateResourceShareInput).
pub fn builder() -> crate::operation::disassociate_resource_share::builders::DisassociateResourceShareInputBuilder {
crate::operation::disassociate_resource_share::builders::DisassociateResourceShareInputBuilder::default()
}
}
/// A builder for [`DisassociateResourceShareInput`](crate::operation::disassociate_resource_share::DisassociateResourceShareInput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct DisassociateResourceShareInputBuilder {
pub(crate) resource_share_arn: ::std::option::Option<::std::string::String>,
pub(crate) resource_arns: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
pub(crate) principals: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
pub(crate) client_token: ::std::option::Option<::std::string::String>,
pub(crate) sources: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
}
impl DisassociateResourceShareInputBuilder {
/// <p>Specifies <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the resource share that you want to remove resources or principals from.</p>
/// This field is required.
pub fn resource_share_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.resource_share_arn = ::std::option::Option::Some(input.into());
self
}
/// <p>Specifies <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the resource share that you want to remove resources or principals from.</p>
pub fn set_resource_share_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.resource_share_arn = input;
self
}
/// <p>Specifies <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the resource share that you want to remove resources or principals from.</p>
pub fn get_resource_share_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.resource_share_arn
}
/// Appends an item to `resource_arns`.
///
/// To override the contents of this collection use [`set_resource_arns`](Self::set_resource_arns).
///
/// <p>Specifies a list of <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> for one or more resources that you want to remove from the resource share. After the operation runs, these resources are no longer shared with principals associated with the resource share.</p>
pub fn resource_arns(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
let mut v = self.resource_arns.unwrap_or_default();
v.push(input.into());
self.resource_arns = ::std::option::Option::Some(v);
self
}
/// <p>Specifies a list of <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> for one or more resources that you want to remove from the resource share. After the operation runs, these resources are no longer shared with principals associated with the resource share.</p>
pub fn set_resource_arns(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
self.resource_arns = input;
self
}
/// <p>Specifies a list of <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> for one or more resources that you want to remove from the resource share. After the operation runs, these resources are no longer shared with principals associated with the resource share.</p>
pub fn get_resource_arns(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
&self.resource_arns
}
/// Appends an item to `principals`.
///
/// To override the contents of this collection use [`set_principals`](Self::set_principals).
///
/// <p>Specifies a list of one or more principals that no longer are to have access to the resources in this resource share.</p>
/// <p>You can include the following values:</p>
/// <ul>
/// <li>
/// <p>An Amazon Web Services account ID, for example: <code>123456789012</code></p></li>
/// <li>
/// <p>An <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of an organization in Organizations, for example: <code>organizations::123456789012:organization/o-exampleorgid</code></p></li>
/// <li>
/// <p>An ARN of an organizational unit (OU) in Organizations, for example: <code>organizations::123456789012:ou/o-exampleorgid/ou-examplerootid-exampleouid123</code></p></li>
/// <li>
/// <p>An ARN of an IAM role, for example: <code>iam::123456789012:role/rolename</code></p></li>
/// <li>
/// <p>An ARN of an IAM user, for example: <code>iam::123456789012user/username</code></p></li>
/// <li>
/// <p>A service principal name, for example: <code>service-id.amazonaws.com</code></p></li>
/// </ul><note>
/// <p>Not all resource types can be shared with IAM roles and users. For more information, see <a href="https://docs.aws.amazon.com/ram/latest/userguide/permissions.html#permissions-rbp-supported-resource-types">Sharing with IAM roles and users</a> in the <i>Resource Access Manager User Guide</i>.</p>
/// </note>
pub fn principals(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
let mut v = self.principals.unwrap_or_default();
v.push(input.into());
self.principals = ::std::option::Option::Some(v);
self
}
/// <p>Specifies a list of one or more principals that no longer are to have access to the resources in this resource share.</p>
/// <p>You can include the following values:</p>
/// <ul>
/// <li>
/// <p>An Amazon Web Services account ID, for example: <code>123456789012</code></p></li>
/// <li>
/// <p>An <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of an organization in Organizations, for example: <code>organizations::123456789012:organization/o-exampleorgid</code></p></li>
/// <li>
/// <p>An ARN of an organizational unit (OU) in Organizations, for example: <code>organizations::123456789012:ou/o-exampleorgid/ou-examplerootid-exampleouid123</code></p></li>
/// <li>
/// <p>An ARN of an IAM role, for example: <code>iam::123456789012:role/rolename</code></p></li>
/// <li>
/// <p>An ARN of an IAM user, for example: <code>iam::123456789012user/username</code></p></li>
/// <li>
/// <p>A service principal name, for example: <code>service-id.amazonaws.com</code></p></li>
/// </ul><note>
/// <p>Not all resource types can be shared with IAM roles and users. For more information, see <a href="https://docs.aws.amazon.com/ram/latest/userguide/permissions.html#permissions-rbp-supported-resource-types">Sharing with IAM roles and users</a> in the <i>Resource Access Manager User Guide</i>.</p>
/// </note>
pub fn set_principals(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
self.principals = input;
self
}
/// <p>Specifies a list of one or more principals that no longer are to have access to the resources in this resource share.</p>
/// <p>You can include the following values:</p>
/// <ul>
/// <li>
/// <p>An Amazon Web Services account ID, for example: <code>123456789012</code></p></li>
/// <li>
/// <p>An <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of an organization in Organizations, for example: <code>organizations::123456789012:organization/o-exampleorgid</code></p></li>
/// <li>
/// <p>An ARN of an organizational unit (OU) in Organizations, for example: <code>organizations::123456789012:ou/o-exampleorgid/ou-examplerootid-exampleouid123</code></p></li>
/// <li>
/// <p>An ARN of an IAM role, for example: <code>iam::123456789012:role/rolename</code></p></li>
/// <li>
/// <p>An ARN of an IAM user, for example: <code>iam::123456789012user/username</code></p></li>
/// <li>
/// <p>A service principal name, for example: <code>service-id.amazonaws.com</code></p></li>
/// </ul><note>
/// <p>Not all resource types can be shared with IAM roles and users. For more information, see <a href="https://docs.aws.amazon.com/ram/latest/userguide/permissions.html#permissions-rbp-supported-resource-types">Sharing with IAM roles and users</a> in the <i>Resource Access Manager User Guide</i>.</p>
/// </note>
pub fn get_principals(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
&self.principals
}
/// <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a <a href="https://wikipedia.org/wiki/Universally_unique_identifier">UUID type of value.</a>.</p>
/// <p>If you don't provide this value, then Amazon Web Services generates a random one for you.</p>
/// <p>If you retry the operation with the same <code>ClientToken</code>, but with different parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
pub fn client_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.client_token = ::std::option::Option::Some(input.into());
self
}
/// <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a <a href="https://wikipedia.org/wiki/Universally_unique_identifier">UUID type of value.</a>.</p>
/// <p>If you don't provide this value, then Amazon Web Services generates a random one for you.</p>
/// <p>If you retry the operation with the same <code>ClientToken</code>, but with different parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
pub fn set_client_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.client_token = input;
self
}
/// <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a <a href="https://wikipedia.org/wiki/Universally_unique_identifier">UUID type of value.</a>.</p>
/// <p>If you don't provide this value, then Amazon Web Services generates a random one for you.</p>
/// <p>If you retry the operation with the same <code>ClientToken</code>, but with different parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
pub fn get_client_token(&self) -> &::std::option::Option<::std::string::String> {
&self.client_token
}
/// Appends an item to `sources`.
///
/// To override the contents of this collection use [`set_sources`](Self::set_sources).
///
/// <p>Specifies source constraints (accounts, ARNs, organization IDs, or organization paths) to remove from the resource share. This enables granular management of source constraints while maintaining service principal associations. At least one source must remain when service principals are present.</p>
pub fn sources(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
let mut v = self.sources.unwrap_or_default();
v.push(input.into());
self.sources = ::std::option::Option::Some(v);
self
}
/// <p>Specifies source constraints (accounts, ARNs, organization IDs, or organization paths) to remove from the resource share. This enables granular management of source constraints while maintaining service principal associations. At least one source must remain when service principals are present.</p>
pub fn set_sources(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
self.sources = input;
self
}
/// <p>Specifies source constraints (accounts, ARNs, organization IDs, or organization paths) to remove from the resource share. This enables granular management of source constraints while maintaining service principal associations. At least one source must remain when service principals are present.</p>
pub fn get_sources(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
&self.sources
}
/// Consumes the builder and constructs a [`DisassociateResourceShareInput`](crate::operation::disassociate_resource_share::DisassociateResourceShareInput).
pub fn build(
self,
) -> ::std::result::Result<
crate::operation::disassociate_resource_share::DisassociateResourceShareInput,
::aws_smithy_types::error::operation::BuildError,
> {
::std::result::Result::Ok(crate::operation::disassociate_resource_share::DisassociateResourceShareInput {
resource_share_arn: self.resource_share_arn,
resource_arns: self.resource_arns,
principals: self.principals,
client_token: self.client_token,
sources: self.sources,
})
}
}