Interface RevokeSecurityGroupEgressResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<RevokeSecurityGroupEgressResponse.Builder,RevokeSecurityGroupEgressResponse>,Ec2Response.Builder,SdkBuilder<RevokeSecurityGroupEgressResponse.Builder,RevokeSecurityGroupEgressResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- RevokeSecurityGroupEgressResponse
public static interface RevokeSecurityGroupEgressResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<RevokeSecurityGroupEgressResponse.Builder,RevokeSecurityGroupEgressResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RevokeSecurityGroupEgressResponse.BuilderreturnValue(Boolean returnValue)Returnstrueif the request succeeds; otherwise, returns an error.RevokeSecurityGroupEgressResponse.BuilderunknownIpPermissions(Collection<IpPermission> unknownIpPermissions)The outbound rules that were unknown to the service.RevokeSecurityGroupEgressResponse.BuilderunknownIpPermissions(Consumer<IpPermission.Builder>... unknownIpPermissions)The outbound rules that were unknown to the service.RevokeSecurityGroupEgressResponse.BuilderunknownIpPermissions(IpPermission... unknownIpPermissions)The outbound rules that were unknown to the service.-
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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
returnValue
RevokeSecurityGroupEgressResponse.Builder returnValue(Boolean returnValue)
Returns
trueif the request succeeds; otherwise, returns an error.- Parameters:
returnValue- Returnstrueif the request succeeds; otherwise, returns an error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unknownIpPermissions
RevokeSecurityGroupEgressResponse.Builder unknownIpPermissions(Collection<IpPermission> unknownIpPermissions)
The outbound rules that were unknown to the service. In some cases,
unknownIpPermissionSetmight be in a different format from the request parameter.- Parameters:
unknownIpPermissions- The outbound rules that were unknown to the service. In some cases,unknownIpPermissionSetmight be in a different format from the request parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unknownIpPermissions
RevokeSecurityGroupEgressResponse.Builder unknownIpPermissions(IpPermission... unknownIpPermissions)
The outbound rules that were unknown to the service. In some cases,
unknownIpPermissionSetmight be in a different format from the request parameter.- Parameters:
unknownIpPermissions- The outbound rules that were unknown to the service. In some cases,unknownIpPermissionSetmight be in a different format from the request parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unknownIpPermissions
RevokeSecurityGroupEgressResponse.Builder unknownIpPermissions(Consumer<IpPermission.Builder>... unknownIpPermissions)
The outbound rules that were unknown to the service. In some cases,
This is a convenience method that creates an instance of theunknownIpPermissionSetmight be in a different format from the request parameter.IpPermission.Builderavoiding the need to create one manually viaIpPermission.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#unknownIpPermissions(List.) - Parameters:
unknownIpPermissions- a consumer that will call methods onIpPermission.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#unknownIpPermissions(java.util.Collection)
-
-