Interface GetLoadBalancerTlsPoliciesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetLoadBalancerTlsPoliciesResponse.Builder,GetLoadBalancerTlsPoliciesResponse>,LightsailResponse.Builder,SdkBuilder<GetLoadBalancerTlsPoliciesResponse.Builder,GetLoadBalancerTlsPoliciesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetLoadBalancerTlsPoliciesResponse
public static interface GetLoadBalancerTlsPoliciesResponse.Builder extends LightsailResponse.Builder, SdkPojo, CopyableBuilder<GetLoadBalancerTlsPoliciesResponse.Builder,GetLoadBalancerTlsPoliciesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetLoadBalancerTlsPoliciesResponse.BuildernextPageToken(String nextPageToken)The token to advance to the next page of results from your request.GetLoadBalancerTlsPoliciesResponse.BuildertlsPolicies(Collection<LoadBalancerTlsPolicy> tlsPolicies)An array of objects that describe the TLS security policies that are available.GetLoadBalancerTlsPoliciesResponse.BuildertlsPolicies(Consumer<LoadBalancerTlsPolicy.Builder>... tlsPolicies)An array of objects that describe the TLS security policies that are available.GetLoadBalancerTlsPoliciesResponse.BuildertlsPolicies(LoadBalancerTlsPolicy... tlsPolicies)An array of objects that describe the TLS security policies that are available.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lightsail.model.LightsailResponse.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
tlsPolicies
GetLoadBalancerTlsPoliciesResponse.Builder tlsPolicies(Collection<LoadBalancerTlsPolicy> tlsPolicies)
An array of objects that describe the TLS security policies that are available.
- Parameters:
tlsPolicies- An array of objects that describe the TLS security policies that are available.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tlsPolicies
GetLoadBalancerTlsPoliciesResponse.Builder tlsPolicies(LoadBalancerTlsPolicy... tlsPolicies)
An array of objects that describe the TLS security policies that are available.
- Parameters:
tlsPolicies- An array of objects that describe the TLS security policies that are available.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tlsPolicies
GetLoadBalancerTlsPoliciesResponse.Builder tlsPolicies(Consumer<LoadBalancerTlsPolicy.Builder>... tlsPolicies)
An array of objects that describe the TLS security policies that are available.
This is a convenience method that creates an instance of theLoadBalancerTlsPolicy.Builderavoiding the need to create one manually viaLoadBalancerTlsPolicy.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tlsPolicies(List.) - Parameters:
tlsPolicies- a consumer that will call methods onLoadBalancerTlsPolicy.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tlsPolicies(java.util.Collection)
-
nextPageToken
GetLoadBalancerTlsPoliciesResponse.Builder nextPageToken(String nextPageToken)
The token to advance to the next page of results from your request.
A next page token is not returned if there are no more results to display.
To get the next page of results, perform another
GetLoadBalancerTlsPoliciesrequest and specify the next page token using thepageTokenparameter.- Parameters:
nextPageToken- The token to advance to the next page of results from your request.A next page token is not returned if there are no more results to display.
To get the next page of results, perform another
GetLoadBalancerTlsPoliciesrequest and specify the next page token using thepageTokenparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-