Interface AddTrustStoreRevocationsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<AddTrustStoreRevocationsRequest.Builder,AddTrustStoreRevocationsRequest>
,ElasticLoadBalancingV2Request.Builder
,SdkBuilder<AddTrustStoreRevocationsRequest.Builder,AddTrustStoreRevocationsRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- AddTrustStoreRevocationsRequest
public static interface AddTrustStoreRevocationsRequest.Builder extends ElasticLoadBalancingV2Request.Builder, SdkPojo, CopyableBuilder<AddTrustStoreRevocationsRequest.Builder,AddTrustStoreRevocationsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddTrustStoreRevocationsRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
AddTrustStoreRevocationsRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
AddTrustStoreRevocationsRequest.Builder
revocationContents(Collection<RevocationContent> revocationContents)
The revocation file to add.AddTrustStoreRevocationsRequest.Builder
revocationContents(Consumer<RevocationContent.Builder>... revocationContents)
The revocation file to add.AddTrustStoreRevocationsRequest.Builder
revocationContents(RevocationContent... revocationContents)
The revocation file to add.AddTrustStoreRevocationsRequest.Builder
trustStoreArn(String trustStoreArn)
The Amazon Resource Name (ARN) of the trust store.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.elasticloadbalancingv2.model.ElasticLoadBalancingV2Request.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
trustStoreArn
AddTrustStoreRevocationsRequest.Builder trustStoreArn(String trustStoreArn)
The Amazon Resource Name (ARN) of the trust store.
- Parameters:
trustStoreArn
- The Amazon Resource Name (ARN) of the trust store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
revocationContents
AddTrustStoreRevocationsRequest.Builder revocationContents(Collection<RevocationContent> revocationContents)
The revocation file to add.
- Parameters:
revocationContents
- The revocation file to add.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
revocationContents
AddTrustStoreRevocationsRequest.Builder revocationContents(RevocationContent... revocationContents)
The revocation file to add.
- Parameters:
revocationContents
- The revocation file to add.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
revocationContents
AddTrustStoreRevocationsRequest.Builder revocationContents(Consumer<RevocationContent.Builder>... revocationContents)
The revocation file to add.
This is a convenience method that creates an instance of theRevocationContent.Builder
avoiding the need to create one manually viaRevocationContent.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#revocationContents(List
.) - Parameters:
revocationContents
- a consumer that will call methods onRevocationContent.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#revocationContents(java.util.Collection
)
-
overrideConfiguration
AddTrustStoreRevocationsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
AddTrustStoreRevocationsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-