Interface CapabilityOptions.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<CapabilityOptions.Builder,
,CapabilityOptions> SdkBuilder<CapabilityOptions.Builder,
,CapabilityOptions> SdkPojo
- Enclosing class:
CapabilityOptions
@Mutable
@NotThreadSafe
public static interface CapabilityOptions.Builder
extends SdkPojo, CopyableBuilder<CapabilityOptions.Builder,CapabilityOptions>
-
Method Summary
Modifier and TypeMethodDescriptiondefault CapabilityOptions.Builder
inboundEdi
(Consumer<InboundEdiOptions.Builder> inboundEdi) A structure that contains the inbound EDI options for the capability.inboundEdi
(InboundEdiOptions inboundEdi) A structure that contains the inbound EDI options for the capability.default CapabilityOptions.Builder
outboundEdi
(Consumer<OutboundEdiOptions.Builder> outboundEdi) A structure that contains the outbound EDI options.outboundEdi
(OutboundEdiOptions outboundEdi) A structure that contains the outbound EDI options.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
outboundEdi
A structure that contains the outbound EDI options.
- Parameters:
outboundEdi
- A structure that contains the outbound EDI options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outboundEdi
A structure that contains the outbound EDI options.
This is a convenience method that creates an instance of theOutboundEdiOptions.Builder
avoiding the need to create one manually viaOutboundEdiOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tooutboundEdi(OutboundEdiOptions)
.- Parameters:
outboundEdi
- a consumer that will call methods onOutboundEdiOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
inboundEdi
A structure that contains the inbound EDI options for the capability.
- Parameters:
inboundEdi
- A structure that contains the inbound EDI options for the capability.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inboundEdi
A structure that contains the inbound EDI options for the capability.
This is a convenience method that creates an instance of theInboundEdiOptions.Builder
avoiding the need to create one manually viaInboundEdiOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toinboundEdi(InboundEdiOptions)
.- Parameters:
inboundEdi
- a consumer that will call methods onInboundEdiOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-