Interface CustomLogSourceConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomLogSourceConfiguration.Builder,CustomLogSourceConfiguration>,SdkBuilder<CustomLogSourceConfiguration.Builder,CustomLogSourceConfiguration>,SdkPojo
- Enclosing class:
- CustomLogSourceConfiguration
public static interface CustomLogSourceConfiguration.Builder extends SdkPojo, CopyableBuilder<CustomLogSourceConfiguration.Builder,CustomLogSourceConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CustomLogSourceConfiguration.BuildercrawlerConfiguration(Consumer<CustomLogSourceCrawlerConfiguration.Builder> crawlerConfiguration)The configuration for the Glue Crawler for the third-party custom source.CustomLogSourceConfiguration.BuildercrawlerConfiguration(CustomLogSourceCrawlerConfiguration crawlerConfiguration)The configuration for the Glue Crawler for the third-party custom source.default CustomLogSourceConfiguration.BuilderproviderIdentity(Consumer<AwsIdentity.Builder> providerIdentity)The identity of the log provider for the third-party custom source.CustomLogSourceConfiguration.BuilderproviderIdentity(AwsIdentity providerIdentity)The identity of the log provider for the third-party custom source.-
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, sdkFields
-
-
-
-
Method Detail
-
crawlerConfiguration
CustomLogSourceConfiguration.Builder crawlerConfiguration(CustomLogSourceCrawlerConfiguration crawlerConfiguration)
The configuration for the Glue Crawler for the third-party custom source.
- Parameters:
crawlerConfiguration- The configuration for the Glue Crawler for the third-party custom source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
crawlerConfiguration
default CustomLogSourceConfiguration.Builder crawlerConfiguration(Consumer<CustomLogSourceCrawlerConfiguration.Builder> crawlerConfiguration)
The configuration for the Glue Crawler for the third-party custom source.
This is a convenience method that creates an instance of theCustomLogSourceCrawlerConfiguration.Builderavoiding the need to create one manually viaCustomLogSourceCrawlerConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocrawlerConfiguration(CustomLogSourceCrawlerConfiguration).- Parameters:
crawlerConfiguration- a consumer that will call methods onCustomLogSourceCrawlerConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
crawlerConfiguration(CustomLogSourceCrawlerConfiguration)
-
providerIdentity
CustomLogSourceConfiguration.Builder providerIdentity(AwsIdentity providerIdentity)
The identity of the log provider for the third-party custom source.
- Parameters:
providerIdentity- The identity of the log provider for the third-party custom source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
providerIdentity
default CustomLogSourceConfiguration.Builder providerIdentity(Consumer<AwsIdentity.Builder> providerIdentity)
The identity of the log provider for the third-party custom source.
This is a convenience method that creates an instance of theAwsIdentity.Builderavoiding the need to create one manually viaAwsIdentity.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toproviderIdentity(AwsIdentity).- Parameters:
providerIdentity- a consumer that will call methods onAwsIdentity.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
providerIdentity(AwsIdentity)
-
-