[][src]Struct rusoto_quicksight::CreateIAMPolicyAssignmentRequest

pub struct CreateIAMPolicyAssignmentRequest {
    pub assignment_name: String,
    pub assignment_status: String,
    pub aws_account_id: String,
    pub identities: Option<HashMap<String, Vec<String>>>,
    pub namespace: String,
    pub policy_arn: Option<String>,
}

Fields

assignment_name: String

The name of the assignment, also called a rule. It must be unique within an AWS account.

assignment_status: String

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.

aws_account_id: String

The ID of the AWS account where you want to assign an IAM policy to QuickSight users or groups.

identities: Option<HashMap<String, Vec<String>>>

The QuickSight users, groups, or both that you want to assign the policy to.

namespace: String

The namespace that contains the assignment.

policy_arn: Option<String>

The ARN for the IAM policy to apply to the QuickSight users and groups specified in this assignment.

Trait Implementations

impl Clone for CreateIAMPolicyAssignmentRequest[src]

impl Debug for CreateIAMPolicyAssignmentRequest[src]

impl Default for CreateIAMPolicyAssignmentRequest[src]

impl PartialEq<CreateIAMPolicyAssignmentRequest> for CreateIAMPolicyAssignmentRequest[src]

impl Serialize for CreateIAMPolicyAssignmentRequest[src]

impl StructuralPartialEq for CreateIAMPolicyAssignmentRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.