[][src]Struct rusoto_quicksight::UpdateIAMPolicyAssignmentRequest

pub struct UpdateIAMPolicyAssignmentRequest {
    pub assignment_name: String,
    pub assignment_status: Option<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. This name must be unique within an AWS account.

assignment_status: Option<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 that contains the IAM policy assignment.

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

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

namespace: String

The namespace of 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 UpdateIAMPolicyAssignmentRequest[src]

impl Debug for UpdateIAMPolicyAssignmentRequest[src]

impl Default for UpdateIAMPolicyAssignmentRequest[src]

impl PartialEq<UpdateIAMPolicyAssignmentRequest> for UpdateIAMPolicyAssignmentRequest[src]

impl Serialize for UpdateIAMPolicyAssignmentRequest[src]

impl StructuralPartialEq for UpdateIAMPolicyAssignmentRequest[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> 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.