#[non_exhaustive]pub struct CreateDataIntegrationInput {
pub name: Option<String>,
pub description: Option<String>,
pub kms_key: Option<String>,
pub source_uri: Option<String>,
pub schedule_config: Option<ScheduleConfiguration>,
pub tags: Option<HashMap<String, 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.name: Option<String>
The name of the DataIntegration.
description: Option<String>
A description of the DataIntegration.
kms_key: Option<String>
The KMS key for the DataIntegration.
source_uri: Option<String>
The URI of the data source.
schedule_config: Option<ScheduleConfiguration>
The name of the data and how often it should be pulled from the source.
One or more tags.
client_token: Option<String>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
Implementations
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateDataIntegration, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateDataIntegration, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateDataIntegration
>
Creates a new builder-style object to manufacture CreateDataIntegrationInput
A description of the DataIntegration.
The URI of the data source.
The name of the data and how often it should be pulled from the source.
One or more tags.
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateDataIntegrationInput
impl Send for CreateDataIntegrationInput
impl Sync for CreateDataIntegrationInput
impl Unpin for CreateDataIntegrationInput
impl UnwindSafe for CreateDataIntegrationInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more