pub struct UpdateIAMPolicyAssignment { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateIAMPolicyAssignment
.
Updates an existing IAM policy assignment. This operation updates only the optional parameter or parameters that are specified in the request. This overwrites all of the users included in Identities
.
Implementations§
source§impl UpdateIAMPolicyAssignment
impl UpdateIAMPolicyAssignment
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateIAMPolicyAssignment, AwsResponseRetryClassifier>, SdkError<UpdateIAMPolicyAssignmentError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateIAMPolicyAssignment, AwsResponseRetryClassifier>, SdkError<UpdateIAMPolicyAssignmentError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateIamPolicyAssignmentOutput, SdkError<UpdateIAMPolicyAssignmentError>>
pub async fn send(
self
) -> Result<UpdateIamPolicyAssignmentOutput, SdkError<UpdateIAMPolicyAssignmentError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn aws_account_id(self, input: impl Into<String>) -> Self
pub fn aws_account_id(self, input: impl Into<String>) -> Self
The ID of the Amazon Web Services account that contains the IAM policy assignment.
sourcepub fn set_aws_account_id(self, input: Option<String>) -> Self
pub fn set_aws_account_id(self, input: Option<String>) -> Self
The ID of the Amazon Web Services account that contains the IAM policy assignment.
sourcepub fn assignment_name(self, input: impl Into<String>) -> Self
pub fn assignment_name(self, input: impl Into<String>) -> Self
The name of the assignment, also called a rule. This name must be unique within an Amazon Web Services account.
sourcepub fn set_assignment_name(self, input: Option<String>) -> Self
pub fn set_assignment_name(self, input: Option<String>) -> Self
The name of the assignment, also called a rule. This name must be unique within an Amazon Web Services account.
sourcepub fn set_namespace(self, input: Option<String>) -> Self
pub fn set_namespace(self, input: Option<String>) -> Self
The namespace of the assignment.
sourcepub fn assignment_status(self, input: AssignmentStatus) -> Self
pub fn assignment_status(self, input: AssignmentStatus) -> Self
The status of the assignment. Possible values are as follows:
-
ENABLED
- Anything specified in this assignment is used when creating the data source. -
DISABLED
- This assignment isn't used when creating the data source. -
DRAFT
- This assignment is an unfinished draft and isn't used when creating the data source.
sourcepub fn set_assignment_status(self, input: Option<AssignmentStatus>) -> Self
pub fn set_assignment_status(self, input: Option<AssignmentStatus>) -> Self
The status of the assignment. Possible values are as follows:
-
ENABLED
- Anything specified in this assignment is used when creating the data source. -
DISABLED
- This assignment isn't used when creating the data source. -
DRAFT
- This assignment is an unfinished draft and isn't used when creating the data source.
sourcepub fn policy_arn(self, input: impl Into<String>) -> Self
pub fn policy_arn(self, input: impl Into<String>) -> Self
The ARN for the IAM policy to apply to the Amazon QuickSight users and groups specified in this assignment.
sourcepub fn set_policy_arn(self, input: Option<String>) -> Self
pub fn set_policy_arn(self, input: Option<String>) -> Self
The ARN for the IAM policy to apply to the Amazon QuickSight users and groups specified in this assignment.
sourcepub fn identities(self, k: impl Into<String>, v: Vec<String>) -> Self
pub fn identities(self, k: impl Into<String>, v: Vec<String>) -> Self
Adds a key-value pair to Identities
.
To override the contents of this collection use set_identities
.
The Amazon QuickSight users, groups, or both that you want to assign the policy to.
Trait Implementations§
source§impl Clone for UpdateIAMPolicyAssignment
impl Clone for UpdateIAMPolicyAssignment
source§fn clone(&self) -> UpdateIAMPolicyAssignment
fn clone(&self) -> UpdateIAMPolicyAssignment
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more