Interface GetDbParameterGroupResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetDbParameterGroupResponse.Builder,GetDbParameterGroupResponse>,SdkBuilder<GetDbParameterGroupResponse.Builder,GetDbParameterGroupResponse>,SdkPojo,SdkResponse.Builder,TimestreamInfluxDbResponse.Builder
- Enclosing class:
- GetDbParameterGroupResponse
public static interface GetDbParameterGroupResponse.Builder extends TimestreamInfluxDbResponse.Builder, SdkPojo, CopyableBuilder<GetDbParameterGroupResponse.Builder,GetDbParameterGroupResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description GetDbParameterGroupResponse.Builderarn(String arn)The Amazon Resource Name (ARN) of the DB parameter group.GetDbParameterGroupResponse.Builderdescription(String description)A description of the DB parameter group.GetDbParameterGroupResponse.Builderid(String id)A service-generated unique identifier.GetDbParameterGroupResponse.Buildername(String name)The customer-supplied name that uniquely identifies the DB parameter group when interacting with the Amazon Timestream for InfluxDB API and CLI commands.default GetDbParameterGroupResponse.Builderparameters(Consumer<Parameters.Builder> parameters)The parameters that comprise the DB parameter group.GetDbParameterGroupResponse.Builderparameters(Parameters parameters)The parameters that comprise the DB parameter group.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.timestreaminfluxdb.model.TimestreamInfluxDbResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
id
GetDbParameterGroupResponse.Builder id(String id)
A service-generated unique identifier.
- Parameters:
id- A service-generated unique identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
GetDbParameterGroupResponse.Builder name(String name)
The customer-supplied name that uniquely identifies the DB parameter group when interacting with the Amazon Timestream for InfluxDB API and CLI commands.
- Parameters:
name- The customer-supplied name that uniquely identifies the DB parameter group when interacting with the Amazon Timestream for InfluxDB API and CLI commands.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
GetDbParameterGroupResponse.Builder arn(String arn)
The Amazon Resource Name (ARN) of the DB parameter group.
- Parameters:
arn- The Amazon Resource Name (ARN) of the DB parameter group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
GetDbParameterGroupResponse.Builder description(String description)
A description of the DB parameter group.
- Parameters:
description- A description of the DB parameter group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
GetDbParameterGroupResponse.Builder parameters(Parameters parameters)
The parameters that comprise the DB parameter group.
- Parameters:
parameters- The parameters that comprise the DB parameter group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
default GetDbParameterGroupResponse.Builder parameters(Consumer<Parameters.Builder> parameters)
The parameters that comprise the DB parameter group.
This is a convenience method that creates an instance of theParameters.Builderavoiding the need to create one manually viaParameters.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toparameters(Parameters).- Parameters:
parameters- a consumer that will call methods onParameters.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
parameters(Parameters)
-
-