[][src]Struct rusoto_quicksight::CreateAnalysisRequest

pub struct CreateAnalysisRequest {
    pub analysis_id: String,
    pub aws_account_id: String,
    pub name: String,
    pub parameters: Option<Parameters>,
    pub permissions: Option<Vec<ResourcePermission>>,
    pub source_entity: AnalysisSourceEntity,
    pub tags: Option<Vec<Tag>>,
    pub theme_arn: Option<String>,
}

Fields

analysis_id: String

The ID for the analysis that you're creating. This ID displays in the URL of the analysis.

aws_account_id: String

The ID of the AWS account where you are creating an analysis.

name: String

A descriptive name for the analysis that you're creating. This name displays for the analysis in the QuickSight console.

parameters: Option<Parameters>

The parameter names and override values that you want to use. An analysis can have any parameter type, and some parameters might accept multiple values.

permissions: Option<Vec<ResourcePermission>>

A structure that describes the principals and the resource-level permissions on an analysis. You can use the Permissions structure to grant permissions by providing a list of AWS Identity and Access Management (IAM) action information for each principal listed by Amazon Resource Name (ARN).

To specify no permissions, omit Permissions.

source_entity: AnalysisSourceEntity

A source entity to use for the analysis that you're creating. This metadata structure contains details that describe a source template and one or more datasets.

tags: Option<Vec<Tag>>

Contains a map of the key-value pairs for the resource tag or tags assigned to the analysis.

theme_arn: Option<String>

The ARN for the theme to apply to the analysis that you're creating. To see the theme in the QuickSight console, make sure that you have access to it.

Trait Implementations

impl Clone for CreateAnalysisRequest[src]

impl Debug for CreateAnalysisRequest[src]

impl Default for CreateAnalysisRequest[src]

impl PartialEq<CreateAnalysisRequest> for CreateAnalysisRequest[src]

impl Serialize for CreateAnalysisRequest[src]

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