Struct aws_sdk_quicksight::operation::create_iam_policy_assignment::builders::CreateIAMPolicyAssignmentFluentBuilder
source · pub struct CreateIAMPolicyAssignmentFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateIAMPolicyAssignment
.
Creates an assignment with one specified IAM policy, identified by its Amazon Resource Name (ARN). This policy assignment is attached to the specified groups or users of Amazon QuickSight. Assignment names are unique per Amazon Web Services account. To avoid overwriting rules in other namespaces, use assignment names that are unique.
Implementations§
source§impl CreateIAMPolicyAssignmentFluentBuilder
impl CreateIAMPolicyAssignmentFluentBuilder
sourcepub fn as_input(&self) -> &CreateIamPolicyAssignmentInputBuilder
pub fn as_input(&self) -> &CreateIamPolicyAssignmentInputBuilder
Access the CreateIAMPolicyAssignment as a reference.
sourcepub async fn send(
self
) -> Result<CreateIamPolicyAssignmentOutput, SdkError<CreateIAMPolicyAssignmentError, HttpResponse>>
pub async fn send( self ) -> Result<CreateIamPolicyAssignmentOutput, SdkError<CreateIAMPolicyAssignmentError, 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<CreateIamPolicyAssignmentOutput, CreateIAMPolicyAssignmentError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateIamPolicyAssignmentOutput, CreateIAMPolicyAssignmentError, 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 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 get_aws_account_id(&self) -> &Option<String>
pub fn get_aws_account_id(&self) -> &Option<String>
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. 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 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 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 get_namespace(&self) -> &Option<String>
pub fn get_namespace(&self) -> &Option<String>
The namespace that contains the assignment.
Trait Implementations§
source§impl Clone for CreateIAMPolicyAssignmentFluentBuilder
impl Clone for CreateIAMPolicyAssignmentFluentBuilder
source§fn clone(&self) -> CreateIAMPolicyAssignmentFluentBuilder
fn clone(&self) -> CreateIAMPolicyAssignmentFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more