public static interface CreateFlowRequest.Builder extends AppflowRequest.Builder, SdkPojo, CopyableBuilder<CreateFlowRequest.Builder,CreateFlowRequest>
Modifier and Type | Method and Description |
---|---|
CreateFlowRequest.Builder |
description(String description)
A description of the flow you want to create.
|
CreateFlowRequest.Builder |
destinationFlowConfigList(Collection<DestinationFlowConfig> destinationFlowConfigList)
The configuration that controls how Amazon AppFlow places data in the destination connector.
|
CreateFlowRequest.Builder |
destinationFlowConfigList(Consumer<DestinationFlowConfig.Builder>... destinationFlowConfigList)
The configuration that controls how Amazon AppFlow places data in the destination connector.
|
CreateFlowRequest.Builder |
destinationFlowConfigList(DestinationFlowConfig... destinationFlowConfigList)
The configuration that controls how Amazon AppFlow places data in the destination connector.
|
CreateFlowRequest.Builder |
flowName(String flowName)
The specified name of the flow.
|
CreateFlowRequest.Builder |
kmsArn(String kmsArn)
The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption.
|
CreateFlowRequest.Builder |
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
Add an optional request override configuration.
|
CreateFlowRequest.Builder |
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
Add an optional request override configuration.
|
default CreateFlowRequest.Builder |
sourceFlowConfig(Consumer<SourceFlowConfig.Builder> sourceFlowConfig)
The configuration that controls how Amazon AppFlow retrieves data from the source connector.
|
CreateFlowRequest.Builder |
sourceFlowConfig(SourceFlowConfig sourceFlowConfig)
The configuration that controls how Amazon AppFlow retrieves data from the source connector.
|
CreateFlowRequest.Builder |
tags(Map<String,String> tags)
The tags used to organize, track, or control access for your flow.
|
CreateFlowRequest.Builder |
tasks(Collection<Task> tasks)
A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.
|
CreateFlowRequest.Builder |
tasks(Consumer<Task.Builder>... tasks)
A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.
|
CreateFlowRequest.Builder |
tasks(Task... tasks)
A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.
|
default CreateFlowRequest.Builder |
triggerConfig(Consumer<TriggerConfig.Builder> triggerConfig)
The trigger settings that determine how and when the flow runs.
|
CreateFlowRequest.Builder |
triggerConfig(TriggerConfig triggerConfig)
The trigger settings that determine how and when the flow runs.
|
build
overrideConfiguration
equalsBySdkFields, sdkFields
copy
applyMutation, build
CreateFlowRequest.Builder flowName(String flowName)
The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.
flowName
- The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.CreateFlowRequest.Builder description(String description)
A description of the flow you want to create.
description
- A description of the flow you want to create.CreateFlowRequest.Builder kmsArn(String kmsArn)
The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
kmsArn
- The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption.
This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide
anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.CreateFlowRequest.Builder triggerConfig(TriggerConfig triggerConfig)
The trigger settings that determine how and when the flow runs.
triggerConfig
- The trigger settings that determine how and when the flow runs.default CreateFlowRequest.Builder triggerConfig(Consumer<TriggerConfig.Builder> triggerConfig)
The trigger settings that determine how and when the flow runs.
This is a convenience that creates an instance of theTriggerConfig.Builder
avoiding the need to
create one manually via TriggerConfig.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to triggerConfig(TriggerConfig)
.triggerConfig
- a consumer that will call methods on TriggerConfig.Builder
triggerConfig(TriggerConfig)
CreateFlowRequest.Builder sourceFlowConfig(SourceFlowConfig sourceFlowConfig)
The configuration that controls how Amazon AppFlow retrieves data from the source connector.
sourceFlowConfig
- The configuration that controls how Amazon AppFlow retrieves data from the source connector.default CreateFlowRequest.Builder sourceFlowConfig(Consumer<SourceFlowConfig.Builder> sourceFlowConfig)
The configuration that controls how Amazon AppFlow retrieves data from the source connector.
This is a convenience that creates an instance of theSourceFlowConfig.Builder
avoiding the need to
create one manually via SourceFlowConfig.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to sourceFlowConfig(SourceFlowConfig)
.sourceFlowConfig
- a consumer that will call methods on SourceFlowConfig.Builder
sourceFlowConfig(SourceFlowConfig)
CreateFlowRequest.Builder destinationFlowConfigList(Collection<DestinationFlowConfig> destinationFlowConfigList)
The configuration that controls how Amazon AppFlow places data in the destination connector.
destinationFlowConfigList
- The configuration that controls how Amazon AppFlow places data in the destination connector.CreateFlowRequest.Builder destinationFlowConfigList(DestinationFlowConfig... destinationFlowConfigList)
The configuration that controls how Amazon AppFlow places data in the destination connector.
destinationFlowConfigList
- The configuration that controls how Amazon AppFlow places data in the destination connector.CreateFlowRequest.Builder destinationFlowConfigList(Consumer<DestinationFlowConfig.Builder>... destinationFlowConfigList)
The configuration that controls how Amazon AppFlow places data in the destination connector.
This is a convenience that creates an instance of theList.Builder
avoiding
the need to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called
immediately and its result is passed to #destinationFlowConfigList(List)
.destinationFlowConfigList
- a consumer that will call methods on List.Builder
#destinationFlowConfigList(List)
CreateFlowRequest.Builder tasks(Collection<Task> tasks)
A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.
tasks
- A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.CreateFlowRequest.Builder tasks(Task... tasks)
A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.
tasks
- A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.CreateFlowRequest.Builder tasks(Consumer<Task.Builder>... tasks)
A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.
This is a convenience that creates an instance of theList.Builder
avoiding the need to create
one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its result
is passed to #tasks(List)
.tasks
- a consumer that will call methods on List.Builder
#tasks(List)
CreateFlowRequest.Builder tags(Map<String,String> tags)
The tags used to organize, track, or control access for your flow.
tags
- The tags used to organize, track, or control access for your flow.CreateFlowRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
overrideConfiguration
- The override configuration.CreateFlowRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
builderConsumer
- A Consumer
to which an empty AwsRequestOverrideConfiguration.Builder
will be
given.Copyright © 2021 Amazon Web Services, Inc. All Rights Reserved.