Interface DatabaseList.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DatabaseList.Builder,DatabaseList>,SdkBuilder<DatabaseList.Builder,DatabaseList>,SdkPojo
- Enclosing class:
- DatabaseList
public static interface DatabaseList.Builder extends SdkPojo, CopyableBuilder<DatabaseList.Builder,DatabaseList>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatabaseList.Builderexclude(String... exclude)The list of database patterns in source database endpoint to be excluded for Firehose to read from.DatabaseList.Builderexclude(Collection<String> exclude)The list of database patterns in source database endpoint to be excluded for Firehose to read from.DatabaseList.Builderinclude(String... include)The list of database patterns in source database endpoint to be included for Firehose to read from.DatabaseList.Builderinclude(Collection<String> include)The list of database patterns in source database endpoint to be included for Firehose to read from.-
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 Detail
-
include
DatabaseList.Builder include(Collection<String> include)
The list of database patterns in source database endpoint to be included for Firehose to read from.
Amazon Data Firehose is in preview release and is subject to change.
- Parameters:
include- The list of database patterns in source database endpoint to be included for Firehose to read from.Amazon Data Firehose is in preview release and is subject to change.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
include
DatabaseList.Builder include(String... include)
The list of database patterns in source database endpoint to be included for Firehose to read from.
Amazon Data Firehose is in preview release and is subject to change.
- Parameters:
include- The list of database patterns in source database endpoint to be included for Firehose to read from.Amazon Data Firehose is in preview release and is subject to change.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exclude
DatabaseList.Builder exclude(Collection<String> exclude)
The list of database patterns in source database endpoint to be excluded for Firehose to read from.
Amazon Data Firehose is in preview release and is subject to change.
- Parameters:
exclude- The list of database patterns in source database endpoint to be excluded for Firehose to read from.Amazon Data Firehose is in preview release and is subject to change.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exclude
DatabaseList.Builder exclude(String... exclude)
The list of database patterns in source database endpoint to be excluded for Firehose to read from.
Amazon Data Firehose is in preview release and is subject to change.
- Parameters:
exclude- The list of database patterns in source database endpoint to be excluded for Firehose to read from.Amazon Data Firehose is in preview release and is subject to change.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-