Struct aws_sdk_quicksight::operation::create_iam_policy_assignment::builders::CreateIamPolicyAssignmentInputBuilder
source · #[non_exhaustive]pub struct CreateIamPolicyAssignmentInputBuilder { /* private fields */ }Expand description
A builder for CreateIamPolicyAssignmentInput.
Implementations§
source§impl CreateIamPolicyAssignmentInputBuilder
impl CreateIamPolicyAssignmentInputBuilder
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 where you want to assign an IAM policy to Amazon QuickSight users or groups.
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 where you want to assign an IAM policy to Amazon QuickSight users or groups.
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. It 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. It must be unique within an Amazon Web Services account.
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.
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 namespace(self, input: impl Into<String>) -> Self
pub fn namespace(self, input: impl Into<String>) -> Self
The namespace that contains the assignment.
sourcepub fn set_namespace(self, input: Option<String>) -> Self
pub fn set_namespace(self, input: Option<String>) -> Self
The namespace that contains the assignment.
sourcepub fn build(self) -> Result<CreateIamPolicyAssignmentInput, BuildError>
pub fn build(self) -> Result<CreateIamPolicyAssignmentInput, BuildError>
Consumes the builder and constructs a CreateIamPolicyAssignmentInput.
Trait Implementations§
source§impl Clone for CreateIamPolicyAssignmentInputBuilder
impl Clone for CreateIamPolicyAssignmentInputBuilder
source§fn clone(&self) -> CreateIamPolicyAssignmentInputBuilder
fn clone(&self) -> CreateIamPolicyAssignmentInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for CreateIamPolicyAssignmentInputBuilder
impl Default for CreateIamPolicyAssignmentInputBuilder
source§fn default() -> CreateIamPolicyAssignmentInputBuilder
fn default() -> CreateIamPolicyAssignmentInputBuilder
source§impl PartialEq<CreateIamPolicyAssignmentInputBuilder> for CreateIamPolicyAssignmentInputBuilder
impl PartialEq<CreateIamPolicyAssignmentInputBuilder> for CreateIamPolicyAssignmentInputBuilder
source§fn eq(&self, other: &CreateIamPolicyAssignmentInputBuilder) -> bool
fn eq(&self, other: &CreateIamPolicyAssignmentInputBuilder) -> bool
self and other values to be equal, and is used
by ==.