Interface DescribeClientVpnAuthorizationRulesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeClientVpnAuthorizationRulesResponse.Builder,DescribeClientVpnAuthorizationRulesResponse>
,Ec2Response.Builder
,SdkBuilder<DescribeClientVpnAuthorizationRulesResponse.Builder,DescribeClientVpnAuthorizationRulesResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeClientVpnAuthorizationRulesResponse
public static interface DescribeClientVpnAuthorizationRulesResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<DescribeClientVpnAuthorizationRulesResponse.Builder,DescribeClientVpnAuthorizationRulesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeClientVpnAuthorizationRulesResponse.Builder
authorizationRules(Collection<AuthorizationRule> authorizationRules)
Information about the authorization rules.DescribeClientVpnAuthorizationRulesResponse.Builder
authorizationRules(Consumer<AuthorizationRule.Builder>... authorizationRules)
Information about the authorization rules.DescribeClientVpnAuthorizationRulesResponse.Builder
authorizationRules(AuthorizationRule... authorizationRules)
Information about the authorization rules.DescribeClientVpnAuthorizationRulesResponse.Builder
nextToken(String nextToken)
The token to use to retrieve the next page of results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ec2.model.Ec2Response.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
-
authorizationRules
DescribeClientVpnAuthorizationRulesResponse.Builder authorizationRules(Collection<AuthorizationRule> authorizationRules)
Information about the authorization rules.
- Parameters:
authorizationRules
- Information about the authorization rules.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authorizationRules
DescribeClientVpnAuthorizationRulesResponse.Builder authorizationRules(AuthorizationRule... authorizationRules)
Information about the authorization rules.
- Parameters:
authorizationRules
- Information about the authorization rules.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authorizationRules
DescribeClientVpnAuthorizationRulesResponse.Builder authorizationRules(Consumer<AuthorizationRule.Builder>... authorizationRules)
Information about the authorization rules.
This is a convenience method that creates an instance of theAuthorizationRule.Builder
avoiding the need to create one manually viaAuthorizationRule.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#authorizationRules(List
.) - Parameters:
authorizationRules
- a consumer that will call methods onAuthorizationRule.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#authorizationRules(java.util.Collection
)
-
nextToken
DescribeClientVpnAuthorizationRulesResponse.Builder nextToken(String nextToken)
The token to use to retrieve the next page of results. This value is
null
when there are no more results to return.- Parameters:
nextToken
- The token to use to retrieve the next page of results. This value isnull
when there are no more results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-