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§
Source§impl Clone for UpdateAnalysisRequest
impl Clone for UpdateAnalysisRequest
Source§fn clone(&self) -> UpdateAnalysisRequest
fn clone(&self) -> UpdateAnalysisRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more