Interface GetSdkTypeResponse.Builder
-
- All Superinterfaces:
ApiGatewayResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<GetSdkTypeResponse.Builder,GetSdkTypeResponse>,SdkBuilder<GetSdkTypeResponse.Builder,GetSdkTypeResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetSdkTypeResponse
public static interface GetSdkTypeResponse.Builder extends ApiGatewayResponse.Builder, SdkPojo, CopyableBuilder<GetSdkTypeResponse.Builder,GetSdkTypeResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetSdkTypeResponse.BuilderconfigurationProperties(Collection<SdkConfigurationProperty> configurationProperties)A list of configuration properties of an SdkType.GetSdkTypeResponse.BuilderconfigurationProperties(Consumer<SdkConfigurationProperty.Builder>... configurationProperties)A list of configuration properties of an SdkType.GetSdkTypeResponse.BuilderconfigurationProperties(SdkConfigurationProperty... configurationProperties)A list of configuration properties of an SdkType.GetSdkTypeResponse.Builderdescription(String description)The description of an SdkType.GetSdkTypeResponse.BuilderfriendlyName(String friendlyName)The user-friendly name of an SdkType instance.GetSdkTypeResponse.Builderid(String id)The identifier of an SdkType instance.-
Methods inherited from interface software.amazon.awssdk.services.apigateway.model.ApiGatewayResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
id
GetSdkTypeResponse.Builder id(String id)
The identifier of an SdkType instance.
- Parameters:
id- The identifier of an SdkType instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
friendlyName
GetSdkTypeResponse.Builder friendlyName(String friendlyName)
The user-friendly name of an SdkType instance.
- Parameters:
friendlyName- The user-friendly name of an SdkType instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
GetSdkTypeResponse.Builder description(String description)
The description of an SdkType.
- Parameters:
description- The description of an SdkType.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationProperties
GetSdkTypeResponse.Builder configurationProperties(Collection<SdkConfigurationProperty> configurationProperties)
A list of configuration properties of an SdkType.
- Parameters:
configurationProperties- A list of configuration properties of an SdkType.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationProperties
GetSdkTypeResponse.Builder configurationProperties(SdkConfigurationProperty... configurationProperties)
A list of configuration properties of an SdkType.
- Parameters:
configurationProperties- A list of configuration properties of an SdkType.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationProperties
GetSdkTypeResponse.Builder configurationProperties(Consumer<SdkConfigurationProperty.Builder>... configurationProperties)
A list of configuration properties of an SdkType.
This is a convenience method that creates an instance of theSdkConfigurationProperty.Builderavoiding the need to create one manually viaSdkConfigurationProperty.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#configurationProperties(List.) - Parameters:
configurationProperties- a consumer that will call methods onSdkConfigurationProperty.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#configurationProperties(java.util.Collection)
-
-