Struct aws_sdk_quicksight::operation::batch_delete_topic_reviewed_answer::BatchDeleteTopicReviewedAnswerInput
source · #[non_exhaustive]pub struct BatchDeleteTopicReviewedAnswerInput {
pub aws_account_id: Option<String>,
pub topic_id: Option<String>,
pub answer_ids: Option<Vec<String>>,
}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 delete a reviewed answers in.
topic_id: Option<String>The ID for the topic reviewed answer that you want to delete. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.
answer_ids: Option<Vec<String>>The Answer IDs of the Answers to be deleted.
Implementations§
source§impl BatchDeleteTopicReviewedAnswerInput
impl BatchDeleteTopicReviewedAnswerInput
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 delete a reviewed answers 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 delete. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.
sourcepub fn answer_ids(&self) -> &[String]
pub fn answer_ids(&self) -> &[String]
The Answer IDs of the Answers to be deleted.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .answer_ids.is_none().
source§impl BatchDeleteTopicReviewedAnswerInput
impl BatchDeleteTopicReviewedAnswerInput
sourcepub fn builder() -> BatchDeleteTopicReviewedAnswerInputBuilder
pub fn builder() -> BatchDeleteTopicReviewedAnswerInputBuilder
Creates a new builder-style object to manufacture BatchDeleteTopicReviewedAnswerInput.
Trait Implementations§
source§impl Clone for BatchDeleteTopicReviewedAnswerInput
impl Clone for BatchDeleteTopicReviewedAnswerInput
source§fn clone(&self) -> BatchDeleteTopicReviewedAnswerInput
fn clone(&self) -> BatchDeleteTopicReviewedAnswerInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for BatchDeleteTopicReviewedAnswerInput
impl PartialEq for BatchDeleteTopicReviewedAnswerInput
source§fn eq(&self, other: &BatchDeleteTopicReviewedAnswerInput) -> bool
fn eq(&self, other: &BatchDeleteTopicReviewedAnswerInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BatchDeleteTopicReviewedAnswerInput
Auto Trait Implementations§
impl Freeze for BatchDeleteTopicReviewedAnswerInput
impl RefUnwindSafe for BatchDeleteTopicReviewedAnswerInput
impl Send for BatchDeleteTopicReviewedAnswerInput
impl Sync for BatchDeleteTopicReviewedAnswerInput
impl Unpin for BatchDeleteTopicReviewedAnswerInput
impl UnwindSafe for BatchDeleteTopicReviewedAnswerInput
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