Struct aws_sdk_quicksight::operation::update_iam_policy_assignment::builders::UpdateIamPolicyAssignmentInputBuilder
source · #[non_exhaustive]pub struct UpdateIamPolicyAssignmentInputBuilder { /* private fields */ }
Expand description
A builder for UpdateIamPolicyAssignmentInput
.
Implementations§
source§impl UpdateIamPolicyAssignmentInputBuilder
impl UpdateIamPolicyAssignmentInputBuilder
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.
This field is required.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.
This field is required.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 namespace(self, input: impl Into<String>) -> Self
pub fn namespace(self, input: impl Into<String>) -> Self
The namespace of the assignment.
This field is required.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.
sourcepub fn set_identities(self, input: Option<HashMap<String, Vec<String>>>) -> Self
pub fn set_identities(self, input: Option<HashMap<String, Vec<String>>>) -> Self
The Amazon QuickSight users, groups, or both that you want to assign the policy to.
sourcepub fn get_identities(&self) -> &Option<HashMap<String, Vec<String>>>
pub fn get_identities(&self) -> &Option<HashMap<String, Vec<String>>>
The Amazon QuickSight users, groups, or both that you want to assign the policy to.
sourcepub fn build(self) -> Result<UpdateIamPolicyAssignmentInput, BuildError>
pub fn build(self) -> Result<UpdateIamPolicyAssignmentInput, BuildError>
Consumes the builder and constructs a UpdateIamPolicyAssignmentInput
.
source§impl UpdateIamPolicyAssignmentInputBuilder
impl UpdateIamPolicyAssignmentInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateIamPolicyAssignmentOutput, SdkError<UpdateIAMPolicyAssignmentError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateIamPolicyAssignmentOutput, SdkError<UpdateIAMPolicyAssignmentError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateIamPolicyAssignmentInputBuilder
impl Clone for UpdateIamPolicyAssignmentInputBuilder
source§fn clone(&self) -> UpdateIamPolicyAssignmentInputBuilder
fn clone(&self) -> UpdateIamPolicyAssignmentInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdateIamPolicyAssignmentInputBuilder
impl Default for UpdateIamPolicyAssignmentInputBuilder
source§fn default() -> UpdateIamPolicyAssignmentInputBuilder
fn default() -> UpdateIamPolicyAssignmentInputBuilder
source§impl PartialEq for UpdateIamPolicyAssignmentInputBuilder
impl PartialEq for UpdateIamPolicyAssignmentInputBuilder
source§fn eq(&self, other: &UpdateIamPolicyAssignmentInputBuilder) -> bool
fn eq(&self, other: &UpdateIamPolicyAssignmentInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.