Struct aws_sdk_quicksight::operation::describe_analysis_definition::DescribeAnalysisDefinitionOutput
source · #[non_exhaustive]pub struct DescribeAnalysisDefinitionOutput {
pub analysis_id: Option<String>,
pub name: Option<String>,
pub errors: Option<Vec<AnalysisError>>,
pub resource_status: Option<ResourceStatus>,
pub theme_arn: Option<String>,
pub definition: Option<AnalysisDefinition>,
pub status: i32,
pub request_id: Option<String>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.analysis_id: Option<String>The ID of the analysis described.
name: Option<String>The descriptive name of the analysis.
errors: Option<Vec<AnalysisError>>Errors associated with the analysis.
resource_status: Option<ResourceStatus>Status associated with the analysis.
-
CREATION_IN_PROGRESS -
CREATION_SUCCESSFUL -
CREATION_FAILED -
UPDATE_IN_PROGRESS -
UPDATE_SUCCESSFUL -
UPDATE_FAILED -
DELETED
theme_arn: Option<String>The ARN of the theme of the analysis.
definition: Option<AnalysisDefinition>The definition of an analysis.
A definition is the data model of all features in a Dashboard, Template, or Analysis.
status: i32The HTTP status of the request.
request_id: Option<String>The Amazon Web Services request ID for this operation.
Implementations§
source§impl DescribeAnalysisDefinitionOutput
impl DescribeAnalysisDefinitionOutput
sourcepub fn analysis_id(&self) -> Option<&str>
pub fn analysis_id(&self) -> Option<&str>
The ID of the analysis described.
sourcepub fn errors(&self) -> &[AnalysisError]
pub fn errors(&self) -> &[AnalysisError]
Errors associated with the analysis.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .errors.is_none().
sourcepub fn resource_status(&self) -> Option<&ResourceStatus>
pub fn resource_status(&self) -> Option<&ResourceStatus>
Status associated with the analysis.
-
CREATION_IN_PROGRESS -
CREATION_SUCCESSFUL -
CREATION_FAILED -
UPDATE_IN_PROGRESS -
UPDATE_SUCCESSFUL -
UPDATE_FAILED -
DELETED
sourcepub fn definition(&self) -> Option<&AnalysisDefinition>
pub fn definition(&self) -> Option<&AnalysisDefinition>
The definition of an analysis.
A definition is the data model of all features in a Dashboard, Template, or Analysis.
sourcepub fn request_id(&self) -> Option<&str>
pub fn request_id(&self) -> Option<&str>
The Amazon Web Services request ID for this operation.
source§impl DescribeAnalysisDefinitionOutput
impl DescribeAnalysisDefinitionOutput
sourcepub fn builder() -> DescribeAnalysisDefinitionOutputBuilder
pub fn builder() -> DescribeAnalysisDefinitionOutputBuilder
Creates a new builder-style object to manufacture DescribeAnalysisDefinitionOutput.
Trait Implementations§
source§impl Clone for DescribeAnalysisDefinitionOutput
impl Clone for DescribeAnalysisDefinitionOutput
source§fn clone(&self) -> DescribeAnalysisDefinitionOutput
fn clone(&self) -> DescribeAnalysisDefinitionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DescribeAnalysisDefinitionOutput
impl PartialEq for DescribeAnalysisDefinitionOutput
source§fn eq(&self, other: &DescribeAnalysisDefinitionOutput) -> bool
fn eq(&self, other: &DescribeAnalysisDefinitionOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeAnalysisDefinitionOutput
impl RequestId for DescribeAnalysisDefinitionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for DescribeAnalysisDefinitionOutput
Auto Trait Implementations§
impl Freeze for DescribeAnalysisDefinitionOutput
impl RefUnwindSafe for DescribeAnalysisDefinitionOutput
impl Send for DescribeAnalysisDefinitionOutput
impl Sync for DescribeAnalysisDefinitionOutput
impl Unpin for DescribeAnalysisDefinitionOutput
impl UnwindSafe for DescribeAnalysisDefinitionOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more