Struct aws_sdk_datazone::operation::delete_time_series_data_points::DeleteTimeSeriesDataPointsInput
source · #[non_exhaustive]pub struct DeleteTimeSeriesDataPointsInput {
pub domain_identifier: Option<String>,
pub entity_identifier: Option<String>,
pub entity_type: Option<TimeSeriesEntityType>,
pub form_name: Option<String>,
pub client_token: Option<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.domain_identifier: Option<String>
The ID of the Amazon DataZone domain that houses the asset for which you want to delete a time series form.
entity_identifier: Option<String>
The ID of the asset for which you want to delete a time series form.
entity_type: Option<TimeSeriesEntityType>
The type of the asset for which you want to delete a time series form.
form_name: Option<String>
The name of the time series form that you want to delete.
client_token: Option<String>
A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.
Implementations§
source§impl DeleteTimeSeriesDataPointsInput
impl DeleteTimeSeriesDataPointsInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The ID of the Amazon DataZone domain that houses the asset for which you want to delete a time series form.
sourcepub fn entity_identifier(&self) -> Option<&str>
pub fn entity_identifier(&self) -> Option<&str>
The ID of the asset for which you want to delete a time series form.
sourcepub fn entity_type(&self) -> Option<&TimeSeriesEntityType>
pub fn entity_type(&self) -> Option<&TimeSeriesEntityType>
The type of the asset for which you want to delete a time series form.
sourcepub fn form_name(&self) -> Option<&str>
pub fn form_name(&self) -> Option<&str>
The name of the time series form that you want to delete.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.
source§impl DeleteTimeSeriesDataPointsInput
impl DeleteTimeSeriesDataPointsInput
sourcepub fn builder() -> DeleteTimeSeriesDataPointsInputBuilder
pub fn builder() -> DeleteTimeSeriesDataPointsInputBuilder
Creates a new builder-style object to manufacture DeleteTimeSeriesDataPointsInput
.
Trait Implementations§
source§impl Clone for DeleteTimeSeriesDataPointsInput
impl Clone for DeleteTimeSeriesDataPointsInput
source§fn clone(&self) -> DeleteTimeSeriesDataPointsInput
fn clone(&self) -> DeleteTimeSeriesDataPointsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DeleteTimeSeriesDataPointsInput
impl PartialEq for DeleteTimeSeriesDataPointsInput
source§fn eq(&self, other: &DeleteTimeSeriesDataPointsInput) -> bool
fn eq(&self, other: &DeleteTimeSeriesDataPointsInput) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteTimeSeriesDataPointsInput
Auto Trait Implementations§
impl Freeze for DeleteTimeSeriesDataPointsInput
impl RefUnwindSafe for DeleteTimeSeriesDataPointsInput
impl Send for DeleteTimeSeriesDataPointsInput
impl Sync for DeleteTimeSeriesDataPointsInput
impl Unpin for DeleteTimeSeriesDataPointsInput
impl UnwindSafe for DeleteTimeSeriesDataPointsInput
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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