Struct aws_sdk_entityresolution::operation::create_matching_workflow::CreateMatchingWorkflowInput
source · #[non_exhaustive]pub struct CreateMatchingWorkflowInput {
pub workflow_name: Option<String>,
pub description: Option<String>,
pub input_source_config: Option<Vec<InputSource>>,
pub output_source_config: Option<Vec<OutputSource>>,
pub resolution_techniques: Option<ResolutionTechniques>,
pub incremental_run_config: Option<IncrementalRunConfig>,
pub role_arn: Option<String>,
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.workflow_name: Option<String>
The name of the workflow. There can't be multiple MatchingWorkflows
with the same name.
description: Option<String>
A description of the workflow.
input_source_config: Option<Vec<InputSource>>
A list of InputSource
objects, which have the fields InputSourceARN
and SchemaName
.
output_source_config: Option<Vec<OutputSource>>
A list of OutputSource
objects, each of which contains fields OutputS3Path
, ApplyNormalization
, and Output
.
resolution_techniques: Option<ResolutionTechniques>
An object which defines the resolutionType
and the ruleBasedProperties
.
incremental_run_config: Option<IncrementalRunConfig>
An object which defines an incremental run type and has only incrementalRunType
as a field.
role_arn: Option<String>
The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
The tags used to organize, track, or control access for this resource.
Implementations§
source§impl CreateMatchingWorkflowInput
impl CreateMatchingWorkflowInput
sourcepub fn workflow_name(&self) -> Option<&str>
pub fn workflow_name(&self) -> Option<&str>
The name of the workflow. There can't be multiple MatchingWorkflows
with the same name.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the workflow.
sourcepub fn input_source_config(&self) -> &[InputSource]
pub fn input_source_config(&self) -> &[InputSource]
A list of InputSource
objects, which have the fields InputSourceARN
and SchemaName
.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .input_source_config.is_none()
.
sourcepub fn output_source_config(&self) -> &[OutputSource]
pub fn output_source_config(&self) -> &[OutputSource]
A list of OutputSource
objects, each of which contains fields OutputS3Path
, ApplyNormalization
, and Output
.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .output_source_config.is_none()
.
sourcepub fn resolution_techniques(&self) -> Option<&ResolutionTechniques>
pub fn resolution_techniques(&self) -> Option<&ResolutionTechniques>
An object which defines the resolutionType
and the ruleBasedProperties
.
sourcepub fn incremental_run_config(&self) -> Option<&IncrementalRunConfig>
pub fn incremental_run_config(&self) -> Option<&IncrementalRunConfig>
An object which defines an incremental run type and has only incrementalRunType
as a field.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
The tags used to organize, track, or control access for this resource.
source§impl CreateMatchingWorkflowInput
impl CreateMatchingWorkflowInput
sourcepub fn builder() -> CreateMatchingWorkflowInputBuilder
pub fn builder() -> CreateMatchingWorkflowInputBuilder
Creates a new builder-style object to manufacture CreateMatchingWorkflowInput
.
Trait Implementations§
source§impl Clone for CreateMatchingWorkflowInput
impl Clone for CreateMatchingWorkflowInput
source§fn clone(&self) -> CreateMatchingWorkflowInput
fn clone(&self) -> CreateMatchingWorkflowInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateMatchingWorkflowInput
impl Debug for CreateMatchingWorkflowInput
source§impl PartialEq for CreateMatchingWorkflowInput
impl PartialEq for CreateMatchingWorkflowInput
source§fn eq(&self, other: &CreateMatchingWorkflowInput) -> bool
fn eq(&self, other: &CreateMatchingWorkflowInput) -> bool
self
and other
values to be equal, and is used
by ==
.