Interface DescribeTenantDatabasesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeTenantDatabasesResponse.Builder,DescribeTenantDatabasesResponse>,RdsResponse.Builder,SdkBuilder<DescribeTenantDatabasesResponse.Builder,DescribeTenantDatabasesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeTenantDatabasesResponse
public static interface DescribeTenantDatabasesResponse.Builder extends RdsResponse.Builder, SdkPojo, CopyableBuilder<DescribeTenantDatabasesResponse.Builder,DescribeTenantDatabasesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeTenantDatabasesResponse.Buildermarker(String marker)An optional pagination token provided by a previousDescribeTenantDatabasesrequest.DescribeTenantDatabasesResponse.BuildertenantDatabases(Collection<TenantDatabase> tenantDatabases)An array of the tenant databases requested by theDescribeTenantDatabasesoperation.DescribeTenantDatabasesResponse.BuildertenantDatabases(Consumer<TenantDatabase.Builder>... tenantDatabases)An array of the tenant databases requested by theDescribeTenantDatabasesoperation.DescribeTenantDatabasesResponse.BuildertenantDatabases(TenantDatabase... tenantDatabases)An array of the tenant databases requested by theDescribeTenantDatabasesoperation.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.rds.model.RdsResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
marker
DescribeTenantDatabasesResponse.Builder marker(String marker)
An optional pagination token provided by a previous
DescribeTenantDatabasesrequest. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords.- Parameters:
marker- An optional pagination token provided by a previousDescribeTenantDatabasesrequest. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tenantDatabases
DescribeTenantDatabasesResponse.Builder tenantDatabases(Collection<TenantDatabase> tenantDatabases)
An array of the tenant databases requested by the
DescribeTenantDatabasesoperation.- Parameters:
tenantDatabases- An array of the tenant databases requested by theDescribeTenantDatabasesoperation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tenantDatabases
DescribeTenantDatabasesResponse.Builder tenantDatabases(TenantDatabase... tenantDatabases)
An array of the tenant databases requested by the
DescribeTenantDatabasesoperation.- Parameters:
tenantDatabases- An array of the tenant databases requested by theDescribeTenantDatabasesoperation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tenantDatabases
DescribeTenantDatabasesResponse.Builder tenantDatabases(Consumer<TenantDatabase.Builder>... tenantDatabases)
An array of the tenant databases requested by the
This is a convenience method that creates an instance of theDescribeTenantDatabasesoperation.TenantDatabase.Builderavoiding the need to create one manually viaTenantDatabase.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tenantDatabases(List.) - Parameters:
tenantDatabases- a consumer that will call methods onTenantDatabase.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tenantDatabases(java.util.Collection)
-
-