Interface DescribeSslPoliciesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeSslPoliciesResponse.Builder,DescribeSslPoliciesResponse>
,ElasticLoadBalancingV2Response.Builder
,SdkBuilder<DescribeSslPoliciesResponse.Builder,DescribeSslPoliciesResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeSslPoliciesResponse
public static interface DescribeSslPoliciesResponse.Builder extends ElasticLoadBalancingV2Response.Builder, SdkPojo, CopyableBuilder<DescribeSslPoliciesResponse.Builder,DescribeSslPoliciesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeSslPoliciesResponse.Builder
nextMarker(String nextMarker)
If there are additional results, this is the marker for the next set of results.DescribeSslPoliciesResponse.Builder
sslPolicies(Collection<SslPolicy> sslPolicies)
Information about the security policies.DescribeSslPoliciesResponse.Builder
sslPolicies(Consumer<SslPolicy.Builder>... sslPolicies)
Information about the security policies.DescribeSslPoliciesResponse.Builder
sslPolicies(SslPolicy... sslPolicies)
Information about the security policies.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.elasticloadbalancingv2.model.ElasticLoadBalancingV2Response.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
-
sslPolicies
DescribeSslPoliciesResponse.Builder sslPolicies(Collection<SslPolicy> sslPolicies)
Information about the security policies.
- Parameters:
sslPolicies
- Information about the security policies.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sslPolicies
DescribeSslPoliciesResponse.Builder sslPolicies(SslPolicy... sslPolicies)
Information about the security policies.
- Parameters:
sslPolicies
- Information about the security policies.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sslPolicies
DescribeSslPoliciesResponse.Builder sslPolicies(Consumer<SslPolicy.Builder>... sslPolicies)
Information about the security policies.
This is a convenience method that creates an instance of theSslPolicy.Builder
avoiding the need to create one manually viaSslPolicy.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#sslPolicies(List
.) - Parameters:
sslPolicies
- a consumer that will call methods onSslPolicy.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#sslPolicies(java.util.Collection
)
-
nextMarker
DescribeSslPoliciesResponse.Builder nextMarker(String nextMarker)
If there are additional results, this is the marker for the next set of results. Otherwise, this is null.
- Parameters:
nextMarker
- If there are additional results, this is the marker for the next set of results. Otherwise, this is null.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-