[][src]Struct rusoto_quicksight::CreateTemplateRequest

pub struct CreateTemplateRequest {
    pub aws_account_id: String,
    pub name: Option<String>,
    pub permissions: Option<Vec<ResourcePermission>>,
    pub source_entity: TemplateSourceEntity,
    pub tags: Option<Vec<Tag>>,
    pub template_id: String,
    pub version_description: Option<String>,
}

Fields

aws_account_id: String

The ID for the AWS account that the group is in. Currently, you use the ID for the AWS account that contains your Amazon QuickSight account.

name: Option<String>

A display name for the template.

permissions: Option<Vec<ResourcePermission>>

A list of resource permissions to be set on the template.

source_entity: TemplateSourceEntity

The entity that you are using as a source when you create 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.

tags: Option<Vec<Tag>>

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

template_id: String

An ID for the template that you want to create. This template is unique per AWS Region in each AWS account.

version_description: Option<String>

A description of the current template version being created. This API operation creates the first version of the template. Every time UpdateTemplate is called, a new version is created. Each version of the template maintains a description of the version in the VersionDescription field.

Trait Implementations

impl Clone for CreateTemplateRequest[src]

impl Debug for CreateTemplateRequest[src]

impl Default for CreateTemplateRequest[src]

impl PartialEq<CreateTemplateRequest> for CreateTemplateRequest[src]

impl Serialize for CreateTemplateRequest[src]

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