#[non_exhaustive]pub struct StartDataSourceRunInput {
pub domain_identifier: Option<String>,
pub data_source_identifier: Option<String>,
pub client_token: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_identifier: Option<String>
The identifier of the Amazon DataZone domain in which to start a data source run.
data_source_identifier: Option<String>
The identifier of the data source.
client_token: Option<String>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
Implementations§
source§impl StartDataSourceRunInput
impl StartDataSourceRunInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain in which to start a data source run.
sourcepub fn data_source_identifier(&self) -> Option<&str>
pub fn data_source_identifier(&self) -> Option<&str>
The identifier of the data source.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
source§impl StartDataSourceRunInput
impl StartDataSourceRunInput
sourcepub fn builder() -> StartDataSourceRunInputBuilder
pub fn builder() -> StartDataSourceRunInputBuilder
Creates a new builder-style object to manufacture StartDataSourceRunInput
.
Trait Implementations§
source§impl Clone for StartDataSourceRunInput
impl Clone for StartDataSourceRunInput
source§fn clone(&self) -> StartDataSourceRunInput
fn clone(&self) -> StartDataSourceRunInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for StartDataSourceRunInput
impl Debug for StartDataSourceRunInput
source§impl PartialEq for StartDataSourceRunInput
impl PartialEq for StartDataSourceRunInput
source§fn eq(&self, other: &StartDataSourceRunInput) -> bool
fn eq(&self, other: &StartDataSourceRunInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StartDataSourceRunInput
Auto Trait Implementations§
impl Freeze for StartDataSourceRunInput
impl RefUnwindSafe for StartDataSourceRunInput
impl Send for StartDataSourceRunInput
impl Sync for StartDataSourceRunInput
impl Unpin for StartDataSourceRunInput
impl UnwindSafe for StartDataSourceRunInput
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.