Struct aws_sdk_quicksight::operation::update_iam_policy_assignment::builders::UpdateIAMPolicyAssignmentFluentBuilder
source · pub struct UpdateIAMPolicyAssignmentFluentBuilder { /* 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 UpdateIAMPolicyAssignmentFluentBuilder
impl UpdateIAMPolicyAssignmentFluentBuilder
sourcepub fn as_input(&self) -> &UpdateIamPolicyAssignmentInputBuilder
pub fn as_input(&self) -> &UpdateIamPolicyAssignmentInputBuilder
Access the UpdateIAMPolicyAssignment as a reference.
sourcepub async fn send(
self
) -> Result<UpdateIamPolicyAssignmentOutput, SdkError<UpdateIAMPolicyAssignmentError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateIamPolicyAssignmentOutput, SdkError<UpdateIAMPolicyAssignmentError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<UpdateIamPolicyAssignmentOutput, UpdateIAMPolicyAssignmentError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateIamPolicyAssignmentOutput, UpdateIAMPolicyAssignmentError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 get_aws_account_id(&self) -> &Option<String>
pub fn get_aws_account_id(&self) -> &Option<String>
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. The name must be unique within the 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. The name must be unique within the Amazon Web Services account.
sourcepub fn get_assignment_name(&self) -> &Option<String>
pub fn get_assignment_name(&self) -> &Option<String>
The name of the assignment, also called a rule. The name must be unique within the 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 get_namespace(&self) -> &Option<String>
pub fn get_namespace(&self) -> &Option<String>
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 get_assignment_status(&self) -> &Option<AssignmentStatus>
pub fn get_assignment_status(&self) -> &Option<AssignmentStatus>
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 get_policy_arn(&self) -> &Option<String>
pub fn get_policy_arn(&self) -> &Option<String>
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 UpdateIAMPolicyAssignmentFluentBuilder
impl Clone for UpdateIAMPolicyAssignmentFluentBuilder
source§fn clone(&self) -> UpdateIAMPolicyAssignmentFluentBuilder
fn clone(&self) -> UpdateIAMPolicyAssignmentFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more