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: StringThe ID of the AWS account that contains the template that you're updating.
name: Option<String>The name for the template.
source_entity: TemplateSourceEntityThe 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: StringThe 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§
Source§impl Clone for UpdateTemplateRequest
impl Clone for UpdateTemplateRequest
Source§fn clone(&self) -> UpdateTemplateRequest
fn clone(&self) -> UpdateTemplateRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more