Interface DataSourceIntrospectionResult.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<DataSourceIntrospectionResult.Builder,DataSourceIntrospectionResult>
,SdkBuilder<DataSourceIntrospectionResult.Builder,DataSourceIntrospectionResult>
,SdkPojo
- Enclosing class:
- DataSourceIntrospectionResult
public static interface DataSourceIntrospectionResult.Builder extends SdkPojo, CopyableBuilder<DataSourceIntrospectionResult.Builder,DataSourceIntrospectionResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataSourceIntrospectionResult.Builder
models(Collection<DataSourceIntrospectionModel> models)
The array ofDataSourceIntrospectionModel
objects.DataSourceIntrospectionResult.Builder
models(Consumer<DataSourceIntrospectionModel.Builder>... models)
The array ofDataSourceIntrospectionModel
objects.DataSourceIntrospectionResult.Builder
models(DataSourceIntrospectionModel... models)
The array ofDataSourceIntrospectionModel
objects.DataSourceIntrospectionResult.Builder
nextToken(String nextToken)
Determines the number of types to be returned in a single response before paginating.-
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
-
models
DataSourceIntrospectionResult.Builder models(Collection<DataSourceIntrospectionModel> models)
The array of
DataSourceIntrospectionModel
objects.- Parameters:
models
- The array ofDataSourceIntrospectionModel
objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
models
DataSourceIntrospectionResult.Builder models(DataSourceIntrospectionModel... models)
The array of
DataSourceIntrospectionModel
objects.- Parameters:
models
- The array ofDataSourceIntrospectionModel
objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
models
DataSourceIntrospectionResult.Builder models(Consumer<DataSourceIntrospectionModel.Builder>... models)
The array of
This is a convenience method that creates an instance of theDataSourceIntrospectionModel
objects.DataSourceIntrospectionModel.Builder
avoiding the need to create one manually viaDataSourceIntrospectionModel.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#models(List
.) - Parameters:
models
- a consumer that will call methods onDataSourceIntrospectionModel.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#models(java.util.Collection
)
-
nextToken
DataSourceIntrospectionResult.Builder nextToken(String nextToken)
Determines the number of types to be returned in a single response before paginating. This value is typically taken from
nextToken
value from the previous response.- Parameters:
nextToken
- Determines the number of types to be returned in a single response before paginating. This value is typically taken fromnextToken
value from the previous response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-