[][src]Struct rusoto_quicksight::UpdateTemplateRequest

pub struct UpdateTemplateRequest {
    pub aws_account_id: String,
    pub name: Option<String>,
    pub source_entity: TemplateSourceEntity,
    pub template_id: String,
    pub version_description: Option<String>,
}

Fields

aws_account_id: String

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

name: Option<String>

The name for the template.

source_entity: TemplateSourceEntity

The entity that you are using as a source when you update the template. In SourceEntity, you specify the type of object you're using as source: SourceTemplate for a template or SourceAnalysis for an analysis. Both of these require an Amazon Resource Name (ARN). For SourceTemplate, specify the ARN of the source template. For SourceAnalysis, specify the ARN of the source analysis. The SourceTemplate ARN can contain any AWS Account and any QuickSight-supported AWS Region.

Use the DataSetReferences entity within SourceTemplate or SourceAnalysis to list the replacement datasets for the placeholders listed in the original. The schema in each dataset must match its placeholder.

template_id: String

The ID for the template.

version_description: Option<String>

A description of the current template version that is being updated. Every time you call UpdateTemplate, you create a new version of the template. Each version of the template maintains a description of the version in the VersionDescription field.

Trait Implementations

impl Clone for UpdateTemplateRequest[src]

impl Debug for UpdateTemplateRequest[src]

impl Default for UpdateTemplateRequest[src]

impl PartialEq<UpdateTemplateRequest> for UpdateTemplateRequest[src]

impl Serialize for UpdateTemplateRequest[src]

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