Interface MutualAuthenticationAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MutualAuthenticationAttributes.Builder,MutualAuthenticationAttributes>,SdkBuilder<MutualAuthenticationAttributes.Builder,MutualAuthenticationAttributes>,SdkPojo
- Enclosing class:
- MutualAuthenticationAttributes
public static interface MutualAuthenticationAttributes.Builder extends SdkPojo, CopyableBuilder<MutualAuthenticationAttributes.Builder,MutualAuthenticationAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MutualAuthenticationAttributes.BuilderignoreClientCertificateExpiry(Boolean ignoreClientCertificateExpiry)Indicates whether expired client certificates are ignored.MutualAuthenticationAttributes.Buildermode(String mode)The client certificate handling method.MutualAuthenticationAttributes.BuildertrustStoreArn(String trustStoreArn)The Amazon Resource Name (ARN) of the trust store.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
-
mode
MutualAuthenticationAttributes.Builder mode(String mode)
The client certificate handling method. Options are
off,passthroughorverify. The default value isoff.- Parameters:
mode- The client certificate handling method. Options areoff,passthroughorverify. The default value isoff.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trustStoreArn
MutualAuthenticationAttributes.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.
-
ignoreClientCertificateExpiry
MutualAuthenticationAttributes.Builder ignoreClientCertificateExpiry(Boolean ignoreClientCertificateExpiry)
Indicates whether expired client certificates are ignored.
- Parameters:
ignoreClientCertificateExpiry- Indicates whether expired client certificates are ignored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-