Struct aws_sdk_quicksight::operation::batch_create_topic_reviewed_answer::BatchCreateTopicReviewedAnswerInput
source · #[non_exhaustive]pub struct BatchCreateTopicReviewedAnswerInput {
pub aws_account_id: Option<String>,
pub topic_id: Option<String>,
pub answers: Option<Vec<CreateTopicReviewedAnswer>>,
}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.aws_account_id: Option<String>The ID of the Amazon Web Services account that you want to create a reviewed answer in.
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.
answers: Option<Vec<CreateTopicReviewedAnswer>>The definition of the Answers to be created.
Implementations§
source§impl BatchCreateTopicReviewedAnswerInput
impl BatchCreateTopicReviewedAnswerInput
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The ID of the Amazon Web Services account that you want to create a reviewed answer in.
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 answers(&self) -> &[CreateTopicReviewedAnswer]
pub fn answers(&self) -> &[CreateTopicReviewedAnswer]
The definition of the Answers to be 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 .answers.is_none().
source§impl BatchCreateTopicReviewedAnswerInput
impl BatchCreateTopicReviewedAnswerInput
sourcepub fn builder() -> BatchCreateTopicReviewedAnswerInputBuilder
pub fn builder() -> BatchCreateTopicReviewedAnswerInputBuilder
Creates a new builder-style object to manufacture BatchCreateTopicReviewedAnswerInput.
Trait Implementations§
source§impl Clone for BatchCreateTopicReviewedAnswerInput
impl Clone for BatchCreateTopicReviewedAnswerInput
source§fn clone(&self) -> BatchCreateTopicReviewedAnswerInput
fn clone(&self) -> BatchCreateTopicReviewedAnswerInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for BatchCreateTopicReviewedAnswerInput
impl PartialEq for BatchCreateTopicReviewedAnswerInput
source§fn eq(&self, other: &BatchCreateTopicReviewedAnswerInput) -> bool
fn eq(&self, other: &BatchCreateTopicReviewedAnswerInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BatchCreateTopicReviewedAnswerInput
Auto Trait Implementations§
impl Freeze for BatchCreateTopicReviewedAnswerInput
impl RefUnwindSafe for BatchCreateTopicReviewedAnswerInput
impl Send for BatchCreateTopicReviewedAnswerInput
impl Sync for BatchCreateTopicReviewedAnswerInput
impl Unpin for BatchCreateTopicReviewedAnswerInput
impl UnwindSafe for BatchCreateTopicReviewedAnswerInput
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