Struct aws_sdk_quicksight::operation::batch_create_topic_reviewed_answer::BatchCreateTopicReviewedAnswerOutput
source · #[non_exhaustive]pub struct BatchCreateTopicReviewedAnswerOutput {
pub topic_id: Option<String>,
pub topic_arn: Option<String>,
pub succeeded_answers: Option<Vec<SucceededTopicReviewedAnswer>>,
pub invalid_answers: Option<Vec<InvalidTopicReviewedAnswer>>,
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.topic_id: Option<String>The ID for the topic reviewed answer that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.
topic_arn: Option<String>The Amazon Resource Name (ARN) of the topic.
succeeded_answers: Option<Vec<SucceededTopicReviewedAnswer>>The definition of Answers that are successfully created.
invalid_answers: Option<Vec<InvalidTopicReviewedAnswer>>The definition of Answers that are invalid and not created.
status: i32The HTTP status of the request.
request_id: Option<String>The Amazon Web Services request ID for this operation.
Implementations§
source§impl BatchCreateTopicReviewedAnswerOutput
impl BatchCreateTopicReviewedAnswerOutput
sourcepub fn topic_id(&self) -> Option<&str>
pub fn topic_id(&self) -> Option<&str>
The ID for the topic reviewed answer that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.
sourcepub fn succeeded_answers(&self) -> &[SucceededTopicReviewedAnswer]
pub fn succeeded_answers(&self) -> &[SucceededTopicReviewedAnswer]
The definition of Answers that are successfully created.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .succeeded_answers.is_none().
sourcepub fn invalid_answers(&self) -> &[InvalidTopicReviewedAnswer]
pub fn invalid_answers(&self) -> &[InvalidTopicReviewedAnswer]
The definition of Answers that are invalid and not created.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .invalid_answers.is_none().
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 BatchCreateTopicReviewedAnswerOutput
impl BatchCreateTopicReviewedAnswerOutput
sourcepub fn builder() -> BatchCreateTopicReviewedAnswerOutputBuilder
pub fn builder() -> BatchCreateTopicReviewedAnswerOutputBuilder
Creates a new builder-style object to manufacture BatchCreateTopicReviewedAnswerOutput.
Trait Implementations§
source§impl Clone for BatchCreateTopicReviewedAnswerOutput
impl Clone for BatchCreateTopicReviewedAnswerOutput
source§fn clone(&self) -> BatchCreateTopicReviewedAnswerOutput
fn clone(&self) -> BatchCreateTopicReviewedAnswerOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for BatchCreateTopicReviewedAnswerOutput
impl PartialEq for BatchCreateTopicReviewedAnswerOutput
source§fn eq(&self, other: &BatchCreateTopicReviewedAnswerOutput) -> bool
fn eq(&self, other: &BatchCreateTopicReviewedAnswerOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for BatchCreateTopicReviewedAnswerOutput
impl RequestId for BatchCreateTopicReviewedAnswerOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for BatchCreateTopicReviewedAnswerOutput
Auto Trait Implementations§
impl Freeze for BatchCreateTopicReviewedAnswerOutput
impl RefUnwindSafe for BatchCreateTopicReviewedAnswerOutput
impl Send for BatchCreateTopicReviewedAnswerOutput
impl Sync for BatchCreateTopicReviewedAnswerOutput
impl Unpin for BatchCreateTopicReviewedAnswerOutput
impl UnwindSafe for BatchCreateTopicReviewedAnswerOutput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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