#[non_exhaustive]pub struct GetDataIntegrationOutput {
pub arn: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub kms_key: Option<String>,
pub source_uri: Option<String>,
pub schedule_configuration: Option<ScheduleConfiguration>,
pub tags: Option<HashMap<String, 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.arn: Option<String>
The Amazon Resource Name (ARN) for the DataIntegration.
id: Option<String>
A unique identifier.
name: Option<String>
The name of the DataIntegration.
description: Option<String>
The KMS key for the DataIntegration.
kms_key: Option<String>
The KMS key for the DataIntegration.
source_uri: Option<String>
The URI of the data source.
schedule_configuration: Option<ScheduleConfiguration>
The name of the data and how often it should be pulled from the source.
One or more tags.
Implementations
sourceimpl GetDataIntegrationOutput
impl GetDataIntegrationOutput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The KMS key for the DataIntegration.
sourcepub fn source_uri(&self) -> Option<&str>
pub fn source_uri(&self) -> Option<&str>
The URI of the data source.
sourcepub fn schedule_configuration(&self) -> Option<&ScheduleConfiguration>
pub fn schedule_configuration(&self) -> Option<&ScheduleConfiguration>
The name of the data and how often it should be pulled from the source.
One or more tags.
sourceimpl GetDataIntegrationOutput
impl GetDataIntegrationOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetDataIntegrationOutput
Trait Implementations
sourceimpl Clone for GetDataIntegrationOutput
impl Clone for GetDataIntegrationOutput
sourcefn clone(&self) -> GetDataIntegrationOutput
fn clone(&self) -> GetDataIntegrationOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GetDataIntegrationOutput
impl Debug for GetDataIntegrationOutput
sourceimpl PartialEq<GetDataIntegrationOutput> for GetDataIntegrationOutput
impl PartialEq<GetDataIntegrationOutput> for GetDataIntegrationOutput
sourcefn eq(&self, other: &GetDataIntegrationOutput) -> bool
fn eq(&self, other: &GetDataIntegrationOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GetDataIntegrationOutput) -> bool
fn ne(&self, other: &GetDataIntegrationOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for GetDataIntegrationOutput
Auto Trait Implementations
impl RefUnwindSafe for GetDataIntegrationOutput
impl Send for GetDataIntegrationOutput
impl Sync for GetDataIntegrationOutput
impl Unpin for GetDataIntegrationOutput
impl UnwindSafe for GetDataIntegrationOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more