[][src]Struct rusoto_quicksight::UpdateAnalysisRequest

pub struct UpdateAnalysisRequest {
    pub analysis_id: String,
    pub aws_account_id: String,
    pub name: String,
    pub parameters: Option<Parameters>,
    pub source_entity: AnalysisSourceEntity,
    pub theme_arn: Option<String>,
}

Fields

analysis_id: String

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

aws_account_id: String

The ID of the AWS account that contains the analysis that you're updating.

name: String

A descriptive name for the analysis that you're updating. 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.

source_entity: AnalysisSourceEntity

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

theme_arn: Option<String>

The Amazon Resource Name (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 UpdateAnalysisRequest[src]

impl Debug for UpdateAnalysisRequest[src]

impl Default for UpdateAnalysisRequest[src]

impl PartialEq<UpdateAnalysisRequest> for UpdateAnalysisRequest[src]

impl Serialize for UpdateAnalysisRequest[src]

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